Advertisement
Guest User

interfaces

a guest
Jun 16th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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. # The primary network interface
  9. #allow-hotplug eth0
  10. #iface eth0 inet dhcp
  11.  
  12. auto enp4s1
  13. iface enp4s1 inet static
  14. address 10.1.1.10
  15. netmask 255.255.255.0
  16. broadcast 10.1.1.255
  17. network 10.1.1.0
  18. gateway 10.1.1.1
  19.  
  20. auto enp4s2
  21. iface enp4s2 inet static
  22. address 192.168.0.14
  23. netmask 255.255.255.0
  24. broadcast 192.168.0.255
  25. network 192.168.0.0
  26.  
  27.  
  28. auto dsl-provider
  29. iface dsl-provider inet ppp
  30. pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf
  31. provider dsl-provider
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement