Statické nastavení sítě
Návod pro Debian GNU/Linux a podobné distribuce
Do /etc/network/interfaces dáme:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet6 static
address IPv6_ADRESA
netmask 64
gateway IPv6_BRÁNA
iface eth0 inet static
address IPv4_ADRESA
netmask 255.255.255.0
gateway IPv4_BRÁNAPřidávání (add) a odebírání (del) dalších IP adres:
ip addr add IPv6_ADRESA/64 dev eth0; ip addr add IPv4_ADRESA/24 dev eth0;





