cisco Switching-配置ip
2018-07-24 本文已影响20人
凯歌响起
配置IP
交换机里面只能跟vlan和三层交换机的端口(需要no switchport)配置
在vlan中配置
Switch>en
Switch#config terminal
Switch(config)#interface vlan 1
Switch(config-if)# ip address 192.168.1.2 255.255.255.0
Switch(config-if)# no shutdown
在三层交换机端口配置
Switch>en
Switch#config terminal
Switch(config)#int f0/1
Switch(config-if)#no switchport
Switch(config-if)#ip add 192.168.32.1 255.255.255.0
Switch(config-if)#no shutdown