Linux下無線網卡的AP模式

正常咱們的無線網卡工做在sta模式,經過鏈接路由進行上網。在Windows下,咱們能夠用獵豹、360和騰訊管家裏的一些軟件助手,把咱們的無線網卡開一個熱點,一樣,在Linux中。咱們也能夠把咱們無線網卡的熱點打開,讓其餘設備可以鏈接。vim

基本配置

首先確保Linux能識別到無線網卡
ifconfig 能看到 wlan0 而且有路由分配的ip
把原來的動態IP改成靜態IP

bash

sudo vim /etc/network/interface

auto lo
iface lo inet loopback

auto wlan0
iface wlan0 inet static
    wpa-ssid  "路由名"
    wpa-psk  "密碼"
    address   **.**.**.**就寫上面的ifconfig的吧
    netmask 255.255.255.0
    gateway  192.168.0.1

重啓網絡 sudo /etc/init.d/networking restart
重啓網卡 sudo ifup wlan0
markdown

安裝hostapd服務

hostapd就是用來打開無線網卡的AP模式的網絡

sudo apt-get install hostapd
sudo vim /etc/default/hostapd

修改 #DAEMON_CONF=""爲
DAEMON_CONF="/etc/hostapd/hostapd.conf"

sudo vim /etc/hostapd/hostapd.conf

#網卡
interface=wlan0
#驅動
driver=*
#WiFi名
ssdi=wifi-name
#工做模式 802.11n
hw_mode=n
#信道
channel=*
#WPA2配置
wpa=2
#WiFi密碼
wpa_passphrase=wifi-passwd
#認證方式 WPA-PSK
wpa_key_mgmt=WPA-PSK
#加密方式
wpa_pairwise=CCMP
rsn_pairwise=CCMP
beacon_int=100
auth_algs=3
wmm_enabled=1

sudo service hostapd restart 重啓hostapd服務dom

安裝配置 isc-dhcp-server服務

hostapd僅僅開啓了無線網卡的AP模式,可是設備鏈接時,該如何分配IP呢,這就須要藉助isc-dhcp-server來動態分配IPoop

sudo apt-get install isc-dhcp-server

sudo vim /etc/dhcp/dhcpd.conf

default-lease-time 600;
max-lease-time 7200;
log-facility local7;

//網關IP 就是無線網卡的static ip
subnet 192.168.**.**
netmask 255.255.255.0{
range 192.168.0.1 192.168.0.120;
option routers 192.168.**.**;
option broadcast-address 192.168.0.105;
option domain-name-servers 8.8.8.8,8.8.4.4;
default-lease-time 600;
max-lease-time 7200;
}


sudo service isc-dhcp-server restart  //重啓服務

配置路由轉發規則

上面兩步僅僅保證了,AP服務,你能夠鏈接、有了dhcp你能夠得到動態IP,可是如何保證設備能經過這個無線網卡來上網呢,這須要配置,將無線網卡wlan0的設備傳輸數據轉發到有線網卡eth0上面。因此須要配置一下路由轉發規則,打通數據傳輸的鏈路。atom

使用iptables實現簡答的轉發加密

sudo iptables -F
sudo iptables -X

sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
sudo bash
iptables-save > /etc/iptables.up.rules
exit

sudo /etc/init.d/iptables start
sudo echo 1> /proc/sys/net/ipv4/ip——forward
開啓路由轉發
發佈了204 篇原創文章 · 獲贊 199 · 訪問量 57萬+
相關文章
相關標籤/搜索