C# - 如何检查外部防火墙是否启用?

发布于 2024-11-06 16:05:57 字数 96 浏览 0 评论 0原文

我们想要使用 Cisco NAC,需要检查客户端桌面是否安装了防火墙。这可能不是默认的 Windows 防火墙。

是否有一些可以检查的 Windows 注册表项?

We want to use Cisco NAC and need to check if client Desktop has a firewall installed. This may be not the default Windows Firewall.

Is there some Windows registry key that can be checked?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薔薇婲 2024-11-13 16:05:57

也许只是检查是否可以建立连接,如果不能 - 显示一条消息,提示用户应该检查防火墙是否已安装?

Maybe just check if you can establish connection, if you can't - display a message that user should check firewall if it's installed?

仙女 2024-11-13 16:05:57

对于非 Windows 防火墙,您可以使用 WMI API 来检测是否存在防火墙(如果已在 Windows 中注册)。

Namespace = "Root\SecurityCenter2"  (might be "Root\SecurityCenter" on pre-vista)
Query = "SELECT * From FirewallProduct"

您可以使用这个小宝石来检测它是否真的打开或关闭。

对于 Windows 防火墙检测,它是 INetFwMgr 和朋友。< /a>

For non-Windows firewalls, you can use WMI API to detect the presence of a firewall if it's registered with Windows.

Namespace = "Root\SecurityCenter2"  (might be "Root\SecurityCenter" on pre-vista)
Query = "SELECT * From FirewallProduct"

And you can use this little gem to detect if it's actually on or off.

For Windows Firewall detection, it's INetFwMgr and friends.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文