我在网络上出了点问题
一些较新的Windows10个人电脑(来自戴尔的Win10图像)的行为不同,而旧的戴尔PC。
他们有相同的服务包和修补程序,它的一些设置。
它们不接受远程管理任务,例如使用MMC对远程\客户端管理PC
他们也不接受Sysinternals、远程工具(如psexec等)。
我注意到这些机器不允许RPC连接。
尽管这些服务运行:
我确保rpc是允许的
netsh advfirewall firewall add rule name="RPC endpoint mapper" dir=in action=allow protocol=TCP localport=135你知道这可能是什么吗?
发布于 2021-05-06 14:26:58
这确实是一个防火墙规则问题。而远程工具中的一个问题是,GLPI没有在一些客户端上工作。
netsh advfirewall firewall add rule name="RPC endpoint mapper" dir=in action=allow protocol=TCP localport=135 profile=Domain,Private remoteip=172.16.1.0/16,LocalSubnet
netsh advfirewall firewall add rule name="File and Printer Sharing (NB-Datagram-In)" dir=in action=allow protocol=TCP localport=445 profile=Domain,Private remoteip=172.16.1.0/16,LocalSubnet
netsh advfirewall firewall set rule name="File and Printer Sharing (NB-Datagram-In)" new enable=yes profile=Domain,Private remoteip=172.16.1.0/16,LocalSubnet
netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow另外,至少这些服务应该运行。
Remote Procedure Call (RPC)
RPC Endpoint Mapper
DCOM Server Process Launcher 其他人跳进它,你可能会改变ipnumber和面具,以适应您的网站。
https://serverfault.com/questions/1062506
复制相似问题