Networking - OfficialPixelBrush/pixix GitHub Wiki

Getting online

You can only get online after you've mounted the CD and initialized the network modules.

insmod /mnt/mod/net/packet/af_packet.ko

After that, you can simply

/mnt/ifconfig eth0 up
/mnt/udhcpc -i eth0

After that second command, you should so see something similar to what is shown here.

udhcpc: lease of 10.0.2.15 obtained from 10.0.2.2, lease time 86400

Replace 10.0.2.15 and 10.0.2.2 with the IPs that showed up for you in the same spot.

/mnt/ifconfig eth0 10.0.2.15 netmask 255.255.255.0 up
/mnt/route add default gw 10.0.2.2

You should be online now!

You can test this with using ping.

ping 1.1.1.1

Note: The ping utility defaults to looking for data on Port 80.