summaryrefslogtreecommitdiff
path: root/roles/vm/network/templates/interfaces.j2
blob: 542e18d63597f07c361441c352ce88100e536190 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto {{ vm_network.primary.interface }}
iface {{ vm_network.primary.interface }} inet static
  address {{ vm_network.primary.ip }}
  netmask {{ vm_network.primary.mask }}
  gateway {{ vm_network.primary.gateway }}
  pre-up echo 0 > /proc/sys/net/ipv6/conf/$IFACE/accept_ra
  pre-up echo 0 > /proc/sys/net/ipv6/conf/$IFACE/autoconf