Cisco SDM

SDM连接方式:http+telnet / https+ssh
 
要使用SDM对CISCO设备实现集中式管理,必须在设备上键入如下命令:
 
步骤1:
要启用路由器的HTTP/HTTPS 服务器,请使用下列Cisco IOS 命令:
Router(config)# ip http server  //开启http支持
Router(config)# ip http secure-server  //(或开启https支持)该命令执行后会自动建立RSA密钥
Router(config)# ip http authentication local  //开启http本地认证
注意:- 只有启用加密的IOS 映像才能启用HTTPS
 
步骤2:
使用权限级别15 来创建用户。
Router(config)# username <username> privilege 15 password 0 <password>
 
步骤3:
为本地登录设置权限级别15 ,配置SSH和telnet:
Router(config)# line vty 0 4
Router(config-line)# privilege level 15
Router(config-line)# login local
Router(config-line)# transport input telnet ssh
Router(config-line)# exit

步骤4:

安装SDM,配置登陆

原文地址:https://www.cnblogs.com/airoot/p/4131887.html