http://hi.baidu.com/wxsuyi/item/9b8ca88cf2014f834514cf6e
Cisco無線AP基本配置
Cisco AP:AIR-AP1131AG
恢複初廠設定
拿到這台不知情的機器時,我首先要将其恢複到初廠設定。
滑開前蓋,按住MODE鍵,接通電源,待E燈亮為橙紅色時松開(也不知道他們說的琥珀色到底是什麼色,有多少人知道琥珀長什麼顔色),裝置重新開機後即恢複為初廠值。
初廠值沒有IP位址,沒有開無線,是以隻能通過CONSOLE方式連接配接進行配置。
設定IP位址
使用Cisco的Console線連接配接好,打開超級終端,COM端口速率為9600。
撥上後,預設主機名是ap,密碼是Cisco(C是大寫)。
要配置IP位址的接口是BVI,BVI(Bridge-Group Virtual Interface)網橋虛拟接口,AP連接配接到有線網絡時,使用BVI将所有接口都聚合到一個IP位址下,然後通過AP的以太網口或無線端口通路BVI位址對AP進行管理。
ap>
ap>en
Password:Cisco
ap#conf t
ap(config)#interface bvi 1
ap(config-if)#ip address 10.10.0.10 255.255.255.0
ap(config-if)#no shutdown
ap(config-if)#exit
ap(config)#
ap#copy run sta
WEB登陸主機名和密碼設定
IP位址設定好後我們就可以通過WEB界面來管理,平時cisco接觸比較少還是WEB管理比較舒服些。
預設登陸使用者名和密碼都是cisco(C為大寫)。

EXPRESS SET-UP中對主機名,IP位址進行更改,然後應用Apply。
最重要的是首先要給裝置加個密碼,SECURITY-Admin Access
WPA2-PSK加密設定
打開裝置的無線功能,直接到NETWORK INTERFACE-Radio0-802.11G,Enable Radio啟用此協定标準。
再往下拉,選擇頻段,然後應用。
設定完成後,再以相同操作啟用802.11A。
安全加密設定:定位到SECURITY-Encryption Manager,Encryption Nodes加密模式選擇Cipher:AES CCMP+TKIP,然後點選“Apply-All”應用到所有Radio上面。
建立SSID:定位到SSID Manager,點選NEW建立一個SSID。在SSID後面輸入SSID名稱,Interface選擇Radio0-802.11G和Radio0-802.11A。
接着往下,Key Management:Mandatory,Enable WPA:WPAv2。
WPA Pre-shared Key輸入自定義密碼。
最後到Guest Mode/Infrastructure SSID Settings中,Radio-802.11G和Radio-802.11A,分别設定Set Single Guest Mode SSID:選擇建立的SSID,Apply。
到此設定完成。
version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname myap
!
enable secret 5 $1$HEM4$4xBQt1xZCkFBAga1R6tJ8/
!
no aaa new-model
!
!
!
dot11 ssid SOLVAY
authentication open
authentication key-management wpa version 2
guest-mode
wpa-psk ascii 7 0605062F424B1D485744465E5A
!
power inline negotiation prestandard source
!
!
username root secret 5 $1$b9X9$KPWjv8hjKogY1335G/7QM1
!
bridge irb
!
!
interface Dot11Radio0
no ip address
no ip route-cache
!
encryption mode ciphers aes-ccm tkip
!
ssid SOLVAY
!
channel 2462
station-role root
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
bridge-group 1 spanning-disabled
!
interface Dot11Radio1
no ip address
no ip route-cache
!
encryption mode ciphers aes-ccm tkip
!
ssid SOLVAY
!
channel 5745
station-role root
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
bridge-group 1 spanning-disabled
!
interface FastEthernet0
no ip address
no ip route-cache
duplex auto
speed auto
bridge-group 1
no bridge-group 1 source-learning
bridge-group 1 spanning-disabled
!
interface BVI1
ip address 10.10.0.10 255.255.255.0
no ip route-cache
!
ip http server
no ip http secure-server
ip http help-path
bridge 1 route ip
!
!
!
line con 0
line vty 0 4
login local
!
end