有新的ac需要在ap上注册配置命令
时间: 2023-06-01 22:04:17 浏览: 196
对于新的AC,需要在AP上进行以下配置命令:
1. 首先,确认AC的IP地址,并将其设置为AP的默认网关。例如,假设AC的IP地址为192.168.1.1,AP的IP地址为192.168.1.2,则需要在AP上执行以下命令:
```
ap(config)# ip default-gateway 192.168.1.1
```
2. 然后,需要为AP配置与AC的连接。这可以通过以下命令实现:
```
ap(config)# controller ip address 192.168.1.1
```
这将告诉AP连接到AC的IP地址。
3. 最后,需要将AP注册到AC上。这可以通过以下命令实现:
```
ap(config)# ap dot11 24ghz radio shutdown
ap(config)# ap dot11 5ghz radio shutdown
ap(config)# ap registration retry interval 30
ap(config)# ap registration timeout 180
ap(config)# ap name <AP名称> mac-address <AP MAC地址> location <AP位置>
ap(config)# ap dot11 24ghz radio enable
ap(config)# ap dot11 5ghz radio enable
```
这将告诉AC关于AP的相关信息,并将其注册到AC上。请注意,<AP名称>和<AP MAC地址>应该根据你的AP进行替换,<AP位置>可以根据需要进行自定义。
完成以上步骤后,你的新AP应该已经成功地注册到AC上,并可以使用了。
阅读全文