交换机dot1x认证配置

news/2024/11/8 3:37:43/

设备分配IP 12.16.43.250 vlan 分配IP 12.16.43.251

华为交换机

配置vlan

interface vlanif xx
vlan xx ip address 16.12.43.251 255.255.255.0 (vlan ip 在认证界面添加交换机参数使用)

radius-server

radius-server template radius1(自己起)
radius-server shared-key cipher 123456(自己起)
radius-server authentication 16.12.43.250 1812 weight 80
radius-server accounting 16.12.43.250 1813 weight 80
radius-server nas-port-format old radius-server nas-port-id-format old

AAA

authentication-scheme authen1(自己起)
authentication-mode radius
authorization-scheme author1(自己起)
authorization-mode none
accounting-scheme acct1(自己起)
accounting-mode radius
accounting realtime 3

domain

domain 8021x(自己起)
authentication-scheme authen1(前面创建的)
accounting-scheme acct1(前面创建的)
authorization-scheme author1(前面创建的)
radius-server radius1(前面创建的)

开启全局dot1x

dot1x enable(全局)
dot1x authentication-method eap
dot1x quiet-period
dot1x timer quiet-period 3
dot1x timer reauthentication-period 1800

开启端口dot1x

interface GigabitEtherent x/x/A
dot1x enable
dot1x port-control auto
dot1x port-method mac
dot1x reauthenticate

最后输入domain 8021x(前面起)


使用HUAWEI S5720交换机配置dot1x时,在进入端口开启dot1x时,使用命令authentication dot1x开启端口dot1x认证


http://www.ppmy.cn/news/185374.html

相关文章

不定积分——1/(1+x^4)的不定积分

文章目录 原因法一: 1. ∫ x 2 − 1 x 4 1 d x 1.\int\frac{x^2-1}{x^41}{\mathrm{d}x} 1.∫x41x2−1​dx 2. ∫ x 2 1 x 4 1 d x 2.\int\frac{x^21}{x^41}{\mathrm{d}x} 2.∫x41x21​dx 3. ∫ 1 ( 1 x 4 ) d x 3.\int\frac{1}{(1x^4)}{\mathrm{d}x} 3.∫(1x4)1…

stm32f10x.h解析

/**这里是STM32比较重要的头文件 ****************************************************************************** ST版本库的 stm32f10x.h 文件,包含整个头文件代码。综合以上,可以看出 stm32f10x.h 用于定义了器件、中断线、数据类型、结构体封…

Android常见分辨率(mdpi、hdpi 、xhdpi、xxhdpi )尺寸单位转换和屏幕适配相关

1 Android手机目前常见的分辨率 1.1 手机常见分辨率: 4:3 VGA 640*480 (Video Graphics Array) QVGA 320*240 (Quarter VGA) HVGA 480*320 (Half-size VGA) SVGA 800*600 (Super VGA) 5:3 WVGA 800*480 (Wide VGA) 16:9 FWVGA 854*480 (Full Wide VGA) HD 1920*…

Vue 中echarts的数据参数使用、X轴Y轴

Echarts 柱状图配置详解 - 龙恩0707 - 博客园 ECharts图表设置x轴和y轴显示数值_King汀的博客-CSDN博客_echarts设置y轴数值 echarts柱状图 渐变色_kylvia的专栏-CSDN博客_echarts 柱子渐变色 eCharts——柱状图中的柱体颜色渐变 Echarts设置背景的网格线为虚线_祈澈菇凉-CS…

X-Cache 和 X-Cache-Lookup

在Http协议的Response Header中,可根据以下两项来判断是否被缓存命中。 X-Cache:HIT from www.cdn.com X-Via:代理服务器地址信息 x-cache-lookup:指专门查看代理服务器中是否有某个网页缓存:有就返回HIT,没有返回MISS。 x-cache:项指浏览器从何处、是在哪个代理缓存…

新发的日常小实验——VS 2019~2010小助手(Visual Assist X / VA_X)安装与使用(实测可用)

文章目录 一、前言二、Visual Assist X下载与安装三、Visual Assist X的使用四、愉快地使用Visual Assist X五、补充:vs各个版本的编译器号对应的vs版本号六、补充:Visual Assist X实用快捷键 一、前言 Visual Assist X是一款非常好用的Microsoft Visua…

FFMPEG视频编码 NVIDIA 和 INTEL 硬件加速 x265 8bit 和 10bit

现在的显卡和两年前已经不一样。 从 NVIDIA 显卡的能力表来看,新卡 1070 支持 x265 10bit 编码。 正好最近有需求,来研究一下。 CPU也不一样了,现在是 i7-8750H, 顺便研究 intel 显卡硬件编码 x265。 FFMPEG 也不一样了&#xff0…

SpringBoot整合Redis使用x-auth-tonken实现Session共享

文章目录 SpringBoot整合Redis使用x-auth-tonken实现Session共享1、配置pom.xml文件2、配置application.properties文件3、配置启动类4、验证4.1、编写一个Controller类4.2、使用postman发送请求4.2.1、设置会话信息4.2.2、获取会话信息 4.3、通过Redis Desktop Manager查看数据…