Hello all
After successfully installing the ArchLinux, I run into the problem of unable to setup a static IP address.
Currently, the DHCP is in good shape. It can connect to the LAN, use wget to get packages from the Internet, etc.
Here is the DHCP setting in /etc/rc.conf
$this->bbcode_second_pass_code('', '
interface=eth0
address=
netmask=
broadcast=
gateway=
')
However, if I change it to static IP address, and reboot the system , then the unit can't connect to LAN (which is confirmed by checking the LAN connection status from the router in my home), and therefore I am unable to use PUTTY to SSH the unit. Below is the /etc/rc.conf setting
$this->bbcode_second_pass_code('', '
interface=eth0
address=192.168.1.14
netmask=255.255.255.0
broadcast=192.168.1.255
gateway=192.168.1.1
')
FYI: when rebooting after changing to static IP, the LED light will blink for a couple of seconds , then glows steadily.
Later, I also followed instruction on
https://wiki.archlinux.org/index.php/Co ... ng_Network
and
https://wiki.archlinux.org/index.php/Rc.conf
But again, it doesn't work...
I know that there is walk-around approaches such as assigning a fixed IP address on my DHCP server, so that the PogoPlug will retrieve an IP address from the DHCP server but the address is actually fixed. But what I actually need is to figure out what's wrong with my current settings/system. Could anyone help me fix the static IP address problem! Thanks.