Hide Server IP Address in VPN configuration

I use the NETunnelProvider Protocol to configure VPN, the "test" set by server Address, and save the configuration to see in the settings - VPN - my configuration:

Type:test

Server:test


When the VPN connection is successful, check Settings - VPN - My configuration:

Type:test

Server:test

Server IP Adress: Real Server IP

Assigned IP Adress: Intranet IP

Connect Time: 0:07


This is how I created the configuration:

NETunnelProvider Manager * Manager = [[NETunnelProvider Manager alloc] init];

NETunnelProvider Protocol * conf = [[NETunnelProvider Protocol alloc] init];

Conf. serverAddress = @ "Qiyou Tour Accelerator";

Manager. protocolConfiguration = conf;

Manager.localizedDescription = @ Accelerator for Odd Tour;


My question is: How to set Server IP Adress as a fixed fake ip?

Answered by DTS Engineer in 348181022

How to set Server IP Adress as a fixed fake ip?

Why would you want to do that?

Share and Enjoy

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

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

How to set Server IP Adress as a fixed fake ip?

Why would you want to do that?

Share and Enjoy

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

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

Hi

I've achieved my goal by creating [[NEPacket Tunnel Network Settings alloc] initWithTunnel RemoteAddress:@ "fake ip"];

Hide Server IP Address in VPN configuration
 
 
Q