Changeset 2971 for package_branches/invirt-xen-config/hvirt
- Timestamp:
- Jan 31, 2010, 6:35:39 PM (15 years ago)
- Location:
- package_branches/invirt-xen-config/hvirt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
package_branches/invirt-xen-config/hvirt
- Property svn:mergeinfo changed
/trunk/packages/invirt-xen-config merged: 2857,2859-2860
- Property svn:mergeinfo changed
-
package_branches/invirt-xen-config/hvirt/debian/changelog
r2831 r2971 1 invirt-xen-config (0.0.27hvirt4) unstable; urgency=low 2 3 * Changed another xen.network -> xen 4 5 -- Greg Brockman <gdb@mit.edu> Sun, 31 Jan 2010 18:32:59 -0500 6 7 invirt-xen-config (0.0.27hvirt3) unstable; urgency=low 8 9 * Merged further updates to pkg version 0.0.27 into hvirt branch 10 11 -- Greg Brockman <gdb@mit.edu> Fri, 01 Jan 2010 18:38:50 -0500 12 13 invirt-xen-config (0.0.27hvirt2) unstable; urgency=low 14 15 * Merged updates to pkg version 0.0.27 into hvirt branch 16 17 -- Greg Brockman <gdb@mit.edu> Fri, 01 Jan 2010 18:38:50 -0500 18 1 19 invirt-xen-config (0.0.27hvirt1) unstable; urgency=low 2 20 … … 13 31 * Don't try to start sysvms in the invirt-xen-config init script. The 14 32 code has never been reliable. 15 16 -- Evan Broder <broder@mit.edu> Fri, 01 Jan 2010 17:58:57 -0600 17 33 * Don't create iptables rules in vif-invirtroute - they don't do anything. 34 * For simplicity, and because we've never used it, tear the IPv6 35 "support" out of vif-invirtroute. 36 37 [ Quentin Smith ] 38 * Increase dom0's weight to improve IO performance. 39 40 -- Evan Broder <broder@mit.edu> Sun, 03 Jan 2010 14:37:34 -0600 41 18 42 invirt-xen-config (0.0.26hvirt1) unstable; urgency=low 19 43 -
package_branches/invirt-xen-config/hvirt/debian/invirt-xen-config.init
r2831 r2971 35 35 do_start() { 36 36 do_startup "start" 37 xm sched-credit -d 0 -w 512 37 38 } 38 39 -
package_branches/invirt-xen-config/hvirt/vif-invirtroute
r2055 r2971 1 1 #!/bin/bash 2 3 4 5 6 2 7 3 #============================================================================ … … 23 19 # ip list of IP networks for the vif, space-separated (default given in 24 20 # this script). 25 # V6PREFIX prefix of v6 address to use 26 # Note that the v6 support is kind of broken because there's not really a way to populate the v6 prefix 21 # 27 22 # This script will set up proxy arp for any ip addresses that are being routed 28 23 # type read to determine if the device is ioemu … … 49 44 offline) 50 45 do_without_error ifdown ${vif} 51 if [ -f /var/run/radvd/radvd.pid.${vif} ] ; then52 do_without_error kill `cat /var/run/radvd/radvd.pid.${vif}`53 fi54 46 ipcmd='del' 55 47 cmdprefix='do_without_error' … … 57 49 esac 58 50 59 v6prefix=${v6prefix:-}60 v6prefix=$(xenstore_read_default "$XENBUS_PATH/v6prefix" "$v6prefix")61 51 vif_type=$(xenstore_read_default "$XENBUS_PATH/type" "viffront") 62 52 if [ ${vif_type} != "ioemu" -o x${qemu_online} = xyes ] ; then … … 66 56 for addr in ${ip} ; do 67 57 ${cmdprefix} ip route ${ipcmd} ${addr} dev ${dev} src ${main_ip} 68 arpspoof -i $(invirt-getconf xen. network.iface) -t 18.181.0.1 ${addr}&58 arpspoof -i $(invirt-getconf xen.iface) -t 18.181.0.1 ${addr}& 69 59 sleep 5 70 60 kill %arpspoof 71 61 done 72 62 fi 73 74 if [ x${v6prefix} != x ] ; then75 sed -e "s/@interface@/${dev}/" -e "s+@prefix@+${v6prefix}+" /etc/xen/radvd.conf.template >/var/run/radvd.conf.${vif}76 ${cmdprefix} ip -6 addr ${ipcmd} fe80::/64 scope link dev ${dev}77 if [ $1 = online ] ; then78 radvd -u radvd -C /var/run/radvd.conf.${vif} -p /var/run/radvd/radvd.pid.${vif}79 fi80 ${cmdprefix} ip -6 route ${ipcmd} ${v6prefix} dev ${dev}81 fi82 63 fi 83 84 handle_iptable85 64 86 65 log debug "Successful vif-route $command for $vif."
Note: See TracChangeset
for help on using the changeset viewer.