You are not logged in.
Hi!
I was using this setup months ago, then I had to travel so not used that laptop... When I came back I updated my arch laptop and then I realized that can not connect through wicd to the dlink router...
wicd keeps saying "wrong password"...
I tried using netcfg wpa and it works, it connects ok
Here the wpa file contents
cat /etc/network.d/wpa
CONNECTION='wireless'
INTERFACE='wlan0'
#SCAN='yes'
SECURITY='wpa'
ESSID='myessid'
KEY='thecurrentpassord'
IP='static'
ADDR='192.168.0.100'
GATEWAY='192.168.0.1'
DNS1=('8.8.8.8')
DNS2=('8.8.4.4')
#TIMEOUT=20
here the lsmod output
$ lsmod
Module Size Used by
nls_cp437 4605 1
vfat 8739 1
fat 43074 1 vfat
cryptd 6893 0
aes_i586 6940 2
aes_generic 25670 1 aes_i586
appletalk 22087 0
ipx 16962 0
p8022 855 1 ipx
psnap 1489 2 appletalk,ipx
llc 3029 2 p8022,psnap
p8023 784 1 ipx
ipv6 249894 10
coretemp 4927 0
uvcvideo 57459 0
videodev 70542 1 uvcvideo
usbhid 31199 0
uas 6440 0
usb_storage 35247 1
media 8545 2 uvcvideo,videodev
hid 65215 1 usbhid
snd_hda_codec_realtek 222220 1
btusb 9889 0
bluetooth 121489 1 btusb
crc16 1069 1 bluetooth
snd_hda_intel 19101 4
i915 612484 2
joydev 7439 0
firewire_ohci 25944 0
firewire_core 43387 1 firewire_ohci
serio_raw 3390 0
iTCO_wdt 10293 0
i2c_i801 7063 0
usblp 9303 0
snd_hda_codec 66954 2 snd_hda_codec_realtek,snd_hda_intel
drm_kms_helper 21997 1 i915
drm 147750 3 i915,drm_kms_helper
fuse 58597 5
sdhci_pci 6942 0
sdhci 19250 1 sdhci_pci
dell_laptop 6983 0
snd_hwdep 4942 1 snd_hda_codec
snd_pcm 60079 3 snd_hda_intel,snd_hda_codec
snd_timer 15374 2 snd_pcm
snd 43561 12 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
dell_wmi 1217 0
sparse_keymap 2628 1 dell_wmi
soundcore 4986 1 snd
i2c_algo_bit 4423 1 i915
intel_agp 8720 1 i915
intel_gtt 11417 3 i915,intel_agp
wmi 7199 1 dell_wmi
dcdbas 4244 1 dell_laptop
sg 20982 0
mmc_core 65410 1 sdhci
psmouse 56431 0
acpi_cpufreq 5113 1
iTCO_vendor_support 1545 1 iTCO_wdt
i2c_core 16625 6 videodev,i915,i2c_i801,drm_kms_helper,drm,i2c_algo_bit
agpgart 22096 3 drm,intel_agp,intel_gtt
evdev 7278 11
pcspkr 1375 0
snd_page_alloc 5837 2 snd_hda_intel,snd_pcm
processor 21876 3 acpi_cpufreq
video 9780 1 i915
crc_itu_t 1069 1 firewire_core
battery 4889 0
ac 1796 0
button 3646 1 i915
mperf 1027 1 acpi_cpufreq
arc4 1086 2
iwl3945 66433 0
iwl_legacy 45530 1 iwl3945
mac80211 191276 2 iwl3945,iwl_legacy
cfg80211 138492 3 iwl3945,iwl_legacy,mac80211
rfkill 12406 3 bluetooth,dell_laptop,cfg80211
r8169 35935 0
mii 3375 1 r8169
ext3 112414 4
jbd 40433 1 ext3
mbcache 4249 1 ext3
uhci_hcd 19609 0
ehci_hcd 34935 0
usbcore 119612 9 uvcvideo,usbhid,uas,usb_storage,btusb,usblp,uhci_hcd,ehci_hcd
sr_mod 13244 0
cdrom 31277 1 sr_mod
sd_mod 26147 9
ata_piix 18561 0
ahci 18117 7
libahci 16573 1 ahci
ata_generic 2455 0
pata_acpi 2388 0
libata 154449 5 ata_piix,ahci,libahci,ata_generic,pata_acpi
scsi_mod 111801 6 uas,usb_storage,sg,sr_mod,sd_mod,libata
Any idea? what to check?
I arch, you arch, he arch, she arch, we arch, they arch...
Offline
What version of wicd and net-tools do you have installed?
Offline
here that information
extra/wicd 1.7.0-11
core/net-tools 1.60.20110819cvs-1
I arch, you arch, he arch, she arch, we arch, they arch...
Offline
Have you tried removing and recreating the profile? Given that it works in netcfg, that seems a likely course to pursue.
Offline
Wich profile?
I arch, you arch, he arch, she arch, we arch, they arch...
Offline
Don't netcfg and wicd use different configs? netcfg PROFILES are in /etc/network.d/ while wicd configs are in /etc/wicd/... And wpa_supplicant (your main wpa-config file) is at /etc/wpa_supplicant.conf ...
So what you posted in your original post
Here the wpa file contents
cat /etc/network.d/wpaCONNECTION='wireless' INTERFACE='wlan0' #SCAN='yes' SECURITY='wpa' ESSID='myessid' KEY='thecurrentpassord' IP='static' ADDR='192.168.0.100' GATEWAY='192.168.0.1' DNS1=('8.8.8.8') DNS2=('8.8.4.4') #TIMEOUT=20
is NOT your wpa config but only a netcfg profile called "wpa" ....
So just compare the contents of /etc/network.d/wpa with your wicd config file, and the problem should be solved :-)
Offline