PXE interfaces
  1. # This file describes the network interfaces available on your system
  2. # and how to activate them. For more information, see interfaces(5).
  3.  
  4. # The loopback network interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. # lan - input
  9. auto eth0
  10. allow-hotplug eth0
  11. iface eth0 inet dhcp
  12.  
  13. # pxe - output
  14. auto eth1
  15. allow-hotplug eth1
  16. iface eth1 inet static
  17. network 192.168.1.0
  18. address 192.168.1.1
  19. netmask 255.255.255.0
  20. broadcast 192.168.1.255
Parsed in 0.002 seconds