H3C交换机基本配置命令
时间: 2024-09-19 18:05:51 浏览: 58
H3C交换机的基本配置通常涉及到登录设备、设置接口属性和启用管理功能等步骤。这里简述几个常见的命令:
1. **登录交换机**:
使用Telnet或SSH连接到交换机,命令类似于:
```
telnet IP地址 用户名 密码
或
ssh username@IP_address -password password
```
2. **全局配置模式**:
进入全局配置模式,输入 `configure terminal`。
3. **修改接口配置**:
- `interface <端口号>`:指定要配置的接口,比如 `interface Ethernet0/1`。
- `description 自定义描述`:设置接口描述。
- `speed duplex <速度> <双工模式>`:如 `speed 100 full-duplex` 设置速率和双工模式。
- `no shutdown`:启用接口,使其接受流量。
4. **启用VLAN或配置VLAN**:
```bash
vlan database
vlan add VLAN_ID name VLAN_NAME
interface range <端口范围> trunk allow-pass vlan VLAN_ID
```
5. **保存配置**:
`copy running-config startup-config` 或 `write memory` 将当前配置保存到非易失存储器。
6. **退出配置模式**:
`exit`。
阅读全文