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/warp/user-side-certificates/manual-deployment.mdx
Some applications require a certificate formatted in the `.cer` file type to use it. You can convert downloaded certificates using [OpenSSL](https://www.openssl.org/):
2.[Download a Cloudflare certificate](#download-the-cloudflare-root-certificate) in `.pem` format.
84
+
3. In a terminal, convert the certificate to DER format with the `.cer` file type:
85
+
86
+
```sh
87
+
openssl x509 -inform PEM -in ~/Downloads/certificate.pem -outform DER -out ~/Downloads/certificate.cer
88
+
```
89
+
90
+
</Details>
91
+
92
+
<Detailsheader="Windows">
93
+
94
+
1.[Install OpenSSL for Windows](https://slproweb.com/products/Win32OpenSSL.html).
95
+
2.[Download a Cloudflare certificate](#download-the-cloudflare-root-certificate) in `.pem` format.
96
+
3. In a PowerShell terminal, convert the certificate to DER format with the `.cer` file type:
97
+
98
+
```powershell
99
+
openssl x509 -inform PEM -in "$HOME\Downloads\certificate.pem" -outform DER -out "$HOME\Downloads\certificate.cer"
100
+
```
101
+
102
+
</Details>
103
+
76
104
## Add the certificate to operating systems
77
105
78
106
### macOS
@@ -309,41 +337,18 @@ Zero Trust integrates with several [mobile device management (MDM) software part
309
337
310
338
#### Microsoft Intune
311
339
312
-
To deploy a certificate to Microsoft Intune devices, you must convert your certificate and create a trusted certificate profile. These steps require you to [download a Cloudflare certificate](#download-the-cloudflare-root-certificate) in `.pem` format.
340
+
To deploy a certificate to Microsoft Intune devices, you must convert your certificate and create a trusted certificate profile:
313
341
314
-
<Detailsheader="macOS and Linux">
315
-
316
-
1. Install [OpenSSL](https://www.openssl.org/).
317
-
2. In a terminal, convert the certificate to DER format with the `.cer` file type:
318
-
319
-
```sh
320
-
openssl x509 -inform PEM -in ~/Downloads/certificate.pem -outform DER -out ~/Downloads/certificate.cer
321
-
```
322
-
323
-
3. In Microsoft Intune, [create a trusted certificate profile](https://learn.microsoft.com/mem/intune/protect/certificates-trusted-root#to-create-a-trusted-certificate-profile) with your converted certificate.
324
-
325
-
</Details>
326
-
327
-
<Detailsheader="Windows">
328
-
329
-
1. Install [OpenSSL for Windows](https://slproweb.com/products/Win32OpenSSL.html).
330
-
2. In a PowerShell terminal, convert the certificate to DER format with the `.cer` file type:
331
-
332
-
```powershell
333
-
openssl x509 -inform PEM -in "$HOME\Downloads\certificate.pem" -outform DER -out "$HOME\Downloads\certificate.cer"
334
-
```
335
-
336
-
3. In Microsoft Intune, [create a trusted certificate profile](https://learn.microsoft.com/mem/intune/protect/certificates-trusted-root#to-create-a-trusted-certificate-profile) with your converted certificate.
337
-
338
-
</Details>
342
+
1.[Download and convert a Cloudflare certificate](#convert-the-certificate) to DER format with the `.cer` file type.
343
+
2. In Microsoft Intune, [create a trusted certificate profile](https://learn.microsoft.com/mem/intune/protect/certificates-trusted-root#to-create-a-trusted-certificate-profile) with your converted certificate.
339
344
340
345
For more information, refer to the [Microsoft documentation](https://learn.microsoft.com/mem/intune/protect/certificates-trusted-root).
341
346
342
347
#### Jamf Pro
343
348
344
349
To upload and deploy a Cloudflare certificate in Jamf Pro:
345
350
346
-
1.[Download a Cloudflare certificate](#download-the-cloudflare-root-certificate)in `.pem` format.
351
+
1.[Download and convert a Cloudflare certificate](#convert-the-certificate)to DER format with the `.cer` file type.
347
352
2. In Jamf Pro, go to **Computers** > **Configuration Profiles** to create a computer configuration profile, or go to **Devices** > **Configuration Profiles** to create a mobile device configuration profile. Select **New**.
348
353
3. Name the profile, then select **Add** > **Certificate**.
0 commit comments