作者:邹峰立,微博:zrunker,邮箱:zrunker@yahoo.com,微信公众号:书客创作,个人平台:www.ibooker.cc。
书客创作
这一次给大家讲一下默认路由的配置工作,主要是为下节静态路由配置打下基础:
课程目标图要实现两台PC机的通信:首先要对PC进行设置,注意一定要设置网关:
PC—1:
PC—2:
PC2配置图
下面是对路由器的配置部分:
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R0
R0(config)#int f0/0
R0(config-if)#ip address 192.168.1.1 255.255.255.0
% 192.168.1.0 overlaps with FastEthernet0/1
R0(config-if)#no shutdown
% 192.168.1.0 overlaps with FastEthernet0/1
FastEthernet0/0: incorrect IP address assignment
R0#
%SYS-5-CONFIG_I: Configured from console by console
R0(config-if)#exit
R0(config)#int f0/1
R0(config-if)#ip address 192.168.2.1 255.255.255.0
R0(config-if)#no shutdown
R0(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
R0(config-if)#
R0(config-if)#exit
R0(config)#
这时候你会发现此时计算机已经可以ping的通了,但是默认路由却还没有成功,当有多个路由器的时候就要添加以下代码:
R0(config)#ip route 0.0.0.0 0.0.0.0 下一跳地址
还有一点要注意:路由器的两个端口要设置为不同网段。
下面看一下具体的实现过程:拓扑图
拓扑图
首先对PC机进行设置:
PC机设置图
最后是对路由器的配置:这里只展示一个路由器的配置,另一个路由器的配置与其相似。
Router>
Router>enable
Router#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R2
R2(config)#int f0/1
R2(config-if)#ip address 172.16.10.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R2(config-if)#int f0/0
R2(config-if)#ip address 12.1.1.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#ip route 0.0.0.0 0.0.0.0 12.1.1.2 // 注意这里是设置的关键:0.0.0.0 0.0.0.0 下一跳地址
R2(config)#
R2(config)#do show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is 12.1.1.2 to network 0.0.0.0
12.0.0.0/24 is subnetted, 1 subnets
C 12.1.1.0 is directly connected, FastEthernet0/0
172.16.0.0/24 is subnetted, 1 subnets
C 172.16.10.0 is directly connected, FastEthernet0/1
S* 0.0.0.0/0 [1/0] via 12.1.1.2
R2(config)#
R2(config)#exit
对另一台路由器的设置也是一样的,设置之后便可以实现ping:
Ping结果图微信公众号:书客创作
网友评论