Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 KB | None | 0 0
  1. auto lo
  2. iface lo inet loopback
  3.  
  4. allow-hotplug eth0
  5. auto xenbr0
  6. iface xenbr0 inet static
  7.     address 192.168.1.200
  8.     network 192.168.1.0
  9.     netmask 255.255.255.0
  10.     broadcast 192.168.1.255
  11.     gateway 192.168.1.1
  12.     hwaddress 64:51:06:d8:59:3c
  13.     bridge_ports eth0
  14.     # Algunas opciones útiles si estamos virtualizando máquinas
  15.         bridge_stp off       # disable Spanning Tree Protocol
  16.         bridge_waitport 0    # no delay before a port becomes available
  17.         bridge_fd 0          # no forwarding delay
  18.         bridge_ports none    # if you do not want to bind to any ports
  19.         bridge_ports regex eth* # use a regular expression to define ports
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement