Dynamips模拟器之模块介绍.doc_第1页
Dynamips模拟器之模块介绍.doc_第2页
Dynamips模拟器之模块介绍.doc_第3页
Dynamips模拟器之模块介绍.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Dynamips模拟器之模块介绍C7200Slot 0: C7200-IO-FE 支持1个Fastethernet接口 C7200-IO-2FE 支持2个 Fastethernet接口 (DynamipsGUI 2.3 里面没有这个选项,想用只有自己添加了) C7200-IO-GE-E 插这个卡以后会同时出现2个端口,Ethernet0/0和GigabitEthernet0/0 (反正我没有用到过这个卡)注意:这三个卡只允许插在Slot0口,如果插入后面的slot口是无效的.Slot 1-5: PA-2FE-TX 支持2个Fastethernet接口 PA-FE-TX 支持1个Fastethernet接口 PA-4E 支持4个Ethernet接口 PA-4T+ 支持4个serial接口 PA-8E 支持8个Ethernet接口 PA-8T 支持8个serial接口 PA-A1 支持1个ATM port adapter接口 PA-GE 支持1个GigabitEthernet接口 PA-POS-OC3 支持1个Packet Over SONET/SDH接口(用于更高速度的接口)c3725/c3745/c2691 GT96100-FE 支持2个Fastethernet接口(只限制在slot 0) NM-16ESW 支持16个Fastethernet接口(不做重复说明) NM-1FE-TX 支持1个Fastethernet接口 NM-4T 支持4个serial接口C3600(3620/3640/3660) NM-16ESW 支持16个Fastethernet接口(交换模块,在使用此模块做交换实验时候,请使用no ip routing 关闭端口路由) NM-1E 支持1个Ethernet接口 NM-1FE-TX 支持1个Fastethernet接口 NM-4E 支持4个Ethernet接口 NM-4T 支持4个serial接口 Leopard-2FE支持2个Fastethernet接口(3660专用,并且只能在slot 0 下使用)注意:3620只能使用2个slot,3640可以使用4个slot,除Leopard-2FE模块做了限制,其他模块没有做限制插具体哪个slot.(DynamipsGUI里对slot已经做了限制,最近DynamipSeeV2.0已经发布了,但是里面不支持3660)c2600(2610/2611/2620/2621/2610XM/2620XM/2650XM) NM-16ESW 支持16个Fastethernet接口 NM-1E 支持1个Ethernet接口 NM-1FE-TX 支持1个Fastethernet接口 NM-4E 支持4个Ethernet接口 CISCO2600-MB-2E支持2个Ethernet接口 CISCO2600-MB-2FE支持2个Fastethernet接口注DynamipsGUI里的模块CISCO2600-MB-2E,CISCO2600-MB-2FE,并且只有2620类型可选Dynamipsee里有2610/2611/2620/2621/2610XM/2620XM/2650XM类型选择.但没有2610/2611/2620/2621/2610XM/2620XM/2650XM18:33| 添加评论| 发送消息| 固定链接| 查看引用通告 (0)| 写入日志| CISCO CCNPPPP协议实验拓扑图如下:R1 -R2 S1/0 S1//24 /24=.NET文件的内容为:autostart = falselocalhost 3640 image = c:Program FilesDynamipsimagesC3640-IS.BIN confreg = 0x2102 idlepc = 0x604feb34 ram = 64 ROUTER R1 model = 3640 console = 2001 s1/0 = R2 s1/1 ROUTER R2 model = 3640 console = 2002=PPP(Point to Point Protocol)协议是在点对点链路上运行的数据链路层协议PPP协议支持两种认证协议:1.PAP(Password Authentication Protocol,口令认证协议)2.CHAP(Challenge Handshake Authentication Protocol,质询握手认证协议)PAP是两次握手认证协议,口令以明文传送,被认证方首先发起认证请求。CHAP是三次握手认证协议,不发送口令,主认证方首先发起认证请求,安全性比PAP高=详细配置过程:一、单向验证1:R1启动pap(R1为主验证方,R2为被验证方)R1(config)#int s1/0R1(config-if)#no shutR1(config-if)#ip add R1(config-if)#encapsulation ppp #修改封装协议为PPPR1(config-if)#ppp authentication pap #认证协议为papR1(config-if)#exi R1(config)#username test password test #设置验证用户名及密码R2(config)#int s1/1R2(config-if)#no shutR2(config-if)#ip add R2(config-if)#encapsulation pppR2(config-if)#ppp pap sent-username test password test #发送验证用户名及密码2:R1启动chap(R1为主验证方,R2为被验证方)R1(config)#int s1/0R1(config-if)#no shutR1(config-if)#ip add R1(config-if)#encapsulation ppp #修改封装协议为PPPR1(config-if)#ppp authentication chap #认证协议为papR1(config-if)#exiR1(config)#username R2 password test # 发送被验证方用户名及密码,R2为被验证方hostnameR2(config)#int s1/1R2(config-if)#no shutR2(config-if)#ip add R2(config-if)#encapsulation pppR2(config-if)#ppp chap password test #设置用户名及密码,用户名默认为hostname,用户名可更改,但必须两边一致二、双向验证1:R1跟R2同时启动papR1(config)#int s1/0R1(config-if)#no shutR1(config-if)#ip add R1(config-if)#encapsulation pppR1(config-if)#ppp authentication papR1(config-if)#ppp pap sent-username test password testR1(config-if)#exiR1(config)#username test password testR2(config)#int s1/1R2(config-if)#no shutR2(config-if)#ip add R2(config-if)#encapsulation pppR2(config-if)#ppp authentication papR2(config-if)#ppp pap sent-username test password testR2(config-if)#exiR2(config)#username test password test2:R1跟R2同时启动chapR1(config)#int s1/0R1(config-if)#no shutR1(config-if)#ip add R1(config-if)#encapsulation pppR1(config-if)#ppp authentication chapR1(config-if)#exiR1(config)#username R2 password test # R2为对方hostnameR2(config)#int s1/1R2(config-if)#no shutR2(config-if)#ip add R2(config-if)#encapsulation pppR2(config-if)#ppp authentication chapR2(config-if)#exiR2(config)#username R1 password test # R1为对方hostname3:R1启动pap,R2启动chap R1(config)#int s1/0R1(config-if)#no shutR1(config-if)#ip add R1(config-if)#encapsulation pppR1(config-if)#ppp authentication papR1(config-if)#ppp chap password testR1(config-if)#exiR1(config)#username test password testR2(config)#int s1/1R2(config-if)#no shutR2(config-if)

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论