在路由器启动时,如果IOS加载成功,但对路由器的各个模块、各个接口不能初始化,则说明没能在NVRAM上成功地找到启动配置文件。启动配置文件丢失后,路由器可以正常启动,但是不能对路由器的各个模块进行具体配置。启动配置文件的重新下载是通过TFTP进行的。和IOS丢失的处理方法一样建立笔记本电脑和路由器之间的连接,并在笔记本电脑上启动TFTP服务。登录路由器,进入管理模式后,先设置en0端口的IP地址。
SSR(config)# interface add ip en0 address-netmask 10.10.10.1/255.255.255.0
“Interface add ip”这个命令是为现有的接口配置第二个地址,因为en0这个管理接口是系统默认已经建好的回环接口。
此处的“en0”表示的网络接口就是控制模块的“10/100M Mgmt”以太网管理端口,在配置模式下,使用“COPY”命令复制配置文件。
SSR# copy tft-server to startup (在管理模式下) TFTP server ? 10.10.10.2 (输入TFTP服务器的地址) Source filename? Ssr-20030327 (输入保存在TFTP服务器根目录下配置文件的文件名) Are you sure you want to overwrite the Startup configuration [no]? y ################################## %TFTP-I-XFERRATE, Received 17263 bytes in 0.0 seconds %CONFIG-W-STARTNOTACT, Warning-startup configuration commands are not active, use 'copy startup to active' to make them active.
SSR# copy startup to active ……………………………………
SSR# copy tftp-server to active TFTP server? 10.10.10.1 Source filename? ssr-20030327 Are you sure you want to erase the active configuration [no]? y ################################## %TFTP-I-XFERRATE, Received 17263 bytes in 0.0 seconds ……