华为交换机802.1x配置
时间: 2023-07-26 21:30:11 浏览: 202
华为交换机的802.1x配置可以分为以下几个步骤:
1. 配置Radius服务器地址和密钥:
```
radius server radius1
radius-server shared-key cipher Huawei@123
source 10.10.10.1
```
2. 配置802.1x全局参数:
```
dot1x
authentication-method eap
timer quiet-period 60
timer server-timeout 5
timer reauthenticate 600
timer max-reauth-req 3
```
3. 配置802.1x身份认证模板:
```
dot1x authentication-profile profile1
authentication-method eap
eap profile profile1
```
4. 配置接口802.1x参数:
```
interface GigabitEthernet 0/0/1
dot1x enable
dot1x authentication-method eap
dot1x authentication-profile profile1
```
其中,radius1是Radius服务器的名称,shared-key是共享密钥,10.10.10.1是Radius服务器的地址;profile1是802.1x身份认证模板的名称,eap为认证方法,GigabitEthernet 0/0/1是要配置的接口名称。根据实际情况修改相应参数即可。
阅读全文