Skip to content

Commit cd88a5d

Browse files
authored
PCX-17253 (cloudflare#22800)
1 parent 60e7c55 commit cd88a5d

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

src/content/docs/cloudflare-one/identity/devices/warp-client-checks/corp-device.mdx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,16 @@ To create rules based on device serial numbers, you first need to create a [Gate
3232

3333
You can now create an [Access policy](/cloudflare-one/policies/access/) or a Gateway [network policy](/cloudflare-one/policies/gateway/network-policies/common-policies/#enforce-device-posture) that checks if the device presents a serial number on your list. In Access, the serial number check will appear as a *Device Posture - Serial Number List* selector. In Gateway, your serial number list will appear in the **Value** dropdown when you choose the [Passed Device Posture Check](/cloudflare-one/policies/gateway/network-policies/#device-posture) selector.
3434

35-
## Determine the serial number
35+
## Validate the serial number
36+
37+
You can use the following commands to check the serial number of your device. The results can help you validate if the posture check is working as expected.
3638

3739
### macOS
3840

3941
1. Open a terminal window.
4042
2. Use the `system_profiler` command to check for the value of `SPHardwareDataType` and retrieve the serial number.
4143

42-
```txt
44+
```sh
4345
system_profiler SPHardwareDataType | grep 'Serial Number'
4446
```
4547

@@ -48,7 +50,7 @@ You can now create an [Access policy](/cloudflare-one/policies/access/) or a Gat
4850
1. Open a PowerShell window.
4951
2. Use the `Get-CimInstance` command to get the SerialNumber property of the `Win32_BIOS` class.
5052

51-
```txt
53+
```powershell
5254
Get-CimInstance Win32_BIOS
5355
```
5456

@@ -57,7 +59,7 @@ You can now create an [Access policy](/cloudflare-one/policies/access/) or a Gat
5759
1. Open a Terminal Window
5860
2. Use the `dmidecode` command to get the version property `system-serial-number`.
5961

60-
```txt
62+
```sh
6163
sudo dmidecode -s system-serial-number
6264
```
6365

src/content/docs/cloudflare-one/identity/devices/warp-client-checks/disk-encryption.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ The Disk Encryption device posture attribute ensures that disks are encrypted on
3434

3535
Next, go to **Logs** > **Posture** and verify that the disk encryption check is returning the expected results.
3636

37-
## How WARP checks for encryption
37+
## Validate disk encryption status
3838

39-
Operating systems determine disk encryption in various ways. The following information will allow you to understand how the client determines disk encryption status on various systems.
39+
The following commands will return the disk encryption status on various operating systems. The results can help you validate if the posture check is working as expected.
4040

41-
### On macOS
41+
### macOS
4242

4343
1. Open a terminal window.
4444

@@ -68,13 +68,13 @@ Operating systems determine disk encryption in various ways. The following infor
6868
FileVault: Yes
6969
```
7070

71-
### On Windows
71+
### Windows
7272

7373
1. Open a PowerShell window.
7474
2. Run the `Get-BitLockerVolume` command to list all volumes detected on the system.
7575
3. **Protection Status** must be set to **On** for the disk to be considered encrypted.
7676

77-
### On Linux
77+
### Linux
7878

7979
List all hard drives on the system:
8080

@@ -95,6 +95,6 @@ nvme0n1 259:0 0 476.9G 0 disk
9595

9696
On Linux, encryption is reported per mounted partition, not physical drive. In the example above, the root and swap partitions are considered encrypted because they are located within a `crypt` container. The `/boot` and `/boot/efi` partitions remain unencrypted.
9797

98-
### On iOS, Android and ChromeOS
98+
### iOS, Android and ChromeOS
9999

100100
These platforms are always encrypted and so no disk encryption check is supported.

src/content/docs/cloudflare-one/identity/devices/warp-client-checks/domain-joined.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,15 @@ The Domain Joined device posture attribute ensures that a user is a member of a
3737

3838
Next, go to **Logs** > **Posture** and verify that the Domain Joined check is returning the expected results.
3939

40-
### Validate the domain value on your Windows device
40+
## Validate the domain value
41+
42+
To check the domain value on your Windows device:
4143

4244
1. Open a PowerShell window.
43-
2. Run the `(Get-WmiObject Win32_ComputerSystem).Domain` command to determine the value of your domain.
45+
2. Run the following command:
4446

45-
```txt
47+
```powershell
4648
(Get-WmiObject Win32_ComputerSystem).Domain
4749
```
50+
51+
The command will return the Active Directory domain to which your device belongs.

0 commit comments

Comments
 (0)