如何以编程方式连接已在Android手机中设置的VPN

时间:2012-04-21 21:03:40

标签: android vpn

我在Android手机中配置了VPN连接。现在我想通过一个小部件连接这个VPN。如何以编程方式启动连接?大多数代码假设还没有VPN设置,但这不是我要找的地方。我特别关注连接到已经配置的VPN的代码。

http://code.google.com/p/android/issues/detail?id=8915上我找到了这段代码:

VpnService service = context.getSystemService(VPN_SERVICE);
VpnProfile profile = VpnProfile.create(L2TP_PROFILE);
profile.setName(myServerName);
profile.setServerName(myServerAddress);
profile.setRouteList(“192.168.1.0/255.255.255.0,192.168.10.0/255.255.255.0”);

service.connect(profile, myUserName, myPassword);
service.setNotificationIntent(myIntent);

用于配置新VPN。我只想连接现有的VPN。

此页面http://developer.android.com/reference/android/net/VpnService.html介绍了如何实施自己的VPN服务,这也不是我想要的。

1 个答案:

答案 0 :(得分:1)