# 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 #----------------------------- # eth1 - LAN #----------------------------- auto eth1 eth1:ns iface eth1 inet static address 192.168.92.254 network 192.168.92.0 netmask 255.255.255.0 broadcast 192.168.92.255 # - Name Service # - iface eth1:ns inet static address 192.168.92.1 network 192.168.92.0 netmask 255.255.255.0 broadcast 192.168.92.255 #----------------------------- # eth0 - WLAN #----------------------------- auto eth0 iface eth0 inet static address 192.168.93.254 network 192.168.93.0 netmask 255.255.255.0 broadcast 192.168.93.255 #----------------------------- # eth2 - WAN #----------------------------- auto eth2 # - Note: Gateway is 172.16.92.253 # - iface eth2 inet static address 172.16.92.1 netmask 255.255.255.0 network 172.16.92.1 broadcast 172.16.92.255 gateway 172.16.92.253 #----------------------------- # enp0s20f3 - Not in use #-----------------------------