diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-07-07 16:39:09 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-07-14 01:31:28 +0200 |
commit | 4d777144fd214bf67153f1dfa8e1e7b52b44ae35 (patch) | |
tree | 498591cd5c7d874d5593f758370df25943ef33a9 /test/two_guests | |
parent | 27aec5911a8fd00068c6db8f1a73d61903488b0c (diff) | |
download | passt-4d777144fd214bf67153f1dfa8e1e7b52b44ae35.tar passt-4d777144fd214bf67153f1dfa8e1e7b52b44ae35.tar.gz passt-4d777144fd214bf67153f1dfa8e1e7b52b44ae35.tar.bz2 passt-4d777144fd214bf67153f1dfa8e1e7b52b44ae35.tar.lz passt-4d777144fd214bf67153f1dfa8e1e7b52b44ae35.tar.xz passt-4d777144fd214bf67153f1dfa8e1e7b52b44ae35.tar.zst passt-4d777144fd214bf67153f1dfa8e1e7b52b44ae35.zip |
test: Embed script for dhclient(8) in mbuto(1) profile
David reports that dhclient-script(8) on Fedora needs a number of
binaries that are not included in PROGS of the current mbuto profile,
and we would also need to include hostnamectl(1) there, which will
fail without a systemd init.
Embed a minimal script for dhclient(8) in the profile itself, written
to /sbin/dhclient-script at boot, to just check what we need to check
out of DHCP and DHCPv6 functionality.
While at it, drop busybox and logger from PROGS, as we don't need them,
and add hostname(1). While DHCP option 12 isn't supported yet by the
DHCP implementation in passt, we should probably add it soon.
Note: owing to the simplicity of this script, we now need to bring up
the interface before starting dhclient: add this in test scripts where
it's not the case yet.
Reported-by: David Gibson <david@gibson.dropbear.id.au>
Suggested-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
note that we need to bring up the interface before starting dhclient
Diffstat (limited to 'test/two_guests')
-rw-r--r-- | test/two_guests/basic | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/two_guests/basic b/test/two_guests/basic index afe104b..850a27b 100644 --- a/test/two_guests/basic +++ b/test/two_guests/basic @@ -23,8 +23,10 @@ check [ -n "__IFNAME1__" ] check [ -n "__IFNAME2__" ] test DHCP: addresses +guest1 ip link set dev __IFNAME1__ up guest1 /sbin/dhclient -4 __IFNAME1__ -guest2 /sbin/dhclient -4 __IFNAME1__ +guest2 ip link set dev __IFNAME2__ up +guest2 /sbin/dhclient -4 __IFNAME2__ g1out ADDR1 ip -j -4 addr show|jq -rM '.[] | select(.ifname == "__IFNAME1__").addr_info[0].local' g2out ADDR2 ip -j -4 addr show|jq -rM '.[] | select(.ifname == "__IFNAME2__").addr_info[0].local' hout HOST_ADDR ip -j -4 addr show|jq -rM '.[] | select(.ifname == "__HOST_IFNAME__").addr_info[0].local' @@ -35,7 +37,7 @@ test DHCPv6: addresses # Link is up now, wait for DAD to complete sleep 2 guest1 /sbin/dhclient -6 __IFNAME1__ -guest2 /sbin/dhclient -6 __IFNAME1__ +guest2 /sbin/dhclient -6 __IFNAME2__ g1out ADDR1_6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__IFNAME1__").addr_info[] | select(.prefixlen == 128).local' g2out ADDR2_6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__IFNAME2__").addr_info[] | select(.prefixlen == 128).local' hout HOST_ADDR6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__HOST_IFNAME__").addr_info[] | select(.scope == "global").local' |