The icon with two computer terminals would indicate your wifi module is not connected or not detected. It would change to the wifi icon if your wifi module is working.Bosse_B wrote:I plugged in my new Edimax EW-7811 WiFi dongle in order to test how it would connect to my home network.
Went looking for the WiFi setup program which is described on this manual page:
https://www.raspberrypi.org/documentati ... /wireless/
But on my Raspbian from the Wheezy image dated 2015-05-05 there is no such icon to be seen.
Has it been removed and the documentation is not updated or what?
On the menu bar I only see the network symbol with two computer terminals behind each other. No WiFi symbol at all.
Do I need to install/enable something to get this working?
Code: Select all
pi@rpi2b-wheezy ~ $ lsusb
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 7392:7811 Edimax Technology Co., Ltd EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS]
pi@rpi2b-wheezy ~ $ lsmod
Module Size Used by
8192cu 528365 0
cfg80211 386508 0
rfkill 16651 1 cfg80211
snd_bcm2835 18649 4
snd_pcm 73475 1 snd_bcm2835
snd_seq 53078 0
snd_seq_device 5628 1 snd_seq
snd_timer 17784 2 snd_pcm,snd_seq
snd 51038 13 snd_bcm2835,snd_timer,snd_pcm,snd_seq,snd_seq_device
uio_pdrv_genirq 2958 0
uio 8119 1 uio_pdrv_genirq
pi@rpi2b-wheezy ~ $
Code: Select all
sudo iwlist wlan0 scanCode: Select all
pi@rpi2b-wheezy ~ $ sudo iwlist wlan0 scan
wlan0 Scan completed :
Cell 01 - Address: B8:A3:86:5E:44:C5
ESSID:"bossehemma"
Protocol:IEEE 802.11bg
Mode:Master
Frequency:2.412 GHz (Channel 1)
Encryption key:on
Bit Rates:54 Mb/s
IE: Unknown: DD7C0050F204104A00011010440001021057000101103B0001031047001000000000000010000000B8A3865E44C51021000644 2D4C696E6B1023000D442D4C696E6B20526F75746572102400074449522D363535104200046E6F6E651054000800060050F2040001101100074449522D3635351008000 20080103C000103
Quality=100/100 Signal level=100/100
Cell 02 - Address: 54:A0:50:79:02:B8
ESSID:"Karlbom"
Protocol:IEEE 802.11bgn
Mode:Master
Frequency:2.412 GHz (Channel 1)
Encryption key:on
Bit Rates:300 Mb/s
Extra:rsn_ie=30140100000fac040100000fac040100000fac020000
IE: IEEE 802.11i/WPA2 Version 1
Group Cipher : CCMP
Pairwise Ciphers (1) : CCMP
Authentication Suites (1) : PSK
IE: Unknown: DD8F0050F204104A0001101044000102103B00010310470010BC329E001DD811B2860154A0507902B810210015415355535465 4B20436F6D707574657220496E632E1023000A57505320526F757465721024000752542D4E3536551042000830303030303030301054000800060050F20400011011000 F415355532057505320526F7574657210080002008C103C000101
Quality=96/100 Signal level=46/100
Cell 03 - Address: 00:16:A6:10:30:90
ESSID:"bossehemma"
Protocol:IEEE 802.11bg
Mode:Master
Frequency:2.462 GHz (Channel 11)
Encryption key:on
Bit Rates:54 Mb/s
Quality=20/100 Signal level=43/100
Code: Select all
# Please note that this file is written to be used with dhcpcd.
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'.
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
auto wlan1
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1Code: Select all
network={
ssid="network-name"
psk="network-password"
}
Code: Select all
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
auto wlan1
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
Code: Select all
network={
ssid="network1-name"
psk="network1-password"
}
network={
ssid="network2-name"
psk="network2-password"
}
Code: Select all
Cell 03 - Address: 00:16:A6:1B:B4:44
ESSID:"bosse4g"
Protocol:IEEE 802.11bgn
Mode:Master
Frequency:2.457 GHz (Channel 10)
Encryption key:on
Bit Rates:300 Mb/s
Extra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202
IE: WPA Version 1
Group Cipher : CCMP
Pairwise Ciphers (1) : CCMP
Authentication Suites (1) : PSK
Extra:rsn_ie=30140100000fac040100000fac040100000fac020000
IE: IEEE 802.11i/WPA2 Version 1
Group Cipher : CCMP
Pairwise Ciphers (1) : CCMP
Authentication Suites (1) : PSK
Quality=96/100 Signal level=96/100
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
#Mobile broadband router using WPA
network={
ssid="bosse4G"
scan_ssid=1
key_mgmt=WPA-PSK
psk="password"
}
#Home network using WEP
network={
ssid="bossehome"
scan_ssid=1
key_mgmt=IEEE8021X
psk="some hex value"
}
Hi Bosse_B,Bosse_B wrote:Thanks for your interest and support, much appreciated!
I am going away for a couple of days, might bring the Pi along, but not sure now.
But I need to resolve it because the target application requires the Pi to be dual-homed with both wired Ethernet and WiFi (to different networks).
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="network-name"
key_mgmt=NONE
auth_alg=OPEN
wep_key0=hex-digit-wep-key
}Code: Select all
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
Code: Select all
# Please note that this file is written to be used with dhcpcd.
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'.
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
auto wlan1
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Well, I shut down the Pi and disconnected the Ethernet cable. Then I reconnected the power to the Pi and finally looked in my router's dhcp table. No joy, it is not there. Only the cached entry for Ethernet is visible. No WiFi...Will Wheezy not connect when the wired network is already connected to the same network?
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="bossehemma"
key_mgmt=NONE
auth_alg=SHARED
wep_key0="ff23------a"
}
network={
ssid="bosse4g"
psk="FF23-----A"
key_mgmt=WPA-PSK
}
Code: Select all
/etc/init.d/networking restartCode: Select all
network={
ssid="bossehemma"
key_mgmt=NONE
auth_alg=SHARED
wep_key0=ff2---3a
}
Code: Select all
sudo ifdown wlan0Code: Select all
sudo ifup wlan0