Advertisement
Guest User

HV

a guest
Feb 24th, 2018
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. source /etc/network/interfaces.d/*
  2.  
  3. # The loopback network interface
  4. auto lo
  5. iface lo inet loopback
  6.  
  7. # The primary network interface
  8. #allow-hotplug eth0
  9. #iface eth0 inet dhcp
  10.  
  11.  
  12.  
  13.  
  14. #new internet way
  15. auto eth4
  16. iface eth4 inet manual
  17.  
  18. auto br0
  19. iface br0 inet static
  20. address 192.168.0.10
  21. netmask 255.255.255.0
  22. gateway 192.168.0.1
  23. bridge_ports eth4
  24. bridge_stp off
  25. #nfs
  26. auto eth5
  27. iface eth5 inet static
  28. address 193.168.0.3
  29. netmask 255.255.255.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement