思科交换机的基本配置命令如下:
进入特权模式
`switch>enable`
进入全局配置模式
`switchconfigure terminal` 或简写为 `switch(config)`
设置交换机主机名
`switch(config)hostname <主机名>`
配置使能口令(明文)
`switch(config)enable password <明文密码>`
配置使能密码(加密)
`switch(config)enable secret <加密密码>`
创建多个VLAN
`switch(config)vlan
`switch(config)no vlan
配置接口
`switch(config)interface <接口类型> <接口编号>` 进入接口配置模式
`switch(config-if)switchport <端口模式>` 配置端口模式(例如:access, trunk)
配置VLAN接口
`switch(config)interface vlan
`switch(config-if)ip address
查看MAC地址表
`switchshow mac-address-table`
查看CDP信息
`switchshow cdp`
配置虚拟终端线
`switch(config)line vty <线路编号>` 进入虚拟终端线配置模式
`switch(config-line)password <密码>` 设置登录密码
`switch(config-line)login` 启用登录验证
配置控制台线
`switch(config)line console 0` 进入控制台线配置模式
`switch(config-line)password <密码>` 设置登录密码
`switch(config-line)login` 启用登录验证
配置管理IP地址
`switch(config)ip domain-name <域名>` 设置管理域名
`switch(config)ip default-gateway <网关地址>` 设置默认网关
配置其他功能
`switch(config)logging synchronous` 阻止控制台信息覆盖命令行输入
`switch(config)no ip domain-lookup` 关闭DNS查找功能
`switch(config)exec-timeout <分钟:秒>` 设置执行超时时间
这些命令涵盖了思科交换机的基本配置,包括进入特权模式和全局配置模式、设置主机名和密码、创建和管理VLAN、配置接口、查看MAC地址表和CDP信息、以及设置虚拟终端和控制台线的登录验证等。根据具体需求,可能还需要进行更多的配置,如配置VLAN接口IP地址、设置管理IP地址等。