LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 06-24-2006, 01:54 PM   #1
Ashrack
Member
 
Registered: Oct 2005
Distribution: Ubuntu - Edgy Eft
Posts: 173

Rep: Reputation: 30
Network card isnt detected


I have 2 NICs in the PC but only one NIC is detected. Hers the 'lspci -v' info:
Code:
0000:00:08.0 Ethernet controller: Davicom Semiconductor, Inc. 21x4x DEC-Tulip compatible 10/100 Ethernet (rev 40)
        Subsystem: Unknown device 3030:5032
        Flags: bus master, medium devsel, latency 64, IRQ 10
        I/O ports at e400 [size=256]
        Memory at ea001000 (32-bit, non-prefetchable) [size=256]
        Expansion ROM at e8000000 [disabled] [size=256K]
        Capabilities: [50] Power Management version 2

0000:00:09.0 Ethernet controller: Davicom Semiconductor, Inc. 21x4x DEC-Tulip compatible 10/100 Ethernet (rev 31)
        Subsystem: Unknown device 3030:5032
        Flags: bus master, medium devsel, latency 64, IRQ 3
        I/O ports at e800 [size=256]
        Memory at ea000000 (32-bit, non-prefetchable) [size=256]
        Expansion ROM at e9000000 [disabled] [size=256K]
        Capabilities: [50] Power Management version 1
ifconfig info:
Code:
eth1      Link encap:Ethernet  HWaddr 00:08:A1:0E:0A:F9
          inet6 addr: fe80::208:a1ff:fe0e:af9/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1520 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1520 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:770880 (752.8 KiB)  TX bytes:213644 (208.6 KiB)
          Interrupt:3 Base address:0xe800

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:32 errors:0 dropped:0 overruns:0 frame:0
          TX packets:32 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:2368 (2.3 KiB)  TX bytes:2368 (2.3 KiB)

ppp0      Link encap:Point-to-Point Protocol
          inet addr:193.77.242.136  P-t-P:213.250.19.90  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1492  Metric:1
          RX packets:1496 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1487 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:3
          RX bytes:736274 (719.0 KiB)  TX bytes:179741 (175.5 KiB)
mousepad /etc/network/interfaces
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto dsl-provider
iface dsl-provider inet ppp
provider dsl-provider

# added by pppoeconf
auto eth1
    iface eth1 inet manual

    pre-up /sbin/ifconfig eth1 up # line maintained by pppoeconf
 
Old 06-24-2006, 03:44 PM   #2
Youri
Member
 
Registered: Oct 2004
Distribution: slamd64-current, slackware-current, clfs 6.1, arch-current, ubuntu dapper
Posts: 144

Rep: Reputation: 15
can you enable eth0? like
Code:
ifconfig eth0 up
cuz it seems he did assign eth0 to something
 
Old 06-24-2006, 04:55 PM   #3
manishsingh4u
Member
 
Registered: Oct 2005
Location: Bhopal, India
Distribution: RHEL 6
Posts: 422

Rep: Reputation: 30
Are you using Ipv6 for sure?
Code:
eth1      Link encap:Ethernet  HWaddr 00:08:A1:0E:0A:F9
          inet6 addr: fe80::208:a1ff:fe0e:af9/64 Scope:Link
Anyway, please post the output of these 2 commands
Code:
dmesg | grep eth
Code:
ifconfig -a
 
Old 06-25-2006, 01:50 AM   #4
Ashrack
Member
 
Registered: Oct 2005
Distribution: Ubuntu - Edgy Eft
Posts: 173

Original Poster
Rep: Reputation: 30
Quote:
Originally Posted by Youri
can you enable eth0? like
Code:
ifconfig eth0 up
cuz it seems he did assign eth0 to something
tanx, now it works. How do I set it up so it would automaticly enable ETH0 whilst boot up??
 
Old 06-25-2006, 01:51 AM   #5
Ashrack
Member
 
Registered: Oct 2005
Distribution: Ubuntu - Edgy Eft
Posts: 173

Original Poster
Rep: Reputation: 30
Quote:
Originally Posted by manishsingh4u
Are you using Ipv6 for sure?
Code:
eth1      Link encap:Ethernet  HWaddr 00:08:A1:0E:0A:F9
          inet6 addr: fe80::208:a1ff:fe0e:af9/64 Scope:Link
Anyway, please post the output of these 2 commands
Code:
dmesg | grep eth
Code:
ifconfig -a
tom@ashrack:~$ dmesg |grep 'eth'
[17179589.748000] eth0: Davicom DM9102 at pci0000:00:08.0, 00:08:a1:75:1c:87, irq 10.
[17179589.772000] eth1: Davicom DM9102 at pci0000:00:09.0, 00:08:a1:0e:0a:f9, irq 3.
[17179606.284000] eth1: no IPv6 routers present
[17179810.808000] eth0: no IPv6 routers present
 
Old 06-25-2006, 03:29 AM   #6
manishsingh4u
Member
 
Registered: Oct 2005
Location: Bhopal, India
Distribution: RHEL 6
Posts: 422

Rep: Reputation: 30
Quote:
Originally Posted by Ashrack
How do I set it up so it would automaticly enable ETH0 whilst boot up??
Add these lines to /etc/network/interfaces to start eth0 and eth1 automatically on boot
Code:
auto eth0
Code:
auto eth1
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Network card not detected saioa Linux - Hardware 2 03-15-2004 07:37 AM
Network card not detected... leeach Slackware 7 01-28-2004 09:29 AM
Portable mp3 player isnt detected... ullfrigg Linux - Hardware 2 11-29-2003 11:38 AM
My second network card not detected drben Linux - Newbie 1 09-11-2003 01:50 PM
modem isnt detected mkzmonkeylagger Linux - General 2 04-18-2002 12:31 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 09:12 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration