轉自:http://www.cnblogs.com/dartagnan/archive/2010/12/05/2003521.html 一位資生linux
配置 WLAN 特定參數
iwconfig ethX essid <wlan_name>
key AAAA-AAAA-AA key BBBB-BBBB-BB key CCCC-CCCC-CC key DDDD-DDDD-DD
: Set 64-bit WEP Keys and ESSID in the driver
iwconfig ethX : Display WLAN parameters
iwpriv : Get nongeneric, driver-specific parameters
iwlist : List Information and statistics from an interface
iwspy : Read quality of link for a set of addresses
一、iwconfig
iwconfig是Linux Wireless Extensions(LWE)的用戶層配置工具之一。LWE是Linux下對無線網絡配置的工具,
包括內核的支持、用戶層配置工具和驅動接口的支持三部分。目前不少無線網卡都支持LWE,並且主流的Linux發佈版本,好比Redhat Linux、Ubuntu Linux都已經帶了這個配置工具。
用法: iwconfig interface [essid {NN|on|off}]
[nwid {NN|on|off}]
[mode {managed|ad-hoc|...}
[freq N.NNNN[k|M|G]]
[channel N]
[ap {N|off|auto}]
[sens N]
[nick N]
[rate {N|auto|fixed}]
[rts {N|auto|fixed|off}]
[frag {N|auto|fixed|off}]
[enc {NNNN-NNNN|off}]
[power {period N|timeout N}]
[retry {limit N|lifetime N}]
[txpower N {mW|dBm}]
[commit]
說明:iwconfig是LWE最主要的工具,能夠對無線網卡的大部分參數進行配置。
參數:
essid:設置無線網卡的ESSID(Extension Service Set ID)。經過ESSID來區分不一樣的無線網絡,正常狀況下只有相同ESSID的無線站點
才能夠互相通信,除非想監聽無線網絡。其後的參數爲雙引號括起的ESSID字符串,或者是any/on/off,若是ESSID字符串中包含
any/no/off,則須要在前面加"--"。
示例:
#ifconfig eth0 up/down 啓動/禁用無線網卡
#iwconfig eth0 essid any 容許任何ESSID,也就是混雜模式
#iwconfig eth0 essid "My Network" 設置ESSID爲"My Network"
#iwconfig eth0 essid -- "ANY" 設置ESSID爲"ANY"
#iwconfig eth0 key [1] 設置key id
#iwconfig eth0 key 1231231234 設置password爲1231231234
#iwpriv eth0 auth 2 設置認證方式爲Shared
#iwpriv eth0 enc 2 設置加密方式爲WEP
#iwlist eth0 scanning 搜索周圍存在的無線網絡
iwconfig eth0 nwid AB34
iwconfig eth0 nwid o
iwconfig eth0 nickname 「My Linux Node」
iwconfig eth0 txpower off
iwconfig eth0 rts 250
iwconfig eth0 rts off
iwconfig eth0 mode Managed
iwconfig eth0 mode Ad-Hoc
iwconfig eth0 freq 2422000000
iwconfig eth0 freq 2.422G
iwconfig eth0 channel 3
iwconfig eth0 channel auto
iwconfig eth0 ap 00:60:1D:01:23:45
iwconfig eth0 ap any
iwconfig eth0 ap off
iwconfig eth0 rate 11M
iwconfig eth0 rate auto
iwconfig eth0 rate 5.5M auto
iwconfig eth0 txpower 15
iwconfig eth0 txpower 30mW
iwconfig eth0 txpower auto
iwconfig eth0 txpower off
iwconfig eth0 sens -80
iwconfig eth0 sens 2
iwconfig eth0 retry 16
iwconfig eth0 retry lifetime 300m
iwconfig eth0 retry min limit 8
nwid: Network ID,只用於pre-802.11的無線網卡,802.11網卡利用ESSID和AP的MAC地址來替換nwid,如今基本上不用設置。
示例:
#iwconfig eth0 nwid AB34
#iwconfig eth0 nwid off
nick: Nickname,一些網卡須要設置該參數,可是802.11協議棧、MAC都沒有用到該參數,通常也不用設置。
示例:
#iwconfig eth0 nickname "My Linux Node"
mode:設置無線網卡的工做模式,能夠是
Ad-hoc:不帶AP的點對點無線網絡
Managed:經過多個AP組成的網絡,無線設備能夠在這個網絡中漫遊
Master:設置該無線網卡爲一個AP
Repeater:設置爲無線網絡中繼設備,能夠轉發網絡包
Secondary:設置爲備份的AP/Repeater
Monitor:監聽模式
Auto:由無線網卡自動選擇工做模式
示例:
#iwconfig eth0 mode Managed
#iwconfig eth0 mode Ad-Hoc
freq/channel:設置無線網卡的工做頻率或者頻道,小於1000的參數被認爲是頻道,大於10000的參數被認爲是頻率。頻率單位爲Hz,
能夠在數字後面附帶k, M, G來改變數量級,好比2.4G。頻道從1開始。使用lwlist工具能夠查看無線網卡支持的頻率
和頻道。參數off/auto指示無線網絡自動挑選頻率。
注意:若是是Managed模式,AP會指示無線網卡的工做頻率,所以該設置的參數會被忽略。Ad-hoc模式下只使用該設定的頻率初始無線網絡,若是加入已經存在的Ad-hoc網絡則會忽略該設置的頻率參數。
示例:
#iwconfig eth0 freq 2422000000
#iwconfig eth0 freq 2.422G
#iwconfig eth0 channel 3
#iwconfig eth0 channel auto
ap:鏈接到指定的AP或者無線網絡,後面的參數能夠是AP的MAC地址,也能夠是iwlist scan出來的標識符。若是是Ad-hoc,則鏈接到
一個已經存在的Ad-hoc網絡。使用off參數讓無線網卡不改變當前已鏈接的AP下進入自動模式。any/auto參數,無線網卡自動選擇
最好的AP。
注意:若是無線信號低到必定程度,無線網絡會進入自動選擇AP模式。
示例:
#iwconfig eth0 ap 00:60:1D:01:23:45
#iwconfig eth0 ap any
#iwconfig eth0 ap off
rate/bit:若是無線網卡支持多速率,則能夠經過該命令設置工做的速率。小於1000的參數由具體的無線網卡驅動定義,通常是傳輸速
率的索引值,大於1000的爲速率,單位bps,能夠在數字後面附帶k, M, G來指定數量級。auto參數讓無線網卡自動選擇速率
fixed參數讓無線網卡不使用自動速率模式。
示例:
#iwconfig eth0 rate 11M
#iwconfig eth0 rate auto
#iwconfig eth0 rate 5.5M auto //自動選擇5.5M如下的速率
txpower:若是無線網卡支持多發射功率設定,則使用該參數設定發射,單位爲dBm,若是指定爲W(毫瓦),只轉換公式爲:
dBm=30+log(W)。參數on/off能夠打開和關閉發射單元,auto和fixed指定無線是否自動選擇發射功率。
示例:
#iwconfig eth0 txpower 15
#iwconfig eth0 txpower 30mW
#iwconfig eth0 txpower auto
#iwconfig eth0 txpower off
sens:設置接收靈敏度的下限,在該下限之下,無線網卡認爲該無線網絡信號太差,不一樣的網卡會採起不一樣的措施,一些現代的無線網卡
會自動選擇新的AP。正的參數爲raw data,直接傳給無線網卡驅動處理,通常認爲是百分比。負值表示dBm值。
示例:
#iwconfig eth0 sens -80
#iwconfig eth0 sens 2
retry:設置無線網卡的重傳機制。limit ‘value’ 指定最大重傳次數;lifetime ‘value’指定最長重試時間,單位爲秒,能夠附帶m和u來
指定單位爲毫秒和微秒。若是無線網卡支持自動模式,則在limit和lifetime以前還能夠附加min和max來指定上下限值。
示例:
#iwconfig eth0 retry 16
#iwconfig eth0 retry lifetime 300m
#iwconfig eth0 retry min limit 8
rts:指定RTS/CTS握手方式,使用RTS/CTS握手會增長額外開銷,但若是無線網絡中有隱藏無線節點或者有不少無線節點時能夠提升性能。
後面的參數指定一個使用該機制的最小包的大小,若是該值等於最大包大小,則至關於禁止使用該機制。可使用auto/off/fixed
參數。
示例:
#iwconfig eth0 rts 250
#iwconfig eth0 rts off
frag:設置發送數據包的分片大小。設置分片會增長額外開銷,但在噪聲環境下能夠提升數據包的到達率。通常狀況下該參數小於最大包
大小,有些支持Burst模式的無線網卡能夠設置大於最大包大小的值來容許Burst模式。還可使用auto/fixed/off參數。
示例:
#iwconfig eth0 frag 512
#iwconfig eth0 frag off
key/enc[ryption]:設置無線網卡使用的加密密鑰,此處爲設置WEP模式的加密key,若是要使用WPA,須要wpa_supplicant工具包。
密鑰參數能夠是 XXXX-XXXX-XXXX-XXXX 或者 XXXXXXXX 格式的十六進制數值,也能夠是s:xxxxxx的ASCII字符。若是在密鑰參數以前
加了[index],則只是設置該索引值對應的密鑰,並不改變當前的密鑰。直接指定[index]值能夠設置當前使用哪個密鑰。指定on/
off能夠控制是否使用加密模式。open/restricted指定加密模式,取決於不一樣的無線網卡,大多數無線網卡的open模式不使用加密且
容許接收沒有加密的數據包,restricted模式使用加密。可使用多個key參數,但只有最後一個生效。
WEP密鑰能夠是40bit,用10個十六進制數字或者5個ASCII字符表示,也能夠是128bit,用26個十六進制數字或者13個ASCII字符表
示。
示例:
#iwconfig eth0 key 0123-4567-89
#iwconfig eth0 key [3] 0123-4567-89
#iwconfig eth0 key s:password [2]
#iwconfig eth0 key [2]
#iwconfig eth0 key open
#iwconfig eth0 key off
#iwconfig eth0 key restricted [3] 0123456789
#iwconfig eth0 key 01-23 key 45-67 [4] key [4]
power:設置無線網卡的電源管理模式。period ‘value’ 指定喚醒的週期,timeout ‘value’指定進入休眠的等待時間,這兩個參數以前能夠
加min和max修飾,這些值的單位爲秒,能夠附加m和u來指定毫秒和微秒。off/on參數指定是否容許電源管理,all/unicast/multicast
指定容許喚醒的數據包類型。
示例:
#iwconfig eth0 power period 2
#iwconfig eth0 power 500m unicast
#iwconfig eth0 power timeout 300u all
#iwconfig eth0 power off
#iwconfig eth0 power min period 2 power max period 4
commit:提交全部的參數修改給無線網卡驅動。有些無線網卡驅動會先緩存無線網卡參數修,使用這個命令來讓無線網卡的參數修改生效。不過通常不須要使用該命令,由於無線網卡驅動最終都會是參數的修改生效,通常在debug時會用到。
-------------------------------------------------------------------------
iwlist eth1 scan 搜索無線網絡:
顯示搜到的網絡(此處只顯示一個):
eth1 Scan completed :
Cell 01 - Address: 00:04:E2:E3:04:FC
ESSID:"ap_demo"
Mode:Managed
Frequency:2.437 GHz
Quality:0/0 Signal level=-61 dBm Noise level=-96 dBm
Encryption key:on
Bit Rate:1 Mb/s
Bit Rate:2 Mb/s
Bit Rate:5.5 Mb/s
Bit Rate:11 Mb/s
Bit Rate:6 Mb/s
Bit Rate:9 Mb/s
Bit Rate:12 Mb/s
Bit Rate:18 Mb/s
Bit Rate:24 Mb/s
Bit Rate:36 Mb/s
Bit Rate:48 Mb/s
Bit Rate:54 Mb/s
Cell 02 ……
---------------------------------------------------------------------------
設置板子的channel
iwlist eth1 channel 11
-----------------------------------------------------------------------------
設置模式:
iwconfig eth1 mode managed
經過MAC 設置AP:
iwconfig eth1 ap 00:0A:EB:CA:79:B0
鏈接到WEP on 的AP:
iwconfig eth1 key s:12345 等效於 iwconfig eth1 enc 3132333435(12345的hex值) (爲何AP64bit的口令是40bit呢)
iwconfig eth1 key on
iwconfig eth1 essid sychip_demo
斷開WEP:
iwconfig eth1 enc off
查看IP:
ifconfig eth1
設置IP:
ifconfig eth1 10.3.1.74
把IP: 129.158.215.204 , netmask: 255.255.255.0分配給rh0,
# ifconfig rh0 129.158.215.204 netmask 255.255.255.0
獲取IP; ifconfig eth1 dhcp start (從eth1走,不須要ip便可dhcp) udhcpc -i eth1 udhcpc --help 路由處理: 若要刪除以 10. 起始的 IP 路由表中的全部路由,請鍵入: route delete 10.* route del default route add -net 10.3.0.0 netmask 255.255.0.0 eth1 (eth1得到IP以前,使用此命令顯示:No such device)