summaryrefslogtreecommitdiffstats
path: root/chromeos/test/data/network/proxy_config.json
blob: 8e122d4e1c6de86725f1feeddfcc557424ce20ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[
  { "ONC_ProxySettings": {
      "Manual": {
        "FTPProxy": {
          "Host": "192.168.2.1",
          "Port": 8889
        },
        "HTTPProxy": {
          "Host": "192.168.2.1",
          "Port": 8889
        },
        "SOCKS": {
          "Host": "192.168.2.1",
          "Port": 8889
        },
        "SecureHTTPProxy": {
          "Host": "192.168.2.1",
          "Port": 8889
        }
      },
      "Type": "Manual"
    },
    "ProxyConfig": {
      "mode":"fixed_servers",
      "server":"ftp=192.168.2.1:8889;http=192.168.2.1:8889;socks=socks4://192.168.2.1:8889;https=192.168.2.1:8889"
    }
  },
  {
    "ONC_ProxySettings": {
      "Type": "Manual",
      "Manual": {
        "HTTPProxy" : {
          "Host" : "http.example.com",
          "Port" : 1234
        },
        "SecureHTTPProxy" : {
          "Host" : "https.example.com",
          "Port" : 3456
        },
        "FTPProxy" : {
          "Host" : "ftp.example.com",
          "Port" : 5678
        },
        "SOCKS" : {
          "Host" : "socks5://socks.example.com",
          "Port" : 7890
        }
      },
      "ExcludeDomains": [
        "google.com",
        "<local>"
      ]
    },
    "ProxyConfig": {
      "bypass_list":"google.com;\u003Clocal\u003E;",
      "mode":"fixed_servers",
      "server":"ftp=ftp.example.com:5678;http=http.example.com:1234;socks=socks5://socks.example.com:7890;https=https.example.com:3456"
    }
  },
  { "ONC_ProxySettings": {
      "Type": "PAC",
      "PAC": "https://proxycfg.my.domain.com/proxy.dat"
    },
    "ProxyConfig": {
      "mode":"pac_script",
      "pac_mandatory":false,
      "pac_url":"https://proxycfg.my.domain.com/proxy.dat"
    }
  },
  { "ONC_ProxySettings": {
      "Type": "WPAD"
    },
    "ProxyConfig": {
      "mode": "auto_detect"
    }
  },
  { "ONC_ProxySettings": {
      "Type": "Direct"
    },
    "ProxyConfig": {
      "mode": "direct"
    }
  }
]