Skip to content

Commit 25112f2

Browse files
authored
Update article: What API endpoints to expose to the public internet (#16687)
- Update article according to match our current understand of MDM features here: #16633 (comment) - Add Windows MDM endpoints.
1 parent b911b36 commit 25112f2

File tree

1 file changed

+46
-10
lines changed

1 file changed

+46
-10
lines changed

articles/what-api-endpoints-to-expose-to-the-public-internet.md

+46-10
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you would like to manage hosts that can travel outside your VPN or intranet,
1111

1212
## Using Fleet Desktop on remote devices
1313

14-
If you are using Fleet Desktop and want it to work on remote devices, the bare minimum API to expose is `/api/latest/fleet/device/*/desktop`. This minimal endpoint will only provide the number of failing policies.
14+
If you are using Fleet Desktop and want it to work on remote devices, the bare minimum API to expose is `/api/*/fleet/device/*/desktop`. This minimal endpoint will only provide the number of failing policies.
1515

1616
For full Fleet Desktop and scripts functionality, `/api/fleet/orbit/*` and`/api/fleet/device/ping` must also be exposed.
1717

@@ -20,23 +20,59 @@ For full Fleet Desktop and scripts functionality, `/api/fleet/orbit/*` and`/api/
2020
If you would like to use the fleetctl CLI from outside of your network, the following endpoints will also need to be exposed for `fleetctl`:
2121

2222
- `/api/setup`
23-
- `/api/v1/setup`
24-
- `/api/latest/fleet/*`
25-
- `/api/v1/fleet/*`
23+
- `/api/*/setup`
24+
- `/api/*/fleet/*`
2625

2726
## Using Fleet's MDM features
2827

29-
If you would like to use Fleet's MDM features, the following endpoints need to be exposed:
28+
### macOS
3029

31-
- `/mdm/apple/scep` to allow hosts to obtain a SCEP certificate.
32-
- `/mdm/apple/mdm` to allow hosts to reach the server using the MDM protocol.
33-
- `/api/mdm/apple/enroll` to allow DEP-enrolled devices to get an enrollment profile.
34-
- `/api/*/fleet/device/*/mdm/apple/manual_enrollment_profile` to allow manually enrolled devices to
35-
download an enrollment profile.
30+
If you would like to use Fleet's macOS MDM features, the following endpoints need to be exposed:
31+
32+
- `/mdm/apple/scep`: Allows hosts to obtain a SCEP certificate.
33+
- `/mdm/apple/mdm`: Allows hosts to reach the server using the MDM protocol.
34+
- `/api/mdm/apple/enroll`: If you use automatic enrollment, allows hosts to get an enrollment profile.
35+
- `/api/*/fleet/device/*`: Provides end users access to their **My device** page.
36+
- This page is where they download their manual enrollment profile, rotate their disk encryption key, and use other features. For more information on these API endpoints see the documentation [here](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/API-for-contributors.md#device-authenticated-routes).
37+
- `/api/*/fleet/mdm/sso` and `/api/*/fleet/mdm/sso/callback`: If you use automatic enrollment and you require [end user authentication](https://fleetdm.com/docs/using-fleet/mdm-macos-setup-experience#end-user-authentication-and-eula) during out-of-the-box macOS setup, allows end users to authenticate with your IdP.
38+
- `/api/*/fleet/mdm/setup/eula/*`: If you use automatic enrollment and you require that the end user agrees to an [End User License Agreement (EULA)](https://fleetdm.com/docs/using-fleet/mdm-macos-setup-experience#end-user-authentication-and-eula) during out-of-the-box macOS setup, allows end user to see the EULA.
39+
- `/api/*/fleet/mdm/bootstrap`: If you use automatic enrollment and you install a [bootstrap package](https://fleetdm.com/docs/using-fleet/mdm-macos-setup-experience#bootstrap-package) during out-of-the-box macOS setup, installs the bootstrap package.
3640

3741
> The `/mdm/apple/scep` and `/mdm/apple/mdm` endpoints are outside of the `/api` path because they
3842
> are not RESTful and are not intended for use by API clients or browsers.
3943
44+
### Windows
45+
46+
If you would like to use Fleet's Windows MDM features, the following endpoints need to be exposed:
47+
48+
- `/api/mdm/microsoft/management`: Allows host to get MDM commands and profiles once the host.
49+
- See the [Mobile Device Management Protocol specification](https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-mdm/33769a92-ac31-47ef-ae7b-dc8501f7104f).
50+
- `/api/mdm/microsoft/discovery`: Allows hosts to get information from the MDM server.
51+
- See the [section 3.1 on the MS-MDE2 specification](https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-mde2/2681fd76-1997-4557-8963-cf656ab8d887) for more details.
52+
- `/api/mdm/microsoft/policy`: Delivers the enrollment policies required to issue identity certificates to hosts.
53+
- See the [section 3.3 on the MS-MDE2 specification](https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-xcep/08ec4475-32c2-457d-8c27-5a176660a210) for more details.
54+
- `/api/mdm/microsoft/enroll`: Delivers WS-Trust X.509v3 Token Enrollment (MS-WSTEP) functionality.
55+
- See the [section 3.4 on the MS-MDE2 specification](https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-wstep/4766a85d-0d18-4fa1-a51f-e5cb98b752ea) for more details.
56+
- `/api/mdm/microsoft/tos`: Presents end users with the Terms of Service agreement during out-of-the-box Windows setup. Required for automatic enrollment.
57+
- `/api/mdm/microsoft/auth`: If you use automatic enrollment, authenticates end users during out-of-the-box Windows setup.
58+
- See the [section 3.2 on the MS-MDE2 specification](https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-mde2/27ed8c2c-0140-41ce-b2fa-c3d1a793ab4a) for more details.
59+
60+
## Advanced
61+
62+
The `/api/*/fleet/*` endpoints accessed by the fleetd agent can use mTLS with the certificate provided via the `--fleet-tls-client-certificate` flag in the `fleetctl package` command.
63+
64+
The `/mdm/apple/mdm` and `/api/mdm/apple/enroll` endpoints can use mTLS with the [SCEP certificate issued by the Fleet server](https://fleetdm.com/docs/configuration/fleet-server-configuration#mdm-apple-scep-cert-bytes).
65+
66+
These endpoints don't use mTLS:
67+
- `/mdm/apple/scep`
68+
- `/api/mdm/microsoft/discovery`
69+
- `/api/mdm/microsoft/auth`
70+
- `/api/mdm/microsoft/policy`
71+
- `/api/mdm/microsoft/enroll`
72+
- `/api/mdm/microsoft/management`
73+
- `/api/mdm/microsoft/tos`
74+
75+
For macOS and Windows, the MDM client on the host will send the client certificate in a header. The Fleet server always does additional verification of this certificate.
4076

4177
<meta name="category" value="guides">
4278
<meta name="authorGitHubUsername" value="mike-j-thomas">

0 commit comments

Comments
 (0)