Advertisement
Guest User

/etc/network/interfaces

a guest
Jun 15th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
  3.  
  4. # The loopback interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. # The first network card - this entry was created during the Debian installation
  9. # (network, broadcast and gateway are optional)
  10. auto eth0
  11.  
  12.  
  13. iface eth0 inet static
  14. address 192.168.1.10
  15. netmask 255.255.255.0
  16. network 192.168.1.0
  17. broadcast 192.168.1.255
  18. gateway 192.168.1.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement