CCNA实验(9) -- Frame Relay
帧中继的一些特点:
1.中小企业常用的广域网线路
2.通信费用较低
3.配置较为复杂
1.将Cisco路由器配置为帧中继交换机
2.帧中继基本配置、帧中继映射
3.在帧中继的链路上运行RIPv2
4.帧中继的多点子接口
5.帧中继的点到点子接口
enable
conf t
no ip do lo
enable pass cisco
line con 0
logg sync
exec-t 0 0
line vty 0 4
pass cisco
logg sync
exit
host
1.配置Cisco路由器为帧中继交换机
-----------------------------------------------------------------------------
R4:
frame-relay switch
int s0/1
encap frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 102 int s0/2 201
frame-relay route 103 int s0/3 301
no shut
exit
int s0/2
encap frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 201 int s0/1 102
no shut
exit
int s0/3
encap frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 301 int s0/1 103
no shut
exit
end
show frame-relay route
conf t
2.帧中继基本配置、帧中继映射
-----------------------------------------------------------------
R1:
int s0/0
ip add 123.1.1.1 255.255.255.0
encap frame-relay
frame-relay lmi-type cisco
no shut
exit
R2:
int s0/0
ip add 123.1.1.2 255.255.255.0
encap frame-relay
frame-relay lmi-type cisco
no shut
exit
R3:
int s0/0
ip add 123.1.1.3 255.255.255.0
encap frame-relay
frame-relay lmi-type cisco
no shut
exit
R1:
end
ping 123.1.1.2
ping 123.1.1.3
show frame-relay map
show frame-relay pvc
clear frame-relay inarp
conf t
R1:
int s0/0
no frame-relay inverse-arp
frame-relay map ip 123.1.1.2 102 broadcast
frame-relay map ip 123.1.1.3 103 broadcast
exit
R2:
int s0/0
no frame-relay inverse-arp
frame-relay map ip 123.1.1.1 201 broadcast
frame-relay map ip 123.1.1.3 201 broadcast
exit
R3:
int s0/0
no frame-relay inverse-arp
frame-relay map ip 123.1.1.1 301 broadcast
frame-relay map ip 123.1.1.2 301 broadcast
exit
R1:
end
ping 123.1.1.2
ping 123.1.1.3
show frame-relay map
show frame-relay pvc
conf t
3.在帧中继的链路上运行RIPv2
------------------------------------------------------------------------
R1:
int l0
ip add 11.1.1.1 255.255.255.0
exit
R2:
int l0
ip add 22.1.1.1 255.255.255.0
exit
R3:
int l0
ip add 33.1.1.1 255.255.255.0
exit
R1:
router rip
version 2
no auto-summary
network 11.0.0.0
network 123.0.0.0
exit
R2:
router rip
version 2
no auto-summary
network 22.0.0.0
network 123.0.0.0
exit
R3:
router rip
version 2
no auto-summary
network 33.0.0.0
network 123.0.0.0
exit
R1:
end
show ip route rip
conf t
R2:
end
show ip route rip
conf t
R3:
end
show ip route rip
conf t
4.帧中继的多点子接口(multi-point)
----------------------------------------------------------------
R1:
int s0/0
encap frame-relay
no ip add
no shut
exit
R2:
int s0/0
ip add 123.1.1.2 255.255.255.0
encap frame-relay
frame-relay lmi-type cisco
no shut
exit
R3:
int s0/0
ip add 123.1.1.3 255.255.255.0
encap frame-relay
frame-relay lmi-type cisco
no shut
exit
R1:
int s0/0.1 multipoint
ip add 123.1.1.1 255.255.255.0
frame-relay map ip 123.1.1.2 102 broadcast
frame-relay map ip 123.1.1.3 103 broadcast
exit
R2:
int s0/0
no frame-relay inverse-arp
frame-relay map ip 123.1.1.1 201 broadcast
frame-relay map ip 123.1.1.3 201 broadcast
exit
R3:
int s0/0
no frame-relay inverse-arp
frame-relay map ip 123.1.1.1 301 broadcast
frame-relay map ip 123.1.1.2 301 broadcast
exit
5.帧中继的点到点子接口(point-to-point)
---------------------------------------------------------------------
R1:
int s0/0
encap frame-relay
no ip add
no shut
exit
int s0/0.2 point-to-point
ip add 12.1.1.1 255.255.255.0
frame-relay interface-dlci 102
exit
exit
int s0/0.3 point-to-point
ip add 13.1.1.1 255.255.255.0
frame-relay interface-dlci 103
exit
exit
R2:
int s0/0
encap frame-relay
no ip add
no shut
exit
int s0/0.1 point-to-point
ip add 12.1.1.2 255.255.255.0
frame-relay interface-dlci 201
exit
exit
R3:
int s0/0
encap frame-relay
no ip add
no shut
exit
int s0/0.1 point-to-point
ip add 13.1.1.3 255.255.255.0
frame-relay interface-dlci 301
exit
exit
CCNA实验(9) -- Frame Relay的更多相关文章
- Packet Tracer 5.0 构建CCNA实验(2)—— 配置VLAN
Packet Tracer 5.0 构建CCNA实验(2)—— 配置VLAN Vlan(Virtual Local Area Network) 即虚拟局域网.VLAN可以把同一个物理网络划分为多个逻辑 ...
- Frame Relay - 简单介绍及基本配置
Frame Relay如今越来越不流行了,只是在过去的设计中被广泛应用. 所以工作上还是能常常见到的, 这篇博文从二层简单总结下FR的一些概念 在介绍Frame Relay之前,先了解下广播介质和非广 ...
- Frame Relay Voice Traffic Shaping and Frament
本文全称应该是:Frame Relay Voice-Adaptive Traffic Shaping and Fragmentation,标题限制字数,没办法了 帧中继的流量整型向来是个头疼的地方 ...
- CCNA 之 十二 Frame Relay 帧中继
Fram Relay 帧中继 帧中继简介 VC.LMI.DLCI的概念 帧中继映射 Inverse-ARP的操作 帧中继配置 帧中继简介 分组交换广域网接入方式的一个代表,分组交换是以分组的形式在广域 ...
- CCNA实验4:HDLC和PPP
一.HDLC封装 router9和11上分别配置s0/0如下 conf t int s0/0 encapsulation hdlc do show int s0/0 ip address x.x.x. ...
- CCNA实验2.VLAN
一. 二.配置主VTP上的信息 sw2上配置为domain server,sw1上配置为domain client,sw2上增加vlan并命名和添加描述 conf t vtp domain corp ...
- CCNA实验1.port-security
一, 二,MAC地址绑定 3550-1#conf t3550-1(config)#int f0/13550-1(config-if)#switchport mode access /指定端口模式.35 ...
- CCNA实验(1) -- 基本配置
Ctrl+A: 到行首(Ahead)Ctrl+E: 到行尾(End)Esc+B: 回退一个单词(Back)Esc+F: 前进一个单词(Forward) 1.三种配置模式2.时间时区配置3.设置超时时间 ...
- CCNA实验(2) -- Static Route
1.静态路由R1:ip route 22.1.1.0 255.255.255.0 12.1.1.2 2.静态汇总路由R1:ip route 22.1.0.0 255.255.0.0 12.1.1.2 ...
随机推荐
- Qt QtableView使用
ui->setupUi(this); ui->mainToolBar->hide(); tableView = new QTableView(this); // 设置表头 QStan ...
- 在VS工程中,添加c/c++工程中外部头文件及库
在VS工程中,添加c/c++工程中外部头文件及库的基本步骤: 1.添加工程的头文件目录:工程---属性---配置属性---c/c++---常规---附加包含目录:加上头文件存放目录. 2.添加文件引用 ...
- mac os vim 乱码
yum -y groupinstall chinese-support vim /etc/sysconfig/i18n LANG="zh_CN.UTF-8" LANGUAGE=&q ...
- hadoop笔记之Hive的数据存储(内部表)
Hive的数据存储(内部表) Hive的数据存储(内部表) 基于HDFS 可使用hadoop给我们提供的web管理工具查看数据.打开管理工具localhost:9000–>Utilities下的 ...
- Javascript的数组操作[转]
1.shift:删除原数组第一项,并返回删除元素的值:如果数组为空则返回undefined var a = [1,2,3,4,5]; var b = a.shift(); // 结果 a:[2,3,4 ...
- Scala写排序可以说是简洁又明了
例如归并排序,清晰明了. object MergeSort extends App { val oldList = List[Int](12, 40, 26, 89, 75, 44, 32, ...
- c++中多态性、dynamic_cast、父类指针、父类对象、子类指针、子类对象
c++多态性是依靠虚函数和父类指针指向子类对象来实现的.简单来说,父类中定义虚函数,父类指针指向子类对象,父类指针调用函数时调用的就是子类的函数. 父类没有定义虚函数,父类指针指向子类对象时,父类指针 ...
- Entity Framework 数据部分更新之Attach &&Detach
我们经常会遇到这样的问题:Update一个entity的部分数据时,通常需要new一个新的对象,然后事这新的对象Attach到Context中,代码如下所示: /// <summary> ...
- Linux 内存机制详解宝典
Linux 内存机制详解宝典 在linux的内存分配机制中,优先使用物理内存,当物理内存还有空闲时(还够用),不会释放其占用内存,就算占用内存的程序已经被关闭了,该程序所占用的内存用来做缓存使用,对于 ...
- 灵活运用Zend框架
$aAwardMem = $this->dao_raward->getAwardAndMem($where,'award_level asc',false,false,false,'awa ...