我已经编写了一个 Windows 服务,我需要将它移植到 Mono 上,这样它就可以在 Mac / Linux 平台上使用。
它利用了 FirewallAPI.dll(我认为这是实际名称......)。其他名称是 NetFwTypeLb、NATUPNPLib 和 NETCONLib。
我一直在谷歌搜索,试图找到一种在 Mac / Linux 平台上实现此功能的方法,但我找不到可以用来执行此操作的方法。
这可能吗?并将另一个问题与这个问题结合起来:Mac / Linux 平台是否允许轻松安装和运行服务(我认为另外称为“守护程序”)?
谢谢,玛德琳
请注意,这是我正在使用的当前代码,我从另一个 StackOverflow 问题中得到它:
public class Firewall
{
public static INetFwMgr WinFirewallManager()
{
Type type = Type.GetTypeFromCLSID(
new Guid("{304CE942-6E39-40D8-943A-B913C40C9CD4}"));
return Activator.CreateInstance(type) as INetFwMgr;
}
public bool AuthorizeProgram(string title, string path,
NET_FW_SCOPE_ scope, NET_FW_IP_VERSION_ ipver)
{
Type type = Type.GetTypeFromProgID("HNetCfg.FwAuthorizedApplication");
INetFwAuthorizedApplication authapp = Activator.CreateInstance(type)
as INetFwAuthorizedApplication;
authapp.Name = title;
authapp.ProcessImageFileName = path;
authapp.Scope = scope;
authapp.IpVersion = ipver;
authapp.Enabled = true;
EventLog.WriteEntry("MachineVerification", authapp.Name + " " + authapp.Scope + " " + authapp.IpVersion);
INetFwMgr mgr = WinFirewallManager();
try
{
mgr.LocalPolicy.CurrentProfile.AuthorizedApplications.Add(authapp);
EventLog.WriteEntry("MachineVerification", authapp.Name + " " + authapp.Scope + " " + authapp.IpVersion);
}
catch (Exception ex)
{
EventLog.WriteEntry("MachineVerification", "MROW!" + ex.Message);
return false;
}
return true;
}
}