有時客戶的網路設備出問題,需要工程師遠端telnet 進去查看,可是又不希望工程師直接去改變
客戶的設備配置。這時可以配置一個用戶給遠端工程師,讓他藉此用戶登入並顯示要看的資訊
以達到讓遠端工程師不可以修改設備配置,又可查看的目的。
簡單的說,autocommand 可以讓telnet用戶顯示配置,而不可以修改配置。
==================
R1 ip 192.168.1.1
R2 ip 192.168.1.2
===========
R1(config)#username user1 password pass1 ##設定 用戶
R1(config)#line vty 0 935
R1(config-line)#login local
R1(config-line)#autocommand show ip int brief ## 設定一登入使用 show ip int brief
## 注意!! autocommand 只能夠自動使用"一條指令"而已
測試:
R2#telnet 192.168.1.1
Trying 192.168.1.1 ... Open
User Access Verification
Username: user1
Password:
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 192.168.1.1 YES manual up up
FastEthernet0/1 unassigned YES unset administratively down down
[Connection to 192.168.1.1 closed by foreign host]
## 一登入 即自動顯示資訊
--
## 以上是 只要登入 telnet 預設都會顯示某特定指令,不論使用哪個使用者
## 也可以改成針對特定使用者 顯示不同的東西
EX:
username user10 password pass10
username user10 autocommand show running-config
## 這樣用 user10 登入 就會改成顯示 show running-config
===============