Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/guides/internet-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Login nodes have public IP addresses which means that they can directly access t
Compute nodes are configured with the following environment variables to use the proxy server:

```bash
export https_proxy=http://proxy.cscs.ch:8080
export http_proxy=http://proxy.cscs.ch:8080
export no_proxy=.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16
export HTTPS_PROXY=http://proxy.cscs.ch:8080
export HTTP_PROXY=http://proxy.cscs.ch:8080
export NO_PROXY=.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16
export https_proxy='http://proxy.cscs.ch:8080'
export http_proxy='http://proxy.cscs.ch:8080'
export no_proxy='.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16'
export HTTPS_PROXY='http://proxy.cscs.ch:8080'
export HTTP_PROXY='http://proxy.cscs.ch:8080'
export NO_PROXY='.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16'
```

!!! warning "Public IPs are a shared resource"
Expand Down