三层交换机的路由功能固定IP地址的方法实现不同vlan之间联通

三层交换机的路由功能固定IP地址的方法实现不同vlan之间联通_第1张图片

 

配置过程

Switch>

Switch>en

Switch#

Switch#conf t

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

Switch(config)#ip routing

提示:一定要开启路由功能

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)#

Switch(config-if)#ip address 192.168.1.1 255.255.255.0

Switch(config-if)#no shut

Switch(config-if)#end

Switch#

%SYS-5-CONFIG_I: Configured from console by console

 

Switch#

Switch#int fa0/2

           ^

% Invalid input detected at '^' marker.

Switch#

Switch#conf t

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

Switch(config)#int fa0/2

Switch(config-if)#no switchport

Switch(config-if)#

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

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

Switch(config-if)#

Switch(config-if)#ip address 192.168.2.1 255.255.255.0

Switch(config-if)#no shut

Switch(config-if)#end

Switch#

%SYS-5-CONFIG_I: Configured from console by console

Switch#

 

测试结果

三层交换机的路由功能固定IP地址的方法实现不同vlan之间联通_第2张图片

本文出自 “DOSOM” 博客,谢绝转载!

你可能感兴趣的:(三层交换机的路由功能固定IP地址的方法实现不同vlan之间联通)