search for: ipcmd

Displaying 4 results from an estimated 4 matches for "ipcmd".

Did you mean: iocmd
2007 Sep 11
2
Bug#441249: Bug#441249: xen-hypervisor-3.0.3-1-i386-pae: "Problems using XEN when Quagga is running"
Hi, > Can you manually do on the xen interfaces what the scripts would? How about > doing it on some other interface configured in a similar way? Toying with the vif-route script, I might have found a workaround for this issue. If I disable the ifconfig and ip route commands from vif-route script, and bring up vif interface by hand later on, everything seems to work. In other works,
2009 Jun 23
3
vif-route script not getting domU-IP (vif-IP)
...ty. So no value will be available, therefore the script can''t work. if [ "${ip}" ] ; then # If we''ve been given a list of IP addresses, then add routes from dom0 to # the guest using those addresses. for addr in ${ip} ; do ${cmdprefix} ip route ${ipcmd} ${addr} dev ${vif} src ${main_ip} done fi Has sombody faced the same problems ? Cheers, Maik _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2012 Dec 24
3
vif-route issue with HVM domU only
...actual error shows in xen-hotplug.log as follows: Command "188.40.175.7" is unknown, try "ip route help". Command "188.40.175.7" is unknown, try "ip route help". With some debugging it seems like it''s actually passing in the IP address, but not a $ipcmd telling either add or remove: + echo remove type_if=tap ++ dom0_ip ++ local nd=eth0 +++ ip_of eth0 +++ ip -4 -o addr show primary dev eth0 +++ awk ''$3 == "inet" {split($4,i,"/"); print i[1]; exit}'' ++ local result=188.40.114.136 ++ ''['' -z 188....
2011 Mar 12
0
libvirt/kvm/qemu: pointopoint routed setup?
...ointopoint config to the host machine, on a private interface - thus the virtual machines can only talk to the host, which routes them and can use normal iptables for filtering all traffic. with xen this was a simple script doing ifconfig ${vif} ${main_ip} netmask 255.255.255.255 up ip route ${ipcmd} ${addr} dev ${vif} src ${main_ip} and an optional echo 1 >/proc/sys/net/ipv4/conf/${vif}/proxy_arp has someone implemented something like this with libvirt/kvm setup? can you give some pointers how to do this? I don't need high speed communication between the virtual machines, and the o...