poisontap
poisontap copied to clipboard
Autoconnect to Wifi stops working
Hi! Can you explain and suggest the solution on why the pi zero w stops connecting to wifi after launching the poisontap. Thanks!
Most likely because the dhcpcd gets changed to something that is populating and not requesting dhcp
Looks like some magic in raspbian prevents wifi from going up if you have usb0 configured.
Adding this to /etc/network/interfaces
should help:
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Looks like some magic in raspbian prevents wifi from going up if you have usb0 configured.
Adding this to
/etc/network/interfaces
should help:auto wlan0 allow-hotplug wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Does this broke poisontap? 'cause it seems like overriding nearly all the settings needed for poisontap to run. (Sorry for any grammar errors, my native language is not english :P)