我在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服务,这也不是我想要的。
答案 0 :(得分:1)
这里是使用VpnService http://developer.android.com/resources/samples/ToyVpn/index.html
的示例