You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/cloudflare-one/connections/connect-devices/agentless/pac-files.mdx
+7-9Lines changed: 7 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,9 +192,7 @@ You can now use the Proxy Endpoint selector in [network](/cloudflare-one/policie
192
192
193
193
## Configure firewall
194
194
195
-
If you want to use PAC files but your firewall only allows config via domain or IP/CIDR, you will need to configure that with your firewall.
196
-
197
-
If your organization's firewall only allows config via domain, you will need to create a firewall rule to allow your proxy endpoint domain.
195
+
To configure your organization's firewall to allow your users to connect to a proxy endpoint, you will need to create a firewall rule using either your proxy endpoint's domain or IP addresses.
198
196
199
197
To get the domain of a proxy endpoint:
200
198
@@ -238,14 +236,14 @@ To get the domain of a proxy endpoint:
238
236
239
237
</Tabs>
240
238
241
-
To get the IP addresses associated with your domain:
239
+
Using your proxy endpoint's domain, you can get the IP addresses assigned to the proxy endpoint:
242
240
243
241
<Tabs>
244
242
245
243
<TabItemlabel="macOS and Linux">
246
244
247
245
1. Open a terminal.
248
-
2. Run `dig` to get the IPv4 addresses. For example:
246
+
2. Run `dig`on your proxy endpoint's `A` records to get its IPv4 addresses. For example:
249
247
250
248
```bash
251
249
dig A example.cloudflare-gateway.com +short
@@ -256,10 +254,10 @@ To get the IP addresses associated with your domain:
256
254
162.159.36.20
257
255
```
258
256
259
-
3. Run `dig` to get the IPv6 addresses. For example:
257
+
3. Run `dig`on your proxy endpoint's `AAAA` records to get its IPv6 addresses. For example:
260
258
261
259
```bash
262
-
dig A example.cloudflare-gateway.com +short
260
+
dig AAAA example.cloudflare-gateway.com +short
263
261
```
264
262
265
263
```bash output
@@ -272,7 +270,7 @@ To get the IP addresses associated with your domain:
272
270
<TabItemlabel="Windows">
273
271
274
272
1. Open a PowerShell terminal.
275
-
2. Run `Resolve-DnsName` to get the IPv4 addresses. For example:
273
+
2. Run `Resolve-DnsName`on your proxy endpoint's `A` records to get its IPv4 addresses. For example:
276
274
277
275
```powershell
278
276
Resolve-DnsName -Name example.cloudflare-gateway.com -Type A
@@ -285,7 +283,7 @@ To get the IP addresses associated with your domain:
285
283
example.cloudflare-gateway.com A 300 Answer 162.159.36.20
286
284
```
287
285
288
-
3. Run `Resolve-DnsName` to get the IPv6 addresses. For example:
286
+
3. Run `Resolve-DnsName`on your proxy endpoint's `AAAA` records to get its IPv6 addresses. For example:
0 commit comments