测试三层交换机ip routing和no switchport命令的区别

网友投稿 2175 2022-09-14

测试三层交换机ip routing和no switchport命令的区别

测试三层交换机ip routing和no switchport命令的区别

测试三层交换机ip routing和no switchport命令的区别

​​xiaotaozhi​​2016-02-23 09:35:15博主文章分类:​​网络技术​​©著作权

文章标签​​交换机​​​​​测试​​​​​​三层​​​文章分类​​​其他​​​​​​网络/安全​​​阅读数6697

PC0

IP:                 192.168.1.2

Submark:              255.255.255.0

Gateway:       192.168.1.1

PC1

IP:                 192.168.2.2

Submark:              255.255.255.0

Gateway:       192.168.2.1

PC2

IP:                 192.168.3.2

Submark:              255.255.255.0

Gateway:       192.168.3.1

配置过程:

Switch>en

Switch#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

运行路由协议

Switch(config)#ip routing

端口1由二层转变为三层,并

配置IP地址

Switch(config)#int fa0/1

Switch(config-if)#no switchport

Switch(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

Switch(config-if)#ip address 192.168.1.1 255.255.255.0

Switch(config-if)#exit

端口3由二层转变为三层,并配置IP地址

Switch(config)#int fa0/3

Switch(config-if)#no switchport

Switch(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/3, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/3, changed state to up

Switch(config-if)#ip address 192.168.3.1 255.255.255.0

Switch(config-if)#no shut

Switch(config-if)#exit

Switch(config)#int fa0/1

Switch(config-if)#no shut

Switch(config-if)#exit

Switch(config)#

测试结果:

分析:

普通的可划vlan的交换机中各vlan之间是不可以通信的,而且只能有一个管理ip,而在三层交换机中每个vlan都可以设置独立的网关,ip routing这条命令的作用就是运行路由协议,让每个vlan间实现通信。no switchport命令即打开端口的三层功能。

如上例,fa0/1和fa0/3使用no switchport命令开启了三层功能,由二层端口转变为三层端口,fa0/2没有开启,还是只具有二层端口功能。所以PC0和PC3可以ping通,而PC0和PC2不可以ping通。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:深入C#内核 IL汇编语言 (1) by Eddy(深入查摆问题回应急难愁盼调研报告)
下一篇:不安装 Torrent 客户端,下载种子文件的9个方法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~