将C#应用程序移植到Mono,需要使用FirewallAPI。有Mono等价物吗?

时间:2012-06-12 21:51:00

标签: c# mono windows-firewall windows-firewall-api

我已经编写了一个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;
    }
}

1 个答案:

答案 0 :(得分:0)

当我想出来的时候,我忘了回答这个问题了!

在OS X上,不需要制作防火墙例外。 OS X将要求用户授予您的应用程序访问互联网的权限。

我对Linux不太确定,但Linux上的Mono覆盖范围要高得多,所以我相信有人已经为Linux回答了这个问题。