mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
net tests: fix if_stf:6to4
This test needs to have the loopback interface enabled, or route lookups
for our own IP addresses will fail.
MFC after: 3 weeks
Sponsored by: Rubicon Communications, LLC ("Netgate")
Differential Revision: https://reviews.freebsd.org/D33041
(cherry picked from commit 67573b7a39)
This commit is contained in:
parent
80c2f5fc0a
commit
74156bb47c
1 changed files with 2 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ atf_test_case "6to4" "cleanup"
|
|||
atf_skip "This test requires if_stf"
|
||||
fi
|
||||
if ! kldstat -q -m if_gif; then
|
||||
atf_skip "This test requires if_stf"
|
||||
atf_skip "This test requires if_gif"
|
||||
fi
|
||||
|
||||
epair=$(vnet_mkepair)
|
||||
|
|
@ -56,6 +56,7 @@ atf_test_case "6to4" "cleanup"
|
|||
jexec relay route -6 add default -interface $gif
|
||||
|
||||
vnet_mkjail client ${epair}b
|
||||
jexec client ifconfig lo0 up
|
||||
jexec client ifconfig ${epair}b 192.0.2.2/24 up
|
||||
stf=$(jexec client ifconfig stf create)
|
||||
jexec client ifconfig $stf inet6 2002:c000:0202::1/32 up
|
||||
|
|
|
|||
Loading…
Reference in a new issue