华三交换机如何配置重认证
时间: 2023-07-26 11:36:43 浏览: 113
华三交换机配置
要在华三交换机上配置重认证,可以按照以下步骤进行:
1. 配置 RADIUS 服务器信息:
```
radius scheme radius_server
primary authentication 10.10.10.1
key authentication radius_key
accounting optional
```
其中,10.10.10.1 是 RADIUS 服务器的 IP 地址,radius_key 是 RADIUS 共享密钥。
2. 配置重认证策略:
```
authentication profile profile_name
authentication-mode radius
authentication-scheme radius_server
accounting-scheme radius_server
```
其中,profile_name 是认证策略名称,radius_server 是 RADIUS 认证方案名称。
3. 配置端口:
```
interface GigabitEthernet 0/0/1
port link-type access
port default vlan 100
authentication profile profile_name
```
其中,GigabitEthernet 0/0/1 是端口号,100 是默认 VLAN。
这样,华三交换机就可以启用重认证功能了。
阅读全文