wired.conf revision 214734
194380Sdfr##### hostapd configuration file ##############################################
294380Sdfr# Empty lines and lines starting with # are ignored
394380Sdfr
494380Sdfr# Example configuration file for wired authenticator. See hostapd.conf for
594380Sdfr# more details.
6198512Skib
794380Sdfrinterface=eth0
894380Sdfrdriver=wired
9119332Speterlogger_stdout=-1
10119332Speterlogger_stdout_level=1
1194380Sdfrdebug=2
1294380Sdfrdump_file=/tmp/hostapd.dump
1394380Sdfr
14177613Sjhbieee8021x=1
15164199Srueap_reauth_period=3600
16113989Sjhb
17113989Sjhbuse_pae_group_addr=1
18161330Sjhb
19161330Sjhb
2094380Sdfr##### RADIUS configuration ####################################################
2194380Sdfr# for IEEE 802.1X with external Authentication Server, IEEE 802.11
2294380Sdfr# authentication with external ACL for MAC addresses, and accounting
2394380Sdfr
2494380Sdfr# The own IP address of the access point (used as NAS-IP-Address)
2594380Sdfrown_ip_addr=127.0.0.1
2694380Sdfr
2794380Sdfr# Optional NAS-Identifier string for RADIUS messages. When used, this should be
2894380Sdfr# a unique to the NAS within the scope of the RADIUS server. For example, a
2994380Sdfr# fully qualified domain name can be used here.
3094380Sdfrnas_identifier=ap.example.com
3194380Sdfr
3294380Sdfr# RADIUS authentication server
3394380Sdfrauth_server_addr=127.0.0.1
3494380Sdfrauth_server_port=1812
35119332Speterauth_server_shared_secret=radius
3694380Sdfr
3794380Sdfr# RADIUS accounting server
3894380Sdfracct_server_addr=127.0.0.1
39100385Speteracct_server_port=1813
4094380Sdfracct_server_shared_secret=radius
41151360Sps