Last active
September 22, 2021 20:14
-
-
Save RobertCNelson/4d2fbc3abc41640066361daca1576a8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SUBSYSTEM=="net", ACTION=="add", KERNEL=="wlan0", DRIVERS=="wl18xx_driver" \ | |
| RUN+="/sbin/iw dev %k interface add ap%n type managed" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SUBSYSTEM=="net", DRIVERS=="wl18xx_driver", ACTION=="add", \ | |
| RUN+="/sbin/iw dev %k interface add ap%n type managed" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| debian@BeagleBone:~$ cat /etc/udev/rules.d/70-ap-interface.rules | |
| SUBSYSTEMS=="net", KERNELS=="wl18xx.3.auto", DRIVERS=="wl18xx_driver" | |
| SUBSYSTEM=="net", ACTION=="add", \ | |
| RUN+="/sbin/iw dev %k interface add ap%n type manag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment