Is IKEv2 MOBIKE mobility protocol supported by NEVPNManager?

Is IKEv2 MOBIKE mobility protocol supported by iOS NEVPNManager?



ikev2.authenticationMethod = NEVPNIKEAuthenticationMethod.none
        ikev2.deadPeerDetectionRate = NEVPNIKEv2DeadPeerDetectionRate.medium
        ikev2.ikeSecurityAssociationParameters.encryptionAlgorithm = .algorithmAES256
        ikev2.ikeSecurityAssociationParameters.integrityAlgorithm = .SHA256
        ikev2.ikeSecurityAssociationParameters.diffieHellmanGroup = .group14
        ikev2.ikeSecurityAssociationParameters.lifetimeMinutes = 1440
        ikev2.childSecurityAssociationParameters.encryptionAlgorithm = .algorithmAES256
        ikev2.childSecurityAssociationParameters.integrityAlgorithm = .SHA256
        ikev2.childSecurityAssociationParameters.diffieHellmanGroup = .group14
        ikev2.childSecurityAssociationParameters.lifetimeMinutes = 1440



Is it something I have to configure separately or is it enabled out of the box?


I would like to improve the connection or loss of when moving from cellular 4G to WiFi / WiFi to 4G. The server runs StrongSwan IKEv2, which supports IKEv2 MOBIKE mobility protocol out of the box. So my question is if the iOS NEVPNManager enables that automatically, or does it need to be configured?


Many Thanks,

Houman

Accepted Reply

MOBIKE is controlled by the

disableMOBIKE
property of the
NEVPNProtocolIKEv2
you use to configure the VPN.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Replies

MOBIKE is controlled by the

disableMOBIKE
property of the
NEVPNProtocolIKEv2
you use to configure the VPN.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Since disableMOBIKE is set by default to false, this would mean that MOBIKE is therefore enabled by default. I probably set it explicitly to false in the next release to be sure.


Many Thanks