3

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

1 回答 1

0

当我弄清楚这一切时,我忘了回答这个问题!

在 OS X 上,不需要设置防火墙例外。OS X 将要求用户授予您的应用程序访问 Internet 的权限。

虽然我不确定 Linux,但 Mono 在 Linux 上的覆盖率要高得多,所以我相信以前有人已经为 Linux 回答过这个问题。

于 2012-06-22T17:36:27.150 回答