0

I have changed the wpa_supplicant.conf file on my Raspberry Pi 3 (running Raspbian Lite) to the proper SSID and password of our WPA2 WiFi, and it shows the proper SSID when running iwconfig. However:

  • When I run nmcli general status, it says the Raspberry Pi is disconnected.
  • The Raspberry Pi is not detected on our router's configuration page.
  • The /etc/network/interfaces file only contains comments and a reference to an empty source directory (interfaces.d), unlike how I've typically seen the file online.

The /etc/wpa_supplicant/wpa_supplicant.conf file currently looks like this (with the SSID and password replaced by the proper information):

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US

network={
    ssid="wifi_name"
    psk="wifi_password"
}

How could I establish a functioning connection?

1 Answers1

1

What OS are you running?

nmcli is a command-line tool for controlling NetworkManager which is NOT installed or used by Raspbian. NetworkManager does not use wpa_supplicant.conf

See How to set up networking/WiFi for setting up networking on Raspbian.

Milliways
  • 62,573
  • 32
  • 113
  • 225