Skip to content

Commit a78daff

Browse files
committed
example of browser popup
1 parent 36d9a39 commit a78daff

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed
63.6 KB
Loading

src/content/docs/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/protocol-handler.mdx

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ sidebar:
66
label: Automated WARP registration
77
---
88

9-
import { Render } from "~/components";
9+
import { Render, GlossaryTooltip } from "~/components";
1010

11-
Administrators can automate the WARP login process on managed devices and minimize the number of clicks required from an end user.
11+
Administrators can automate WARP registration on managed devices and minimize the number of clicks required from an end user.
1212

13-
End users typically need to complete several steps in their browser in order to login to WARP:
13+
During the default WARP enrollment process, end users typically need to complete several steps in order to login:
1414

1515
1. Review and accept Cloudflare's privacy policy in the WARP client GUI.
1616
2. Select their identity provider from the Cloudflare Access login screen.
@@ -25,8 +25,35 @@ If you are looking to eliminate all user interaction, you can [enroll devices us
2525

2626
## Turn off onboarding screen
2727

28+
To skip the Terms and Conditions screens that are usually presented to users, set the [`onboarding` parameter](/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/) to `false` in your [MDM deployment file](/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/). Here is an example `mdm.xml` file:
29+
30+
```xml
31+
<dict>
32+
<key>organization</key>
33+
<string>your-team-name</string>
34+
<key>onboarding</key>
35+
<false/>
36+
</dict>
37+
```
38+
2839
## Turn on Instant Auth
2940

30-
If you plan to only allow access via a single IdP, turn on **Instant Auth** in your [device enrollment permissions](/cloudflare-one/connections/connect-devices/warp/deployment/device-enrollment/#set-device-enrollment-permissions). This allow users to skip the Cloudflare Access login page and go directly to your SSO login event.
41+
If you are only using one identity provider for device enrollment, turn on **Instant Auth** in your [device enrollment permissions](/cloudflare-one/connections/connect-devices/warp/deployment/device-enrollment/#set-device-enrollment-permissions). This allow users to skip the Cloudflare Access login page and go directly to your SSO login event.
42+
43+
## Allow browser to launch WARP
44+
45+
You can pre-configure your browser to automatically launch the Cloudflare WARP application from your <GlossaryTooltip term="team domain">Zero Trust team domain</GlossaryTooltip>. This will allow the user to skip the **Open Cloudflare WARP.app** popup that is shown after a successful login.
46+
47+
![Browser popup requesting permission to open WARP](~/assets/images/cloudflare-one/connections/warp-protocol-handler.png)
48+
49+
### Windows
50+
51+
52+
53+
### macOS
54+
55+
56+
57+
58+
3159

32-
##

0 commit comments

Comments
 (0)