路由器的静态IP配置实例

 
 
 
 
 
 
IP 地址说明:
DTE RA Cisco 4500
E 0/1 11.0.0 .1/8
E 0/0 192.168.1.1/24
DCE RB Cisco 3500
E0/1 10.0.0 .2/8
E0/2 11.0.0 .2/8
E 0/0 192.168.2.1/24
DTE RC Cisco 4500
E0/1 10.0.0 .1/8
E0/0 192.168.3.1/24
PC1 192.168.1.2/24
PC2 192.168.2.2/24
PC3 192.168.3.2/24
RA:
RA>enable
RA#configure terminal          -- 进入全局陪配置模式
RA(config)# interface E0/0      -- 进入路由器 E0/0 端口
 RA(config-if)# ip address 192.168.1.1 255.255.255.0  -- 配置子接口 IP 地址
RA(config-if)# no shutdown     -- 打开端口
RA(config-if)# interface E0/1      -- 进入路由器 E0/1 端口
RA(config-if)# ip address 11.0.0 .1 255.0.0.0   -- 配置子接口 IP 地址
RA(config-if)#no shutdown
RA(config-if)# end
RA#show ip interface brief   �C 查看各接口 IP 及状态
RA#show ip route  -- 查看路由表信息
RA#configure terminal
RA(config)# ip route 192.168.2.0 255.255.255.0 11.0.0 .2
-- 设置静态 IP 2.0 段和 3.0 , 11.0.0 .2 是下一跳地址
RA(config)# ip route 192.168.3.0 255.255.255.0 11.0.0 .2
RA(config)# end
RA#write
RB :
   RB>enable
   RB#configure terminal
RB(config)# interface E0/0
RB(config-if)# ip address 192.168.2.1 255.255.255.0
RB(config-if)# no shutdown
RB(config-if)# interface E0/2
RB(config-if)# ip address 11.0.0 .2 255.0.0.0
RB(config-if)# no shutdown
RB(config-if)# interface E0/1
RB(config-if)# ip address 10.0.0 .2 255.0.0.0
RB(config-if)# no shutdown
RB(config-if)# end
RB#configure terminal
RB(config)# ip route 192.168.1.0 255.255.255.0 11.0.0 .1
RB(config)# ip route 192.168.3.0 255.255.255.0 10.0.0 .1
RB(config)# end
RB#write
RB#show ip route
RC:
   RC>enable
RC# configure terminal
RC(config)# interface E0/1
RC(config-if)# ip address 10.0.0 .1 255.0.0.0
RC(config-if)# no shutdown
RC(config-if)# interface E0/0
RC(config-if)# ip address 192.168.3.1 255.255.255.0
RC(config-if)# no shutdown
RC(config-if)# end
RC#configure terminal
RC(config)# ip route 192.168.2.0 255.255.255.0 10.0.0 .2
RC(config)# ip route 192.168.1.0 255.255.255.0 10.0.0 .2
RC(config)# end
RC#write
RC#show ip route
 
 
测试结果
使用 PC1 PC2 PC3 进行互 Ping ,正常的情况下可以相互 Ping .
 

你可能感兴趣的:(职场,路由,休闲,交换)