0

I have pocket wifi which is a portable wifi router.

It has a SSID and Password.

I want my RPi3 B+(ubuntu server 16.04) connect to that pocket wifi automatically after reboot.

Should I make some script that start when RPi boot up ?

please give me some advice !

RPF
  • 117
  • 2
  • 9

1 Answers1

1

Edit the wpa_supplicant.conf file:

network={
    ssid="yourHiddenSSID"
    scan_ssid=1
    psk="Your_wifi_password"
}

See more in the official documentation.

Glorfindel
  • 620
  • 1
  • 9
  • 16
Ganesh
  • 31
  • 7