On 9/19/06, Lucas Fraser (archangelj) <no-reply-gw@xxxxxxxxxxxxxxxx> wrote:
I've just installed FC5 and everything went fine. Tried to pull IP from my Linksys wrt54gc but I can't seem to get one. I decided to try a static but that's not working either. I can ping myself but cannot ping the other end. Any idea's???????? -- This is an email sent via the webforum on https://fcp.surfsite.org https://fcp.surfsite.org/modules/newbb/viewtopic.php?post_id=112492&topic_id=26388&forum=28#forumpost112492 If you think, this is spam, please report this to webmaster@xxxxxxxxxxxxxxxx and/or blame fraserlm@xxxxxxxxxx -- fedora-list mailing list fedora-list@xxxxxxxxxx To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Hi Lucas Fraser! First things first, do you have the green lights? Usually when you plug the ethernet cable into the computer or modem a little light or two will change usually to green to show you that the physical connection is working. Next we move on to the ethernet controller, does the internal PCI bus see it. # you may need to do /sbin/lspci - Fedora often does not include /sbin in $PATH -------------------------------------- tod@tod-desktop:~$ lspci | grep -i eth 0000:00:0b.0 Ethernet controller: 3Com Corporation 3c905 100BaseTX [Boomerang] tod@tod-desktop:~$ ---------------------------------------- If you drop "|grep -i eth" you can see all on the bus. if you add a "-vv" to "lspci" you can see the very verbose output. Anyway you can see that the command found my Ethernet controller. The problem of seeing if the appropriate driver is installed I have not yet resolved. You say you have no IP. I would guess that you are useing? --------------------------------------- tod@tod-desktop:~$ ifconfig eth0 Link encap:Ethernet HWaddr 00:10:4B:21:8D:A1 inet addr:192.168.0.18 Bcast:192.168.0.255 Mask:255.255.255.0 inet6 addr: fe80::210:4bff:fe21:8da1/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:2176 errors:0 dropped:0 overruns:0 frame:0 TX packets:1978 errors:0 dropped:0 overruns:0 carrier:0 collisions:1 txqueuelen:1000 RX bytes:1394066 (1.3 MiB) TX bytes:514816 (502.7 KiB) Interrupt:10 Base address:0x9400 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:15 errors:0 dropped:0 overruns:0 frame:0 TX packets:15 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:932 (932.0 b) TX bytes:932 (932.0 b) tod@tod-desktop:~$ ------------------------------------------ Ifconfig shows my ethernet up, with IP and pretty ready to go. Next, do we have a route? ----------------------------------------- tod@tod-desktop:~$ route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.0.0 * 255.255.255.0 U 0 0 0 eth0 default 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 tod@tod-desktop:~$ ----------------------------------------- The first line shows the route to the 192.168.0.0 network (where I am 192.168.0.18 as shown in ifconfig). The second shows a default gateway which will be (is) where packets addressed to somewhere else (www.linux.org) will go. You are not quite yet to the point where you are troubleshooting Internet connectivity but there be a preview. Good Hunting! Tod