当前位置:文档之家› CISCO基本命令

CISCO基本命令

端口速度:设置端口速度为:100Mbps/s 半双工模式
Switch# configure terminal
Switch(config)# interface range gigabitethernet0/1 - 2
Switch(config-if-range)# speed 100
Switch(config-if)# duplex half
定义端口聚合并存储到NVRAM:定义名称为enet_list的端口组。

Switch# configure terminal
Switch(config)# define interface-range enet_list gigabitethernet0/1 - 2 Switch(config)# end
Switch# show running-config | include define
Switch# define interface-range enet_list gigabitethernet0/1 – 2 Switch# configure terminal
Switch(config)# no define interface-range enet_list
Switch(config)# end
Switch# show run | include define
Switch#
设置端口类型:
Switch(config-if)media-type auto-select | rj45 | sfp
Switch#show interfaces interface-id transceiver properties
配置端口mdix:
Switch# configure terminal
Switch(config)# interface gigabitethernet0/1
Switch(config-if)# speed auto
Switch(config-if)# duplex auto
Switch(config-if)# mdix auto
Switch(config-if)# end
不同Auto-MDIX设置的链路状态结果
配置端口供电模式:
Switch(config-if)#power inline auto
{[max max-wattage] | never | static [maxmax-wattage]}
端口描述:
Switch# config terminal
Switch(config)# interface gigabitethernet0/2
Switch(config-if)# description Connects to Marketing
Switch(config-if)# end
Switch# show interfaces gigabitethernet0/2 description
三层交换接口配置:
Switch# configure terminal
Enter configuration commands, one per line. End with CNTL/Z. Switch(config)# interface gigabitethernet0/2
Switch(config-if)# no switchport
Switch(config-if)# ip address 192.20.135.21 255.255.255.0 Switch(config-if)# no shutdown
SVI端口排除:排除端口在SVI之外。

不影响SVI打开关闭
Switch# configure terminal
Enter configuration commands, one per line. End with CNTL/Z. Switch(config)# interface gigabitethernet0/2
Switch(config-if)# switchport autostate exclude
Switch(config-if)# exit
配置MTU:
Switch(config)# system mtu jumbo 1800-9000(1000Mb/s)Switch(config)# system mtu 1500-1998 (100Mb/s)
Switch(config)# system mtu routing 1500 (路有MTU)Switch(config)# exit
Switch# reload
router(config-if)# ip helper-address 20.0.0.2 配置辅助地址DHCP配置
Switch# configure terminal
Switch(config)# ip dhcp pool pool1
Switch(dhcp-config)# network 10.10.10.0 255.255.255.0 Switch(dhcp-config)# bootfile config-boot.text
Switch(dhcp-config)# default-router 10.10.10.1
Switch(dhcp-config)# option 150 10.10.10.1
Switch(dhcp-config)# exit
Switch(config)# tftp-server flash:config-boot.text Switch(config)# interface gigabitethernet0/4
Switch(config-if)# no switchport
Switch(config-if)# ip address 10.10.10.1 255.255.255.0 Switch(config-if)# end。

相关主题