Results 1 to 10 of 10

Thread: No network connection

  1. #1
    Join Date
    Feb 2008
    Beans
    10

    No network connection

    I just installed 8.04[64bit] as dual boot with XP Home[32bit]. Now whatever i try i can't get a working network connection. My PC is directly wired to my DSL modem; which is also connected to 2 other PC's.

    In XP i have no networking problems at all and everything is handled automatically. No manual intervention was required and it worked from minute 1.

    I have tried the standard roaming setting. It did detect the two gbit connection slots on my mobo, the fact that only one actually had a connection with something and the speed of the connection(100mbit), but however many times it requested a network adress it always came up empty handed.(0.0.0.0 for all settings but the hardware adress)

    I've tried DHCP, no luck. It didn't even show my 2 wired connection slots anymore.(It did in roaming mode)

    Tried fixed IP based on "ipconfig" of one of the other PC's connected to the modem. Again it didn't even register the wired connection slots, just like with DHCP.


    The fact that in roaming mode everything is detected correctly(Connection slots, used connection slot, speed of used connection.) leads me to believe that this is the correct setting, but i don't understand why it fails to receive a network adress from my modem. I'm not 100% sure, but i think it isn't even receiving any packets back. Also the fact that my ifconfig tells me 150 packets were dropped doesn't sound to well to me.

    Here is my ifconfig:
    Code:
    eth0      Link encap:Ethernet  HWaddr 00:18:f3:9d:68:cd  
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:150 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:33479 (32.6 KB)
              Interrupt:249 
    
    eth1      Link encap:Ethernet  HWaddr 00:18:f3:9c:b8:9a  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
              Interrupt:250 Base address:0x8000 
    
    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:1086 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1086 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:58676 (57.3 KB)  TX bytes:58676 (57.3 KB)
    
    wlan0     Link encap:Ethernet  HWaddr 00:15:af:09:90:cc  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    
    wmaster0  Link encap:UNSPEC  HWaddr 00-15-AF-09-90-CC-00-00-00-00-00-00-00-00-00-00  
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    Any help would be very much appreciated.


    Update: I just checked out my modem and it does detect the connection and displays it as active. So at least the connection itself is not at fault. Also i tried to ping 192.168.178.1, but got the message: "network is unreachable". It does work in windows on one of the other PC's.
    Last edited by Triple Omega; June 28th, 2008 at 01:05 PM. Reason: Update

  2. #2
    Join Date
    May 2008
    Beans
    137

    Re: No network connection

    Hi and welcome fellow Ubuntu user. May I suggest adding a few more lines so that other people, including me get a grip on your configuration, and what might be setup wrong?

    Please attach the output of the following commands:
    Code:
    cat /etc/network/interfaces
    ifconfig
    sudo lshw -C network
    sudo lspci -vv
    sudo ethtool ethN
    
    Note: Please substitute the N in sudo ethtool ethN with either 0 and/or 1
    
    The following commands will most likely fail for you at the moment:
    sudo dhclient (unable to get IP number)
    sudo ifdown eth0 && sudo ifup eth0 (RTNETLINK answers: No such process error)
    route -n (no or invalid route/linked to the above error)
    cat /etc/resolv.conf (probably still empty)
    
    Note: /etc/init.d/networking restart will also fail when sudo ifdown ethN produced an error because ifdown is part of that script!
    Now look for driver=xxx and module=xxx (the one corresponding to the above commands) in the output of sudo lshw -C network and use that to substitute modulename in the following command:

    Code:
    sudo lsmod|grep modulename
    I just noticed your additional comment (update) about having ping'ed to 192.168.178.1 which failed, but what are the other IP numbers? Especially the one of your DSL modem, which is normally 192.168.1.254 (correct me if I am wrong) so that might explain why you can't ping?!?

    Reminder: Inform people to hide the last three octets (nn:nn:nn) of their MAC address
    - 'Triple Omega' seems to use two asus on-board ports and one additional AzureWave adapter
    Last edited by Master Chief; June 28th, 2008 at 03:36 PM. Reason: Adding a reminder

  3. #3
    Join Date
    Feb 2008
    Beans
    10

    Re: No network connection

    Hey Master Chief.

    I'll run those commands now and post the results in a min. As for the network adress thing. It is 192.168.178.1 like i posted before. Not 192.168.178.254(I tried to ping it)

    I also have a small update:
    I tried to change the wire from my eth0 to my eth1 port(Both 1gbit connections) to see if my modem was actually detecting my connection correctly and it was. It immediatly got it's MAC adress and gave it a new IP(visible in the modems settings), but nothing was changed on the other end. Wich leads me to believe that somehow Ubuntu is either not receiving the data or not processing it correctly.

    I'll post those results in a minute.

  4. #4
    Join Date
    May 2008
    Beans
    137

    Re: No network connection

    Quote Originally Posted by Triple Omega View Post
    Hey Master Chief.

    ... As for the network adress thing. It is 192.168.178.1 like i posted before. Not 192.168.178.254(I tried to ping it)
    It should be 192.168.1.254

    Note: Please add the output of ipconfig /all from one of the windows computers (mask anything sensitive like the last three octets of your MAC address!).

    Quote Originally Posted by Triple Omega;
    I also have a small update:
    I tried to change the wire from my eth0 to my eth1 port(Both 1gbit connections) to see if my modem was actually detecting my connection correctly and it was. It immediatly got it's MAC adress and gave it a new IP(visible in the modems settings), but nothing was changed on the other end. Wich leads me to believe that somehow Ubuntu is either not receiving the data or not processing it correctly.
    That is good news, but I would be surprised if both adapters were active, but we will see in a minute

  5. #5
    Join Date
    Feb 2008
    Beans
    10

    Re: No network connection

    I have all the data, but a lot of it contains hardware adresses.(As in something like XX-XX-XX-XX-XX-XX) I'm thinking i should mask all of these?

    EDIT: Is there anything else that needs to be filtered/masked?
    Last edited by Triple Omega; June 28th, 2008 at 05:03 PM.

  6. #6
    Join Date
    May 2008
    Beans
    137

    Re: No network connection

    Quote Originally Posted by Triple Omega View Post
    I have all the data, but a lot of it contains hardware adresses.(As in something like XX-XX-XX-XX-XX-XX) I'm thinking i should mask all of these?

    EDIT: Is there anything else that needs to be filtered/masked?
    Do a search for 00:18:f3:9d:68:cd and replace all of them with 00:18:f3:01:01:01 Now also search for 00:18:f3:9c:b8:9a and replace all of them with 00:18:f3:02:02:02 This way you keep everything uniquely bound, which is what people here need in order to help you, but do it without giving too much away

    Sure, you can setup a profile here and share loads of data with other people here, but in case you don't want to share anything, just hide your IP info (and other sensitive info) as much as you can.

  7. #7
    Join Date
    Feb 2008
    Beans
    10

    Re: No network connection

    Output results:

    cat /etc/network/interfaces

    Code:
    auto lo
    iface lo inet loopback

    ifconfig

    Code:
    eth0      Link encap:Ethernet  HWaddr 00:18:f3:01:01:01  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
              Interrupt:249 Base address:0xc000 
    
    eth1      Link encap:Ethernet  HWaddr 00:18:f3:02:02:02  
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:10502 (10.2 KB)
              Interrupt:250 Base address:0xe000 
    
    eth1:avahi Link encap:Ethernet  HWaddr 00:18:f3:02:02:02  
              inet addr:169.254.9.181  Bcast:169.254.255.255  Mask:255.255.0.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              Interrupt:250 Base address:0xe000 
    
    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:1028 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1028 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:51784 (50.5 KB)  TX bytes:51784 (50.5 KB)
    
    wlan0     Link encap:Ethernet  HWaddr 00:15:af:03:03:03  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    
    wmaster0  Link encap:UNSPEC  HWaddr 00-15-AF-03-03-03-00-00-00-00-00-00-00-00-00-00  
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

    sudo lshw -C network

    Code:
      *-network               
           description: Wireless interface
           physical id: 1
           logical name: wlan0
           serial: 00:15:af:03:03:03
           capabilities: ethernet physical wireless
           configuration: broadcast=yes multicast=yes wireless=IEEE 802.11g
    sudo lspci -vv

    Code:
    00:00.0 Host bridge: nVidia Corporation Unknown device 0071 (rev c1)
            Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
            Latency: 0
            Capabilities: [40] HyperTransport: Host or Secondary Interface
                    Command: WarmRst+ DblEnd-
                    Link Control: CFlE+ CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0
                    Link Config: MLWI=8bit MLWO=8bit LWI=8bit LWO=8bit
                    Revision ID: 0.16
    
    00:00.1 RAM memory: nVidia Corporation Unknown device 007f (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:00.2 RAM memory: nVidia Corporation Unknown device 0075 (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:00.3 RAM memory: nVidia Corporation Unknown device 006f (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:00.4 RAM memory: nVidia Corporation Unknown device 00b4 (rev a1)
            Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
            Latency: 0
    
    00:01.0 RAM memory: nVidia Corporation Unknown device 0076 (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:01.1 RAM memory: nVidia Corporation Unknown device 0078 (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:01.2 RAM memory: nVidia Corporation Unknown device 0079 (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:01.3 RAM memory: nVidia Corporation Unknown device 007a (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:01.4 RAM memory: nVidia Corporation Unknown device 007b (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:01.5 RAM memory: nVidia Corporation Unknown device 007c (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:01.6 RAM memory: nVidia Corporation Unknown device 007d (rev a1)
            Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:02.0 PCI bridge: nVidia Corporation Unknown device 007e (rev a2) (prog-if 00 [Normal decode])
            Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
            Latency: 0, Cache Line Size: 32 bytes
            Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
            I/O behind bridge: 00007000-00007fff
            Memory behind bridge: f8000000-fbffffff
            Prefetchable memory behind bridge: 00000000d0000000-00000000dfffffff
    	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    	BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
    	Capabilities: [40] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [48] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable+
    		Address: 00000000fee0300c  Data: 4149
    	Capabilities: [80] Express Root Port (Slot+) IRQ 0
    		Device: Supported: MaxPayload 128 bytes, PhantFunc 0, ExtTag-
    		Device: Latency L0s <512ns, L1 <4us
    		Device: Errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
    		Device: RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
    		Device: MaxPayload 128 bytes, MaxReadReq 512 bytes
    		Link: Supported Speed 2.5Gb/s, Width x16, ASPM L0s, Port 0
    		Link: Latency L0s <1us, L1 <4us
    		Link: ASPM Disabled RCB 64 bytes CommClk- ExtSynch-
    		Link: Speed 2.5Gb/s, Width x16
    		Slot: AtnBtn- PwrCtrl- MRL- AtnInd- PwrInd- HotPlug- Surpise-
    		Slot: Number 1, PowerLimit 0.000000
    		Slot: Enabled AtnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq-
    		Slot: AttnInd Unknown, PwrInd Unknown, Power-
    		Root: Correctable- Non-Fatal- Fatal- PME-
    
    00:05.0 PCI bridge: nVidia Corporation Unknown device 007e (rev a2) (prog-if 00 [Normal decode])
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0, Cache Line Size: 32 bytes
    	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    	I/O behind bridge: 00008000-00008fff
    	Memory behind bridge: fdf00000-fdffffff
    	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
    	Capabilities: [40] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [48] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable+
    		Address: 00000000fee0300c  Data: 4151
    	Capabilities: [80] Express Root Port (Slot+) IRQ 0
    		Device: Supported: MaxPayload 128 bytes, PhantFunc 0, ExtTag-
    		Device: Latency L0s <512ns, L1 <4us
    		Device: Errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
    		Device: RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
    		Device: MaxPayload 128 bytes, MaxReadReq 512 bytes
    		Link: Supported Speed 2.5Gb/s, Width x1, ASPM L0s, Port 2
    		Link: Latency L0s <1us, L1 <4us
    		Link: ASPM Disabled RCB 64 bytes CommClk- ExtSynch-
    		Link: Speed 2.5Gb/s, Width x1
    		Slot: AtnBtn- PwrCtrl- MRL- AtnInd- PwrInd- HotPlug- Surpise-
    		Slot: Number 4, PowerLimit 0.000000
    		Slot: Enabled AtnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq-
    		Slot: AttnInd Unknown, PwrInd Unknown, Power-
    		Root: Correctable- Non-Fatal- Fatal- PME-
    
    00:09.0 RAM memory: nVidia Corporation MCP55 Memory Controller (rev a1)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0
    	Capabilities: [44] HyperTransport: Slave or Primary Interface
    		Command: BaseUnitID=9 UnitCnt=15 MastHost- DefDir- DUL-
    		Link Control 0: CFlE+ CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0 IsocEn+ LSEn+ ExtCTL- 64b-
    		Link Config 0: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=8bit DwFcInEn- LWO=8bit DwFcOutEn-
    		Link Control 1: CFlE- CST- CFE- <LkFail+ Init- EOC+ TXO+ <CRCErr=0 IsocEn- LSEn- ExtCTL- 64b-
    		Link Config 1: MLWI=8bit DwFcIn- MLWO=8bit DwFcOut- LWI=8bit DwFcInEn- LWO=8bit DwFcOutEn-
    		Revision ID: 1.03
    		Link Frequency 0: 1.0GHz
    		Link Error 0: <Prot- <Ovfl- <EOC- CTLTm-
    		Link Frequency Capability 0: 200MHz+ 300MHz+ 400MHz+ 500MHz+ 600MHz+ 800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
    		Feature Capability: IsocFC+ LDTSTOP+ CRCTM- ECTLT- 64bA- UIDRD-
    		Link Frequency 1: 200MHz
    		Link Error 1: <Prot- <Ovfl- <EOC- CTLTm-
    		Link Frequency Capability 1: 200MHz- 300MHz- 400MHz- 500MHz- 600MHz- 800MHz- 1.0GHz- 1.2GHz- 1.4GHz- 1.6GHz- Vend-
    		Error Handling: PFlE+ OFlE+ PFE- OFE- EOCFE- RFE- CRCFE- SERRFE- CF- RE- PNFE- ONFE- EOCNFE- RNFE- CRCNFE- SERRNFE-
    		Prefetchable memory behind bridge Upper: 00-00
    		Bus Number: 00
    	Capabilities: [e0] #00 [fee0]
    
    00:0a.0 ISA bridge: nVidia Corporation MCP55 LPC Bridge (rev a2)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0
    
    00:0a.1 SMBus: nVidia Corporation MCP55 SMBus (rev a2)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Interrupt: pin A routed to IRQ 255
    	Region 0: I/O ports at fc00 [size=64]
    	Region 4: I/O ports at 1c00 [size=64]
    	Region 5: I/O ports at 1c80 [size=64]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    
    00:0a.2 RAM memory: nVidia Corporation MCP55 Memory Controller (rev a2)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    
    00:0b.0 USB Controller: nVidia Corporation MCP55 USB Controller (rev a1) (prog-if 10 [OHCI])
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (750ns min, 250ns max)
    	Interrupt: pin A routed to IRQ 23
    	Region 0: Memory at fe02f000 (32-bit, non-prefetchable) [size=4K]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    
    00:0b.1 USB Controller: nVidia Corporation MCP55 USB Controller (rev a2) (prog-if 20 [EHCI])
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (750ns min, 250ns max)
    	Interrupt: pin B routed to IRQ 22
    	Region 0: Memory at fe02e000 (32-bit, non-prefetchable) [size=256]
    	Capabilities: [44] Debug port
    	Capabilities: [80] Power Management version 2
    		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    
    00:0d.0 IDE interface: nVidia Corporation MCP55 IDE (rev a1) (prog-if 8a [Master SecP PriP])
    	Subsystem: Unknown device f043:cb84
    	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (750ns min, 250ns max)
    	Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [disabled] [size=8]
    	Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable) [disabled] [size=1]
    	Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [disabled] [size=8]
    	Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable) [disabled] [size=1]
    	Region 4: I/O ports at f000 [size=16]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    
    00:0e.0 RAID bus controller: nVidia Corporation MCP55 SATA Controller (rev a2) (prog-if 85)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (750ns min, 250ns max)
    	Interrupt: pin A routed to IRQ 23
    	Region 0: I/O ports at 09f0 [size=8]
    	Region 1: I/O ports at 0bf0 [size=4]
    	Region 2: I/O ports at 0970 [size=8]
    	Region 3: I/O ports at 0b70 [size=4]
    	Region 4: I/O ports at dc00 [size=16]
    	Region 5: Memory at fe02d000 (32-bit, non-prefetchable) [size=4K]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [b0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/2 Enable-
    		Address: 0000000000000000  Data: 0000
    	Capabilities: [cc] HyperTransport: MSI Mapping
    
    00:0e.1 RAID bus controller: nVidia Corporation MCP55 SATA Controller (rev a2) (prog-if 85)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (750ns min, 250ns max)
    	Interrupt: pin B routed to IRQ 22
    	Region 0: I/O ports at 09e0 [size=8]
    	Region 1: I/O ports at 0be0 [size=4]
    	Region 2: I/O ports at 0960 [size=8]
    	Region 3: I/O ports at 0b60 [size=4]
    	Region 4: I/O ports at c800 [size=16]
    	Region 5: Memory at fe02c000 (32-bit, non-prefetchable) [size=4K]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [b0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/2 Enable-
    		Address: 0000000000000000  Data: 0000
    	Capabilities: [cc] HyperTransport: MSI Mapping
    
    00:0e.2 IDE interface: nVidia Corporation MCP55 SATA Controller (rev a2) (prog-if 85 [Master SecO PriO])
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (750ns min, 250ns max)
    	Interrupt: pin C routed to IRQ 21
    	Region 0: I/O ports at c400 [size=8]
    	Region 1: I/O ports at c000 [size=4]
    	Region 2: I/O ports at bc00 [size=8]
    	Region 3: I/O ports at b800 [size=4]
    	Region 4: I/O ports at b400 [size=16]
    	Region 5: Memory at fe02b000 (32-bit, non-prefetchable) [size=4K]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [b0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/2 Enable-
    		Address: 0000000000000000  Data: 0000
    	Capabilities: [cc] HyperTransport: MSI Mapping
    
    00:0f.0 PCI bridge: nVidia Corporation MCP55 PCI bridge (rev a2) (prog-if 01 [Subtractive decode])
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0
    	Bus: primary=00, secondary=03, subordinate=03, sec-latency=32
    	I/O behind bridge: 00009000-00009fff
    	Memory behind bridge: f0000000-f7ffffff
    	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
    	Capabilities: [b8] Subsystem: nVidia Corporation Unknown device cb84
    	Capabilities: [8c] HyperTransport: MSI Mapping
    
    00:11.0 Bridge: nVidia Corporation MCP55 Ethernet (rev a2)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (250ns min, 5000ns max)
    	Interrupt: pin A routed to IRQ 505
    	Region 0: Memory at fe02a000 (32-bit, non-prefetchable) [size=4K]
    	Region 1: I/O ports at b000 [size=8]
    	Region 2: Memory at fe029000 (32-bit, non-prefetchable) [size=256]
    	Region 3: Memory at fe028000 (32-bit, non-prefetchable) [size=16]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable+ DSel=0 DScale=0 PME-
    	Capabilities: [70] MSI-X: Enable- Mask- TabSize=8
    		Vector table: BAR=2 offset=00000000
    		PBA: BAR=3 offset=00000000
    	Capabilities: [50] Message Signalled Interrupts: Mask+ 64bit+ Queue=0/3 Enable+
    		Address: 00000000fee0300c  Data: 41a9
    		Masking: 000000fe  Pending: 00000001
    	Capabilities: [6c] HyperTransport: MSI Mapping
    
    00:12.0 Bridge: nVidia Corporation MCP55 Ethernet (rev a2)
    	Subsystem: ASUSTeK Computer Inc. Unknown device cb84
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0 (250ns min, 5000ns max)
    	Interrupt: pin A routed to IRQ 506
    	Region 0: Memory at fe027000 (32-bit, non-prefetchable) [size=4K]
    	Region 1: I/O ports at ac00 [size=8]
    	Region 2: Memory at fe026000 (32-bit, non-prefetchable) [size=256]
    	Region 3: Memory at fe025000 (32-bit, non-prefetchable) [size=16]
    	Capabilities: [44] Power Management version 2
    		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable+ DSel=0 DScale=0 PME-
    	Capabilities: [70] MSI-X: Enable- Mask- TabSize=8
    		Vector table: BAR=2 offset=00000000
    		PBA: BAR=3 offset=00000000
    	Capabilities: [50] Message Signalled Interrupts: Mask+ 64bit+ Queue=0/3 Enable+
    		Address: 00000000fee0300c  Data: 41a1
    		Masking: 000000fe  Pending: 00000001
    	Capabilities: [6c] HyperTransport: MSI Mapping
    
    00:13.0 PCI bridge: nVidia Corporation MCP55 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
    	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0, Cache Line Size: 32 bytes
    	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
    	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
    	Capabilities: [40] Subsystem: nVidia Corporation Unknown device 0000
    	Capabilities: [48] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable+
    		Address: 00000000fee0300c  Data: 4159
    	Capabilities: [60] HyperTransport: MSI Mapping
    	Capabilities: [80] Express Root Port (Slot+) IRQ 0
    		Device: Supported: MaxPayload 256 bytes, PhantFunc 0, ExtTag-
    		Device: Latency L0s <512ns, L1 <4us
    		Device: Errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
    		Device: RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
    		Device: MaxPayload 256 bytes, MaxReadReq 512 bytes
    		Link: Supported Speed 2.5Gb/s, Width x8, ASPM L0s L1, Port 5
    		Link: Latency L0s <512ns, L1 <4us
    		Link: ASPM Disabled RCB 64 bytes CommClk- ExtSynch-
    		Link: Speed 2.5Gb/s, Width x8
    		Slot: AtnBtn- PwrCtrl- MRL- AtnInd- PwrInd- HotPlug- Surpise-
    		Slot: Number 0, PowerLimit 0.000000
    		Slot: Enabled AtnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq-
    		Slot: AttnInd Off, PwrInd On, Power-
    		Root: Correctable- Non-Fatal- Fatal- PME-
    
    00:17.0 PCI bridge: nVidia Corporation MCP55 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
    	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0, Cache Line Size: 32 bytes
    	Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
    	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
    	Capabilities: [40] Subsystem: nVidia Corporation Unknown device 0000
    	Capabilities: [48] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable+
    		Address: 00000000fee0300c  Data: 4161
    	Capabilities: [60] HyperTransport: MSI Mapping
    	Capabilities: [80] Express Root Port (Slot+) IRQ 0
    		Device: Supported: MaxPayload 256 bytes, PhantFunc 0, ExtTag-
    		Device: Latency L0s <512ns, L1 <4us
    		Device: Errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
    		Device: RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
    		Device: MaxPayload 256 bytes, MaxReadReq 512 bytes
    		Link: Supported Speed 2.5Gb/s, Width x1, ASPM L0s L1, Port 1
    		Link: Latency L0s <512ns, L1 <4us
    		Link: ASPM Disabled RCB 64 bytes CommClk- ExtSynch-
    		Link: Speed 2.5Gb/s, Width x8
    		Slot: AtnBtn- PwrCtrl- MRL- AtnInd- PwrInd- HotPlug- Surpise-
    		Slot: Number 0, PowerLimit 0.000000
    		Slot: Enabled AtnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq-
    		Slot: AttnInd Off, PwrInd On, Power-
    		Root: Correctable- Non-Fatal- Fatal- PME-
    
    00:18.0 PCI bridge: nVidia Corporation MCP55 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
    	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0, Cache Line Size: 32 bytes
    	Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
    	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
    	Capabilities: [40] Subsystem: nVidia Corporation Unknown device 0000
    	Capabilities: [48] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable+
    		Address: 00000000fee0300c  Data: 4169
    	Capabilities: [60] HyperTransport: MSI Mapping
    	Capabilities: [80] Express Root Port (Slot+) IRQ 0
    		Device: Supported: MaxPayload 256 bytes, PhantFunc 0, ExtTag-
    		Device: Latency L0s <512ns, L1 <4us
    		Device: Errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
    		Device: RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
    		Device: MaxPayload 128 bytes, MaxReadReq 512 bytes
    		Link: Supported Speed 2.5Gb/s, Width x16, ASPM L0s L1, Port 0
    		Link: Latency L0s <512ns, L1 <4us
    		Link: ASPM Disabled RCB 64 bytes CommClk- ExtSynch-
    		Link: Speed 2.5Gb/s, Width x16
    		Slot: AtnBtn- PwrCtrl- MRL- AtnInd- PwrInd- HotPlug- Surpise-
    		Slot: Number 0, PowerLimit 0.000000
    		Slot: Enabled AtnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq-
    		Slot: AttnInd Off, PwrInd On, Power-
    		Root: Correctable- Non-Fatal- Fatal- PME-
    
    01:00.0 VGA compatible controller: nVidia Corporation G80 [GeForce 8800 GTS] (rev a2) (prog-if 00 [VGA controller])
    	Subsystem: nVidia Corporation Unknown device 0421
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0, Cache Line Size: 32 bytes
    	Interrupt: pin A routed to IRQ 11
    	Region 0: Memory at fa000000 (32-bit, non-prefetchable) [size=16M]
    	Region 1: Memory at d0000000 (64-bit, prefetchable) [size=256M]
    	Region 3: Memory at f8000000 (64-bit, non-prefetchable) [size=32M]
    	Region 5: I/O ports at 7c00 [size=128]
    	Expansion ROM at fbfe0000 [disabled] [size=128K]
    	Capabilities: [60] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [68] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
    		Address: 0000000000000000  Data: 0000
    	Capabilities: [78] Express Endpoint IRQ 0
    		Device: Supported: MaxPayload 128 bytes, PhantFunc 0, ExtTag-
    		Device: Latency L0s <1us, L1 <4us
    		Device: AtnBtn- AtnInd- PwrInd-
    		Device: Errors: Correctable- Non-Fatal- Fatal- Unsupported-
    		Device: RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
    		Device: MaxPayload 128 bytes, MaxReadReq 512 bytes
    		Link: Supported Speed 2.5Gb/s, Width x16, ASPM L0s L1, Port 0
    		Link: Latency L0s <1us, L1 <4us
    		Link: ASPM Disabled RCB 128 bytes CommClk- ExtSynch-
    		Link: Speed 2.5Gb/s, Width x16
    
    02:00.0 Mass storage controller: Silicon Image, Inc. SiI 3132 Serial ATA Raid II Controller (rev 01)
    	Subsystem: ASUSTeK Computer Inc. Unknown device 819f
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 0, Cache Line Size: 32 bytes
    	Interrupt: pin A routed to IRQ 16
    	Region 0: Memory at fdfff000 (64-bit, non-prefetchable) [size=128]
    	Region 2: Memory at fdff8000 (64-bit, non-prefetchable) [size=16K]
    	Region 4: I/O ports at 8c00 [size=128]
    	Expansion ROM at fdf00000 [disabled] [size=512K]
    	Capabilities: [54] Power Management version 2
    		Flags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    		Status: D0 PME-Enable- DSel=0 DScale=1 PME-
    	Capabilities: [5c] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
    		Address: 0000000000000000  Data: 0000
    	Capabilities: [70] Express Legacy Endpoint IRQ 0
    		Device: Supported: MaxPayload 1024 bytes, PhantFunc 0, ExtTag-
    		Device: Latency L0s <64ns, L1 <1us
    		Device: AtnBtn- AtnInd- PwrInd-
    		Device: Errors: Correctable- Non-Fatal- Fatal- Unsupported-
    		Device: RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    		Device: MaxPayload 128 bytes, MaxReadReq 512 bytes
    		Link: Supported Speed 2.5Gb/s, Width x1, ASPM L0s, Port 0
    		Link: Latency L0s unlimited, L1 unlimited
    		Link: ASPM Disabled RCB 64 bytes CommClk- ExtSynch-
    		Link: Speed 2.5Gb/s, Width x1
    
    03:06.0 Multimedia audio controller: Creative Labs SB X-Fi
    	Subsystem: Creative Labs Unknown device 002f
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 32 (1000ns min, 1250ns max), Cache Line Size: 32 bytes
    	Interrupt: pin A routed to IRQ 10
    	Region 0: I/O ports at 9c00 [size=32]
    	Region 1: Memory at f7c00000 (64-bit, non-prefetchable) [size=2M]
    	Region 3: Memory at f0000000 (64-bit, non-prefetchable) [size=64M]
    	Capabilities: [40] Power Management version 2
    		Flags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    	Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
    		Address: 0000000000000000  Data: 0000
    
    03:0b.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller (rev c0) (prog-if 10 [OHCI])
    	Subsystem: ASUSTeK Computer Inc. Unknown device 81fe
    	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
    	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
    	Latency: 32 (8000ns max), Cache Line Size: 32 bytes
    	Interrupt: pin A routed to IRQ 19
    	Region 0: Memory at f7fff000 (32-bit, non-prefetchable) [size=2K]
    	Region 1: I/O ports at 9800 [size=128]
    	Capabilities: [50] Power Management version 2
    		Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0-,D1-,D2+,D3hot+,D3cold+)
    		Status: D0 PME-Enable- DSel=0 DScale=0 PME-

    sudo ethtool eth1

    Code:
    Settings for eth1:
            Supported ports: [ MII ]
            Supported link modes:   10baseT/Half 10baseT/Full 
                                    100baseT/Half 100baseT/Full 
                                    1000baseT/Full 
            Supports auto-negotiation: Yes
            Advertised link modes:  10baseT/Half 10baseT/Full 
                                    100baseT/Half 100baseT/Full 
                                    1000baseT/Full 
            Advertised auto-negotiation: Yes
            Speed: 100Mb/s
            Duplex: Full
            Port: MII
            PHYAD: 1
            Transceiver: external
            Auto-negotiation: on
            Supports Wake-on: g
            Wake-on: d
            Link detected: yes

    sudo dhclient

    Code:
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    wmaster0: unknown hardware address type 801
    wmaster0: unknown hardware address type 801
    Listening on LPF/wlan0/00:15:af:03:03:03
    Sending on   LPF/wlan0/00:15:af:03:03:03
    Listening on LPF/wmaster0/
    Sending on   LPF/wmaster0/
    Listening on LPF/eth0/00:18:f3:01:01:01
    Sending on   LPF/eth0/00:18:f3:01:01:01
    Listening on LPF/eth1/00:18:f3:02:02:02
    Sending on   LPF/eth1/00:18:f3:02:02:02
    Sending on   Socket/fallback
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
    DHCPDISCOVER on wmaster0 to 255.255.255.255 port 67 interval 3
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 10
    DHCPDISCOVER on wmaster0 to 255.255.255.255 port 67 interval 4
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6
    DHCPDISCOVER on wmaster0 to 255.255.255.255 port 67 interval 9
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
    DHCPDISCOVER on wmaster0 to 255.255.255.255 port 67 interval 13
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 13
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 9
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 7
    DHCPDISCOVER on wmaster0 to 255.255.255.255 port 67 interval 2
    No DHCPOFFERS received.
    No working leases in persistent database - sleeping.

    sudo ifdown eth1


    Code:
    ifdown: interface eth1 not configured

    sudo ifup eth1

    Code:
    Ignoring unknown interface eth1=eth1.

    route -n

    Code:
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 eth1
    169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 eth0
    169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 wlan0
    0.0.0.0         0.0.0.0         0.0.0.0         U     1000   0        0 eth1

    cat /etc/resolv.conf

    Code:
    cat: /etc/resolv.conf: No such file or directory
    As for your last command. Since the "sudo lshw -C network" command apparently returned info on wlan not my wired connections and didn't contain any information on driver or module i couldn't execute it.


    Extra comments

    I'll run an ipconfig tomorrow for you(It's late and everythings already shutdown).
    As for the IP of my modem. Pinging 192.168.1.254(on one of the other comps) failed so thats probably not it. Also i change the settings of my modem on 192.168.178.1, so...



    Thanks for helping.

  8. #8
    Join Date
    May 2008
    Beans
    137

    Re: No network connection

    Sorry for the delay but I was occupied with other things here.

    Let's first disable roaming mode for the time being. Please don't use it until everything is up and running. Please add the following lines to
    /etc/network/interfaces to disable it, and make DHCP work.

    Code:
    auto eth0
    iface eth0 inet dhcp
    Next thing is to check: /etc/udev/rules.d/70-persistent-net.rules

    There should be two lines, but swap eth0 and eth1 first and restart with:

    Code:
    /etc/init.d/networking restart
    The previous lshw -C network didn't work so please do one without -C network and copy the network adapter into your reply.

    Tip: Just search for your MAC addresses (called serials here).

    We are after this line:
    configuration: broadcast=yes driver=???? driverversion=???? firmware=N/A ip=169.254.9.181 latency=0 module=????
    Last edited by Master Chief; July 1st, 2008 at 09:49 PM.

  9. #9
    Join Date
    Feb 2008
    Beans
    10

    Re: No network connection

    Sorry for posting so late, but i just couldn't find the time.


    sudo gedit /etc/network/interfaces
    Changed to:

    Code:
    auto lo
    iface lo inet loopback
    auto eth0
    iface eth0 inet dhcp

    I didn't quite understand what you meant by "swap eth0 and eth1", so i just swapped the rules for eth0 and eth1.(The 3 rules at the top that represent eth0 were where the rules that represent eth1 are now and vice versa.) If you meant something else, please tell me.

    sudo gedit /etc/udev/rules.d/70-persistent-net.rules
    Changed to:

    Code:
    # This file maintains persistent names for network interfaces.
    # See udev(7) for syntax.
    #
    # Entries are automatically added by the 75-persistent-net-generator.rules
    # file; however you are also free to add your own entries.
    
    # PCI device 0x10de:0x0373 (forcedeth)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:18:f3:01:01:01", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
    
    # USB device 0x0bda:0x8187 (rtl8187)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:15:af:03:03:03", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"
    
    # PCI device 0x10de:0x0373 (forcedeth)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:18:f3:02:02:02", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

    sudo /etc/init.d/networking restart

    Code:
     * Reconfiguring network interfaces...                                          Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    wmaster0: unknown hardware address type 801
    wmaster0: unknown hardware address type 801
    Listening on LPF/eth0/00:18:f3:01:01:01
    Sending on   LPF/eth0/00:18:f3:01:01:01
    Sending on   Socket/fallback
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 6
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 13
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 2
    No DHCPOFFERS received.
    No working leases in persistent database - sleeping.
    grep: /etc/resolv.conf: No such file or directory
                                                                             [ OK ]
    I put my cable in both eth0 and eth1, neither got me a working connection. Also the connection information showed me that eth1 was connected(no matter where the cable was), but still had all 0.0.0.0. I find this quite strange, since everything I did just now is related to eth0 not eth1. Did I do something wrong there?

  10. #10
    Join Date
    May 2008
    Beans
    137

    Re: No network connection

    /etc/network/interfaces look alright.

    /etc/udev/rules.d/70-persistent-net.rules tels me that you are using the forcedeth driver for your lan adapters. The NIC's are NVIDIA Dual Gigabit MAC with external Marvell PHY.

    Check the following:

    Code:
    dmesg |grep udev
    to see if the network adapters are getting swapped or not. Followed by:

    Code:
    dmesg |grep eth
    to see if there are any errors at boot time. Try this:

    Code:
    sudo modprobe -r forcedeth
    sudo modprobe forcedeth
    to unload and re-load the driver for your network adapter. That should add additional lines to dmesg

    My last tip would be that you need to re-enable eth0 like so:

    Code:
    ifup eth0
    Note: ifdown is its counterpart

    Check /etc/modules like so:

    Code:
    cat /etc/modules
    Do you see forcedeth there. If not add it with this command:

    Code:
    sudo /etc/modules
    Make sure it gets its own line. If it wasn't there then sudo modprobe forcedeth should have load it for you, but in that case you still have to restart your network like so:

    Code:
    sudo /etc/init.d/networking restart
    Seems like that the drivers are included, but that you need to set some options in some modprobe.conf file. I'm afraid I can't help you with this since I neither have this adapter nor do I have info about how to solve this problem. Hopefully someone else will step in, but start with a search for forcedeth on this forum (or google) and that should help, eventually.

    You probably need to add msi=0 msix=0 as options when you load the driver aka:

    Code:
    sudo modprobe forcedeth msi=0 msix=0
    Have you already tried that?

    I'm very sorry that I was unable to help you, but good luck!
    Last edited by Master Chief; July 4th, 2008 at 10:53 PM. Reason: Addibng found options...

Bookmarks

Posting Permissions

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