通过WindowsServer2008R2 NPS完成对Cisco设备的Telnet/SSH 的Radius认证

简介:

大家知道对于一个稍具规模的公司来说,网络设备几乎都在几十台到上百台,对于日常的管理来说如果只通过本地账号管理设备登陆是非常繁琐的,尤其是网络工程师流动性比较大的公司。对于入离职流程过程中的账号增删改不是一个小的工作量,所以我们就需要一个统一的登陆方式比如通过Raidus。

下面是拿Cisco和Windows NPS 来举例说明:

Cisco  SSH 配置:

第一步开启交换机的SSH:

enable secret password

ip domain-name contosoc.om

username user privilege 15 secret password   
crypto key generate rsa general-keys modulus 1024

ip ssh version 2

第二步:开启AAA认证:

aaa new-model

aaa group server radius NPSserver   
server-private NPSServerIP auth-port 1645 acct-port 1646 key password

exit   
aaa authentication login default group NPSserver local    
aaa authorization exec default group NPSserver local

radius-server timeout 30

line vty 0 4

transport input ssh   
login authentication default

do write

ip radius source-interface vlan1 如果交换机有多个Ip接口需要手动指定一个源接口作为认证 接口。比如你的管理IP,如果就一个这条命令可写可不写

第三步:开启console本地认证(作为设备登陆的最后一个关口 Console认证我们采用本地认证,在Radius出现问题的时候我们还可以登陆),关闭Telnet

aaa authentication login console local   
aaa authorization exec console local

line console 0

no password

login authentication console

authorization exec console

exit

line vty 0 4

no password

line vty 5 15

no password

transport input none

do write

第二种认证方式:Cisco Telnet设置:

enable secret password

username user secret password

aaa new-model   
aaa authentication login NPSserver group radius local    
aaa authorization exec NPSserver group radius local

ip radius source-interface vlan1   
radius-server host NPSServerIP auth-port 1812 acct-port 1813 key ourgame    
radius-server timeout 30    
line vty 0 4    
login authentication NPSserver    
authorization exec NPSserver

do write

 

NPS 配置:

第三步:配置NPS

Image(30)

Image(31)

Image(32)

新建网络策略:

Image(33)

Image(34)

选择用户组

Image(35)

Image(36)

Image(37)

Image(38)

Image(39)

Image(40)



本文转自handsome7038 51CTO博客,原文链接:http://blog.51cto.com/lixiaosong/1564571

相关文章
|
4月前
|
网络安全
检查使用IP协议远程维护的设备是否配置SSH协议,禁用telnet协议
检查使用IP协议远程维护的设备是否配置SSH协议,禁用telnet协议
147 0
|
10月前
|
Linux 网络安全
linux端口连通性测试telnet、wget、ssh、curl
linux端口连通性测试telnet、wget、ssh、curl
103 0
|
4月前
|
安全 网络安全 数据安全/隐私保护
ensp中aaa(3a)实现telnet远程连接认证配置命令
ensp中aaa(3a)实现telnet远程连接认证配置命令
124 1
|
4月前
|
Ubuntu Shell Linux
Shell批量SSH免交互登录认证
Shell批量SSH免交互登录认证
|
4月前
|
网络协议 安全 网络安全
【技术分享】Telnet / SSH
4月更文挑战第7天
187 0
|
网络安全 数据安全/隐私保护
华为交换机基本配置之Telnet和SSH方式远程登录
华为交换机基本配置之Telnet和SSH方式远程登录
1544 0
|
11月前
|
Java 关系型数据库 MySQL
java编程网页SSH设备管理系统myeclipse开发mysql计算机程序web结构JSP源码
JSP SSH设备管理系统是一套完善的web设计系统(struts2+spring+hibernate模式开发),对理解JSP java编程开发语言有帮助,系统具有完整的源代码和数据库,系统主要采用B/S模式开发
74 1
java编程网页SSH设备管理系统myeclipse开发mysql计算机程序web结构JSP源码
|
Linux 网络安全 数据安全/隐私保护
Linux 使用ssh密钥认证方式登陆另一台linux服务器
Linux 使用ssh密钥认证方式登陆另一台linux服务器
|
安全 网络协议 Shell
Telnet 基础实验2: SSH 实验
Telnet 基础实验2: SSH 实验
91 0
|
网络协议 Unix Linux
【PuTTY】一个免费的SSH和Telnet客户端
【PuTTY】一个免费的SSH和Telnet客户端
208 0