前言**:**
要管理cisco router 可以有多種方式 ex: console , tty , vty , aux 等
這次使用 htttp/https 登入管理
## default is disable
=========================================
設定**:**
R1(config)#ip http server ## 啟動 http server , default port is 80
R1(config)#ip http port 8080 ## 可以手動更改 http server port
R1(config)#ip http authentication local ## default 使用 enable 密碼 , 這裡改為本地認證
一些其他參數:
R1(config)#ip http max-connections 5
R1(config)#ip http access-class 20 ## 也可以設定 acl 來僅允許特定 source ip
而如果要啟動 https
R1(config)#ip http secure-server ## 其他都跟 http server 設定一樣,不重複贊述
看:
R1#sh ip http server all