Results 1 to 6 of 6

Thread: 10BaseT problem on 3c900

  1. #1
    Junior Member
    Join Date
    Sep 2003
    Location
    Munich, Germany
    Posts
    4

    10BaseT problem on 3c900

    I have trouble getting my Ethernet card to work. It is a 3C900. I connected it using a twistet pair cable to my router. Starting Windows everything works fine, so it shouldn't be Hardware.

    I am working with Knoppix 3.2 which is based on Linux kernel 2.4.22.

    I can ping on myself, but when pinging my gateway I get:
    ====
    PING 192.168.0.1 (192.168.0.1): 56 data bytes

    --- 192.168.0.1 ping statistics ---
    19 packets transmitted, 0 packets received, 100% packet loss
    ====

    After that ifconfig says:

    ====
    eth0 Protokoll:Ethernet Hardware Adresse 00:60:08:C8:B6:B3
    inet Adresse:192.168.0.101 Bcast:192.168.0.255 Maske:255.255.255.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:3 dropped:0 overruns:0 carrier:0
    Kollisionen:0 Sendewarteschlangenlänge:100
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    Interrupt:9 Basisadresse:0xb800

    lo Protokoll:Lokale Schleife
    inet Adresse:127.0.0.1 Maske:255.0.0.0
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:41 errors:0 dropped:0 overruns:0 frame:0
    TX packets:41 errors:0 dropped:0 overruns:0 carrier:0
    Kollisionen:0 Sendewarteschlangenlänge:0
    RX bytes:3656 (3.5 KiB) TX bytes:3656 (3.5 KiB)
    ====

    dmesg says (including the audio device working on same interrupt):

    ====
    PCI: Found IRQ 9 for device 02:0c.0
    3c59x: Donald Becker and others. www.scyld.com/network/vortex.html
    See Documentation/networking/vortex.txt
    02:0c.0: 3Com PCI 3c900 Boomerang 10Mbps Combo at 0xb800. Vers LK1.1.18-ac
    PCI: Setting latency timer of device 02:0c.0 to 64
    00:60:08:c8:b6:b3, IRQ 9
    product code 4b4c rev 00.0 date 12-03-97
    Internal config register is 330218, transceivers 0xe138.
    8K word-wide RAM 3:5 Rx:Tx split, 10base2 interface.
    Enabling bus-master transmits and whole-frame receives.
    02:0c.0: scatter/gather enabled. h/w checksums disabled
    eth0: Dropping NETIF_F_SG since no checksum feature.
    Creative EMU10K1 PCI Audio Driver, version 0.20, 00:02:24 Sep 6 2003
    PCI: Found IRQ 9 for device 02:0a.0
    PCI: Setting latency timer of device 02:0a.0 to 64
    emu10k1: EMU10K1 rev 7 model 0x8061 found, IO at 0xd400-0xd41f, IRQ 9
    ac97_codec: AC97 Audio codec, id: 0x8384:0x7608 (SigmaTel STAC970
    emu10k1: SBLive! 5.1 card detected
    ====

    The silly thing: It states 10base2 even if I insert in modules.conf:

    ====
    options eth0 debug=1 options=0 full_duplex=1
    ====

    What can I do else?

  2. #2
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: 10BaseT problem on 3c900

    Quote Originally Posted by Canis
    The silly thing: It states 10base2 even if I insert in modules.conf:

    ====
    options eth0 debug=1 options=0 full_duplex=1
    ====

    What can I do else?
    You should not be putting the line in modules.conf it should be put in either it's own file in /etc/modutils or in /etc/modutils/aliases and the line does not look like it is correct to set my card for full-duplex I use this in the aliases file.
    Code:
    # Added by me for network card full duplex
    alias eth0 tulip
    options tulip options=4
    This forces the tulip driver to use the full duplex settings you should be doing similar for your cards module (3c59x IIRC).

    You can also check in /etc/network/interfaces to make sure that you have the settings right for the gateway and that the module for the card is actually loaded and in use.

  3. #3
    Junior Member
    Join Date
    Sep 2003
    Location
    Munich, Germany
    Posts
    4

    Re: 10BaseT problem on 3c900

    Thanx for your answer!

    I will look after the files you statet.

    The options will depend on what the driver does recognize, so the paramters of tulip and 3c59x are not comparable.

    The module is loaded.

  4. #4
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: 10BaseT problem on 3c900

    Quote Originally Posted by Canis
    The options will depend on what the driver does recognize, so the paramters of tulip and 3c59x are not comparable.

    The module is loaded.
    The options would be different for each driver you should look in the docs for the module for the correct settings. The module is loaded but is it in use?

  5. #5
    Junior Member
    Join Date
    Sep 2003
    Location
    Munich, Germany
    Posts
    4

    Re: 10BaseT problem on 3c900

    Now it is running! It was that nasty little "eth0" in the options stament where i had to use the name of the module instead!

    Thanx a lot again, for this solution after hours of stupid experimenting!

    I also inserted it into /etc/modutils/aliases now

  6. #6
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: 10BaseT problem on 3c900

    Quote Originally Posted by Canis
    Now it is running! It was that nasty little "eth0" in the options stament where i had to use the name of the module instead!

    Thanx a lot again, for this solution after hours of stupid experimenting!

    I also inserted it into /etc/modutils/aliases now
    I just noticed I forgot to tell you to run update-modules as root, you are supposed to do that to update the modules.conf after making changes in the files. Good to hear you got it going BTW.

Similar Threads

  1. Problem Unique to Knoppix Later Versions!(SIS problem!)
    By bongski55 in forum Hardware & Booting
    Replies: 4
    Last Post: 11-15-2003, 10:19 AM
  2. Wierd Problem With USB Keyboard, Maybe Motherboard Problem
    By Triple Six in forum Hardware & Booting
    Replies: 2
    Last Post: 04-15-2003, 04:23 AM
  3. mii-tool -F 10baseT-HD Where can I put this line?
    By FelixDzerzhinsky in forum Hdd Install / Debian / Apt
    Replies: 5
    Last Post: 01-27-2003, 07:02 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Western Digital 1TB Caviar WD1002FBYS Enterprise SATA Hard Disk Drives picture

Western Digital 1TB Caviar WD1002FBYS Enterprise SATA Hard Disk Drives

$24.99



832514-B21 HPE 1TB SAS 12Gb/s 7.2K SFF SC HDD 832984-001 picture

832514-B21 HPE 1TB SAS 12Gb/s 7.2K SFF SC HDD 832984-001

$129.00



### MZ-7KE1T0 Samsung 850 Pro Series 1TB 2.5 inch SATA3 SSD ### picture

### MZ-7KE1T0 Samsung 850 Pro Series 1TB 2.5 inch SATA3 SSD ###

$105.00



Western Digital 1TB WD Blue PC Desktop 3.5'' Internal CMR Hard Drive - WD10EARZ picture

Western Digital 1TB WD Blue PC Desktop 3.5'' Internal CMR Hard Drive - WD10EARZ

$44.99



2 PACK  Seagate ST1000LM035 Mobile HDD 1TB 2.5

2 PACK Seagate ST1000LM035 Mobile HDD 1TB 2.5" SATA III Laptop Hard Drive

$27.25



Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5

Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5" SATA 3 6GB/s Internal SSD PC/MAC Lot

$19.99



Samsung - Geek Squad Certified Refurbished 870 EVO 1TB SATA Solid State Drive picture

Samsung - Geek Squad Certified Refurbished 870 EVO 1TB SATA Solid State Drive

$67.99



Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot picture

Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot

$13.99



SAMSUNG SM961 SERIES 1TB MLC PCIE 3.0 X4 NVME M.2 2280 INTERNAL SSD | MZ-VKW1T00 picture

SAMSUNG SM961 SERIES 1TB MLC PCIE 3.0 X4 NVME M.2 2280 INTERNAL SSD | MZ-VKW1T00

$64.99



Apple 1TB Solid State Drive for Apple MacBook Pro picture

Apple 1TB Solid State Drive for Apple MacBook Pro

$80.00