802.1x 认证中 GTC 配置详解:EAP.conf 文件参数设置
GTC 应该配置在 RADIUS 服务器的认证配置文件中的'eap.conf' 文件中的'eap-gtc' 模块中。具体参数如下:
- identity:设置 GTC 认证的用户名,默认为'%{User-Name}'。
- password:设置 GTC 认证的密码,默认为空。
- tls:设置是否使用 TLS 加密通信,默认为 no。
- tls-cert-file:设置 TLS 证书文件路径,默认为空。
- tls-private-key-file:设置 TLS 私钥文件路径,默认为空。
- tls-ca-file:设置 TLS CA 证书文件路径,默认为空。
示例配置:
eap {
...
gtc {
identity = "% {User-Name} "
password = "password"
tls = no
tls-cert-file = ""
tls-private-key-file = ""
tls-ca-file = ""
}
...
}
原文地址: https://www.cveoy.top/t/topic/jpjH 著作权归作者所有。请勿转载和采集!