当前位置:
文档之家› 案例6:路由器接口的基本配置
案例6:路由器接口的基本配置
注意:以太网接口的带宽可自动设置,一般无需手动设置。
3)配置双工方式
R1(config-if)#duplex ?
auto Enable AUTO duplex configuration
full Force full duplex operation
half Force half-duplex operation
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.10, changed state to up//注意:以上信息提示子接口已经激活!
R1(config-subif)#?
步骤3:配置串行接口。
1)配置IP地址和子网掩码
R1#conf t
//第1个up表示物理层激活;第2个up表示数据链路层激活。
Hardware is Lance, address is00d0.bc94.2401(bia 00d0.bc94.2401)
Internet address is192.168.1.254/24
MTU1500 bytes,BW100000 Kbit,DLቤተ መጻሕፍቲ ባይዱ100 usec,
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#int s0/0/0//注意串行接口的标识
R1(config-if)#ip addr 192.168.1.253 255.255.255.252
R1(config-if)#
R1(config-if)#
6)配置接口描述
R1(config-if)#description This is a FastEthernet interface
注意:此配置在案例2中已有解释。
7)配置最大传输单元
R1(config-if)#mtu ?
<64-1600> MTU size in bytes
R2(config-if)#
7)配置逻辑子接口
R2(config)#int s0/0/1.100 ?
multipoint Treat as a multipoint link
point-to-point Treat as a point-to-point link
<cr>
R2(config-if)#encapsulation frame-relay
案例6:路由器接口的基本配置
1. 案例目标
通过本案例,你可以掌握如下技能:
1)配置以太网接口
2)配置串行接口
3)验证接口的配置
注意:Config页面的配置比较简单直观,此处不介绍,主要介绍如何在CLI界面进行配置。
2. 设备与拓扑
设备:1台普通PC,2台2811路由器。
拓扑:如下图。
3. 操作步骤
步骤1:按以上拓扑添加和连接设备,注意添加路由器的串行模块,注意串行连接的DTE/DCE端。
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
注意:以上信息提示接口已经激活!
R1(config-if)#
注意:设置了路由器接口的IP地址,就确定了该接口直连的网络。
2)配置带宽
R1(config-if)#bandwidth ?
<1-10000000> Bandwidth in kilobits
R1(config-if)#bandwidth 10000//配置为10M带宽
R1(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to down//此信息提示接口的线路协议已经关闭!
R1(config-if)#no shut//激活接口,注意:路由器的接口缺省时是关闭的,配置IP地址之后,切记将接口激活!
MTU 1500 bytes, BW 2048 Kbit, DLY 20000 usec,
reliability 255/255, txload 1/255, rxload 1/255
EncapsulationHDLC, loopback not set, keepalive set (10 sec)
Last clearing of "show interface" counters never
Input queue: 0/75/0 (size/max/drops); Total output drops: 0
Queueing strategy: fifo//队列策略
Output queue :0/40 (size/max)
2)设置带宽
R2(config-if)#bandwidth ?
<1-10000000> Bandwidth in kilobits
R2(config-if)#bandwidth 2048
R2(config-if)#
3)设置DCE时钟
R2(config-if)#clock rate ?
Speed (bits per second
R1(config-if)#
注意:以太网接口的双工方式可自动协商,一般无需手动设置。
4)配置MAC地址
R1(config-if)#mac-address 0005.5e63.4602
R1(config-if)#do sh int f0/0
FastEthernet0/0 is up, line protocol is up (connected)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
0 packets input, 0 bytes, 0 no buffer
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
frame-relay Frame Relay networks//帧中继
hdlc Serial HDLC synchronous//HDLC:缺省
ppp Point-to-Point protocol//PPP
R2(config-if)#encapsulation ppp//封装PPP
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to down//封装PPP,注意PPP要求链路两端都要正确配置才能打开!
R2(config-if)#clock rate 128000
R2(config-if)#
4)配置接口描述
注意:此配置在案例2中已有解释。
5)配置数据链路层协议
R2#sh int s0/0/0
Serial0/0/0 is up, line protocol is up (connected)
Hardware is HD64570
……//注意:缺省时Cisco路由器串行接口的数据链路层封装HDLC。
R2#
R2#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#int s0/0/0
R2(config-if)#en
R2(config-if)#encapsulation ?//PT中串行接口可封装3中协议
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
1200
2400
4800
9600
19200
38400
56000
64000
72000
125000
128000
148000
250000
500000
800000
1000000
1300000
2000000
4000000
<300-4000000> Choose clockrate from list above
步骤2:配置以太网接口。
1)配置IP地址和子网掩码
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#int fa0/0
R1(config-if)#ip addr 192.168.1.14 255.255.255.240
R2#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#int s0/0/0
R2(config-if)#ip addr 192.168.1.254 255.255.255.252
R2(config-if)#
Hardware is Lance, address is0005.5e63.4602(bia 0005.5e63.4601)
……
注意:地址已经改变!一般无需手动设置。