数码之家

 找回密码
 立即注册
搜索
查看: 1080|回复: 15

[网络] 拆两个 Cisco 的 AP(附简单的配置方式)

[复制链接]
发表于 2024-11-28 17:37:01 | 显示全部楼层 |阅读模式
本帖最后由 kukusyaoran 于 2024-11-28 17:42 编辑




带外置天线的型号为 AIR-SAP2602E-C-K9 双频 450M,不带外置天线的为 AIR-CAP3502I-A-K9 双频 300M(均为 5GHz 下的最高无线速率)
SAP2602E-C-K9 的具体参数:

拆机部分:

SAP2602E:
最外侧的胶圈不见了,应该是之前拆过机。


CPU 采用的是 NXP 的 P1023 系列 P1023NSE5CFB 双核 500MHz PPC 平台(?)具体 detasheet 官网不给看

CAP3502I:
3502 的天线集成在外壳上,芯片屏蔽罩焊死了打不开



主芯片使用 AMCC PPC460EXr 单核心 1GHz PPC 架构

3502 自带 胖AP 固件,2602 拿到的是 瘦AP 固件需要通过刷机变成普通的 AP
机器的 console 线走的是 232 协议,手上这跟普通的 ch430 TTL 线不行,这里直接拿网线接到了电脑的串口上
TFTP 刷机:

固件可以通过这个 torrent 链接下载(两个型号都有),这是 2600 系列15.2 系统的 Web 管理界面,15.3 略有区别但配置逻辑基本相同,Cisco 的这个 Web 端配置比较繁琐,具体不展开了

  1. Commands: -
  2. #刷机部分
  3. #删除文件以腾空空间
  4. ap: delete flash:private-config
  5. ap: delete flash:private-multiple-fs
  6. #或直接格式化 flash,不建议直接格式化否则错误刷机后无法启动至旧系统
  7. ap: format flash:

  8. ap: set IP_ADDR 172.16.10.100
  9. ap: set NETMASK 255.255.255.0
  10. ap: set DEFAULT_ROUTER 172.16.10.1
  11. ap: tftp_init
  12. ap: ether_init
  13. ap: flash_init
  14. #172.16.10.12 为 tftp server 的 IP 地址,直接 ping 思科 AP 的网口是不通的,show_ether 也没有返回数据
  15. ap: tar -xtract tftp://172.16.10.12/c1140-k9w7-tar.153-3.JD.tar flash:

  16. reset
  17. #如果使用重置后重启后无法正常进入新系统
  18. #需要手动设置 boot 参数路径

  19. ap: set BOOT flash:/c1140-k9w7-mx.153-3.JD/c1140-k9w7-mx.153-3.JD
  20. write set to view the parameters

  21. ap: set

  22. make sure

  23. BOOT=flash:/c1140-k9w7-tar.153-3.JD/c1140-k9w7-tar.153-3.JD

  24. ap: boot

  25. ---------------------------------------------------------------------------

  26. AP>enable
  27. Password:Cisco
  28. AP#config t
  29. AP(config)#int bv1
  30. AP(config-if)#ip address 192.168.1.10 255.255.255.0
  31. AP(config-if)#exit

  32. #Configure Default Gateway
  33. AP(config)#ip default-gateway 192.168.1.1


  34. #Name the SSID(2.4Ghz)(可以在两个 radio 上使用同一个 SSID)
  35. AP(config)#dot11 ssid Cisco_AP

  36. #Set a wpa-psk password
  37. AP(config-ssid)#auth open
  38. AP(config-ssid)#auth key wpa ver 2
  39. AP(config-ssid)#wpa-psk ascii 12345678

  40. #Broadcast the SSID(guest-mode 是为了方便广播 SSID,不是客人模式)
  41. AP(config-ssid)#guest-mode
  42. AP(config-ssid)#exit
  43. AP(config)#

  44. #Apply ssid to interface & Encrypt the traffic using aes
  45. AP(config)#int d0
  46. AP(config-if)#encryption mode ciphers aes
  47. AP(config-if)#ssid Cisco_AP

  48. #Configure the wireless Channel(频道可以手动指定或者使用 least-congested 自动设定)
  49. AP(config-if)#channel ?
  50. AP(config-if)#channel least-congested

  51. #Enable the interface d0(2.4Ghz)
  52. AP(config-if)#no shutdown
  53. AP(config-if)#exit


  54. #Name the SSID(5Ghz)
  55. AP(config)#dot11 ssid Cisco_AP 5Ghz
  56. AP(config-ssid)#

  57. #set a WPA-psk password
  58. AP(config-ssid)#auth open
  59. AP(config-ssid)#auth key wpa ver 2
  60. AP(config-ssid)#wpa-psk ascii 12345678

  61. #Broadcast the SSID
  62. AP(config-ssid)#guest-mode
  63. AP(config-ssid)#exit

  64. #Apply ssid to 5Ghz(dot11radio 1) & Encrypt the traffic using aes
  65. AP(config)#interface dot11radio 1
  66. AP(config-if)#encryption mode ciphers aes
  67. AP(config-if)#ssid Cisco_AP 5Ghz

  68. #Enable the interface d1(5Ghz)
  69. AP(config-if)#channel ?
  70. AP(config-if)#channel least-congested

  71. #Enable the interface d1(5Ghz)
  72. AP(config-if)#no shutdown
  73. AP(config-if)#exit

  74. #Save the running Config file
  75. AP(config-if)#do copy run start


  76. #查看已设定 SSID 名称
  77. AP#show dot11 bssid

复制代码


无线信号测试:
与 K2P 的无线对比信号差距还是很明显的
在信号的较弱的场景,k2p 表现勉强可用,两台 Cisco AP 能连上但反复掉线(速率掉到 1Mbps 以下),总的测试下来不带天线的 2602 信号反而比带天线的 3502 好那么一丢丢,但大差不差(可能是天线增益的参数没选对?)。总的来说,在现在看的话这俩设备无论在速率信号功耗发热而言都没有多少实用价值了。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

打赏

参与人数 3家元 +33 收起 理由
jf201006 + 12 謝謝分享
hongo + 9 原創內容
moontree + 12 謝謝分享

查看全部打赏

 楼主| 发表于 2024-11-28 22:07:01 | 显示全部楼层
jin3014 发表于 2024-11-28 22:01
感觉很高端的样子,不好用,是不是因为他们是报废品?某个地方有暗伤?

并不是哦。一是设备太老了,速率比较低;二是企业级无线设备一般都采用 AC+AP 方案,为保证发射功率和带机量一般单个 AP 的覆盖氛围不会很大,而是采用密集型布置的方案。这货的稳定性和可靠性比较好,适合长时间运行。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

APP|手机版|小黑屋|关于我们|联系我们|法律条款|技术知识分享平台

闽公网安备35020502000485号

闽ICP备2021002735号-2

GMT+8, 2025-6-7 00:01 , Processed in 0.124800 second(s), 11 queries , Redis On.

Powered by Discuz!

© 2006-2025 MyDigit.Net

快速回复 返回顶部 返回列表