14 lines
312 B
Perl
14 lines
312 B
Perl
# 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/*
|
|
|
|
auto lo
|
|
iface lo inet loopback
|
|
|
|
allow-hotplug eth0
|
|
iface eth0 inet static
|
|
address {{ ip }}
|
|
netmask {{ netmask }}
|
|
gateway {{ gw }}
|