-
Notifications
You must be signed in to change notification settings - Fork 13
/
test-ct-icmp-frag.sh
executable file
·86 lines (65 loc) · 2.07 KB
/
test-ct-icmp-frag.sh
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/bash
#
# Test CT fwd with icmp traffic over MTU
#
# Bug SW #1774992: [CT] frag packets not passing with ct rules
my_dir="$(dirname "$0")"
. $my_dir/common.sh
require_module act_ct
IP1="7.7.7.1"
IP2="7.7.7.2"
enable_switchdev
require_interfaces REP REP2
unbind_vfs
bind_vfs
reset_tc $REP
reset_tc $REP2
mac1=`cat /sys/class/net/$VF/address`
mac2=`cat /sys/class/net/$VF2/address`
test "$mac1" || fail "no mac1"
test "$mac2" || fail "no mac2"
function cleanup() {
ip netns del ns0 2> /dev/null
ip netns del ns1 2> /dev/null
reset_tc $REP
reset_tc $REP2
}
trap cleanup EXIT
function run() {
title "Test CT ICMP"
config_vf ns0 $VF $REP $IP1
config_vf ns1 $VF2 $REP2 $IP2
echo "add arp rules"
tc_filter add dev $REP ingress protocol arp prio 1 flower \
action mirred egress redirect dev $REP2
tc_filter add dev $REP2 ingress protocol arp prio 1 flower \
action mirred egress redirect dev $REP
echo "add ct rules"
tc_filter add dev $REP ingress protocol ip prio 2 flower \
dst_mac $mac2 ct_state -trk \
action ct action goto chain 1
tc_filter add dev $REP ingress protocol ip chain 1 prio 2 flower \
dst_mac $mac2 ct_state +trk+new \
action ct commit \
action mirred egress redirect dev $REP2
tc_filter add dev $REP ingress protocol ip chain 1 prio 2 flower \
dst_mac $mac2 ct_state +trk+est \
action mirred egress redirect dev $REP2
# chain0,ct -> chain1,fwd
tc_filter add dev $REP2 ingress protocol ip prio 2 flower \
dst_mac $mac1 \
action ct action goto chain 1
tc_filter add dev $REP2 ingress protocol ip prio 2 chain 1 flower \
dst_mac $mac1 ct_state +trk+est \
action mirred egress redirect dev $REP
fail_if_err
echo $REP
tc filter show dev $REP ingress
echo $REP2
tc filter show dev $REP2 ingress
echo "run traffic"
ip netns exec ns0 ping -q -c 10 -i 0.1 -w 2 $IP2 -s 2000 || err "Ping failed"
# currently we dont support support offload of ct icmp so dont check offload.
}
run
test_done