Advertisement
Guest User

hostapd

a guest
May 9th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. root@odroid64:~# cat /etc/hostapd/hostapd.conf
  2. ### Wireless network name ###
  3. interface=wlan0
  4. ### Set your bridge name ###
  5. #bridge=br0
  6.  
  7. ### Set driver name ###
  8. driver=nl80211
  9.  
  10. ### (IN == INDIA, UK == United Kingdom, US == United Stats and so on ) ###
  11. country_code=PL
  12.  
  13. ### Log info/error ###
  14. #logger_syslog=-1
  15. #logger_syslog_level=3
  16. #logger_stdout=-1
  17. #logger_stdout_lever=2
  18.  
  19. ### Set your SSID ###
  20. ssid=ZICOM
  21.  
  22. ### Set HW MODE ###
  23. hw_mode=g
  24.  
  25. ### Set channel ###
  26. channel=13
  27.  
  28. ### Set WPA ###
  29. wpa=2
  30.  
  31. ### Set your WiFi password ###
  32. wpa_passphrase=przemyslowa6
  33.  
  34. ## Key management algorithms ##
  35. wpa_key_mgmt=WPA-PSK
  36. ## Set cipher suites (encryption algorithms) ##
  37. ## TKIP = Temporal Key Integrity Protocol
  38. ## CCMP = AES in Counter mode with CBC-MAC
  39. wpa_pairwise=TKIP
  40. rsn_pairwise=CCMP
  41. ## Shared Key Authentication ##
  42. auth_algs=1
  43. ## Accept all MAC address ###
  44. macaddr_acl=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement