1214503Srpaulo##### hostapd configuration file ##############################################
2214503Srpaulo# Empty lines and lines starting with # are ignored
3214503Srpaulo
4214503Srpaulo# Example configuration file for wired authenticator. See hostapd.conf for
5214503Srpaulo# more details.
6214503Srpaulo
7214503Srpaulointerface=eth0
8214503Srpaulodriver=wired
9214503Srpaulologger_stdout=-1
10214503Srpaulologger_stdout_level=1
11214503Srpaulodebug=2
12214503Srpaulodump_file=/tmp/hostapd.dump
13214503Srpaulo
14214503Srpauloieee8021x=1
15214503Srpauloeap_reauth_period=3600
16214503Srpaulo
17214503Srpaulouse_pae_group_addr=1
18214503Srpaulo
19214503Srpaulo
20214503Srpaulo##### RADIUS configuration ####################################################
21214503Srpaulo# for IEEE 802.1X with external Authentication Server, IEEE 802.11
22214503Srpaulo# authentication with external ACL for MAC addresses, and accounting
23214503Srpaulo
24214503Srpaulo# The own IP address of the access point (used as NAS-IP-Address)
25214503Srpauloown_ip_addr=127.0.0.1
26214503Srpaulo
27214503Srpaulo# Optional NAS-Identifier string for RADIUS messages. When used, this should be
28214503Srpaulo# a unique to the NAS within the scope of the RADIUS server. For example, a
29214503Srpaulo# fully qualified domain name can be used here.
30214503Srpaulonas_identifier=ap.example.com
31214503Srpaulo
32214503Srpaulo# RADIUS authentication server
33214503Srpauloauth_server_addr=127.0.0.1
34214503Srpauloauth_server_port=1812
35214503Srpauloauth_server_shared_secret=radius
36214503Srpaulo
37214503Srpaulo# RADIUS accounting server
38214503Srpauloacct_server_addr=127.0.0.1
39214503Srpauloacct_server_port=1813
40214503Srpauloacct_server_shared_secret=radius
41