编写交换机基本配置命令
时间: 2023-07-26 16:30:50 浏览: 157
华为交换机配置命令大全
下面是交换机基本配置命令:
1. 配置主机名:
```
Switch> enable
Switch# configure terminal
Switch(config)# hostname <主机名>
```
2. 配置管理口 IP 地址:
```
Switch(config)# interface vlan 1
Switch(config-if)# ip address <IP 地址> <子网掩码>
Switch(config-if)# no shutdown
```
3. 配置登录密码:
```
Switch(config)# enable secret <密码>
Switch(config)# line console 0
Switch(config-line)# password <密码>
Switch(config-line)# login
```
4. 配置 Telnet 登录密码:
```
Switch(config)# line vty 0 15
Switch(config-line)# password <密码>
Switch(config-line)# login
```
5. 配置时区:
```
Switch(config)# clock timezone <时区> <偏移量>
```
6. 配置 NTP 服务器:
```
Switch(config)# ntp server <NTP 服务器地址>
```
7. 保存配置:
```
Switch# copy running-config startup-config
```
以上是交换机基本配置命令,根据实际需求可作适当修改。
阅读全文