码迷,mamicode.com
首页 > 其他好文 > 详细

利用三层交换机实现VLAN间路由

时间:2016-10-09 14:44:43      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:交换机   主机   

步骤1:配置三层交换机的主机名


Ruijie#conf t


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


Ruijie(config)#hostname switch


步骤2:在三层交换机上划分VLAN添加端口,并设置Trunk


switch(config)#vlan 10


switch(config-vlan)#name xiaoshou


switch(config-vlan)#vlan 20


switch(config-vlan)#name jishu


switch(config-vlan)#exit


switch(config)#int range fa0/6-10


switch(config-if-range)#sw mode acc


switch(config-if-range)#sw acc vlan 10


switch(config-if-range)#exit


switch(config)#int range fa0/11-15


switch(config-if-range)#sw acc vlan 20


switch(config-if-range)#exit添加


switch(config)#int fa 0/1


switch(config-if-FastEthernet 0/1)#sw mode trunk


switch(config-if-FastEthernet 0/1)#exit


switch(config)#exit


步骤3:查看VLAN


switch#show vlan


技术分享

步骤4:在三层交换机上配置SVI端口


switch#conf t


Enter configuration commands, one perline.  End with CNTL/Z.


switch(config)#interface vlan 10


switch(config-if-VLAN 10)#Dec


% Unknown command.


 


switch(config-if-VLAN 10)#ip add192.168.10.1 255.255.255.0


switch(config-if-VLAN 10)#no shutdown


switch(config-if-VLAN 10)#exit


switch(config)#int vlan 20


switch(config-if-VLAN 20)#ip add192.168.20.1 255.255.255.0


switch(config-if-VLAN 20)#no shutdown


switch(config-if-VLAN 20)#exit


switch(config)#exit


switch#*Sep 27 17:27:07: %SYS-5-CONFIG_I:Configured from console by conso


步骤5:验证配置


PC1PC2分别配置192.168.10.0/24192.168.20.0/24网段内的IP地址,并分别以192.168.10.1192.168.20.1作为网关,例如PC1IP地址配置为,如图所示


技术分享

此时再从PC1ping不同VLAN的主机PC2是可以ping通的,如图所示

技术分享



利用三层交换机实现VLAN间路由

标签:交换机   主机   

原文地址:http://12044997.blog.51cto.com/12034997/1859671

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!