我正在使用VPN,请问这个question,但现在我想使用L2TP协议而不是IPSec协议来创建VPN配置文件。
我拥有所需的所有信息(用户,服务器,密码,pre sharedKey),并且该服务已正确打开。我正在尝试通过创建正确的设置配置文件(如App Store中的应用程序“ 1.1.1.1”)来创建仅连接到VPN的应用程序。
我正在使用NEVPNProtocolIPSec类,但我认为是错误的。 L2PT协议没有类别吗?
在设备设置中,我可以为L2PT手动配置VPN,但是如何使用NEVPNManager来实现它?
这是我的代码:
class VPN {
let vpnManager = NEVPNManager.shared();
private var vpnLoadHandler: (Error?) -> Void { return
{ (error:Error?) in
if ((error) != nil) {
print("Could not load VPN Configurations")
return;
}
let p = NEVPNProtocolIPSec()
p.username = "myUsername"
p.serverAddress = "myAddressServer"
p.authenticationMethod = NEVPNIKEAuthenticationMethod.sharedSecret
let kcs = KeychainService();
kcs.save(key: "SHARED", value: "sharedPsw")
kcs.save(key: "VPN_PASSWORD", value: "password")
p.sharedSecretReference = kcs.load(key: "SHARED")
p.passwordReference = kcs.load(key: "VPN_PASSWORD")
p.useExtendedAuthentication = true
p.disconnectOnSleep = false
self.vpnManager.protocolConfiguration = p
self.vpnManager.localizedDescription = "myDescription"
self.vpnManager.isEnabled = true
self.vpnManager.isOnDemandEnabled = true
self.vpnManager.saveToPreferences(completionHandler: self.vpnSaveHandler)
}
}
private var vpnSaveHandler: (Error?) -> Void { return
{ (error:Error?) in
if (error != nil) {
print("Could not save VPN Configurations")
return
} else {
do {
try self.vpnManager.connection.startVPNTunnel()
} catch let error {
print("Error starting VPN Connection \(error.localizedDescription)");
}
}
}
}
public func connectVPN() {
//For no known reason the process of saving/loading the VPN configurations fails.On the 2nd time it works
do {
try self.vpnManager.loadFromPreferences(completionHandler: self.vpnLoadHandler)
} catch let error {
print("Could not start VPN Connection: \(error.localizedDescription)" )
}
}
public func disconnectVPN() ->Void {
vpnManager.connection.stopVPNTunnel()
}
我没有工作,但是它为IPSec创建了VPN配置,但是我想要L2PT。其他人可以帮我吗?
也许有人面临同样的问题。