锐意精通 发表于 2013-2-23 23:37:17

iou配置交换环境 接口提示不是交换接口

在IOU环境中搭建L2交换环境:

启动文件:

root@DebianIOL:~/CiscoIOU# vi startup
#!/bin/bash
#set -v
cd /root/CiscoIOU
export NETIO_NETMAP=/root/CiscoIOU/cisco/test
export IOURC=/root/CiscoIOU/iourc
./wrapper-linux -m ./i86bi_linuxl2-upk9-ms -p 2001 -- -e 2 -s 0 1 & sleep 1
./wrapper-linux -m ./i86bi_linuxl2-upk9-ms -p 2002 -- -e 2 -s 0 2 & sleep 1
./wrapper-linux -m ./i86bi_linuxl2-upk9-ms -p 2003 -- -e 2 -s 0 3 & sleep 1
./wrapper-linux -m ./i86bi_linuxl2-upk9-ms -p 2004 -- -e 2 -s 0 4 & sleep 1
unset NETIO_NETMAP
unset IOURC
echo *****Powered by:http://www.cisco.com*****
echo *****ALL ROUTERS STRATED*****





拓扑文件:
root@DebianIOL:~/CiscoIOU/cisco# less test
1:0/0 2:0/0
1:0/1 2:0/1
1:0/2 3:0/2
1:0/3 3:0/3
1:1/0 4:1/0
1:1/1 4:1/1
2:1/0 3:1/0
2:1/1 3:1/1
2:0/2 4:0/2
2:0/3 4:0/3
3:0/0 4:0/0
3:0/1 4:0/1

通过SecureCTR登录后,查看接口
sw1(config)#do show ip inter brief
Interface            IP-Address      OK? Method Status                Protocol
Ethernet0/0            unassigned      YES unsetadministratively down down   
Ethernet0/1            unassigned      YES unsetadministratively down down   
Ethernet0/2            unassigned      YES unsetadministratively down down   
Ethernet0/3            unassigned      YES unsetadministratively down down   
Ethernet1/0            unassigned      YES unsetadministratively down down   
Ethernet1/1            unassigned      YES unsetadministratively down down   
Ethernet1/2            unassigned      YES unsetadministratively down down   
Ethernet1/3            unassigned      YES unsetadministratively down down   
Vlan1


尝试将接口配置“访问模式”,遇到如下报错:
Router(config-if)#switchport access vlan 1
Command rejected: Et0/0 not a switching port.


请各位大侠指导!谢谢

锐意精通 发表于 2013-2-23 23:40:05

自己顶一个-70-

task 发表于 2013-2-24 12:04:29

Command rejected: Et0/0 not a switching port.
这个接口非二层口。先切换成二层口再打二层命令。
switchport
switchport access vlan 1

锐意精通 发表于 2013-2-24 13:03:41

task 发表于 2013-2-24 12:04 static/image/common/back.gif
Command rejected: Et0/0 not a switching port.
这个接口非二层口。先切换成二层口再打二层命令。
switc ...

怎么切换成二层?谢谢你

锐意精通 发表于 2013-2-24 13:07:33

task 发表于 2013-2-24 12:04 static/image/common/back.gif
Command rejected: Et0/0 not a switching port.
这个接口非二层口。先切换成二层口再打二层命令。
switc ...

已经搞定,谢谢你!

bookpig 发表于 2013-2-25 14:42:50

问题解决了就好。

王晓强 发表于 2013-2-26 14:15:12

锐意精通 发表于 2013-2-24 13:07 static/image/common/back.gif
已经搞定,谢谢你!

IOU中的交换模块,默认是三层功能模块。要转化成二层功能模块,需要在接口下进行配置。
三层功能端口称之为routed port
二层功能端口称之为switchport。
切换命令是在接口下配置:
(config-if)#no switchport转成routed port
(config-if)#switchport       转成switchport
只有在switchport模式下,才能将端口配置成trunk或者access。
欢迎来到雏鹰部落,一起学习成长提高。

王晓强 发表于 2013-2-26 14:16:11

task 发表于 2013-2-24 12:04 static/image/common/back.gif
Command rejected: Et0/0 not a switching port.
这个接口非二层口。先切换成二层口再打二层命令。
switc ...

有段时间没看到你了,有空多上雏鹰部落逛逛呀~

task 发表于 2013-2-26 23:40:29

andersen 发表于 2013-2-26 14:16 static/image/common/back.gif
有段时间没看到你了,有空多上雏鹰部落逛逛呀~

嘿嘿。经常上的。不过是潜水。

冲儿 发表于 2013-2-27 08:21:53

好好学习,天天向上。
页: [1]
查看完整版本: iou配置交换环境 接口提示不是交换接口