我们正在寻找使用Protocol-L2TP / IPsec android开源代码以编程方式配置VPN。
这是配置用户个人资料信息
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设置的NAME,TYPE,SERVER ADDRESS,IPSEC预共享密钥。