1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/network/templates/hostapd/hostapd.conf.j2

35 lines
689 B
Text
Raw Normal View History

2017-05-27 18:09:50 +00:00
# Basic configuration
interface={{ iiab_wireless_lan_iface }}
2017-05-27 18:09:50 +00:00
ssid={{ host_ssid }}
channel={{ host_channel }}
2017-12-29 03:33:24 +00:00
{%if iiab_lan_iface == "br0" %}
2017-05-27 18:09:50 +00:00
bridge=br0
{% endif %}
# Hardware configuration
driver={{ driver_name }}
{%if host_wireless_n %}
ieee80211n=1
{% endif %}
country_code={{ host_country_code }}
# limit emissions to what is legal in country
ieee80211d=1
hw_mode={{ host_wifi_mode }}
{%if hostapd_secure %}
# Use WPA authentication
auth_algs=1
# Use WPA2
wpa=2
# Use a pre-shared key
wpa_key_mgmt=WPA-PSK
# The network passphrase
wpa_passphrase={{ hostapd_password }}
# Use AES, instead of TKIP
rsn_pairwise=CCMP
{% endif %}
2020-08-29 20:13:25 +00:00
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0