思科交换机常用配置命令
时间: 2023-11-01 13:50:55 浏览: 315
思科交换机、路由器配置命令.pdf
思科交换机常用配置命令有很多,以下是一些常见的配置命令示例:
1. 配置主机名:
switch# configure terminal
switch(config)# hostname <hostname>
2. 配置管理接口IP地址:
switch(config)# interface vlan <vlan_number>
switch(config-if)# ip address <ip_address> <subnet_mask>
3. 配置默认网关:
switch(config)# ip default-gateway <gateway_ip_address>
4. 配置Telnet远程访问:
switch(config)# line vty 0 15
switch(config-line)# password <password>
switch(config-line)# login
5. 配置SSH远程访问:
switch(config)# hostname <hostname>
switch(config)# ip domain-name <domain_name>
switch(config)# crypto key generate rsa
switch(config)# username <username> secret <password>
switch(config)# line vty 0 15
switch(config-line)# login local
switch(config-line)# transport input ssh
6. 配置VLAN:
switch(config)# vlan <vlan_number>
switch(config-vlan)# name <vlan_name>
7. 配置端口:
switch(config)# interface <interface_id>
switch(config-if)# switchport mode access
switch(config-if)# switchport access vlan <vlan_number>
8. 配置链路聚合(EtherChannel):
switch(config)# interface port-channel <channel_number>
switch(config-if)# no switchport
switch(config-if)# ip address <ip_address> <subnet_mask>
switch(config-if)# channel-group <group_number> mode active
这只是一些常用的配置命令示例,实际使用中还有很多其他配置命令可以根据具体需求进行配置。
阅读全文