案例6:路由器接口的基本配置
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
案例6:路由器接口的基本配置
1. 案例目标
通过本案例,你可以掌握如下技能: 1) 配置以太网接口 2) 配置串行接口
3) 验证接口的配置
注意:Config 页面的配置比较简单直观,此处不介绍,主要介绍如何在CLI 界面进行配置。
2. 设备与拓扑
设备:1台普通PC ,2台2811路由器。 拓扑:如下图。
3. 操作步骤
步骤1:按以上拓扑添加和连接设备,注意添加路由器的串行模块,注意串行连接的DTE/DCE 端。 步骤2:配置以太网接口。
b b
s .
h h
01
0.c o m
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 R1(config-if)#
注意:设置了路由器接口的IP 地址,就确定了该接口直连的网络。 2) 配置带宽
R1(config-if)#bandwidth ?
<1-10000000> Bandwidth in kilobits
R1(config-if)#bandwidth 10000 //配置为10M 带宽 R1(config-if)#
注意:以太网接口的带宽可自动设置,一般无需手动设置。 3) 配置双工方式
R1(config-if)#duplex ?
auto Enable AUTO duplex configuration full Force full duplex operation half Force half-duplex operation R1(config-if)#duplex half
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up 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)
Hardware is Lance, address is 0005.5e63.4602 (bia 0005.5e63.4601) ……
b b
s .
h h
01
0.c o m
注意:地址已经改变!一般无需手动设置。 5) 激活与管理性关闭端口
R1(config-if)#shutdown //管理性关闭接口
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to administratively down //此信息提示接口已经管理性关闭!
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to down
//此信息提示接口的线路协议已经关闭!
R1(config-if)#no shut //激活接口,注意:路由器的接口缺省时是关闭的,配置IP 地址之后,切记将接口激活!
%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)# 6) 配置接口描述
R1(config-if)#description This is a FastEthernet interface
注意:此配置在案例2中已有解释。
7) 配置最大传输单元
R1(config-if)#mtu ?
<64-1600> MTU size in bytes R1(config-if)#mtu 1400
注意:以太网接口mtu 是固定,一般无需手动配置。 8) 配置逻辑子接口
R1(config)#int fa0/0? / .
R1(config)#int fa0/0.10
%LINK-5-CHANGED: Interface FastEthernet0/0.10, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.10, changed state to up //注意:以上信息提示子接口已经激活! R1(config-subif)#?
b b
s .
h h
01
0.c o m
步骤3:配置串行接口。 1) 配置IP 地址和子网掩码
R1#conf t
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)# 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)# 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 1200 2400 4800 9600 19200 38400 56000 64000 72000 125000 128000
b b
s .
h h
01
0.c o m