Lines Matching +full:3 +full:ns
16 arp_ping eth-arp: Basic arp ping between two NS
18 connect_v4 ip4-xon: Basic ipv4 ping between two NS
74 info "Adding DP/Bridge IF: sbx:$1 dp:$2 {$3, $4, $5}"
82 info "Adding IF to DP: br:$2 if:$3"
84 ovs_sbx "$1" python3 $ovs_base/ovs-dpctl.py add-if "$2" "$3" \
88 -u "$2" "$3" >$ovs_dir/$3.out 2>$ovs_dir/$3.err &
95 info "Deleting IF from DP: br:$2 if:$3"
96 ovs_sbx "$1" python3 $ovs_base/ovs-dpctl.py del-if "$2" "$3" || return 1
111 info "Adding netns attached: sbx:$1 dp:$2 {$3, $4, $5}"
112 ovs_sbx "$1" ip netns add "$3" || return 1
113 on_exit "ovs_sbx $1 ip netns del $3"
117 ovs_sbx "$1" ip link set "$5" netns "$3" || return 1
118 ovs_sbx "$1" ip netns exec "$3" ip link set "$5" up || return 1
121 ovs_sbx "$1" ip netns exec "$3" ip addr add "$6" dev "$5" \
131 [ $TRACING -eq 1 ] && ovs_netns_spawn_daemon "$1" "$ns" \
138 info "Adding flow to DP: sbx:$1 br:$2 flow:$3 act:$4"
139 ovs_sbx "$1" python3 $ovs_base/ovs-dpctl.py add-flow "$2" "$3" "$4"
141 echo "Flow [ $3 : $4 ] failed" >> ${ovs_dir}/debug.log
196 for ns in client server; do
197 ovs_add_netns_and_veths "test_drop_reason" "dropreason" "$ns" \
198 "${ns:0:1}0" "${ns:0:1}1" || return 1
270 # - send ARP ping between two ns
280 for ns in client server; do
281 ovs_add_netns_and_veths "test_arp_ping" "arpping" "$ns" \
282 "${ns:0:1}0" "${ns:0:1}1" || return 1
320 for ns in client server; do
321 ovs_add_netns_and_veths "test_ct_connect_v4" "ct4" "$ns" \
322 "${ns:0:1}0" "${ns:0:1}1" || return 1
352 ovs_sbx "test_ct_connect_v4" ip netns exec client ping 172.31.110.20 -c 3 || return 1
385 for ns in client server; do
386 ovs_add_netns_and_veths "test_connect_v4" "cv4" "$ns" \
387 "${ns:0:1}0" "${ns:0:1}1" || return 1
407 ovs_sbx "test_connect_v4" ip netns exec client ping 172.31.110.20 -c 3 || return 1
425 for ns in client server; do
426 ovs_add_netns_and_veths "test_nat_connect_v4" "nat4" "$ns" \
427 "${ns:0:1}0" "${ns:0:1}1" || return 1
454 ovs_sbx "test_nat_connect_v4" ip netns exec client ping 192.168.0.20 -c 3 || return 1
498 wc -l) == 3 ] || \