I'm running a fresh install of RASPBIAN STRETCH LITE on my RaspberryPi B but have some trubble getting Wifi to work.
I do see the interface wlan0. ifconfig shows this:
Code: Select all
wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 169.254.48.142 netmask 255.255.0.0 broadcast 169.254.255.255
inet6 fe80::6635:d10:6480:1b6f prefixlen 64 scopeid 0x20<link>
ether 10:fe:ed:23:54:1c txqueuelen 1000 (Ethernet)
RX packets 3 bytes 427 (427.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 188 bytes 30183 (29.4 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0Code: Select all
pi@raspberrypi:~ $ sudo dhclient -v wlan0
Internet Systems Consortium DHCP Client 4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/wlan0/10:fe:ed:23:54:1c
Sending on LPF/wlan0/10:fe:ed:23:54:1c
Sending on Socket/fallback
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 11
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 21
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 3
No DHCPOFFERS received.
No working leases in persistent database - sleeping.Code: Select all
pi@raspberrypi:~ $ sudo dhclient -v eth0
Internet Systems Consortium DHCP Client 4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/eth0/b8:27:eb:dc:f7:82
Sending on LPF/eth0/b8:27:eb:dc:f7:82
Sending on Socket/fallback
DHCPREQUEST of 10.1.1.61 on eth0 to 255.255.255.255 port 67
DHCPACK of 10.1.1.61 from 10.1.1.1
RTNETLINK answers: File exists
bound to 10.1.1.61 -- renewal in 392062 seconds.I've check the WiFi connection and also did a reconfigure with wpa_cli:
Code: Select all
pi@raspberrypi:~ $ sudo wpa_cli
wpa_cli v2.4
Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi> and contributors
This software may be distributed under the terms of the BSD license.
See README for more details.
Selected interface 'wlan0'
Interactive mode
> reconfigure
OK
<3>CTRL-EVENT-DISCONNECTED bssid=60:31:97:fa:3b:a6 reason=3 locally_generated=1
<3>CTRL-EVENT-SCAN-STARTED
<3>CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
<3>CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=DE
<3>CTRL-EVENT-SCAN-RESULTS
<3>WPS-AP-AVAILABLE
<3>SME: Trying to authenticate with 60:31:97:fa:3b:a6 (SSID='Meins' freq=2422 MHz)
<3>Trying to associate with 60:31:97:fa:3b:a6 (SSID='Meins' freq=2422 MHz)
<3>Associated with 60:31:97:fa:3b:a6
<3>WPA: Key negotiation completed with 60:31:97:fa:3b:a6 [PTK=CCMP GTK=CCMP]
<3>CTRL-EVENT-CONNECTED - Connection to 60:31:97:fa:3b:a6 completed [id=0 id_str=]
<3>CTRL-EVENT-REGDOM-CHANGE init=COUNTRY_IE type=COUNTRY alpha2=DEAyn idea what to check, how to debug this issue?
Dirk