Child pages
  • Xen

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

            LAN
             |
 +-----------+---------+
 |           |         |
| eth0 |
| | |  | +---------+-------+ | | | | | |
| | dummy | |
| | | | | | xenbr0 | | | | | | | | vif0.0 vif1.0 | | | | | | | | | +---+---------+---+ | | | | | | +---+---+ +---+---+ | | | | | | | | | | | eth0 | | eth0 | | | | | | | | | | DomU0 | | DomU1 | |
| +-------+ +-------+ | +---------------------+

/etc/network/interfaces example for single MAC address on the LAN.  The DomUs are configured to use 192.168.42.100 as default gateway:

...
# Configure netfilter
pre-up iptables-restore < /etc/iptables.conf
...
# dummy0
auto dummy0
iface dummy0 inet manual
 
# xenbr0
auto xenbr0
iface xenbr0 inet static
    bridge_ports dummy0
    address 192.168.42.100
    broadcast 192.168.42.255
    netmask 255.255.255.0
    bridge_stp off       # Disable Spanning Tree Protocol
    bridge_waitport 0    # No delay before a port becomes available
    bridge_fd 0          # No forwarding delay

Bridge references

...

File or directoryUsageNotes
/etc/default/xenToolstack selection 
/etc/default/xend  
/etc/default/xendomainsDomain startup and shutdown config 
/etc/xen/​ConfigurationConfiguration 
/etc/xen/*.cfgIndividual DomU configs 
/etc/xen/scripts/Scripts (smile) and scrippetsAs installed, all bash scripts.  More: Xen scripts
/etc/xen/xend-config.sxpxend daemon (and xen-tools) configuration 
/etc/xen/xlxl defaults config 
/proc/xen/xen-kernel information 
/var/lib/libvirt/imagesFile-based images 
/var/lib/xen/dump/Guest core dumps 
/var/log/xenLogs 

...