| 1 | root@box-1:~# 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 | # NOTE: the primary ethernet device is defined in
|
|---|
| 13 | # /etc/network/interfaces.d/eth0
|
|---|
| 14 | # See LP: #1262951
|
|---|
| 15 | source /etc/network/interfaces.d/*.cfg
|
|---|
| 16 |
|
|---|
| 17 | #VAGRANT-BEGIN
|
|---|
| 18 | # The contents below are automatically generated by Vagrant. Do not modify.
|
|---|
| 19 | auto eth1
|
|---|
| 20 | iface eth1 inet dhcp
|
|---|
| 21 | post-up route del default dev $IFACE || true
|
|---|
| 22 | #VAGRANT-END
|
|---|