路由器的基本配置命令详解
line con 0
password cisco
line vty 0 4
password cisco
login
!
end
步骤 5:在记事本中将打开的文件保存为 start.txt。
任务 13:将 start.txt 文件加载到 R1 路由器中。
步骤 1:清除 R1 的当前启动配置。
当出现提示时请予以确认,并在询问是否保存更改时回答 no。结果应该类似如下所示: R1#erase startup-config
Erasing the nvram filesystem will remove all files!Continue?[confirm]
[OK]
Erase of nvram:complete
Router#
步骤 2:当返回提示符状态时,使用 reload 命令。
当出现提示时请予以确认。路由器完成启动过程后,选择不使用 AutoInstall 功能,如下所示: Would you like to enter the initial configuration dialog? [yes/no]: no Would you like to terminate autoinstall? [yes]:
Press Enter to accept default.
Press RETURN to get started!
步骤 3:进入全局配置模式。
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#
步骤 4:复制命令。
在使用记事本创建的 start.txt 文件中,选择所有行,然后选择编辑 > 复制。
步骤 5:在 HyperTerminal 的“编辑”菜单中,选择“粘贴到主机”。
步骤 6:检查运行配置。
所有粘贴命令执行完毕后,请使用 show running-config 命令检验当前运行配置是否与预期一致。
步骤 7:保存运行配置。
使用 copy running-config startup-config 命令将当前运行配置保存到 NVRAM。 R1#copy running-config startup-config
Building configuration...
[OK]
R1#
All