I've got a wireless interface in my host box (wlp7s0) that I use as a backup ISP when/if my regular ISP goes down.
I'm having some trouble getting the interface configured such that it will come up at boot and connect to the SSID when it's available. I'm able to do it manually via the first few steps here: https://unix.stackexchange.com/a/283757
nano /etc/wpa_supplicant.conf
# Insert:
# network={
# ssid="wifi_name"
# psk="wifi_key"
# }
ip link set wlp7s0 down
ip link set wlp7s0 up
wpa_supplicant -B -iwlp7s0 -c /etc/wpa_supplicant.conf -Dnl80211,wext
dhclient wlp7s0
However when I reboot, this interface is no longer active and must be manually reconfigured.
What's the preferred or proper way to set up a wireless interface to keep presenting itself for use after reboot with Debian and Proxmox such that it's offered as a Linux bridge for a guest I'm using as the gateway?
I'm having some trouble getting the interface configured such that it will come up at boot and connect to the SSID when it's available. I'm able to do it manually via the first few steps here: https://unix.stackexchange.com/a/283757
nano /etc/wpa_supplicant.conf
# Insert:
# network={
# ssid="wifi_name"
# psk="wifi_key"
# }
ip link set wlp7s0 down
ip link set wlp7s0 up
wpa_supplicant -B -iwlp7s0 -c /etc/wpa_supplicant.conf -Dnl80211,wext
dhclient wlp7s0
However when I reboot, this interface is no longer active and must be manually reconfigured.
What's the preferred or proper way to set up a wireless interface to keep presenting itself for use after reboot with Debian and Proxmox such that it's offered as a Linux bridge for a guest I'm using as the gateway?