Code: Select all
eth0 Link encap:Ethernet HWaddr 00:50:DA:49:5C:79
inet addr:192.168.1.101 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:557 dropped:0 overruns:0 frame:829
TX packets:43 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:3318 (3.2 kb)
Interrupt:10 Base address:0xb400
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:332 errors:0 dropped:0 overruns:0 frame:0
TX packets:332 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:41203 (40.2 kb) TX bytes:41203 (40.2 kb)
Code: Select all
route -nCode: Select all
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
127.0.0.0 127.0.0.1 255.0.0.0 UG 0 0 0 lo
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
I assume from the kernel instructionsdouble-check that you are using drivers for the 3Com 905 NIC, and not the 3Com 509
Code: Select all
3c590/3c900 series (592/595/597) "Vortex/Boomerang" support (NEW)
"Boomerang" (Fast EtherLink XL 3C900 or 3c905) PCI
what dose mii-tool -vv eth0 say
Code: Select all
eth0: 10 Mbit, full duplex, link ok
registers for MII PHY 24:
0100 780d 0040 6176 05el 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
1000 e03f 0007 00ff 0000 0000 0100 0000
0031 1004 0f00 ff40 0621 0000 0000 0000
product info: vendor 00:10:18, model 23 rev 6
basic mode: 10 Mbit, full duplex
basic status: link ok
capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
advertising: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
it would appear sothis this set in the kernel config
grep -i _mii /usr/src/linux/.config
Code: Select all
CONFIG_MII=y
dose not say is tried to negotiat and found 10 meg it just 10 meg nailed.eth0: 10 Mbit, full duplex, link ok
registers for MII PHY 24:
0100 780d 0040 6176 05el 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
1000 e03f 0007 00ff 0000 0000 0100 0000
0031 1004 0f00 ff40 0621 0000 0000 0000
product info: vendor 00:10:18, model 23 rev 6
basic mode: 10 Mbit, full duplex
basic status: link ok
capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
advertising: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
