From: Varsha Rao Date: Sun, 19 Nov 2017 12:34:32 +0000 (+0530) Subject: tests: shell: Add test for IPv4 Mapped IPv6 address. X-Git-Tag: v0.8.1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e55c0622cce086eda225dd0312cf021a9e35cee;p=thirdparty%2Fnftables.git 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 --- 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