77 lines
1.6 KiB
Plaintext
77 lines
1.6 KiB
Plaintext
# 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
|
|
|
|
|
|
|
|
#-----------------------------
|
|
# eth0 - NOT IN USE
|
|
#-----------------------------
|
|
|
|
auto eth0
|
|
iface eth0 inet static
|
|
address 192.168.83.254
|
|
network 192.168.83.0
|
|
netmask 255.255.255.0
|
|
broadcast 192.168.83.255
|
|
|
|
|
|
|
|
#-----------------------------
|
|
# eth1 - LAN
|
|
#-----------------------------
|
|
|
|
auto eth1 eth1:0
|
|
iface eth1 inet static
|
|
address 192.168.82.254
|
|
network 192.168.82.0
|
|
netmask 255.255.255.0
|
|
broadcast 192.168.82.255
|
|
iface eth1:0 inet static
|
|
address 192.168.82.1
|
|
network 192.168.82.0
|
|
netmask 255.255.255.0
|
|
broadcast 192.168.82.255
|
|
|
|
auto eth1:rescue
|
|
iface eth1:rescue inet static
|
|
address 172.16.1.1
|
|
network 172.16.1.0
|
|
netmask 255.255.255.0
|
|
broadcast 172.16.1.255
|
|
|
|
|
|
#-----------------------------
|
|
# eth2 - WAN
|
|
#-----------------------------
|
|
|
|
auto eth2
|
|
iface eth2 inet static
|
|
address 172.16.82.1
|
|
network 172.16.82.0
|
|
netmask 255.255.255.0
|
|
broadcast 172.16.82.255
|
|
gateway 172.16.82.254
|
|
post-up vconfig add eth2 7
|
|
post-down vconfig rem eth2.7
|
|
|
|
|
|
auto dsl-akb
|
|
iface dsl-akb inet ppp
|
|
pre-up /sbin/ifconfig eth2 up # line maintained by pppoeconf
|
|
pre-up /sbin/ifconfig eth2.7 up # line maintained by pppoeconf
|
|
provider dsl-akb
|
|
|
|
|
|
#auto dsl-provider
|
|
#iface dsl-provider inet ppp
|
|
# pre-up /sbin/ifconfig eth2 up # line maintained by pppoeconf
|
|
# pre-up /sbin/ifconfig eth2.7 up # line maintained by pppoeconf
|
|
# provider dsl-provider
|
|
|