Cisco思科2700-3700系列无线AP转胖模式Autonomous及CLI设置

# 准备工作
1. 软件
下载putty或其他telnet客户端, [tftpd64.464][1], FAT模式Autonomous固件, 可去[官网][2], 或者见[网盘搬运][3]
2. 硬件
POE交换机或者48v电源,网线,电脑

# 刷机
1. 电脑地址修改 10.0.0.2, 子网 255.0.0.0, 关闭无线网卡,网线接poe交换机
2. 下载下来的IOS文件名改成 `ap3g2-k9w7-tar.default` 放在TFTP目录下
3. 打开TFTP软件,setting设置固件所在目录和超时30s
4. 按住AP MODE键不放 ,网线接网口和poe交换机, 直到AP灯变成红色不闪(约30s),等待TFTP软件显示成功传输界面,松开mode,传输中绿色闪灯,传输缓慢(~15min),传输完成耐心等待自动重启几次, 直到AP灯呈绿色不闪即可
![请输入图片描述][4]

# 设置
## 修改密码,启用webui
1. 默认不启用web登陆,先用telnet 登陆dhcp获得的ip(可在路由界面查看,hostname默认AP),账号密码Cisco / Cisco
需修改默认密码后再启用http
```
enable

configure terminal

enable secret dxxxxxxx7

exit

configure terminal

ip http server

exit

write memory
```


## CLI配置无线
webui下bug较多,建议用cli配置
```
enable

configure terminal

dot11 ssid MyWiFi_2.4G   # 2.4g无线ssid

authentication open

authentication key-management wpa version 2

wpa-psk ascii MySecretKey2025   # 无线密码

guest-mode

exit

dot11 ssid MyWiFi_5G    # 5g无线ssid

authentication open

authentication key-management wpa version 2

wpa-psk ascii MySecretKey2025  # 无线密码

guest-mode

exit

interface Dot11Radio0

encryption mode ciphers aes-ccm

ssid MyWiFi_2.4G

no shutdown

exit

interface Dot11Radio1

encryption mode ciphers aes-ccm

ssid MyWiFi_5G

no shutdown

exit

write memory
```

查看启用情况
```
show interfaces Dot11Radio1

show interfaces Dot11Radio0
```
查看连上的客户端
```
show dot11 associations
```

接口:2.4GHz 用 Dot11Radio0,5GHz 用 Dot11Radio1。

可以将5G频率设置为80MHz,提升带宽。
```
enable
configure terminal
interface Dot11Radio1
channel width 80
end
write memory
```

# 参考链接
- https://archive.org/details/ap3g2-k9w7-tar.153-3.JPQ2 
- https://community.cisco.com/t5/%E6%97%A0%E7%BA%BF%E6%96%87%E6%A1%A3/%E5%8E%9F%E5%88%9B-ap-%E8%83%96%E7%98%A6%E8%BD%AC%E6%8D%A2%E6%A1%88%E4%BE%8B%E5%88%86%E4%BA%AB/ta-p/4341611 
- https://www.bilibili.com/video/BV1yP4y157Up/?vd_source=dbee1d88cf8780ef135b14b3a5d34bf6 
- https://blog.swineson.me/zh/cisco-aironet-ap3g1-ap3g2-ver-8-5-autonomous-web-portal-config-tutorial/

 


 [1]: https://bitbucket.org/phjounin/tftpd64/downloads/
 [2]: https://www.cisco.com/c/en/us/support/wireless/aironet-3700-series/series.html#~tab-downloads
 [3]: http://%20https://www.123912.com/s/3gbtVv-jxxe?%E6%8F%90%E5%8F%96%E7%A0%81:50uO
 [4]: https://img.netok.xyz/1741764082053.png