Title: Can anyone help me to setup a static IP in Linuxcoin? Post by: mackminer on June 30, 2011, 12:54:20 PM The /etc/network/interfaces file only lists the below..
auto lo iface lo inet loopback However my machine does have a dynamic ip. Thanks a mill. Title: Re: Can anyone help me to setup a static IP in Linuxcoin? Post by: zubatej on June 30, 2011, 02:03:06 PM Add to the file these lines…
auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 broadcast 192.168.1.255 network 192.168.1.0 gateway 192.168.1.1 modified according to your needs. Interface name can be obtained by "ip link" command. After you are finished with editing restart the networking service by "/etc/init.d/networking restart" command. You can check the result by "ip addr" command. Title: Re: Can anyone help me to setup a static IP in Linuxcoin? Post by: mackminer on June 30, 2011, 02:55:28 PM Thanks for that. I did do it but on restarting it reverts back .ie removes all the static settings. Even though I'm running persistence.
Title: Re: Can anyone help me to setup a static IP in Linuxcoin? Post by: SilverLeaf on June 30, 2011, 03:00:19 PM I have set in /etc/rc.local these lines:
sudo ifconfig eth0 192.168.1.2 255.255.255.0 up sudo route add default gw 192.168.1.1 That file is kept if you're using persistence =) . |