cisco switch command
时间: 2024-10-11 07:12:38 浏览: 36
Catalyst 3750 Switch Command Reference.pdf
Cisco Switch(思科交换机)命令用于配置、管理网络设备,它们通常基于命令行界面(CLI)。一些常见的Cisco Switch 命令包括:
1. **login**:登录到交换机,需要输入用户名和密码。
```sh
enable
password <password>
```
2. **configure terminal**:进入全局配置模式,可以修改系统设置。
```sh
conf t
```
3. **interface <interface_name>**:进入指定端口配置模式,如ethernet0/1。
```sh
interface FastEthernet0/1
```
4. **switchport mode access/trunk**:设置端口的工作模式(访问模式或 trunk 模式)。
5. **switchport access/vlan <vlan_id>**:将端口分配给特定VLAN。
6. **enable password**: 设置特权级密码。
7. **spanning-tree** 或 **stp**: 配置生成树协议(STP)以防止环路。
8. **show running-config** 或 **wr**:查看当前配置并保存到启动配置。
阅读全文