# /etc/network/interfaces
#
# thomas@linuxmuster.net
# 20180612
#
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto @@iface@@
iface @@iface@@ inet static
        address @@hostip@@
        netmask @@netmask@@
        network @@network@@
        broadcast @@broadcast@@
        gateway @@gateway@@
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers @@serverip@@ @@firewallip@@
        dns-search @@domainname@@

# source other interface definitions
source /etc/network/interfaces.d/*
