blob: d59d53e1496a813f36807242cde32eab0bc975bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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 {{ network.primary.interface }}
iface {{ network.primary.interface }} inet static
address {{ network.primary.ip }}
netmask {{ network.primary.mask }}
gateway {{ 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
{% if 'prefix6' in network.primary %}
iface {{ network.primary.interface }} inet6 static
address {{ network.primary.prefix6 }}
gateway {{ network.primary.gateway6 }}
{% endif %}
|