HomeSort by relevance Sort by last modified time
    Searched full:vpn (Results 1 - 25 of 647) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/test/functional/
chromeos_vpn.py 15 """Tests for VPN.
32 """Test to add a VPN network, connect and disconnect."""
33 # Load VPN config data from file.
38 vpn = self.EvalDataFrom(vpn_info_file)
42 self.WaitUntilWifiNetworkAvailable(vpn['wifi'])
43 wifi_vpn = self.GetServicePath(vpn['wifi'])
46 self.assertFalse(self._PingTest(vpn['ping']),
47 msg='VPN ping succeeded when not connected.')
49 # Connect to the VPN.
50 self.AddPrivateNetwork(hostname=vpn['hostname']
    [all...]
  /external/sepolicy/
mtp.te 0 # vpn tunneling protocol manager
  /external/chromium_org/chromeos/test/data/network/
settings_with_normalization.json 2 "ethernet-and-vpn": {
10 "VPN": {
25 "ethernet-and-vpn-normalized": {
managed_toplevel_l2tpipsec.onc 7 "Type": "VPN",
8 "VPN": {
managed_vpn_without_recommended.onc 2 "Type": "VPN",
9 "VPN": {
valid_l2tpipsec.onc 2 "Type": "VPN",
4 "VPN": {
shill_l2tpipsec_clientcert.json 9 "Type": "vpn",
translation_of_shill_openvpn.onc 3 "Name": "my vpn",
4 "Type": "VPN",
5 "VPN": {
7 "Host": "vpn.my.domain.com",
translation_of_shill_openvpn_with_errors.onc 3 "Name": "my vpn",
4 "Type": "VPN",
5 "VPN": {
6 "Host": "vpn.my.domain.com",
valid_openvpn_with_cert_pems.onc 3 "Name": "my vpn",
4 "Type": "VPN",
5 "VPN": {
7 "Host": "vpn.my.domain.com",
device_policy.onc 2 "Type": "VPN",
8 "VPN": {
l2tpipsec_clientcert_with_cert_pems.onc 2 "Type": "VPN",
4 "VPN": {
managed_vpn.onc 2 "Type": "VPN",
9 "VPN": {
network_configs_with_resolved_certs.json 6 "Type": "VPN",
7 "VPN": {
31 "Type": "VPN",
32 "VPN": {
69 { "VPN": {
92 { "VPN": {
115 { "VPN": {
124 [ { "VPN": {
openvpn_clientcert_with_cert_pems.onc 7 "Type": "VPN",
8 "VPN": {
translation_of_shill_l2tpipsec.onc 2 "Type": "VPN",
4 "VPN": {
shill_l2tpipsec.json 2 "Type": "vpn",
shill_openvpn_clientcert.json 11 "Type": "vpn",
user.onc 3 "VPN": {
valid_openvpn.onc 3 "Name": "my vpn",
4 "Type": "VPN",
5 "VPN": {
7 "Host": "vpn.my.domain.com",
  /external/ipsec-tools/src/racoon/samples/roadwarrior/
README 2 remote access using hybrid authentication. In this setup, the VPN
4 authenticates to the VPN gateway using a login and a password.
8 internal address, netmask and DNS from the VPN gateway.
17 The first server setup, in server/racoon.conf, is for a VPN gateway
26 Both configurations can be used with the Cisco VPN client if it
28 available in Cisco VPN client version 4.0.5 and above). The group
29 password configured in the Cisco VPN client is not used by racoon.
44 certificate authority that signed the VPN gateway certificate in
48 the VPN using racoonctl:
49 racoonctl vc -u username vpn-gateway.example.ne
    [all...]
  /frameworks/base/packages/VpnDialogs/res/values/
strings.xml 19 <!-- Dialog title to identify the request from a VPN application. [CHAR LIMIT=60] -->
21 attempts to create a VPN connection.
24 <!-- Dialog message to warn about the risk of using a VPN application. [CHAR LIMIT=NONE] -->
32 <!-- Checkbox label to accept the request from a VPN application. [CHAR LIMIT=60] -->
35 <!-- Dialog title for built-in VPN. [CHAR LIMIT=40] -->
36 <string name="legacy_title">VPN is connected</string>
37 <!-- Button label to configure the current VPN session. [CHAR LIMIT=20] -->
39 <!-- Button label to disconnect the current VPN session. [CHAR LIMIT=20] -->
42 <!-- Label for the name of the current VPN session. [CHAR LIMIT=20] -->
44 <!-- Label for the duration of the current VPN session. [CHAR LIMIT=20] --
    [all...]
  /development/samples/ToyVpn/
_index.html 1 <p>ToyVPN is a sample application that shows how to build a VPN client using the <a href="../../../reference/android/net/VpnService.html">VpnService</a> class introduced in API level 14.</p>
3 <p>This application consists of an Android client and a sample implementation of a server. It performs IP over UDP and is capable of doing seamless handover between different networks as long as it receives the same VPN parameters.</p>
7 <img alt="" src="../images/vpn-confirmation.png" />
  /frameworks/base/core/java/android/net/
VpnService.java 43 * own VPN solutions. In general, it creates a virtual network interface,
49 * always started with IP headers. The application then completes a VPN
54 * A VPN application can easily break the network. Besides, two of them may
58 * <li>User action is required to create a VPN connection.</li>
59 * <li>There can be only one VPN connection running at the same time. The
62 * VPN connection.</li>
63 * <li>A system-managed dialog gives the information of the current VPN
66 * closed. It also covers the cases when a VPN application is crashed
72 * the VPN connection created by another application. The latter creates
73 * a VPN interface using the parameters supplied to the {@link Builder}
    [all...]
  /external/chromium/chrome/browser/chromeos/options/
vpn_config_view.cc 75 VPNConfigView::VPNConfigView(NetworkConfigView* parent, VirtualNetwork* vpn)
76 : ChildNetworkConfigView(parent, vpn) {
77 Init(vpn);
116 VirtualNetwork* vpn = cros->FindVirtualNetworkByPath(service_path_); local
117 if (vpn && vpn->failed()) {
118 if (vpn->error() == ERROR_BAD_PASSPHRASE) {
122 error_msg = vpn->GetErrorString();
202 VirtualNetwork* vpn = cros->FindVirtualNetworkByPath(service_path_); local
203 if (!vpn) {
    [all...]

Completed in 691 milliseconds

1 2 3 4 5 6 7 8 91011>>