1

这是我用来通过我的应用程序添加 VPN 配置的一些示例代码。我的问题是,我怎样才能添加代理配置。在设置应用程序和 Apple Configurator 中,用户可以添加代理设置(自动或手动)以及他们的 VPN 设置。

下面是我找到的一些示例代码,但我也找不到关于如何添加代理的丝毫线索。

let manager = NEVPNManager.shared()
    manager.loadFromPreferences { (error) -> Void in
        if manager.protocolConfiguration  == nil {
            let newIPSec = NEVPNProtocolIKEv2()
            newIPSec.serverAddress = "mycompany.vpn"
            newIPSec.username = "myvpnusername"
            newIPSec.identityDataPassword = "myvpnpassword"
            newIPSec.authenticationMethod = NEVPNIKEAuthenticationMethod.none
            newIPSec.disconnectOnSleep = false

            manager.protocolConfiguration = newIPSec
            manager.isEnabled = true

            manager.saveToPreferences(completionHandler: { (error) -> Void in

            })
        }
4

1 回答 1

1

在调用 saveToPreferences 之前,只需添加以下内容:

let proxy = NEProxySettings()
proxy.autoProxyConfigurationEnabled = true
proxy.proxyAutoConfigurationURL = URL(string: "url_of_proxy.pac")
manager.protocolConfiguration.proxySettings = proxy
于 2017-07-12T06:31:41.687 回答