IOU的CCNP拓扑图 (NP 路由重发布实验)

来源:互联网 发布:王者荣耀网络状态出错 编辑:程序博客网 时间:2024/04/29 11:33

实验拓扑图如下:

图中的SW1 为 R6, 帧中继交换机为R7.

 

 

 

 

 

 

 

 

 

 

 

IOU 配置:

 

----------------------NETMAP---------------------

1:1/2 7:1/0
2:1/2 7:1/1
3:1/2 7:1/2
3:0/0 2:0/0 6:0/0
6:0/1 4:0/0
1:1/1 5:1/0
-----------------------结束NETMAP----------------

 

------------------启动脚本--------------------------

#!/bin/bash
export NETIO_NETMAP=./NETMAP
port=2000
for ((i=1;i<=7;i++)) ;do
dport=`expr $port + $i`
  ../wrapper-linux -m ../i86bi_linux-adventerprisek9-ms -p $dport -- -e 1 -s 1 -n 1024 -m 128 -R -U $i &
done
unset NETIO_NETMAP
-----------------------结束启动脚本----------------

 

 

----------帧中继交换机R7(FRSW)配置-----------

en

conf t

host FRSW

frame swit

interface Serial1/0
encapsulation frame-relay
frame-relay intf-type dce
frame-relay route 102 interface Serial1/1 201
frame-relay route 103 interface Serial1/2 301

no shut
interface Serial1/1
encapsulation frame-relay

frame-relay intf-type dce
frame-relay route 201 interface Serial1/0 102

no shut
interface Serial1/2
encapsulation frame-relay
frame-relay intf-type dce
frame-relay route 301 interface Serial1/0 103

no shut

-------------------结束R7配置------------------

 

 

原创粉丝点击