1)開啟全域性模式下的認證
xnet#configure terminal
xnet(config)#aaa authentication enable weil local
xnet(config)#aaa authentication login weil local
xnet(config)#end
xnet#
xnet#configure terminal
xnet(config)#tacacs enable
xnet(config)#tacacs-server host 10.204.253.91 4949
xnet(config)#end
xnet#
3)配置金鑰字串
xnet#configure terminal
xnet(config)#tacacs-server key xnet
xnet(config)#
4)配置tacacs的組群,並且指定伺服器
xnet(config)#tacacs group-server weil
xnet(config-tacplus)#server 10.204.253.91 4949
xnet(config-tacplus)#exit
xnet(config)#
5)配置登陸使用者進行tac+認證
xnet#con t
xnet(config)#line vty 0 80
xnet(config-line)#login local tacacs
xnet(config-line)#end
xnet#
6)開啟enable認證
xnet#con t
xnet(config)#enable password 123456 #該密碼當tac+伺服器未認證通過時可用
xnet(config)#end
xnet#
1)在tac+伺服器端啟動tac_plus,並使用終端去登陸交換機(login認證)
配置檔案中寫好user:』xnet』,passwd:』xnet』,key:』xnet』
root@xnet-91:/home/weil/tac+# tac_plus tac_plus.cfg
2)enable認證
在該介面輸入tac_plus中配置檔案中的enable密碼(xnet)才能認證通過,而不是輸入交換機配置的密碼(123456)。
tac_plus debug資訊
thinkphp駝峰式控制器訪問
預設情況下,url位址中的控制器和操作名是不區分大小寫的,因此下面這兩種訪問方式是相同的。plain view plain copy localhost tp5 index.php index index index localhost tp5 index.php index index index...
Redis構建頻次訪問控制器(二)
在昨天的基礎上新增了功能 當訪問廣告服務時會自動將頻次加1,當大於等於規定的頻次返回失敗頁面,還有定時任務,並且使用了springcloud分布式的操作 話不多說,直接上 專案結構 這個就是昨天的 改的 改動的 adshowcontroller restcontroller public class...
thinkphp5控制器訪問轉換問題
假設定義了helloworld控制器 url訪問位址就是 http localhost index.php index hello world,與此同時view目錄下的模板資料夾要命名為hello world 否則會提示找不到模板 如果你期望通過 可以訪問,那麼必須關閉url的自動轉換設定 是否自動...