Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 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. source /etc/network/interfaces.d/*
  5.  
  6. # The loopback network interface
  7. auto lo
  8. iface lo inet loopback
  9.  
  10. # The primary network interface
  11. auto enp4s0
  12. iface enp4s0 inet static
  13. address 10.0.0.66
  14. netmask 255.255.255.0
  15. network 10.0.0.0
  16. broadcast 10.0.0.255
  17. gateway 10.0.0.1
  18. dns-nameservers 75.75.76.76
  19. # This is an autoconfigured IPv6 interface
  20. iface enp4s0 inet6 auto
  21. up /sbin/ipconfig enp4s0 inet6 add 2601:407:8402:38bc::10/64
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement