Advertisement
Guest User

wpa_supplicant.conf

a guest
Mar 24th, 2021
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # $NetBSD: wpa_supplicant.conf,v 1.1 2019/01/12 16:51:54 roy Exp $
  2.  
  3. # Allow wpa_cli(8) to configure wpa_supplicant
  4. ctrl_interface=/var/run/wpa_supplicant
  5. ctrl_interface_group=wheel
  6. update_config=1
  7.  
  8. network={
  9. ssid="MyWifi1"
  10. proto=RSN
  11. key_mgmt=WPA-PSK
  12. pairwise=CCMP
  13. group=CCMP
  14. psk="MyPass1"
  15. priority=100
  16. }
  17.  
  18. network={
  19. ssid="MyWifi2"
  20. proto=RSN
  21. key_mgmt=WPA-PSK
  22. pairwise=CCMP TKIP
  23. group=CCMP TKIP
  24. psk="MyPass2"
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement