Hi apuboard
You don't have an IP address assigned. Create a script called eth0.sh and save it in /opt
#!/bin/sh
pkill udhcpc
ifconfig eth0 192.168.1.30 netmask 255.255.255.0 broadcast 192.168.1.255 up
route add default gw 192.168.1.1
echo nameserver 68.237.161.12 > /etc/resolv.conf
echo nameserver 71.243.0.12 >> /etc/resolv.conf
Change the addresses to values suitable for your environment, then:
chmod 775 /opt/eth0.sh
sudo /opt/eth0.sh
Then run ifconfig again and see if it has an IP address assigned. You are running a wired connection, not wireless, right?