Difference between revisions of "Special:Badtitle/NS1198:Virtual Ethernet device/57/en"
(Importing a new version from external source) |
(No difference)
|
Latest revision as of 05:27, 24 September 2016
- Configure veth with IP after VPS has started
{
IP=X.Y.Z.T
DEV=veth101.0
while sleep 1; do
/sbin/ifconfig $DEV 0 >/dev/null 2>&1
if [ $? -eq 0 ]; then
/sbin/ip route add $IP dev $DEV
break
fi
done
} &