Update invirt-vnc-server and invirt-xen-config to accept the Xen 3.3
[invirt/packages/invirt-xen-config.git] / vif-invirtroute
index e5b96bd..2b3a88d 100755 (executable)
@@ -40,7 +40,9 @@ case "$command" in
         ifconfig ${dev} ${main_ip} netmask 255.255.255.255 up
         echo 1 >/proc/sys/net/ipv4/conf/${dev}/proxy_arp
        echo 1 >/proc/sys/net/ipv4/conf/${dev}/rp_filter 
-        ethtool -K ${dev} tx off
+        if [ x${qemu_online} != xyes ]; then
+          ethtool -K ${dev} tx off
+        fi
         ipcmd='add'
         cmdprefix=''
         ;;
@@ -63,7 +65,7 @@ if [  ${vif_type} != "ioemu"  -o  x${qemu_online} = xyes ] ; then
     # the guest using those addresses.
        for addr in ${ip} ; do
            ${cmdprefix} ip route ${ipcmd} ${addr} dev ${dev} src ${main_ip}
-           arpspoof -i eth2 -t 18.181.0.1 ${addr}&
+           arpspoof -i $(invirt-getconf xen.network.iface) -t 18.181.0.1 ${addr}&
            sleep 5
            kill %arpspoof
        done