Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # The primary network interface
  2. # configured through DHCP
  3. allow-hotplug eth0
  4. iface eth0 inet dhcp
  5.  
  6. # The second network interface
  7. # configured in static mode
  8. allow-hotplug eth1
  9. iface eth1 inet static
  10. address 192.168.100.69
  11. network 192.168.100.0
  12. netmask 255.255.255.0
  13. broadcast 192.168.100.255
  14. gateway 192.168.100.254
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement