3

我们正在寻找使用 Protocol-L2TP/IPsec android 开源代码以编程方式配置 VPN。

我已经尝试过https://android.googlesource.com/platform/development/+/master/samples/ToyVpn/src/com/example/android/toyvpn/ToyVpnClient.java

这里是配置用户个人资料信息

Intent intent = new Intent(this, ToyVpnService.class)
.putExtra(prefix + ".ADDRESS", mServerAddress.getText().toString())
.putExtra(prefix + ".PORT", mServerPort.getText().toString())
.putExtra(prefix + ".SECRET", mSharedSecret.getText().toString());
startService(intent);

在与共享的 USERID 和密码建立连接后,我想管理服务器 VPN 设置的名称、类型、服务器地址、IPSEC 预共享密钥。

4

1 回答 1

0

我没有找到使用配置的方法ToyVpn。我的解决方案是strongSwan开源vpn客户端

于 2017-03-06T16:01:10.970 回答