博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CCNA(Stand-ALONE)Lab 25-Frame Relay Hub-and-Spoke Topology
阅读量:6038 次
发布时间:2019-06-20

本文共 4211 字,大约阅读时间需要 14 分钟。

Objective: Learn to configure a hub-and-spoke topology.
Lab Equipment: Router 1, Router 2, Router 3, and Router 4 from the eRouters menu
Background Reading: Lab Primer Lesson 9: Frame Relay
Your company’s corporate office is in Dallas, and its sales offices are in San Francisco, New York,and Tampa. You want to implement a hub-and-spoke topology in which all of the sales offices connect to the corporate office to send all data, including communications between sales offices.
1. First, assign the host names of Dallas, San_Francisco, New_York, and Tampa to Router 1, Router 2, Router 3, and Router 4, respectively.
Dallas:
San_Francisco:
New_York:
Tampa:
2. Now, enter interface configuration mode for the serial 0 interface on Dallas, and set the encapsulation type to Frame Relay. Be sure to enable the interface.
Dallas(config)#interface serial 0
Dallas(config-if)#encapsulation frame-relay
Dallas(config-if)#no shutdown
3. Next, create a subinterface for the connection from Dallas to the San Francisco sales office.
Dallas(config-if)#exit
Dallas(config)#interface serial 0.100 point-to-point
Dallas(config-subif)#
4. Assign the subinterface the DLCI number for the connection from Dallas to San_Francisco, and configure the subinterface with the appropriate IP address. Remember to enable the subinterface.
Dallas(config-subif)#frame-relay interface-dlci 102
Dallas(config-subif)#ip address 172.16.1.1 255.255.255.0
Dallas(config-subif)#no shutdown
5. Create a subinterface for the connection from Dallas to the sales office in New York.
Dallas(config-subif)#exit
Dallas(config)#interface serial 0.200 point-to-point
Dallas(config-subif)#
6. Add the correct DLCI for the connection from Dallas to New_York, and configure the appropriate IP address for the subinterface. Remember to enable the subinterface.
Dallas(config-subif)#frame-relay interface-dlci 103
Dallas(config-subif)#ip address 172.16.2.1 255.255.255.0
Dallas(config-subif)#no shutdown
7. Create a subinterface for the connection from Dallas to the sales office in Tampa.
Dallas(config-subif)#exit
Dallas(config)#interface serial 0.300 point-to-point
Dallas(config-subif)#
8. Add the correct DLCI for the Dallas to Tampa connection, and configure the appropriate IP address for the subinterface. Remember to enable the subinterface.
Dallas(config-subif)#frame-relay interface-dlci 104
Dallas(config-subif)#ip address 172.16.3.1 255.255.255.0
Dallas(config-subif)#no shutdown
9. Access the serial 0 interface on San_Francisco, set the encapsulation to Frame Relay,and enable the interface.
San_Francisco(config)#interface serial 0
San_Francisco(config-if)#encapsulation frame-relay
San_Francisco(config-if)#no shutdown
10. Because subinterfaces are not necessary for single connections, add the appropriate DLCI value.
San_Francisco(config-if)#frame-relay interface-dlci 201
11. Set the IP address for this interface, and enable the interface.
San_Francisco(config-if)#ip address 172.16.1.2 255.255.255.0
San_Francisco(config-if)# no shutdown
12. Access the serial 0 interface on New_York, and set the encapsulation to Frame Relay.
New_York(config)#interface serial 0
New_York(config-if)#encapsulation frame-relay
13. Add the appropriate DLCI value.
New_York(config-if)#frame-relay interface-dlci 301
14. Set the IP address for this interface, and enable the interface.
New_York(config-if)#ip address 172.16.2.2 255.255.255.0
New_York(config-if)#no shutdown
15. Access the serial 0 interface on Tampa, and set the encapsulation to Frame Relay.
Tampa(config)#interface serial 0
Tampa(config-if)#encapsulation frame-relay
16. Add the appropriate DLCI value.
Tampa(config-if)#frame-relay interface-dlci 401
17. configure the IP address for this interface, and enable the interface.
Tampa(config-if)#ip address 172.16.3.2 255.255.255.0
Tampa(config-if)#no shutdown
18. Now, all interfaces should be up and up. To confi rm this, connect to Dallas and try to ping each of the three sales offices.
Dallas(config-subif)#exit
Dallas(config)#exit
Dallas#ping 172.16.1.2
Dallas#ping 172.16.2.2
Dallas#ping 172.16.3.2
************************************************
Above:
Next:
本文转自redking51CTO博客,原文链接:http://blog.51cto.com/redking/72636
,如需转载请自行联系原作者
你可能感兴趣的文章
Android总结篇系列:Android Service
查看>>
Android dumpsys命令的使用
查看>>
Linux Kernel系列一:开篇和Kernel启动概要
查看>>
BZOJ 2756: [SCOI2012]奇怪的游戏 网络流/二分
查看>>
master + worker模式的node多核解决框架——node-cluster
查看>>
Android如何实现超级棒的沉浸式体验
查看>>
使用node打造自己的命令行工具方法教程
查看>>
Express代理中间件问题与解决方案
查看>>
||和&&返回什么?
查看>>
linux在文件中查找指定字符串,然后根据查找结果来做进一步的处理
查看>>
在Oracle中删除所有强制性外键约束
查看>>
dhcp
查看>>
【R】R语言使用命令行参数 - [编程技巧(Program Skill)]
查看>>
经典算法题每日演练——第二题 五家共井
查看>>
存储过程中拼接的变量和点的问题
查看>>
ASP.NET那点不为人知的事(一)
查看>>
HTML 表格
查看>>
VMware 虚拟化编程(7) — VixDiskLib 虚拟磁盘库详解之三
查看>>
php 未实例化类调用方法的问题
查看>>
我对读计算机软件专业硕士的几点看法
查看>>