Networking :: network diagnostic



Do you mean after the bootlocal, manually?
Oh yea, xmodmap! it's an X app! So put it in /home/dsl/.xinitrc instead of bootlocal... Above the case line..

Googling showed that error related to netmask... Is your netmask 255.255.255.0? Then that ifconfig line could be
ifconfig eth0 192.168.0.2/24 up

edit: oops, gateway needs to exist before up'ping. Here's the whole script:
Quote
#!/bin/ash
# put other system startup command here
/sbin/syslogd
loadkeys pl
ifconfig eth0 192.168.0.2/24
route add default gw 192.168.0.255
ifconfig eth0 up


edit 2: WTF? your gateway just cannot be .255, that's the broadcast address! (aka sent to All on that net) Check the gateway?

Quote (curaga @ May 04 2007,11:23)
edit 2: WTF? your gateway just cannot be .255, that's the broadcast address! (aka sent to All on that net) Check the gateway?

Yeah, gateway address was f#$%ed up :/
But after changing it and writing your script, it looks like everything works  :D
Thanx!


original here.