Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 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. auto eno1
  11. iface eno1 inet static
  12. address 83.19.xxx.76
  13. gateway 83.19.xxx.73
  14. netmask 255.255.255.248
  15. network 83.19.xxx.72
  16. broadcast 83.19.xxx.79
  17. dns-nameservers 8.8.8.8
  18.  
  19. # The primary network interface
  20. auto eno2
  21. iface eno2 inet static
  22. address 10.0.126.11
  23. gateway 10.0.126.1
  24. netmask 255.255.255.0
  25. network 10.0.126.0
  26. broadcast 10.0.126.255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement