da terminale come root, digita:
hive:/home/donlimo# ifconfig
eth0 Link encap:Ethernet HWaddr 08:27:00:2f:08:a5
inet addr:192.168.1.62 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::a00:a7ff:fe5a:984d/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:805 errors:0 dropped:0 overruns:0 frame:0
TX packets:606 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:796490 (777. KiB) TX bytes:52540 (51.3 KiB)
Interrupt:11 Base address:0xd020
L’output del comando è molto chiaro. Le informazioni che ci
interessano in particolare sono tre:
- inet addr:192.168.1.62
- Bcast:192.168.1.255
- Mask:255.255.255.0
Andiamo a modificare il file di configurazione tramite :
# nano /etc/network/interfaces
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.62
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
- auto: identifica i dispositivi che vengono portati in stato di up al boot del sistema
- iface: identifica le interfacce da configurare
- inet: indica che l’interfaccia sarà collegata con una rete IPv4
- static: indica che l’indirizzo è impostato staticamente
Poi bisogna riavviare il servizio di rete:
# /etc/init.d/networking restart
e modificare eventualmente i server DNS:
# nano /etc/resolv.conf
nameserver 208.67.222.222
nameserver 208.67.220.220
nell'esempio ci sono i server open dns
Nessun commento:
Posta un commento