Center>enable
Center#
Center#show ip int brief
Interface IP-Address OK? Method Status Protocol
Ethernet0/0 12.0.0.1 YES manual up up
Ethernet1/0 192.168.10.2 YES manual up up
Center#ping 192.168.10.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.10.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/18/60 ms
Center#
|
Center#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Center(config)#username zhanggong secret gongzhang>
//
配置一個普通的用戶,該用戶的級別是默認的1
,用戶級別最大是15
,可是使用該用戶名,遠程登錄以後,只能在用戶模式下,而且不對該用戶泄漏enable
密碼,該用戶只有對路由器的工做狀態監視查看。
Center(config)#username nopassword! privilege 15 secret passwordccie
//
配置一個高級別的用戶,該用戶的級別設置爲15
,即便用本用戶和密碼遠程登錄到路由器能直接進入到特權模式。
//
進入VTY
線路配置模式
Center(config)#line vty 0 15
//
配置本地登錄驗證方式,即要求輸入用戶名和密碼,和VTY
線路沒有任何關係。
Center(config-line)#login local
Center(config-line)#end
Center#
*Mar 1 00:38:38.675: %SYS-5-CONFIG_I: Configured from console by console
Center#
|
用戶名和密碼都保持和原來的一致,再次基礎之上只須要配置AAA的認證和受權
Center#conf t
Enter configuration commands, one per line. End with CNTL/Z.
//
開啓AAA
Center(config)#aaa new-model
//
配置登錄驗證方式有aaa
認證來實現,驗證方式爲本地
Center(config)#aaa authentication login default local
Center(config)#aaa authorization ?
auth-proxy For Authentication Proxy Services
cache For AAA cache configuration
commands For exec (shell) commands.
config-commands For configuration mode commands.
configuration For downloading configurations from AAA server
console For enabling console authorization
exec For starting an exec (shell).
ipmobile For Mobile IP services.
network For network services. (PPP, SLIP, ARAP)
reverse-access For reverse access connections
template Enable template authorization
//
對本地登錄的用戶進行受權,當用戶在客戶端使用不一樣的用戶名和密碼試圖登錄,輸入的用戶名和密碼,發送的路由器,路由器查詢本地數據庫的用戶名和密碼,若是收到的用戶名和密碼和本地定義的用戶名匹配成功,則用戶身份認證經過。完成了認證以後,即便用戶的級別是15
,由於已經啓用了AAA
,AAA
的安全級別高,要想讓這個15
級別的用戶能進入到特權模式,還必須經過受權來實現。
//
配置對exec
受權,受權方式爲本地
Center(config)#aaa authorization exec default local
Center(config)#end
|