Connect vif's to already running VMs on NetVM/ProxyVM startup (#190)

Also cleanup stale vifs using "xm network-detach ... -f"
Fix iptables rules to support not only first vif of VM
This commit is contained in:
Marek Marczykowski 2011-04-23 02:32:54 +02:00
parent 59da079f22
commit 638473a364

View File

@ -5,7 +5,8 @@ netmask=`/usr/bin/xenstore-read qubes_netmask`
gateway=`/usr/bin/xenstore-read qubes_gateway`
secondary_dns=`/usr/bin/xenstore-read qubes_secondary_dns`
if [ x$ip != x ]; then
/sbin/ifconfig $INTERFACE $ip netmask 255.255.255.255 up
/sbin/ifconfig $INTERFACE $ip netmask 255.255.255.255
/sbin/ifconfig $INTERFACE up
/sbin/route add default dev $INTERFACE
echo "nameserver $gateway" > /etc/resolv.conf
echo "nameserver $secondary_dns" >> /etc/resolv.conf