Hostapd

Hostapd 

1、基本概念

 hostapd is an application used to setup your wireless interface as an access-point (master mode). Hostapd requires a configuration file in order to operate, and in addition, it needs to support the driver used for the wireless interface.php

2、用途

To use hostapd, you have two choices.bash

  1. use hostapd as a global service
  2. use hostapd as a standalone user application

一、Global Service

  If you install hostapd through yum (Fedoras package system), it comes with some startup scripts located in /etc/init.d. To use the service, you have to create a configuration file, put it in/etc/hostapd/hostapd.conf and issue the service hostapd start|restart|stop command.服务器

二、Standalone User Application (Preferred)

  This allows you to tailor hostapd for your experiments and set the configuration to your preferences. But as you most of the time would use nearly identical configurations, you may create a configuration file which you use for several experiments.app

终端应用

若是已经准备好配置文件hostapd.conf,能够经过下面的指令启动hostapd程序:less

hostapd /path/to/file/hostapd.conf

hostapd将以终端应用的方式运行,并能够经过Ctrl+C终止程序的运行。ide

后台程序

若是不想以终端应用的方式运行hostapd,能够之后台程序的方式运行它:ui

# hostapd -B /path/to/file/hostapd.conf

 

为了能kill掉hostapd,须要经过指令将hostapd的pid写入到文件中: spa

hostapd -B -P/path/to/pid/hostapd.pid /path/to/file/hostapd.conf

上述指令会将hostapd的pid写入到文件hostapd.pid中rest

查看hostapd的状态

ps aux | grep hostapd

3、配置  

For running a WPA-PSK access-point one may use a configuration file like the one belowblog

ssid=test
hw_mode=g
channel=10
interface=wlan0
bridge=br0
driver=nl80211
ignore_broadcast_ssid=0
macaddr_acl=0
accept_mac_file=/etc/hostapd.accept
deny_mac_file=/etc/hostapd.deny
  • ssid:别人所看到的无线接入点的名称;
  • hw_mode:指定802.11协议,其中 a = IEEE 802.11a, b = IEEE 802.11b, g = IEEE 802.11g;
  • channel:设定无线频道;
  • interface:接入点设备名称,注意不要包含ap后缀,即若是该设备称为wlan0ap,填写wlan0便可;
  • bridge:指定所处网桥;
  • driver:设定无线驱动;
  • macaddr_acl:可选,指定MAC地址过滤规则,0表示除非在禁止列表不然容许,1表示除非在容许列表不然禁止,2表示使用外部RADIUS服务器;
  • accept_mac_file:指定容许MAC列表文件所在;
  • deny_mac_file:指定禁止MAC列表文件所在;

 

相关资料

参考1:http://w1.fi/hostapd/  

参考2http://w1.fi/wpa_supplicant/devel/

相关文章
相关标签/搜索