设置路由器主机名;设置enable、console、aux、vty密码;设置旗标

设置路由器主机名

Router(config)#hostname test
test(config)#

设置enable、console、aux、vty密码

enable密码(secret 密文保存,password 明文保存)

test(config)#enable secret 123456
test(config)#enable password 123456

控制台(console)密码

test(config)#line console ?
  <0-0>  First Line number
test(config)#line console 0
test(config-line)#password 123456
test(config-line)#login

辅助端口(aux)密码

test(config-line)#line aux 0
test(config-line)#password 123456
test(config-line)#login

Telnet(vty)密码

test(config)#line vty 0 15
test(config-line)#password 123456
test(config-line)#login

创建旗标

MOTD(每日消息)

最常用的旗标,向通过Console口、AUX口或Telnet连接设备的人员显示一条信息。

test(config)#banner motd #Welcome! #

Welcome! 
User Access Verification
Password: 

login 旗标

登录旗标,显示在MOTD旗标之后,登录提示之前。要禁用登录旗标,必须在全局配置模式使用no banner login命令。

test(config)#banner login #Please modify the original password! #

从其他路由器通过Telnet登录到这个路由器

Router0#telnet 172.16.10.2
Trying 172.16.10.2 ...Open
Welcome! 
Please modify the original password! 

User Access Verification

Password: 
posted @ 2021-04-20 23:31  一个只会爆零的小菜鸡  阅读(993)  评论(0编辑  收藏  举报