Commit 0ed15462 authored by Haishuang Yan's avatar Haishuang Yan Committed by Simon Horman

selftests: netfilter: add ipvs nat test case

Test virtual server via NAT.

Tested:
# selftests: netfilter: ipvs.sh
# Testing DR mode...
# Testing NAT mode...
# ipvs.sh: PASS
Signed-off-by: default avatarHaishuang Yan <yanhaishuang@cmss.chinamobile.com>
Signed-off-by: default avatarSimon Horman <horms@verge.net.au>
parent 867d2190
...@@ -154,20 +154,40 @@ test_dr() { ...@@ -154,20 +154,40 @@ test_dr() {
test_service test_service
} }
test_nat() {
ip netns exec ns0 ip route add ${vip_v4} via ${gip_v4} dev br0
ip netns exec ns1 sysctl -qw net.ipv4.ip_forward=1
ip netns exec ns1 ipvsadm -A -t ${vip_v4}:${port} -s rr
ip netns exec ns1 ipvsadm -a -m -t ${vip_v4}:${port} -r ${rip_v4}:${port}
ip netns exec ns1 ip addr add ${vip_v4}/32 dev lo:1
ip netns exec ns2 ip link del veth20
ip netns exec ns2 ip route add default via ${dip_v4} dev veth21
test_service
}
run_tests() { run_tests() {
local errors= local errors=
echo "Testing DR mode..." echo "Testing DR mode..."
cleanup
setup setup
test_dr test_dr
errors=$(( $errors + $? )) errors=$(( $errors + $? ))
echo "Testing NAT mode..."
cleanup
setup
test_nat
errors=$(( $errors + $? ))
return $errors return $errors
} }
trap cleanup EXIT trap cleanup EXIT
cleanup
run_tests run_tests
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment