Advertisement
raniaadouni

/etc/netwrok/interfaces

Oct 4th, 2018
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 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. source /etc/network/interfaces.d/*
  4. # The loopback network interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. #(VMnet0 Ethernet )
  9. auto ens33
  10. iface ens33 inet static
  11. address 10.0.0.11
  12. netmask 255.255.255.0
  13.  
  14. #(network Adapter NAT wifi)
  15. auto ens34
  16. iface ens34 inet manual
  17. up ip link set dev $IFACE up
  18. down ip link set dev $IFACE down
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement