forked from cloudfoundry/docs-cf-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp-proxy.html.md.erb
91 lines (53 loc) · 3.1 KB
/
http-proxy.html.md.erb
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
85
86
87
88
89
90
91
---
title: Using the cf CLI with a proxy server
owner: CLI
---
If you have an HTTP or SOCKS5 proxy server on your network between a host running the cf CLI and your API endpoint, you must set `https_proxy` with the hostname or IP address of the proxy server. The `https_proxy` environment variable holds the hostname or IP address of your proxy server.
The `https_proxy` is a standard environment variable. As with any environment variable, the specific steps you use to set it depends on your operating system.
## <a id="format"></a> Format of https_proxy
The `https_proxy` variable is set with hostname or IP address of the proxy server in URL format, as in the following example:
```
https_proxy=http://proxy.example.com
```
If the proxy server requires a username and password, you must include the credentials, as in the following example:
```
https_proxy=http://username:[email protected]
```
If the proxy server uses a port other than 80, you must include the port number, as in the following example:
```
https_proxy=http://username:[email protected]:8080
```
If the proxy server is a SOCKS5 proxy, you must specify the SOCKS5 protocol in the URL, as in the following example:
```
https_proxy=socks5://socks_proxy.example.com
```
The <code>cf ssh</code> command for cf CLI v7 does not work through a SOCKS5 proxy.
## <a id="mac-linux"></a> Set https_proxy in Mac OS or Linux
To set the `https_proxy` environment variable in Mac OS or Linux:
1. Use the command specific to your shell. For example, in bash, use the `export` command, as in the following example:
```
export https_proxy=http://my.proxyserver.com:8080
```
1. To make this change persistent, add the command to the appropriate profile file for the shell. For example, in bash, add a
line like the following example to your `.bash_profile` or `.bashrc` file:
```
https_proxy=http://username:password@hostname:port
export $https_proxy
```
## <a id="windows"></a> Set https_proxy in Windows
To set the `https_proxy` environment variable in Windows:
1. Open the **Start** menu.
1. Right-click **Computer** and select **Properties**.
![An arrow points to 'Properties' as the last item of the right-click menu.](./images/properties.png)
1. In the left pane of the **System** window, click **Advanced system settings**.
![An arrow points to'Advanced system settings', which is the last item in the Control Panel Home.](./images/adv-settings.png)
2. In the **System Properties** window:
1. Select **Advanced**.
2. Click **Environment Variables**.
![An arrow points to'Advanced system settings', which is the last item in the Control Panel Home.](./images/env-var.png)
3. Under **User variables**, click **New**.
![An arrow points to the 'New' button, which is the first button under the user variables table](./images/new.png)
4. For **Variable name**, enter `https_proxy`.
5. For **Variable value**, enter your proxy server information.
![Variable name text field has 'https_proxy' entered. Variable value text field has 'http://my.proxyserver.com:8080 entered.](./images/proxy.png)
6. Click **OK**.