发表于 2018-7-20 10:32:26

cisco 设备的IOS要支持WEB管理功能

  设备的IOS要支持WEB管理功能
  Router(config)#iphttp server //如果这条命令可以用,说明IOS支持WEB管理
  Router(config)#iphttp secure-server //如果这条命令可以用,说明你的IOS还支持HTTPS,安全连接
  通过上面命令开启WEB管理功能后还要使用下面命令设置WEB管理口令:
  Router(config)#ip httpauthentication local //设置口令验证方式是本地验证
  Router(config)#username cisco privilege 15password 0 cisco //在本地添加用户名cisco和密码cisco
  router(config)#line vty0 4
  router(config-line)loginlocal//设置telnet本地用户登入。(在登入时第一次出现的ssh登入方式,第二次出现的才是telnet登入)
  router(config)#interface fastEthernet 0/0
  router(config-if)#ipaddress x.x.x.xx.x.x.x.router(config-if)#no shutdown//配置接口ip地址
页: [1]
查看完整版本: cisco 设备的IOS要支持WEB管理功能