7169f57ac5a2984eda70bec31f43c5fe5e46c149 blob 1578 bytes (raw)
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
| | # SPDX-License-Identifier: GPL-2.0-or-later
#
# PASST - Plug A Simple Socket Transport
# for qemu/UNIX domain socket mode
#
# PASTA - Pack A Subtle Tap Abstraction
# for network namespace/tap device mode
#
# test/pasta/ndp - Check DHCP and DHCPv6 functionality in pasta mode
#
# Copyright (c) 2021 Red Hat GmbH
# Author: Stefano Brivio <sbrivio@redhat.com>
nstools ip jq sipcalc grep cut
htools ip jq sipcalc grep cut
test Interface name
nsout IFNAME ip -j link show | jq -rM '.[] | select(.link_type == "ether").ifname'
check [ -n "__IFNAME__" ]
ns ip link set dev __IFNAME__ up
# Wait for global IPv6 address to appear (via --config-net or SLAAC)
ns while ! ip -j -6 addr show dev __IFNAME__ | jq -e '.[].addr_info[] | select(.scope == "global")'; do sleep 0.1; done
test SLAAC: prefix
nsout ADDR6 ip -j -6 addr show|jq -rM '[.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.scope == "global") | .local + "/" + (.prefixlen | tostring)] | .[0]'
nsout PREFIX6 sipcalc __ADDR6__ | grep prefix | cut -d' ' -f4
hout HOST_ADDR6 ip -j -6 addr show|jq -rM ['.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.scope != "host" and .scope != "link" and .deprecated != true).local]| join("/64 ")'
hout HOST_PREFIX6 sipcalc __HOST_ADDR6__/64 | grep prefix | cut -d' ' -f4 | tr '\n' ' '
check echo "__HOST_PREFIX6__" | grep -wq "__PREFIX6__"
test SLAAC: route
nsout GW6 ip -j -6 route show|jq -rM '.[] | select(.dst == "default").gateway'
hout HOST_GW6 ip -j -6 route show|jq -rM '[.[] | select(.dst == "default").gateway] | .[0]'
check [ __GW6__ = __HOST_GW6__ ]
|
debug log:
solving 7169f57a ...
found 7169f57a in https://archives.passt.top/passt-dev/20260621012832.2007946-1-jmaloy@redhat.com/
found 1d385c73 in https://passt.top/passt
preparing index
index prepared:
100644 1d385c73b212e473b63968c1acbf11c5c9b9f942 test/pasta/ndp
applying [1/1] https://archives.passt.top/passt-dev/20260621012832.2007946-1-jmaloy@redhat.com/
diff --git a/test/pasta/ndp b/test/pasta/ndp
index 1d385c73..7169f57a 100644
Checking patch test/pasta/ndp...
Applied patch test/pasta/ndp cleanly.
index at:
100644 7169f57ac5a2984eda70bec31f43c5fe5e46c149 test/pasta/ndp
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).