华为交换机基础配置命令
时间: 2023-09-10 16:05:10 浏览: 120
华为的交换机基本配置命令[文].pdf
以下是华为交换机基础配置命令:
1. 配置主机名:
```
[Switch] sysname <name>
```
2. 配置管理口IP地址:
```
[Switch] interface vlanif <vlan-id>
[Switch-Vlanif1] ip address <ip-address> <subnet-mask>
[Switch-Vlanif1] quit
```
3. 配置Telnet登录:
```
[Switch] user-interface vty 0 4
[Switch-ui-vty0-4] authentication-mode aaa
[Switch-ui-vty0-4] protocol inbound telnet
[Switch-ui-vty0-4] quit
```
4. 配置SSH登录:
```
[Switch] rsa local-key-pair create
[Switch] user-interface vty 0 4
[Switch-ui-vty0-4] authentication-mode aaa
[Switch-ui-vty0-4] protocol inbound ssh
[Switch-ui-vty0-4] quit
```
5. 配置管理员用户:
```
[Switch] aaa
[Switch-aaa] local-user <username> password irreversible-cipher <password>
[Switch-aaa] local-user <username> service-type telnet ssh
[Switch-aaa] quit
```
6. 配置NTP服务器:
```
[Switch] ntp-service unicast-server <ntp-server-ip-address>
```
以上是一些基础配置命令,具体的配置命令需要根据实际情况进行调整。
阅读全文