I meant, your wired cable still plugin while trying access using wireless. That will not work..
Like I said before, those automatic tools sometime can cause problem.
Let's do the old skool.
Test first:
Disable automatic tool (some call zeroconfig) usually some avahi module, resolvconfig and network-manager.
From you screenshot, it's network-manager.
Kill all this services:
1. killall -9 dhcdbd
2. killall -9 NetworkManager
3. killall -9 NetworkManagerDispatcher
Edit /etc/resolv.conf :
CODE
nameserver 202.188.0.133
nameserver 202.188.1.5
nameserver 202.188.1.5
Now edit your /etc/network/interfaces so it will look like this:
In this example, we disable the wired network so it will not clash with wireless.
Test 1
1. Dynamic ip
CODE
auto lo wlan0
iface lo inet loopback
iface wlan0 inet dhcp
iface lo inet loopback
iface wlan0 inet dhcp
Restart network: /etc/init.d/networking restart
Test 2
2. Static ip
CODE
auto lo wlan0
iface lo inet loopback
iface wlan0 inet static
address 10.0.0.21
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
gateway 10.0.0.1
iface lo inet loopback
iface wlan0 inet static
address 10.0.0.21
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
gateway 10.0.0.1
Restart networking: /etc/init.d/networking restart
Check ifconfig to see wlan0 get ip.
See if you can connect to internet.
If the above works, you better off without network-manager. Remove/uninstall network-manager and dhcdbd. So does resolvconfig.
This post has been edited by oshiri: Aug 21 2008, 07:59 AM
Aug 21 2008, 07:52 AM
Quote
0.0217sec
0.63
7 queries
GZIP Disabled