al wrote:
potete dirmi che stringe devo inserie nel file interfaces per configurare la rete staticamente tenedo conto che il mio router è 10.0.0.2 e la mia scheda di rete è 10.0.0.4?
Se la tua netmask e' 255.0.0.0 allora devi mettere: auto eth0 iface eth0 inet static address 10.0.0.4 netmask 255.0.0.0 network 10.0.0.0 broadcast 10.255.255.255 gateway 10.0.0.2 se la netmask e' 255.255.255.0, allora: auto eth0 iface eth0 inet static address 10.0.0.4 netmask 255.255.255.0 network 10.0.0.0 broadcast 10.0.0.255 gateway 10.0.0.2sono sicuro che se digiti "man interfaces" in una console ottieeni molte piu' informazioni e molto piu' dettagliate di quelle che ti do io.
ciao Andrea