Posted in Debian, Linux, Open Source
Come attivare due indirizzi IP sulla stessa scheda di rete su Debian
Come saprete il file di configurazione delle interfaccie di rete su Debian è:
/etc/network/interfaces
Probabilmente non tutti sanno che è possibile assegnare più di un indirizzo IP alla stessa scheda di rete. Se ad esempio volessi assegnare gli IP 10.0.0.10 e 10.0.0.11 alla scheda eth0 basterebbe inserire nel file di configurazione /etc/network/interfaces quanto segue:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"]# The loopback network interface auto lo eth0 iface lo inet loopback # The primary network interface allow-hotplug eth0 iface eth0 inet static address 10.0.0.10 netmask 255.255.255.0 network 10.0.0.0 broadcast 10.0.0.255 gateway 10.0.0.1 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 10.0.0.1 auto eth0:0 iface eth0:0 inet static address 10.0.0.11 netmask 255.255.255.0 network 10.0.0.0 broadcast 10.0.0.255 |
Basterà ora riavviare il servizio di rete:
1 |
/etc/init.d/networking restart |
Ti interessa acquistare un dominio a prezzi ultraconvenienti? clicca qui
Se hai trovato utili le informazioni su questo blog,
Fai una donazione!
Clicca sul bottone qui sotto o almeno clicca sul banner pubblicitario 🙂
Commenta