From 6e55c0622cce086eda225dd0312cf021a9e35cee Mon Sep 17 00:00:00 2001 From: Varsha Rao Date: Sun, 19 Nov 2017 18:04:32 +0530 Subject: tests: shell: Add test for IPv4 Mapped IPv6 address. This patch adds test case for IPv4 Mapped IPv6 address. Signed-off-by: Varsha Rao Signed-off-by: Pablo Neira Ayuso --- tests/shell/testcases/sets/0027ipv6_maps_ipv4_0 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/shell/testcases/sets/0027ipv6_maps_ipv4_0 (limited to 'tests/shell') diff --git a/tests/shell/testcases/sets/0027ipv6_maps_ipv4_0 b/tests/shell/testcases/sets/0027ipv6_maps_ipv4_0 new file mode 100644 index 00000000..7ac271a0 --- /dev/null +++ b/tests/shell/testcases/sets/0027ipv6_maps_ipv4_0 @@ -0,0 +1,25 @@ +#!/bin/bash + +# Tests IPv4 Mapped IPv6 addresses. + +set -e + +tmpfile=$(mktemp) +if [ ! -w $tmpfile ] ; then + echo "Failed to create tmp file" >&2 + exit 0 +fi + +trap "rm -rf $tmpfile" EXIT # cleanup if aborted + +echo " +table inet t { + set s { + type ipv6_addr + flags interval + elements = { ::ffff:0.0.0.0/96 } + } +} +" > $tmpfile + +$NFT -f $tmpfile -- cgit v1.2.3