My wifi dongle is seen by my Pi and has its own IP address.
Issue is when I unplugged my RJ45 cable from the PI, the wifi dongle is not transmitting signal (or is it) and I can't connect to the PI.
When doing an arp -a without the rj45 cable plugged , this is what I have
? (192.168.1.16) at (incomplete) on en0 ifscope [ethernet] Although it is implicit, I'm mentionning it again: I can't connect with ssh when the cable is unplugged.
After replugging the RJ45 cable and doing again arp -a, this is what I have
raspberrypi.home (192.168.1.16) at f4:f2:6d:1d:55:5e on en0 ifscope [ethernet] raspberrypi.home (192.168.1.18) at b8:27:eb:9c:12:d9 on en0 ifscope [ethernet] The IP 192.168.1.16 is the one used by the wifi dongle (the command used to figure that out is ip addr)
This is my wpa_supplicant.conf content update: I've changed the initial content of the file. The content below is what I have changed
#country=GB ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="Livebox-Fxxx" psk="Password" } This is the content of my /etc/network/interfaces update I've tweaked the file to have this. I did not keep the initial one (stupid me!)
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf' # Include files from /etc/network/interfaces.d: source-directory /etc/network/interfaces.d auto lo iface lo inet loopback # manual originally #iface eth0 inet dhcp 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 I tried to do a ifdown wlan0 and then restart the service with a ifup wlan0 and each time I have the following error
ioctl[SIOCSIWAP]: Operation not permitted ioctl[SIOCSIWENCODEEXT]: Invalid argument ioctl[SIOCSIWENCODEEXT]: Invalid argument Update: I've unplugged the RJ45 and this what I have after doing an arp -a
raspberrypi-1.home (192.168.1.16) at (incomplete) What means the (incomplete) thing?
wpa_supplicant.confand also the network interfaces but to no avail. I don't know what's wrong. I don't have any understanding of what I can change. Yes, I've checked the many posts on the forum but it did not helpeth0but the arp output refers toen0. You haven't upgraded to stretch/testing, have you?