华为交换机802.1X有线配置

华为交换机

  1. 华为交换机配置AAA
复制代码
  1. # 创建Radius服务器模板controller。
  2. [SwitchA] radius-server template controller
  3. # 配置RADIUS认证密钥、主备用RADIUS服务器和计费服务器的IP地址、端口和主备运算法则。
  4. [SwitchA-radius-controller] radius-server authentication 10.7.66.66 1812 weight 80
  5. [SwitchA-radius-controller] radius-server accounting 10.7.66.66 1813 weight 80
  6. [SwitchA-radius-controller] radius-server authentication 10.7.66.67 1812 weight 40
  7. [SwitchA-radius-controller] radius-server accounting 10.7.66.67 1813 weight 40
  8. [SwitchA-radius-controller] radius-server algorithm master-backup
  9. [SwitchA-radius-controller] radius-server shared-key cipher Example@123
  10. # 配置自动探测功能。
  11. [SwitchA-radius-controller] radius-server testuser username test1 password cipher abc@123
  12. # 配置对状态为Down的RADIUS服务器的自动探测周期和探测报文的超时等待时间。(取值为缺省值)
  13. [SwitchA-radius-controller] radius-server detect-server interval 60
  14. [SwitchA-radius-controller] radius-server detect-server timeout 3
  15. # 配置RADIUS认证请求报文的重传次数和周期。(取值为缺省值)
  16. [SwitchA-radius-controller] radius-server retransmit 3 timeout 5
  17. [SwitchA-radius-controller] quit
  18. # 配置将RADIUS服务器标记为Down的条件。(取值为缺省值)
  19. [SwitchA] radius-server dead-interval 5
  20. [SwitchA] radius-server dead-count 2
  21. [SwitchA] radius-server detect-cycle 2
  22. [SwitchA] radius-server max-unresponsive-interval 300
  23. # 配置认证方案auth,认证模式为RADIUS认证。
  24. [SwitchA] aaa
  25. [SwitchA-aaa] authentication-scheme auth
  26. [SwitchA-aaa-authen-auth] authentication-mode radius
  27. [SwitchA-aaa-authen-auth] quit
  28. # 配置计费方案acc,计费模式为RADIUS计费。
  29. [SwitchA-aaa] accounting-scheme acc
  30. [SwitchA-aaa-accounting-acc] accounting-mode radius
  31. [SwitchA-aaa-accounting-acc] quit
  32. # 配置example域,在域下应用认证方案auth、计费方案acc、RADIUS服务器模板controller。
  33. [SwitchA-aaa] domain example
  34. [SwitchA-aaa-domain-example] authentication-scheme auth
  35. [SwitchA-aaa-domain-example] accounting-scheme acc
  36. [SwitchA-aaa-domain-example] radius-server controller
  37. [SwitchA-aaa-domain-example] quit
  38. [SwitchA-aaa] quit
  1. 华为交换机配置802.1X认证。
复制代码
  1. # 将NAC配置模式切换成统一模式。设备默认为统一模式。传统模式与统一模式相互切换后,设备会自动重启。
  2. [SwitchA] authentication unified-mode
  3. # 配置802.1X接入模板d1、配置客户端认证超时时间为30秒。
  4. [SwitchA] dot1x-access-profile name d1
  5. [SwitchA-dot1x-access-profile-d1] dot1x authentication-method eap
  6. [SwitchA-dot1x-access-profile-d1] dot1x timer client-timeout 30
  7. [SwitchA-dot1x-access-profile-d1] quit
  8. # 配置认证模板绑定802.1X接入模板d1、指定认证模板下用户的强制域为example。认证模板下配置强制域之后,使用该认证模板的用户,无论用户名是否携带域名或携带何种域名,均在该域下进行认证。
  9. [SwitchA] authentication-profile name p1
  10. [SwitchA-authen-profile-p1] dot1x-access-profile d1
  11. [SwitchA-authen-profile-p1] access-domain example force
  12. [SwitchA-authen-profile-p1] quit
  13. # 配置RADIUS服务器故障时的逃生权限和RADIUS服务器恢复后的重认证功能。以用户逃生时授权VLAN为例,其他授权信息的配置可参考(可选)配置认证事件授权信息。
  14. [SwitchA] authentication-profile name p1
  15. [SwitchA-authen-profile-p1] authentication event authen-server-down action authorize vlan 20
  16. [SwitchA-authen-profile-p1] authentication event authen-server-up action re-authen
  17. [SwitchA-authen-profile-p1] quit
  18. # 去使能预连接功能。
  19. [SwitchA] undo authentication pre-authen-access enable
  20. # 在接口GE1/0/2到GE1/0/n上绑定认证模板p1,使能802.1X认证。以接口GE1/0/2为例。
  21. [SwitchA] interface gigabitethernet 1/0/2
  22. [SwitchA-GigabitEthernet1/0/2] authentication-profile p1
  23. [SwitchA-GigabitEthernet1/0/2] quit

版权声明:
作者:SE_Gao
链接:https://www.cnesa.cn/2189.html
来源:CNESA
文章版权归作者所有,未经允许请勿转载。

THE END
打赏
海报
华为交换机802.1X有线配置
华为交换机 华为交换机配置AAA 复制代码 # 创建Radius服务器模板controller。 [SwitchA] radius-server template controller # 配置RADIUS认证密钥、主备……
<<上一篇
下一篇>>