Advertisement
Guest User

interfaces

a guest
Mar 2nd, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  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. auto eth0
  9. iface eth0 inet dhcp
  10. iface eth0 inet6 auto
  11.  
  12. auto eth1
  13. iface eth1 inet static
  14. address 192.168.100.1
  15. netmask 255.255.255.0
  16. network 192.168.100.1
  17. broadcast 255.255.255.255
  18. iface eth1 inet6 static
  19. address fc00::/7
  20. netmask 64
  21.  
  22. auto eth2
  23. iface eth2 inet static
  24. address 192.168.100.1
  25. netmask 255.255.255.0
  26. network 192.168.100.1
  27. broadcast 255.255.255.255
  28. iface eth2 inet6 static
  29. address fc00::/7
  30. netmask 64
  31.  
  32. auto eth3
  33. iface eth3 inet static
  34. address 192.168.100.1
  35. netmask 255.255.255.0
  36. network 192.168.100.1
  37. broadcast 255.255.255.255
  38. iface eth3 inet6 static
  39. address fc00::/7
  40. netmask 64
  41.  
  42. auto eth4
  43. iface eth4 inet static
  44. address 192.168.100.1
  45. netmask 255.255.255.0
  46. network 192.168.100.1
  47. broadcast 255.255.255.255
  48. iface eth_ inet6 static
  49. address fc00::/7
  50. netmask 64
  51.  
  52. auto wlan0
  53. iface wlan0 inet static
  54. address 192.168.100.2
  55. netmask 255.255.255.0
  56. network 192.168.100.2
  57. broadcast 255.255.255.255
  58. iface wlan0 inet6 static
  59. address fc00::/7
  60. netmask 64
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement