路由器基本配置命令详解(4)
发布时间:2021-06-08
发布时间:2021-06-08
路由器的基本配置命令详解
只要键入的字符可供 IOS 识别出唯一的命令即可使用自动补全功能。
步骤 12:在正确的模式中输入 IOS 命令。
必须在正确的模式下输入 IOS 命令。例如,在特权执行模式不能对配置进行更改。尝试在特权执行模式下输入命令 hostname R1 并观察结果。
Router#hostname R1
^
% Invalid input detected at '^' marker.
Router#
任务 6:对路由器 R1 进行基本配置。
步骤 1:建立到路由器 R1 的 HyperTerminal 会话。
步骤 2:进入特权执行模式。
Router>enable
Router#
步骤 3:进入全局配置模式。
Router#configure terminal
Enter configuration commands, one per line.End with CNTL/Z.
Router(config)#
步骤 4:将路由器名称配置为 R1。
在提示符下输入命令 hostname R1。
Router(config)#hostname R1
R1(config)#
步骤 5:使用 no ip domain-lookup 命令禁用 DNS 查找。
R1(config)#no ip domain-lookup
R1(config)#
步骤 6:配置执行模式口令。
使用 enable secret password 命令配置执行模式口令。使用 class 替换 password。 R1(config)#enable secret class
R1(config)#
Enable secret 命令用于在 enable password 命令之上再增加一层安全性。Enable secret 命令使用非可逆加密功能存储 enable secret 口令,因而安全性更高。对于口令会通过网络传输或存储在 TFTP 服务器中的情况,这一附加的安全加密层尤为有用。如果同时配置了 enable password 和 enable secret 口令,路由器仅接受 enable secret 命令中定义的口令,而忽略 enable password 命令中定义的口令。
步骤 7:清除 enable password。
因为配置了 enable secret,所以不再需要 enable password。对于 IOS 命令,可以通过在命令前加 no 的形式从配置中加以清除。
R1(config)#no enable password
R1(config)#
步骤 8:使用 banner motd 命令配置当天消息标语。
R1(config)#banner motd &
Enter TEXT message. End with the character '&'.
********************************
!!!AUTHORIZED ACCESS ONLY!!!
********************************