我已经在我的主IAP上应用了虚拟控制器-IP,并且配置在我的主IAP上持久化,可以在IAP的运行配置中查看。
WAP# configure terminal WAP (config) # virtual-controller-ip 200.20.200.237
WAP (config) # end
WAP# commit apply
committing configuration...
configuration committed.
WAP# reload all
Do you really want to reset the system (y/n): y如何使用阿鲁巴CLI删除或禁用此应用配置?
发布于 2020-03-21 02:59:06
要禁用或取消虚拟控制器IP,我们需要在主wap或虚拟控制器中将虚拟控制器-ip应用为0.0.0.0
让我们将虚拟控制器-ip作为0.0.0.0应用于主WAP中。
WAP# configure terminal
We now support CLI commit model, please type "commit apply" for configuration to take effect.
WAP (config) # virtual-controller-ip 0.0.0.0
WAP (config) # end
WAP# commit apply no-save
committing configuration...现在,在主wap运行-配置中,我们没有虚拟控制器-ip。
WAP# show running-config
virtual-controller-country US在阿鲁巴8.3 MIB中,它表示当没有设置虚拟控制器IP地址时,它将返回0.0.0.0。
aiVirtualControllerIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Virtual Controller IP Address. If this is not set, returns 0.0.0.0"
::= { aiInfoGroup 5 }https://stackoverflow.com/questions/60784051
复制相似问题