欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

TCP/IP筛选限制登陆3389终端的解除方法[注册表]

程序员文章站 2022-06-28 08:48:15
有时候服务器管理员会用TCP/IP筛选限制端口,让我们无法登陆3389等等,需要解除这一限制,只需要导出注册表进行修改就行了... 12-10-17...

有时候服务器管理员会用tcp/ip筛选限制端口,让我们无法登陆3389等等
 
需要解除这一限制,只需要导出注册表进行修改就行了:

TCP/IP筛选限制登陆3389终端的解除方法[注册表]

tcp/ip筛选在注册表里有三处,分别是:
 
hkey_local_machine\system\controlset001\services\tcpip

hkey_local_machine\system\controlset002\services\tcpip

hkey_local_machine\system\currentcontrolset\services\tcpip

 

导出到自己所指定的目录进行修改:

regedit -e d:\chouwazi.com\1.reg hkey_local_machine\system\currentcontrolset\services\tcpip

regedit -e d:\chouwazi.com\2.reg hkey_local_machine\system\controlset002\services\tcpip

regedit -e d:\chouwazi.com\3.reg hkey_local_machine\system\currentcontrolset\services\tcpip

 

然后再把三个文件里中的:

“enablesecurityfilters"=dword:00000001”改为:“enablesecurityfilters"=dword:00000000”


再将以上三个文件分别导入注册表:

regedit -s d:\chouwazi.com\1.reg
 
regedit -s d:\chouwazi.com\2.reg
 
regedit -s d:\chouwazi.com\3.reg

重启服务器即可! 

摘自臭袜子‘s blog

相关标签: TCP/IP筛选 3389