Skip to content

Commit 212caec

Browse files
committed
Add convert section
1 parent baae7a6 commit 212caec

File tree

1 file changed

+32
-27
lines changed
  • src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates

1 file changed

+32
-27
lines changed

src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates/manual-deployment.mdx

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,34 @@ openssl x509 -noout -fingerprint -sha256 -inform pem -in <Cloudflare_CA.pem>
7373
sha256 Fingerprint=F5:E1:56:C4:89:78:77:AD:79:3A:1E:83:FA:77:83:F1:9C:B0:C6:1B:58:2C:2F:50:11:B3:37:72:7C:62:3D:EF
7474
```
7575

76+
### Convert the certificate
77+
78+
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/):
79+
80+
<Details header="macOS and Linux">
81+
82+
1. [Install OpenSSL](https://wiki.openssl.org/index.php/Compilation_and_Installation).
83+
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+
<Details header="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+
76104
## Add the certificate to operating systems
77105

78106
### macOS
@@ -309,41 +337,18 @@ Zero Trust integrates with several [mobile device management (MDM) software part
309337

310338
#### Microsoft Intune
311339

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

314-
<Details header="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-
<Details header="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.
339344

340345
For more information, refer to the [Microsoft documentation](https://learn.microsoft.com/mem/intune/protect/certificates-trusted-root).
341346

342347
#### Jamf Pro
343348

344349
To upload and deploy a Cloudflare certificate in Jamf Pro:
345350

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.
347352
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**.
348353
3. Name the profile, then select **Add** > **Certificate**.
349354
4. Choose the certificate file.

0 commit comments

Comments
 (0)