summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/0027ipv6_maps_ipv4_0
blob: 7ac271a09cefe5aa28ae24873b1ab9697bb24367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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