diff options
author | Mathieu Xhonneux <m.xhonneux@gmail.com> | 2018-08-01 11:34:54 -0400 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2018-08-03 04:19:33 -0400 |
commit | 8c85cbdf371f9ddf256ecc5d9548b26ee8fcfe2f (patch) | |
tree | 05fab09b79e184a8290273a0c848f1e6b1871300 /tools | |
parent | 2d55d614fcf58187e2937dba11643b9471cd64d7 (diff) |
selftests/bpf: update test_lwt_seg6local.sh according to iproute2
The shell file for test_lwt_seg6local contains an early iproute2 syntax
for installing a seg6local End.BPF route. iproute2 support for this
feature has recently been upstreamed, but with an additional keyword
required. This patch updates test_lwt_seg6local.sh to the definitive
iproute2 syntax
Signed-off-by: Mathieu Xhonneux <m.xhonneux@gmail.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/selftests/bpf/test_lwt_seg6local.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/testing/selftests/bpf/test_lwt_seg6local.sh b/tools/testing/selftests/bpf/test_lwt_seg6local.sh index 270fa8f49573..785eabf2a593 100755 --- a/tools/testing/selftests/bpf/test_lwt_seg6local.sh +++ b/tools/testing/selftests/bpf/test_lwt_seg6local.sh | |||
@@ -115,14 +115,14 @@ ip netns exec ns2 ip -6 route add fb00::6 encap bpf in obj test_lwt_seg6local.o | |||
115 | ip netns exec ns2 ip -6 route add fd00::1 dev veth3 via fb00::43 scope link | 115 | ip netns exec ns2 ip -6 route add fd00::1 dev veth3 via fb00::43 scope link |
116 | 116 | ||
117 | ip netns exec ns3 ip -6 route add fc42::1 dev veth5 via fb00::65 | 117 | ip netns exec ns3 ip -6 route add fc42::1 dev veth5 via fb00::65 |
118 | ip netns exec ns3 ip -6 route add fd00::1 encap seg6local action End.BPF obj test_lwt_seg6local.o sec add_egr_x dev veth4 | 118 | ip netns exec ns3 ip -6 route add fd00::1 encap seg6local action End.BPF endpoint obj test_lwt_seg6local.o sec add_egr_x dev veth4 |
119 | 119 | ||
120 | ip netns exec ns4 ip -6 route add fd00::2 encap seg6local action End.BPF obj test_lwt_seg6local.o sec pop_egr dev veth6 | 120 | ip netns exec ns4 ip -6 route add fd00::2 encap seg6local action End.BPF endpoint obj test_lwt_seg6local.o sec pop_egr dev veth6 |
121 | ip netns exec ns4 ip -6 addr add fc42::1 dev lo | 121 | ip netns exec ns4 ip -6 addr add fc42::1 dev lo |
122 | ip netns exec ns4 ip -6 route add fd00::3 dev veth7 via fb00::87 | 122 | ip netns exec ns4 ip -6 route add fd00::3 dev veth7 via fb00::87 |
123 | 123 | ||
124 | ip netns exec ns5 ip -6 route add fd00::4 table 117 dev veth9 via fb00::109 | 124 | ip netns exec ns5 ip -6 route add fd00::4 table 117 dev veth9 via fb00::109 |
125 | ip netns exec ns5 ip -6 route add fd00::3 encap seg6local action End.BPF obj test_lwt_seg6local.o sec inspect_t dev veth8 | 125 | ip netns exec ns5 ip -6 route add fd00::3 encap seg6local action End.BPF endpoint obj test_lwt_seg6local.o sec inspect_t dev veth8 |
126 | 126 | ||
127 | ip netns exec ns6 ip -6 addr add fb00::6/16 dev lo | 127 | ip netns exec ns6 ip -6 addr add fb00::6/16 dev lo |
128 | ip netns exec ns6 ip -6 addr add fd00::4/16 dev lo | 128 | ip netns exec ns6 ip -6 addr add fd00::4/16 dev lo |