1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00

wlan0 promiscuous pn iiab-hotspot-off...only if rpi

This commit is contained in:
A Holt 2018-01-04 23:28:43 -05:00 committed by GitHub
parent 95f726e913
commit b9f6dc5a7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,3 +7,7 @@ systemctl stop dhcpd
systemctl daemon-reload systemctl daemon-reload
systemctl restart dhcpcd systemctl restart dhcpcd
systemctl restart networking systemctl restart networking
# Experimental/Temporary workaround for WiFi "10SEC disease"
# https://github.com/iiab/iiab/issues/638#issuecomment-355455454
if grep -qi raspbian /etc/*release; then ip link set dev wlan0 promisc on; fi