by Nicholas Sano
(network-script network-bridge) (vif-script vif-bridge) *Make sure it looks like this*
# iptables "$c" FORWARD -m physdev --physdev-in "$vif" "$@" -j ACCEPT \ iptables "$c" FORWARD -m physdev --physdev-is-bridged --physdev-in "$vif" "$@" -j ACCEPT \ 2>/dev/null && iptables "$c" FORWARD -m state --state RELATED,ESTABLISHED -m physdev \ --physdev-is-bridged --physdev-out "$vif" -j ACCEPT 2>/dev/null # --physdev-out "$vif" -j ACCEPT 2>/dev/null *make sure it looks like this*
# # /etc/xen-tools/xen-tools.conf #
## ## Virtual Machine configuration ## dir = /xen install-method = debootstrap
## ## Disk and Sizing options ## size = 2Gb # Disk image size. memory = 128Mb # Memory size swap = 128Mb # Swap size fs = ext3 # use the EXT3 filesystem for the disk image. dist = squeeze # Default distribution to install. images = full
## ## Network configuration ## dhcp = 1 gateway = 10.80.2.1 netmask = 255.255.255.0
## ## Password configuration ## passwd = 1
## ## Package Mirror configuration ## arch = amd64 mirror = http://mirror/debian/ mirror_squeeze = http://mirror/debian/
## ## Filesystem settings ## ext3_options = noatime,nodiratime,errors=remount-ro ext2_options = noatime,nodiratime,errors=remount-ro xfs_options = defaults reiser_options = defaults
## ## Xen VM boot settings ## pygrub = 1
## ## Xen VM settings ## serial_device = hvc0 disk_device = xvda
## ## Xen configuration files ## output = /xen/conf extension = .cfg *make sure it looks like this*