Skip to content

Commit 4c92eff

Browse files
website/integrations: macmon NAC (#17898)
* New Integration Guide macmon NAC * Bring doc in-line with current style guide, clarifies language and changes verification section --------- Co-authored-by: nicedevil007 <[email protected]> Co-authored-by: dewi-tik <[email protected]>
1 parent 779d98a commit 4c92eff

File tree

1 file changed

+74
-0
lines changed
  • website/integrations/security/macmon-nac

1 file changed

+74
-0
lines changed
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
title: Integrate with macmon NAC
3+
sidebar_label: macmon NAC
4+
support_level: community
5+
---
6+
7+
## What is macmon NAC
8+
9+
> macmon NAC is a network access control platform that provides visibility, policy enforcement, and automated responses for devices connecting to your network.
10+
>
11+
> -- [macmon Network Access Control (NAC)](https://www.belden.com/products/industrial-networking-cybersecurity/software-solutions/macmon-network-access-control-software#sort=%40catalogitemwebdisplaypriority%20ascending&numberOfResults=25)
12+
13+
## Preparation
14+
15+
The following placeholders are used in this guide:
16+
17+
- `authentik.company` is the FQDN of the authentik installation.
18+
- `macmon.company` is the FQDN of your macmon NAC environment.
19+
20+
:::info
21+
This documentation lists only the settings that you need to change from their default values. Be aware that any changes other than those explicitly mentioned in this guide could cause issues accessing your application.
22+
:::
23+
24+
## authentik configuration
25+
26+
To support the integration of macmon NAC with authentik, you need to create an application/provider pair in authentik.
27+
28+
### Create an application and provider in authentik
29+
30+
1. Log in to authentik as an administrator and open the authentik Admin interface.
31+
2. Navigate to **Applications** > **Applications** and click **Create with Provider** to create an application and provider pair. (Alternatively you can first create a provider separately, then create the application and connect it with the provider.)
32+
- **Application**: provide a descriptive name, an optional group for the type of application, the policy engine mode, and optional UI settings. Note the **slug** value because it will be required later.
33+
- **Choose a Provider type**: select **SAML Provider** as the provider type.
34+
- **Configure the Provider**: provide a name (or accept the auto-provided name), the authorization flow to use for this provider, and the following required configurations.
35+
- Set the **ACS URL** to `https://macmon.company/login/?acs`.
36+
- Set the **Issuer** to `https://macmon.company`.
37+
- Set the **Service Provider Binding** to `Post`.
38+
- Under **Advanced protocol settings**:
39+
- Set an available signing certificate.
40+
- Enable both **Sign Assertions** and **Sign Responses**.
41+
- Set **NameID Property Mapping** to the email mapping you selected (for example, `authentik default SAML Mapping: Email`).
42+
macmon NAC expects the NameID format `E-mail address`, so ensure that the chosen mapping provides the user’s email address.
43+
You can optionally add mappings for additional claims such as `firstName`, `surName`, `memberOf`, or `description` if macmon NAC will use them.
44+
- **Configure Bindings** _(optional)_: create a [binding](/docs/add-secure-apps/flows-stages/bindings/) (policy, group, or user) to control which users see the macmon NAC application on the **My Applications** page.
45+
46+
3. Click **Submit**.
47+
48+
### Download the signing certificate
49+
50+
1. Log in to authentik as an administrator and open the authentik Admin interface.
51+
2. Navigate to **Applications** > **Providers** and click on the name of the newly created macmon NAC provider.
52+
3. Click **Download** under **Download signing certificate**. The contents of this certificate will be required in the next section.
53+
54+
## macmon configuration
55+
56+
1. Log in to the macmon NAC administrative console.
57+
2. Navigate to **Settings** > **Identity Stores** and click **Create**.
58+
3. Configure the following settings:
59+
- **Name**: `authentik` (or another descriptive label).
60+
- **SP Host name**: `macmon.company`.
61+
- **SP Entity ID**: `https://macmon.company/login/?acs`.
62+
- **IdP Issuer (Entity ID)**: `https://authentik.company/application/saml/<application_slug>/metadata/`.
63+
- **IdP certificate**: paste the contents of the authentik signing certificate, removing the `-----BEGIN CERTIFICATE-----` and `-----END CERTIFICATE-----` lines.
64+
- **IdP SSO URL**: `https://authentik.company/application/saml/<application_slug>/sso/binding/init/`.
65+
- **Name ID format**: `E-mail address`.
66+
4. Save the identity store configuration.
67+
68+
:::info User Provisioning
69+
macmon NAC provisions new users automatically when they authenticate through SSO. Newly created accounts have no policies by default, so they cannot access resources until an administrator assigns groups/permissions or you configure automated policy assignments. Designing those policies is outside the scope of this guide. You can review these accounts in macmon NAC under **Users** > **User Accounts** > **External user accounts** and filter by the identity store name you configured earlier.
70+
:::
71+
72+
## Configuration verification
73+
74+
To confirm that authentik is properly configured with macmon NAC, log out of Amazon Business. On the macmon NAC portal select **Single Sign-On**. You should be redirected to authentik to login, and if successful, you should then be redirected to the macmon NAC interface.

0 commit comments

Comments
 (0)