windows-server-2008 – 如何知道Windows防火墙上当前打开的端口?

前端之家收集整理的这篇文章主要介绍了windows-server-2008 – 如何知道Windows防火墙上当前打开的端口?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Windows XP和 Windows Server 2003上,我可以使用以下命令了解Windows防火墙上当前打开的端口:
  1. netsh firewall show state

但是,在Windows 7和Hyper-V Server 2008 R2上,当我发出该命令时,它会说:

No ports are currently open on all network interfaces.

IMPORTANT: Command executed successfully.
However,“netsh firewall” is deprecated;
use “netsh advfirewall firewall” instead.

显然有端口打开,因为NetBIOS NS,远程桌面和Hyper-V远程管理等服务正在运行.

我尝试了一些’netsh advfirewall’show命令,但没有办法找出Windows防火墙允许哪些端口.

知道当前开放的端口,我可以肯定我允许必要和足够的流量传入,不多也不少.

完成整套高级防火墙规则是非常繁琐且容易出错的.

Windows 7和Windows Server 2008上是否有命令可以有效地执行此操作?

使用相同命令无法获得相同结果的原因是Win7防火墙规则可以特定于单个应用程序,并根据网络类型(专用,域,公共),协议,端口等进行配置.Powershell应该给出您可以更好地查询此信息并对其进行排序.这是一个快速脚本,我需要在需要时转储我的配置.
  1. Function Get-EnabledRules
  2. {
  3. Param($profile)
  4. $rules = (New-Object -comObject HNetCfg.FwPolicy2).rules
  5. $rules = $rules | where-object {$_.Enabled -eq $true}
  6. $rules = $rules | where-object {$_.Profiles -bAND $profile}
  7. $rules
  8. }
  9.  
  10. $networkListManager = [Activator]::CreateInstance([Type]::GetTypeFromCLSID([Guid]"{DCB00C01-570F-4A9B-8D69-199FDBA5723B}"))
  11. $connections = $networkListManager.GetNetworkConnections()
  12. [int[] ] $connTypes = @()
  13. $connTypes = ($connections | % {$_.GetNetwork().GetCategory()})
  14. #$connTypes += 1
  15. Write-Host $connTypes
  16.  
  17. $connTypes | ForEach-Object {Get-EnabledRules -profile $_ | sort localports,Protocol | format-table -wrap -autosize -property Name,@{Label="Action"; expression={$_.action}},@{Label="Protocol"; expression={$_.protocol}},localPorts,applicationname}

其中很多是基于MSDN上的this帖子

猜你在找的Windows相关文章