Ciso WLC命令行添加Wifi Guest 帐号

使用命令行添加guest wifi 帐号,命令格式如下:

 

config netuser add <username> <password> wlan <WLAN id> userType <guest/permanent> [lifetime <lifetime>] [description <description> ]

 

 

因为是创建guest 帐号,所以userType <guest/permanent>,这里我们选择guest

wlan 是guest所在的wlan ID,如图

wlan ID

[]里的内容是非必须的

lifetime 是指使用时间,以秒来计算

description 是描述

 

举例:

 

 

(Cisco Controller) >config netuser add testaccount testpassword wlan 3 userType guest lifetime 2000 description test123

 

 

如果需要创建永久性的guest帐号

userType 就要选择permanent

 

举例:

 

(Cisco Controller) >config netuser add testaccount testpassword wlan 3 userType permanent description testabc

 

 

删除帐号:

config netuser delete <username>

 

更改密码:

config netuser password <username> <password>

Leave a Comment