Skip to content

Commit 8ebc039

Browse files
committed
Refine steps
1 parent accb2cf commit 8ebc039

File tree

1 file changed

+7
-9
lines changed
  • src/content/docs/cloudflare-one/connections/connect-devices/agentless

1 file changed

+7
-9
lines changed

src/content/docs/cloudflare-one/connections/connect-devices/agentless/pac-files.mdx

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,7 @@ You can now use the Proxy Endpoint selector in [network](/cloudflare-one/policie
192192

193193
## Configure firewall
194194

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.
198196

199197
To get the domain of a proxy endpoint:
200198

@@ -238,14 +236,14 @@ To get the domain of a proxy endpoint:
238236

239237
</Tabs>
240238

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:
242240

243241
<Tabs>
244242

245243
<TabItem label="macOS and Linux">
246244

247245
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:
249247

250248
```bash
251249
dig A example.cloudflare-gateway.com +short
@@ -256,10 +254,10 @@ To get the IP addresses associated with your domain:
256254
162.159.36.20
257255
```
258256

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:
260258

261259
```bash
262-
dig A example.cloudflare-gateway.com +short
260+
dig AAAA example.cloudflare-gateway.com +short
263261
```
264262

265263
```bash output
@@ -272,7 +270,7 @@ To get the IP addresses associated with your domain:
272270
<TabItem label="Windows">
273271

274272
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:
276274

277275
```powershell
278276
Resolve-DnsName -Name example.cloudflare-gateway.com -Type A
@@ -285,7 +283,7 @@ To get the IP addresses associated with your domain:
285283
example.cloudflare-gateway.com A 300 Answer 162.159.36.20
286284
```
287285

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:
289287

290288
```powershell
291289
Resolve-DnsName -Name example.cloudflare-gateway.com -Type AAAA

0 commit comments

Comments
 (0)