dhcpcd will timeout after 60 seconds if it gets no dhcp offers, after that it will turn off your network card as you saw. This suggests you are going to have to configure things statically.
You need to know the IP of your DNS server, and the default gateway. You can get these from a running windows box with "ipconfig /a" (I think, it's been a while).
then do
Code:
ifconfig interface your_ip up
route add default gw gateway_ip
echo nameserver dns_ip >> /etc/resolv.conf
Replacing the bold words with the actual values. That should get you online temporarily. If you have problems, post the output of
Code:
ifconfig -a
route -n
ping www.google.com
And we will see what we can do. If that works then we can look at making the changes permanent. Otherwise we'll try and fix what's broken then.
Let us know how you get on,
Chris...