[lib][minip] add a mechanism to wait for the stack to be configured

Configured in this case means an ip address assigned and a nic
installed.
This commit is contained in:
Travis Geiselbrecht
2021-05-28 17:06:00 -07:00
committed by Travis Geiselbrecht
parent 9caf62273c
commit fe28bd8a95
13 changed files with 152 additions and 66 deletions

11
docs/lk_tap.txt Normal file
View File

@@ -0,0 +1,11 @@
# Setting up a tun/tap network for qemu
sudo ip tuntap add mode tap user $USER name qemu0
sudo ip link set qemu0 up
# manually making bridge
sudo brctl addbr br0
sudo brctl addif br0 qemu0
sudo brctl addif br0 <physical nic>
sudo ip link set br0 up
# alternatively using the network config to create the bridge and merge it with particular vlan