[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:
committed by
Travis Geiselbrecht
parent
9caf62273c
commit
fe28bd8a95
11
docs/lk_tap.txt
Normal file
11
docs/lk_tap.txt
Normal 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
|
||||
Reference in New Issue
Block a user