blob: 7fae805147aeb1581300c4dda9ff28a38330f6af [file] [log] [blame]
Ido Schimmel73bae672018-02-28 12:25:06 +02001#!/bin/bash
2# SPDX-License-Identifier: GPL-2.0
3
4##############################################################################
5# Defines
6
7# Can be overridden by the configuration file.
8PING=${PING:=ping}
9PING6=${PING6:=ping6}
Ido Schimmeld4deb012018-02-28 12:25:07 +020010MZ=${MZ:=mausezahn}
Ido Schimmel73bae672018-02-28 12:25:06 +020011WAIT_TIME=${WAIT_TIME:=5}
12PAUSE_ON_FAIL=${PAUSE_ON_FAIL:=no}
13PAUSE_ON_CLEANUP=${PAUSE_ON_CLEANUP:=no}
Ido Schimmel59be45c2018-03-11 09:57:25 +020014NETIF_TYPE=${NETIF_TYPE:=veth}
15NETIF_CREATE=${NETIF_CREATE:=yes}
Ido Schimmel73bae672018-02-28 12:25:06 +020016
17if [[ -f forwarding.config ]]; then
18 source forwarding.config
19fi
20
21##############################################################################
22# Sanity checks
23
David Ahern198979b2018-03-01 13:49:30 -080024check_tc_version()
25{
26 tc -j &> /dev/null
27 if [[ $? -ne 0 ]]; then
28 echo "SKIP: iproute2 too old; tc is missing JSON support"
29 exit 1
30 fi
31
32 tc filter help 2>&1 | grep block &> /dev/null
33 if [[ $? -ne 0 ]]; then
34 echo "SKIP: iproute2 too old; tc is missing shared block support"
35 exit 1
36 fi
37}
38
Ido Schimmel73bae672018-02-28 12:25:06 +020039if [[ "$(id -u)" -ne 0 ]]; then
40 echo "SKIP: need root privileges"
41 exit 0
42fi
43
David Ahern198979b2018-03-01 13:49:30 -080044if [[ "$CHECK_TC" = "yes" ]]; then
45 check_tc_version
Jiri Pirko4908e242018-02-28 12:25:19 +020046fi
47
Ido Schimmel73bae672018-02-28 12:25:06 +020048if [[ ! -x "$(command -v jq)" ]]; then
49 echo "SKIP: jq not installed"
David Ahern198979b2018-03-01 13:49:30 -080050 exit 1
Ido Schimmel73bae672018-02-28 12:25:06 +020051fi
52
Ido Schimmeld4deb012018-02-28 12:25:07 +020053if [[ ! -x "$(command -v $MZ)" ]]; then
54 echo "SKIP: $MZ not installed"
Ido Schimmelff0162a2018-03-11 09:57:23 +020055 exit 1
Ido Schimmeld4deb012018-02-28 12:25:07 +020056fi
57
Ido Schimmel73bae672018-02-28 12:25:06 +020058if [[ ! -v NUM_NETIFS ]]; then
59 echo "SKIP: importer does not define \"NUM_NETIFS\""
Ido Schimmel231b85a2018-03-11 09:57:24 +020060 exit 1
Ido Schimmel73bae672018-02-28 12:25:06 +020061fi
62
63##############################################################################
Jiri Pirko781fe632018-02-28 12:25:15 +020064# Command line options handling
65
66count=0
67
68while [[ $# -gt 0 ]]; do
69 if [[ "$count" -eq "0" ]]; then
70 unset NETIFS
71 declare -A NETIFS
72 fi
73 count=$((count + 1))
74 NETIFS[p$count]="$1"
75 shift
76done
77
78##############################################################################
Ido Schimmel73bae672018-02-28 12:25:06 +020079# Network interfaces configuration
80
David Ahern190f8872018-03-04 17:37:47 -080081create_netif_veth()
82{
83 local i
84
85 for i in $(eval echo {1..$NUM_NETIFS}); do
86 local j=$((i+1))
87
88 ip link show dev ${NETIFS[p$i]} &> /dev/null
89 if [[ $? -ne 0 ]]; then
90 ip link add ${NETIFS[p$i]} type veth \
91 peer name ${NETIFS[p$j]}
92 if [[ $? -ne 0 ]]; then
93 echo "Failed to create netif"
94 exit 1
95 fi
96 fi
97 i=$j
98 done
99}
100
101create_netif()
102{
103 case "$NETIF_TYPE" in
104 veth) create_netif_veth
105 ;;
106 *) echo "Can not create interfaces of type \'$NETIF_TYPE\'"
107 exit 1
108 ;;
109 esac
110}
111
112if [[ "$NETIF_CREATE" = "yes" ]]; then
113 create_netif
114fi
115
Ido Schimmel73bae672018-02-28 12:25:06 +0200116for i in $(eval echo {1..$NUM_NETIFS}); do
117 ip link show dev ${NETIFS[p$i]} &> /dev/null
118 if [[ $? -ne 0 ]]; then
119 echo "SKIP: could not find all required interfaces"
Ido Schimmel231b85a2018-03-11 09:57:24 +0200120 exit 1
Ido Schimmel73bae672018-02-28 12:25:06 +0200121 fi
122done
123
124##############################################################################
125# Helpers
126
127# Exit status to return at the end. Set in case one of the tests fails.
128EXIT_STATUS=0
129# Per-test return value. Clear at the beginning of each test.
130RET=0
131
132check_err()
133{
134 local err=$1
135 local msg=$2
136
137 if [[ $RET -eq 0 && $err -ne 0 ]]; then
138 RET=$err
139 retmsg=$msg
140 fi
141}
142
143check_fail()
144{
145 local err=$1
146 local msg=$2
147
148 if [[ $RET -eq 0 && $err -eq 0 ]]; then
149 RET=1
150 retmsg=$msg
151 fi
152}
153
154log_test()
155{
156 local test_name=$1
157 local opt_str=$2
158
159 if [[ $# -eq 2 ]]; then
160 opt_str="($opt_str)"
161 fi
162
163 if [[ $RET -ne 0 ]]; then
164 EXIT_STATUS=1
165 printf "TEST: %-60s [FAIL]\n" "$test_name $opt_str"
166 if [[ ! -z "$retmsg" ]]; then
167 printf "\t%s\n" "$retmsg"
168 fi
169 if [ "${PAUSE_ON_FAIL}" = "yes" ]; then
170 echo "Hit enter to continue, 'q' to quit"
171 read a
172 [ "$a" = "q" ] && exit 1
173 fi
174 return 1
175 fi
176
177 printf "TEST: %-60s [PASS]\n" "$test_name $opt_str"
178 return 0
179}
180
Ido Schimmel3d578d82018-02-28 12:25:11 +0200181log_info()
182{
183 local msg=$1
184
185 echo "INFO: $msg"
186}
187
Ido Schimmel73bae672018-02-28 12:25:06 +0200188setup_wait()
189{
190 for i in $(eval echo {1..$NUM_NETIFS}); do
191 while true; do
192 ip link show dev ${NETIFS[p$i]} up \
193 | grep 'state UP' &> /dev/null
194 if [[ $? -ne 0 ]]; then
195 sleep 1
196 else
197 break
198 fi
199 done
200 done
201
202 # Make sure links are ready.
203 sleep $WAIT_TIME
204}
205
206pre_cleanup()
207{
208 if [ "${PAUSE_ON_CLEANUP}" = "yes" ]; then
209 echo "Pausing before cleanup, hit any key to continue"
210 read
211 fi
212}
213
214vrf_prepare()
215{
216 ip -4 rule add pref 32765 table local
217 ip -4 rule del pref 0
218 ip -6 rule add pref 32765 table local
219 ip -6 rule del pref 0
220}
221
222vrf_cleanup()
223{
224 ip -6 rule add pref 0 table local
225 ip -6 rule del pref 32765
226 ip -4 rule add pref 0 table local
227 ip -4 rule del pref 32765
228}
229
230__last_tb_id=0
231declare -A __TB_IDS
232
233__vrf_td_id_assign()
234{
235 local vrf_name=$1
236
237 __last_tb_id=$((__last_tb_id + 1))
238 __TB_IDS[$vrf_name]=$__last_tb_id
239 return $__last_tb_id
240}
241
242__vrf_td_id_lookup()
243{
244 local vrf_name=$1
245
246 return ${__TB_IDS[$vrf_name]}
247}
248
249vrf_create()
250{
251 local vrf_name=$1
252 local tb_id
253
254 __vrf_td_id_assign $vrf_name
255 tb_id=$?
256
257 ip link add dev $vrf_name type vrf table $tb_id
258 ip -4 route add table $tb_id unreachable default metric 4278198272
259 ip -6 route add table $tb_id unreachable default metric 4278198272
260}
261
262vrf_destroy()
263{
264 local vrf_name=$1
265 local tb_id
266
267 __vrf_td_id_lookup $vrf_name
268 tb_id=$?
269
270 ip -6 route del table $tb_id unreachable default metric 4278198272
271 ip -4 route del table $tb_id unreachable default metric 4278198272
272 ip link del dev $vrf_name
273}
274
275__addr_add_del()
276{
277 local if_name=$1
278 local add_del=$2
279 local array
280
281 shift
282 shift
283 array=("${@}")
284
285 for addrstr in "${array[@]}"; do
286 ip address $add_del $addrstr dev $if_name
287 done
288}
289
290simple_if_init()
291{
292 local if_name=$1
293 local vrf_name
294 local array
295
296 shift
297 vrf_name=v$if_name
298 array=("${@}")
299
300 vrf_create $vrf_name
301 ip link set dev $if_name master $vrf_name
302 ip link set dev $vrf_name up
303 ip link set dev $if_name up
304
305 __addr_add_del $if_name add "${array[@]}"
306}
307
308simple_if_fini()
309{
310 local if_name=$1
311 local vrf_name
312 local array
313
314 shift
315 vrf_name=v$if_name
316 array=("${@}")
317
318 __addr_add_del $if_name del "${array[@]}"
319
320 ip link set dev $if_name down
321 vrf_destroy $vrf_name
322}
323
Petr Machata7d4cbae2018-04-27 01:17:56 +0200324tunnel_create()
325{
326 local name=$1; shift
327 local type=$1; shift
328 local local=$1; shift
329 local remote=$1; shift
330
331 ip link add name $name type $type \
332 local $local remote $remote "$@"
333 ip link set dev $name up
334}
335
336tunnel_destroy()
337{
338 local name=$1; shift
339
340 ip link del dev $name
341}
342
Petr Machata0e7a5042018-05-24 16:27:26 +0200343vlan_create()
344{
345 local if_name=$1; shift
346 local vid=$1; shift
347 local vrf=$1; shift
348 local ips=("${@}")
349 local name=$if_name.$vid
350
351 ip link add name $name link $if_name type vlan id $vid
352 if [ "$vrf" != "" ]; then
353 ip link set dev $name master $vrf
354 fi
355 ip link set dev $name up
356 __addr_add_del $name add "${ips[@]}"
357}
358
359vlan_destroy()
360{
361 local if_name=$1; shift
362 local vid=$1; shift
363 local name=$if_name.$vid
364
365 ip link del dev $name
366}
367
Ido Schimmel73bae672018-02-28 12:25:06 +0200368master_name_get()
369{
370 local if_name=$1
371
372 ip -j link show dev $if_name | jq -r '.[]["master"]'
373}
374
Ido Schimmel3d578d82018-02-28 12:25:11 +0200375link_stats_tx_packets_get()
376{
377 local if_name=$1
378
379 ip -j -s link show dev $if_name | jq '.[]["stats64"]["tx"]["packets"]'
380}
381
Petr Machata7d4cbae2018-04-27 01:17:56 +0200382tc_rule_stats_get()
383{
384 local dev=$1; shift
385 local pref=$1; shift
386
387 tc -j -s filter show dev $dev ingress pref $pref |
388 jq '.[1].options.actions[].stats.packets'
389}
390
Jiri Pirko4e4272d2018-02-28 12:25:14 +0200391mac_get()
392{
393 local if_name=$1
394
395 ip -j link show dev $if_name | jq -r '.[]["address"]'
396}
397
Ido Schimmeld4deb012018-02-28 12:25:07 +0200398bridge_ageing_time_get()
399{
400 local bridge=$1
401 local ageing_time
402
403 # Need to divide by 100 to convert to seconds.
404 ageing_time=$(ip -j -d link show dev $bridge \
405 | jq '.[]["linkinfo"]["info_data"]["ageing_time"]')
406 echo $((ageing_time / 100))
407}
408
Petr Machataf5ae5772018-05-03 12:36:59 +0200409declare -A SYSCTL_ORIG
410sysctl_set()
411{
412 local key=$1; shift
413 local value=$1; shift
414
415 SYSCTL_ORIG[$key]=$(sysctl -n $key)
416 sysctl -qw $key=$value
417}
418
419sysctl_restore()
420{
421 local key=$1; shift
422
423 sysctl -qw $key=${SYSCTL_ORIG["$key"]}
424}
425
Ido Schimmel7b7bc872018-02-28 12:25:09 +0200426forwarding_enable()
427{
Petr Machatad51d10a2018-05-03 12:37:13 +0200428 sysctl_set net.ipv4.conf.all.forwarding 1
429 sysctl_set net.ipv6.conf.all.forwarding 1
Ido Schimmel7b7bc872018-02-28 12:25:09 +0200430}
431
432forwarding_restore()
433{
Petr Machatad51d10a2018-05-03 12:37:13 +0200434 sysctl_restore net.ipv6.conf.all.forwarding
435 sysctl_restore net.ipv4.conf.all.forwarding
Ido Schimmel7b7bc872018-02-28 12:25:09 +0200436}
437
Jiri Pirko2f19f212018-02-28 12:25:13 +0200438tc_offload_check()
439{
440 for i in $(eval echo {1..$NUM_NETIFS}); do
441 ethtool -k ${NETIFS[p$i]} \
442 | grep "hw-tc-offload: on" &> /dev/null
443 if [[ $? -ne 0 ]]; then
444 return 1
445 fi
446 done
447
448 return 0
449}
450
Petr Machata87c0c042018-05-24 16:27:35 +0200451trap_install()
Petr Machata7d4cbae2018-04-27 01:17:56 +0200452{
453 local dev=$1; shift
454 local direction=$1; shift
455
Petr Machata87c0c042018-05-24 16:27:35 +0200456 # For slow-path testing, we need to install a trap to get to
457 # slow path the packets that would otherwise be switched in HW.
458 tc filter add dev $dev $direction pref 1 flower skip_sw action trap
459}
460
461trap_uninstall()
462{
463 local dev=$1; shift
464 local direction=$1; shift
465
466 tc filter del dev $dev $direction pref 1 flower skip_sw
467}
468
469slow_path_trap_install()
470{
Petr Machata7d4cbae2018-04-27 01:17:56 +0200471 if [ "${tcflags/skip_hw}" != "$tcflags" ]; then
Petr Machata87c0c042018-05-24 16:27:35 +0200472 trap_install "$@"
Petr Machata7d4cbae2018-04-27 01:17:56 +0200473 fi
474}
475
476slow_path_trap_uninstall()
477{
Petr Machata7d4cbae2018-04-27 01:17:56 +0200478 if [ "${tcflags/skip_hw}" != "$tcflags" ]; then
Petr Machata87c0c042018-05-24 16:27:35 +0200479 trap_uninstall "$@"
Petr Machata7d4cbae2018-04-27 01:17:56 +0200480 fi
481}
482
483__icmp_capture_add_del()
484{
485 local add_del=$1; shift
486 local pref=$1; shift
487 local vsuf=$1; shift
488 local tundev=$1; shift
489 local filter=$1; shift
490
491 tc filter $add_del dev "$tundev" ingress \
492 proto ip$vsuf pref $pref \
493 flower ip_proto icmp$vsuf $filter \
494 action pass
495}
496
497icmp_capture_install()
498{
499 __icmp_capture_add_del add 100 "" "$@"
500}
501
502icmp_capture_uninstall()
503{
504 __icmp_capture_add_del del 100 "" "$@"
505}
506
507icmp6_capture_install()
508{
509 __icmp_capture_add_del add 100 v6 "$@"
510}
511
512icmp6_capture_uninstall()
513{
514 __icmp_capture_add_del del 100 v6 "$@"
515}
516
Petr Machata2004a9b2018-05-31 19:52:02 +0200517__vlan_capture_add_del()
518{
519 local add_del=$1; shift
520 local pref=$1; shift
521 local dev=$1; shift
522 local filter=$1; shift
523
524 tc filter $add_del dev "$dev" ingress \
525 proto 802.1q pref $pref \
526 flower $filter \
527 action pass
528}
529
530vlan_capture_install()
531{
532 __vlan_capture_add_del add 100 "$@"
533}
534
535vlan_capture_uninstall()
536{
537 __vlan_capture_add_del del 100 "$@"
538}
539
Petr Machata7d4cbae2018-04-27 01:17:56 +0200540matchall_sink_create()
541{
542 local dev=$1; shift
543
544 tc qdisc add dev $dev clsact
545 tc filter add dev $dev ingress \
546 pref 10000 \
547 matchall \
548 action drop
549}
550
Ido Schimmel0eb80532018-05-03 10:51:33 +0300551tests_run()
552{
553 local current_test
554
555 for current_test in ${TESTS:-$ALL_TESTS}; do
556 $current_test
557 done
558}
559
Petr Machatab2c47872018-06-26 02:06:06 +0200560multipath_eval()
561{
562 local desc="$1"
563 local weight_rp12=$2
564 local weight_rp13=$3
565 local packets_rp12=$4
566 local packets_rp13=$5
567 local weights_ratio packets_ratio diff
568
569 RET=0
570
571 if [[ "$packets_rp12" -eq "0" || "$packets_rp13" -eq "0" ]]; then
572 check_err 1 "Packet difference is 0"
573 log_test "Multipath"
574 log_info "Expected ratio $weights_ratio"
575 return
576 fi
577
578 if [[ "$weight_rp12" -gt "$weight_rp13" ]]; then
579 weights_ratio=$(echo "scale=2; $weight_rp12 / $weight_rp13" \
580 | bc -l)
581 packets_ratio=$(echo "scale=2; $packets_rp12 / $packets_rp13" \
582 | bc -l)
583 else
584 weights_ratio=$(echo "scale=2; $weight_rp13 / $weight_rp12" | \
585 bc -l)
586 packets_ratio=$(echo "scale=2; $packets_rp13 / $packets_rp12" | \
587 bc -l)
588 fi
589
590 diff=$(echo $weights_ratio - $packets_ratio | bc -l)
591 diff=${diff#-}
592
593 test "$(echo "$diff / $weights_ratio > 0.15" | bc -l)" -eq 0
594 check_err $? "Too large discrepancy between expected and measured ratios"
595 log_test "$desc"
596 log_info "Expected ratio $weights_ratio Measured ratio $packets_ratio"
597}
598
Ido Schimmel73bae672018-02-28 12:25:06 +0200599##############################################################################
600# Tests
601
602ping_test()
603{
604 local if_name=$1
605 local dip=$2
606 local vrf_name
607
608 RET=0
609
610 vrf_name=$(master_name_get $if_name)
611 ip vrf exec $vrf_name $PING $dip -c 10 -i 0.1 -w 2 &> /dev/null
612 check_err $?
613 log_test "ping"
614}
615
616ping6_test()
617{
618 local if_name=$1
619 local dip=$2
620 local vrf_name
621
622 RET=0
623
624 vrf_name=$(master_name_get $if_name)
625 ip vrf exec $vrf_name $PING6 $dip -c 10 -i 0.1 -w 2 &> /dev/null
626 check_err $?
627 log_test "ping6"
628}
Ido Schimmeld4deb012018-02-28 12:25:07 +0200629
630learning_test()
631{
632 local bridge=$1
633 local br_port1=$2 # Connected to `host1_if`.
634 local host1_if=$3
635 local host2_if=$4
636 local mac=de:ad:be:ef:13:37
637 local ageing_time
638
639 RET=0
640
641 bridge -j fdb show br $bridge brport $br_port1 \
642 | jq -e ".[] | select(.mac == \"$mac\")" &> /dev/null
643 check_fail $? "Found FDB record when should not"
644
645 # Disable unknown unicast flooding on `br_port1` to make sure
646 # packets are only forwarded through the port after a matching
647 # FDB entry was installed.
648 bridge link set dev $br_port1 flood off
649
650 tc qdisc add dev $host1_if ingress
651 tc filter add dev $host1_if ingress protocol ip pref 1 handle 101 \
652 flower dst_mac $mac action drop
653
654 $MZ $host2_if -c 1 -p 64 -b $mac -t ip -q
655 sleep 1
656
657 tc -j -s filter show dev $host1_if ingress \
658 | jq -e ".[] | select(.options.handle == 101) \
659 | select(.options.actions[0].stats.packets == 1)" &> /dev/null
660 check_fail $? "Packet reached second host when should not"
661
662 $MZ $host1_if -c 1 -p 64 -a $mac -t ip -q
663 sleep 1
664
665 bridge -j fdb show br $bridge brport $br_port1 \
666 | jq -e ".[] | select(.mac == \"$mac\")" &> /dev/null
667 check_err $? "Did not find FDB record when should"
668
669 $MZ $host2_if -c 1 -p 64 -b $mac -t ip -q
670 sleep 1
671
672 tc -j -s filter show dev $host1_if ingress \
673 | jq -e ".[] | select(.options.handle == 101) \
674 | select(.options.actions[0].stats.packets == 1)" &> /dev/null
675 check_err $? "Packet did not reach second host when should"
676
677 # Wait for 10 seconds after the ageing time to make sure FDB
678 # record was aged-out.
679 ageing_time=$(bridge_ageing_time_get $bridge)
680 sleep $((ageing_time + 10))
681
682 bridge -j fdb show br $bridge brport $br_port1 \
683 | jq -e ".[] | select(.mac == \"$mac\")" &> /dev/null
684 check_fail $? "Found FDB record when should not"
685
686 bridge link set dev $br_port1 learning off
687
688 $MZ $host1_if -c 1 -p 64 -a $mac -t ip -q
689 sleep 1
690
691 bridge -j fdb show br $bridge brport $br_port1 \
692 | jq -e ".[] | select(.mac == \"$mac\")" &> /dev/null
693 check_fail $? "Found FDB record when should not"
694
695 bridge link set dev $br_port1 learning on
696
697 tc filter del dev $host1_if ingress protocol ip pref 1 handle 101 flower
698 tc qdisc del dev $host1_if ingress
699
700 bridge link set dev $br_port1 flood on
701
702 log_test "FDB learning"
703}
Ido Schimmel236dd502018-02-28 12:25:08 +0200704
705flood_test_do()
706{
707 local should_flood=$1
708 local mac=$2
709 local ip=$3
710 local host1_if=$4
711 local host2_if=$5
712 local err=0
713
714 # Add an ACL on `host2_if` which will tell us whether the packet
715 # was flooded to it or not.
716 tc qdisc add dev $host2_if ingress
717 tc filter add dev $host2_if ingress protocol ip pref 1 handle 101 \
718 flower dst_mac $mac action drop
719
720 $MZ $host1_if -c 1 -p 64 -b $mac -B $ip -t ip -q
721 sleep 1
722
723 tc -j -s filter show dev $host2_if ingress \
724 | jq -e ".[] | select(.options.handle == 101) \
725 | select(.options.actions[0].stats.packets == 1)" &> /dev/null
726 if [[ $? -ne 0 && $should_flood == "true" || \
727 $? -eq 0 && $should_flood == "false" ]]; then
728 err=1
729 fi
730
731 tc filter del dev $host2_if ingress protocol ip pref 1 handle 101 flower
732 tc qdisc del dev $host2_if ingress
733
734 return $err
735}
736
737flood_unicast_test()
738{
739 local br_port=$1
740 local host1_if=$2
741 local host2_if=$3
742 local mac=de:ad:be:ef:13:37
743 local ip=192.0.2.100
744
745 RET=0
746
747 bridge link set dev $br_port flood off
748
749 flood_test_do false $mac $ip $host1_if $host2_if
750 check_err $? "Packet flooded when should not"
751
752 bridge link set dev $br_port flood on
753
754 flood_test_do true $mac $ip $host1_if $host2_if
755 check_err $? "Packet was not flooded when should"
756
757 log_test "Unknown unicast flood"
758}
759
760flood_multicast_test()
761{
762 local br_port=$1
763 local host1_if=$2
764 local host2_if=$3
765 local mac=01:00:5e:00:00:01
766 local ip=239.0.0.1
767
768 RET=0
769
770 bridge link set dev $br_port mcast_flood off
771
772 flood_test_do false $mac $ip $host1_if $host2_if
773 check_err $? "Packet flooded when should not"
774
775 bridge link set dev $br_port mcast_flood on
776
777 flood_test_do true $mac $ip $host1_if $host2_if
778 check_err $? "Packet was not flooded when should"
779
780 log_test "Unregistered multicast flood"
781}
782
783flood_test()
784{
785 # `br_port` is connected to `host2_if`
786 local br_port=$1
787 local host1_if=$2
788 local host2_if=$3
789
790 flood_unicast_test $br_port $host1_if $host2_if
791 flood_multicast_test $br_port $host1_if $host2_if
792}