Announcement

Collapse
No announcement yet.

No Network Connection?

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    No Network Connection?

    Recently I decided to upgrade to Gutsy, which gave me a nifty kernal upgrade taking me to 2.6.22-8-generic, which had a known bug with my wireless network adapter's chipset, so I still used 2.6.20-16-generic while I waited for the next upgrade. I was so happy when I saw that I would be upgrading to 2.6.22-9-generic, and happier when my wireless adapter worked. Sadly things aren't that cool, now I am unable to connect to my network via wired or wireless, does anyone known of this problem?

    I'll post my 'interface' file contents for reference, but I can't post the result of 'ifconfig' or 'iwconfig' as I have booted into 2.6.20-16-generic again and the results of this version and 2.6.22-9-generic are different for some reason.

    /etc/network/interfaces
    Code:
    auto lo
    iface lo inet loopback
    address 127.0.0.1
    netmask 255.0.0.0
    
    
    iface eth0 inet dhcp
    
    auto eth1
    iface eth1 inet dhcp
    
    auto eth2
    iface eth2 inet dhcp
    
    auto ath0
    iface ath0 inet dhcp
    
    
    
    auto wlan0
    iface wlan0 inet dhcp
    wireless-essid default
    
    auto eth0
    
    
    
    iface rausb0 inet dhcp
    wireless-essid default
    
    
    
    auto rausb0
    FYI 'wlan0' is the interface that 2.6.22-9-generic uses and 'rausb0' is the interface 2.6.20-16-generic uses. Any help will be appreciated, as I am still pretty new to Linux.

    #2
    Re: No Network Connection?

    I decided that the results of iwconfig would be useless because this problem persists over both wired and wireless, but after comparing the results of ifconfig from both kernels I noticed a couple differences, so perhaps the problem lies there.

    ifconfig
    Code:
    eth0   Link encap:Ethernet HWaddr 00:E0:18:A6:27:DE
         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:23 Base address:0x6000
    
    eth0:avah Link encap:Ethernet HWaddr 00:E0:18:A6:27:DE
         inet addr:169.254.7.245 Bcast:169.254.255.255 Mask:255.255.0.0
         UP BROADCAST MULTICAST MTU:1500 Metric:1
         Interrupt:23 Base address:0x6000
    
    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:67 errors:0 dropped:0 overruns:0 frame:0
         TX packets:67 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:0
         RX bytes:5124 (5.0 KB) TX bytes:5124 (5.0 KB)
    
    wlan0   Link encap:Ethernet HWaddr 00:14:BF:75:DF:D0
         inet addr:192.168.0.104 Bcast:192.168.0.255 Mask:255.255.255.0
         inet6 addr: fe80::214:bfff:fe75:dfd0/64 Scope:Link
         UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
         RX packets:2280 errors:0 dropped:0 overruns:0 frame:0
         TX packets:1962 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:1000
         RX bytes:2532466 (2.4 MB) TX bytes:209674 (204.7 KB)
    
    wmaster0 Link encap:UNSPEC HWaddr 00-14-BF-75-DF-D0-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)
    If anything doesn't look right to you let me know. Just FYI, 'wmaster0' which is an unspecified device interface, does not appear in kernel version 2.6.20-16-generic. Also if there seems to be a bug somewhere let me know so I can report it to the development staff.

    Comment

    Working...
    X