Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. root@nyc-test-0:~# cat /etc/network/interfaces
  2. # This file describes the network interfaces available on your system
  3. # and how to activate them. For more information, see interfaces(5).
  4.  
  5. # The loopback network interface
  6. auto lo
  7. iface lo inet loopback
  8.  
  9. # Source interfaces
  10. # Please check /etc/network/interfaces.d before changing this file
  11. # as interfaces may have been defined in /etc/network/interfaces.d
  12. # See LP: #1262951
  13. source /etc/network/interfaces.d/*.cfg
  14. root@nyc-test-0:~# cat /etc/network/interfaces.d/50-cloud-init.cfg
  15. # This file is generated from information provided by
  16. # the datasource. Changes to it will not persist across an instance.
  17. # To disable cloud-init's network configuration capabilities, write a file
  18. # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
  19. # network: {config: disabled}
  20. auto lo
  21. iface lo inet loopback
  22.  
  23. auto ens3
  24. iface ens3 inet dhcp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement