我需要为我的应用程序打开特定端口。
我已尝试为每个端口使用INetFwAuthorizedApplication
规则。
fwMgr.LocalPolicy.CurrentProfile.AuthorizedApplications.Add(app)
或者使用INetFwOpenPort
为所有应用程序打开一个端口。
firewallManager.LocalPolicy.CurrentProfile.GloballyOpenPorts.Add(port)
有没有办法以编程方式以编程方式为每个应用程序打开单个端口? 我可以通过防火墙设置手动完成。
答案 0 :(得分:5)
关于使用C#中创建防火墙规则的说明来回答阻止连接的问题。你应该能够适应我想象的任何防火墙规则。
https://stackoverflow.com/a/1243026/12744
以下代码创建阻止任何传出的防火墙规则 所有网络适配器上的连接:
using NetFwTypeLib; // Located in FirewallAPI.dll ... INetFwRule firewallRule = (INetFwRule)Activator.CreateInstance( Type.GetTypeFromProgID("HNetCfg.FWRule")); firewallRule.Action = NET_FW_ACTION_.NET_FW_ACTION_BLOCK; firewallRule.Description = "Used to block all internet access."; firewallRule.Direction = NET_FW_RULE_DIRECTION_.NET_FW_RULE_DIR_OUT; firewallRule.Enabled = true; firewallRule.InterfaceTypes = "All"; firewallRule.Name = "Block Internet"; INetFwPolicy2 firewallPolicy = (INetFwPolicy2)Activator.CreateInstance( Type.GetTypeFromProgID("HNetCfg.FwPolicy2")); firewallPolicy.Rules.Add(firewallRule);
答案 1 :(得分:0)
您也可以只使用PowerShell。
using System.Management.Automation;
...
private void OpenPort(int port)
{
var powershell = PowerShell.Create();
var psCommand = $"New-NetFirewallRule -DisplayName \"<rule description>\" -Direction Inbound -LocalPort {port} -Protocol TCP -Action Allow";
powershell.Commands.AddScript(psCommand);
powershell.Invoke();
}