1.5. 多重引导IOS
缺省情况下,Cisco路由器在FLASH中寻找IOS并启动IOS,如果FLASH中没有,会启动ROM中IOS。
可以设置Cisco路由器可以有多个引导源, 以实现多重引导,在一些对安全较高的环境中,多重引导是需要的。多重引导表示路由器按照先后顺序,依次寻找IOS,如果前面所指定的位置没有,则到下面的位置找IOS。
Cisco2500,1600系列可以从FLASH,tftp服务器,ROM中启动IOS。
注意:如果从tftp服务器启动IOS,一般地,Cisco2500,1600路由器至少应有16M DRAM,因为所有IOS首先以tftp服务器中下载到路由器的DRAM中,另外,要求tftp服务器必须正在运行,IOS软件在tftp服务器的根目录下。tftp服务器必须与Cisco路由器的某个活动端口在同一网段。一般tftp服务器在本地局域网中。
多重启动配置如下:
一般地启动顺序为FLASH,tftp,ROM,在ROM中启动,则路由器基本无法完成正常的网络功能。
首先,从FLASH中启动,在全局设置状态下
boot system flash
然后,从tftp服务器中启动,在全局设置模式下
boot system tftp IOS文件名 tftp服务器IP地址
最后,从ROM中启动,在全局设置模式下
boot system rom
在全局设置模式下设置寄存器值
config-register 寄存器值
Cisco路由器中的PC寄存器为16位。最低4位,该值如果为3-F(16进制),表示可以由BOOT命令设置的地点启动IOS。
一般为0x2103-0x210F
实例
Current configuration:
!
version 11.2
service config
no service udp-small-servers
no service tcp-small-servers
!
hostname kim
!
boot system flash
!首先,从FLASH中启动
boot system tftp c2500-j-l_112-9_p.bin 10.1.1.33
!之后,从tftp服务器中启动
!IOS文件名为c2500-j-l_112-9_p.bin,tftp 服务器地址为10.1.1.33
boot system rom
!最后,从ROM中启动
!
interface Ethernet0
ip address 10.1.1.1 255.255.255.0
no ip mroute-cache
no ip route-cache
!
interface Serial0
ip address 10.1.2.1 255.255.255.0
no ip mroute-cache
no ip route-cache
!
interface Serial1
no ip address
no ip mroute-cache
no ip route-cache
shutdown
!
no ip classless
!
line con 0
line 1 8
transport input all
line aux 0
transport input all
line vty 0 4
login
!
end 作者: 孤舟独帆 时间: 2005-8-12 14:31 标题: CISCO 2500、1600系列路由器使用手册
下载网络共用文件的配置步骤
在全局设置模式下,启动路由器配置文件下载功能
service config
在全局设置tftp服务器中下载网络共用配置文件
boot network tftp 网络共用配置文件名 tftp服务器IP地址
在端口设置状态下,设置端口IP地址
ip address 本地端口IP地址 子网掩码
下载私有配置文件配置步骤
在全局设置模式下,启动路由器下载配置文件功能
service config
在全局设置模式下,设置路由器从tftp服务器中下载私有配置文件
boot host tftp私有配置文件名 tftp服务器IP地址
在端口设置状态,设置端口IP地址
ip address 本端口IP地址 子网掩码
实例:
current configuration:
!
version 11.2
service config
no service udp-small-servers
no service tcp-small-servers
!
hostname kim
!
boot host try-host 10.1.1.33
!从地址为10.1.1.33的tftp服务器中下载名为try-host的私有配置文件
boot network try-network 10.1.1.33
!从地址为10.1.1.33的tftp服务器中下载名为try-network的网络共用文件
boot system flash
boot system tftp c2500-j-l-112-9_p.bin 10.1.1.33
boot system rom
!
!
interface Ethernet0
ip address 10.1.1.33 255.255.255.0
no ip mroute-cache
no ip route-cache
!
interface Serial0
no ip address
no ip mroute-cache
no ip route-cache
!
interface Serial1
no ip address
no ip mroute-cache
no ip route-cache
shutdown
!
no ip classless
!
line con 0
line 1 8
transport input all
line aux 0
transport input all
line vty 0 4
login
!
end
try-network文件内容
ip host kim 10.1.1.1
ip host try 10.1.2.1
ip host try 10.1.3.1
try-host文件内容
!
version 11.2
service config
no service udp-small-servers
no service tcp-small-servers
!
hostname kim
!
boot host try-host 10.1.1.33
boot network try-network 10.1.1.33
boot system Flash
boot system c2500-j-l_112-9_p.bin 10.1.1.33
boot system rom
!
interface Ethernet0
ip address 10.1.1.1 255.255.255.0
no ip mroute-cache
no ip route-cache
!
interface Serial0
ip address 10.1.2.1 255.255.255.0
no ip mroute-cache
no ip route-cache
!
interface Serial1
no ip address
no ip mroute-cache
no ip route-cache
shutdown
!
no ip classless
!
line con 0
line 1 8
transport input all
line aux 0
transport input all
line vty 0 4
login
!
end 作者: 孤舟独帆 时间: 2005-8-12 14:33 标题: CISCO 2500、1600系列路由器使用手册