the standalone kernel should assigns itself 2 static ip addresses 192.168.1.252 and 192.168.0.252. Furthermore it tries to as sign's itself a dynamic one, for that it send discovers for a dhcp server to pick up, that will continue until a dhcp server answer's, it will make 5 tries to get the lease. Then it aborts.
However the two static ip addresses should always be available as they are assigned manually.
In your case I see this in the serial console output.
Setting IP address 0.0.0.0 on eth0
I think this is the output of the dhcp client as afterwards the send discover message's are comming.
After trying 5 times the dhcp client gives up (so you should see only 5 times "discover send"
The these messages should come
- Code: Select all
prepare telnet access
start telnet
make dev node for buttons...
mkdir: can't create directory '/dev/input': File exists
mknod: /dev/input/event0: File exists
start buttons control daemon
buttons-nwsp2 daemon started
pass control to sh shell
/bin/sh: can't access tty; job control turned off
~ #
I don't see this in the serial console you posted ??
That something is not is 100% ok is also be indicated by this part of the console output:
- Code: Select all
[ 3.193127] netpoll: netconsole: local port 6666
[ 3.197828] netpoll: netconsole: local IPv4 address 192.168.1.252
[ 3.203895] netpoll: netconsole: interface 'eth0'
[ 3.208625] netpoll: netconsole: remote port 6666
[ 3.213315] netpoll: netconsole: remote IPv4 address 192.168.1.251
[ 3.219559] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[ 3.226444] netpoll: netconsole: device eth0 not up yet, forcing it
[ 3.233308] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 10 Mb/s, half duplex, flow control disabled
[ 3.243337] netpoll: netconsole: carrier detect appears untrustworthy, waiting 4 seconds
[ 7.259816] console [netcon0] enabled
[ 7.263549] netconsole: network logging started
That indicates that it tries to setup as local ip 192.168.1.152 but fails. Also setting 10 Mb/s half duplex is abnormal and indicates a connection issue
Because the dhcp discover is active you should be able to solve this problem by using a dhcp server that assigns a dynamic one IP. Please note that this can be different from the static ones. You need to look in the client list of the dhcp server to find out the ip address assigned or do a network scan (IP scanner). The one you have previously set when using Lacie firmware has no meaning, the dhcp server will decide which one to assign or you must assign that IP to the mac address of the Ethernet port of the wsp
From your previous post it seems you already tried this but that the lease failed.
PS Sometimes the telnet client gives up to quickly to get connection, in that case you can try manually to connect via the telnet client Use connect button in the telnet client and choose remote system etc..
But in your case I think that won't work because assigning the static ip address seems to be lost
I will add some lines to the standalone kernel to get more output and see if we can get the assignment of static ip working as it should. But if we could get a dynamic ip address via dhcp server would be easier.
(a simple router has a dhcp server should work)