Ingredients:
1. Azure Active Directory Domain Services
2. Cisco ISE, duh.
3. Cisco AnyConnect Network Access Manager (NAM).
Starting State
1. Azure Active Directory Domain Services (AADDS)
After creation you'll be able to view a fairly basic domain services configuration. There's some good info, like the private IPs of the Domain Controllers that were spun up as part of enabling this resource, but what we're interested in is enabling Secure LDAP.
This will require a server certificate to be uploaded in PFX format, the requirements for which Microsoft outlines here. To create this certificate I'll use openSSL to generate a wildcard csr for the domain of hop16.com, and sign it with a CSR1Kv I have configured as a certificate authority.
1. Generate CSR with OpenSSL
~$ openssl genrsa -out ldaps.key 2048
~$ openssl req -new -key ldaps.key -out ldaps.csr
[output]
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:US
State or Province Name (full name) [Some-State]:North Carolina
Locality Name (eg, city) []:Raleigh
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Hop16
Organizational Unit Name (eg, section) []:IT
Common Name (e.g. server FQDN or YOUR name) []:*.hop16.com
Email Address []:admin@hop16.com
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
[/output]
~$ cat ldaps.csr
[output]
-----BEGIN CERTIFICATE REQUEST-----
MIIC0TCCAbkCAQAwgYsxCzAJBgNVBAYTAlVTMRcwFQYDVQQIDA5Ob3J0aCBDYXJv
[...]
-----END CERTIFICATE REQUEST-----
[/output]
2. Configure CSR as Certificate Authority
conf t
!
crypto key generate rsa gen mod 4096 label hop16-CA
!
crypto pki server hop16-CA
!
crypto pki server hop16-CA
database level names
no database archive
grant auto
hash sha256
eku server-auth client-auth
!
# Note eku config here, our templates for both parts need #server and client auth.
!
no shutdown
!
end
!
(commands run in privilege exec, not config from here)
crypto pki server hop16-CA request pkcs10 terminal pem
[output]
PKCS10 request in base64 or pem
% Enter Base64 encoded or PEM formatted PKCS10 enrollment request.
% End with a blank line or "quit" on a line by itself.
-----BEGIN CERTIFICATE REQUEST-----
MIIC0TCCAbkCAQAwgYsxCzAJBgNVBAYTAlVTMRcwFQYDVQQIDA5Ob3J0aCBDYXJv
[...]
-----END CERTIFICATE REQUEST-----
quit
% Granted certificate:
-----BEGIN CERTIFICATE-----
MIIEezCCAmOgAwIBAgIBAjANBgkqhkiG9w0BAQsFADATMREwDwYDVQQDEwhob3Ax
[...]
-----END CERTIFICATE-----
[/output]
3. Create PFX file with openSSL
To do this we'll also need the CA's certificate, which we can retrieve in PEM format from the CSR with 'show crypto pki cert pem hop16-CA'. Then we can copy that also with our issued certificate back to our computer running openSSL (WSL for me).
~$ openssl pkcs12 -export -out ldaps.pfx -inkey ldaps.key -in ldaps.crt \
-certfile ca.crt
Enter Export Password:
Verifying - Enter Export Password:
4. Enable Secure LDAP
Back in our Azure portal we'll navigate back to Azure AD Domain Services | Secure LDAP and toggle Secure LDAP to 'Enable', toggle Allow secure LDAP access over the internet to 'Enable', upload our freshly created PFX and decryption password then click save. Fair warning, if your template doesn't have to correct EKUs, the CA certificate is missing from the chain or any other similar Certificate issues this process will fail. Speaking 100% from experience here lol.
Also note the message about needing to modify the network security group associated with your AADDS subnet.
Once this process completes successfully, you can pull the public IP for Secure LDAP from Azure AD Domain Services -> Properties.
We'll either want a DNS record (e.g. ldaps[.]yourdomain[.]com or aadds[.]yourdomain[.]com) or we can had a host record in ISE if we're in a pinch. Since we're using a wildcard certificate you can use whatever DNS name makes the most sense to you. For this post I'm going with ldaps.hop16.com. We also need to make sure LDAPS is allowed inbound on our NSG (as highlighted in the previous screen shot).
2. ISE Configuration
1. Navigate to Administration -> System | Certificates -> Trusted Certificates and upload CSR CA certificate.
2. After clicking submit, navigate to Administration -> Identity Management | External Identity Sources -> LDAP and click 'Add' to add an LDAP Identity Source. Most of the settings are fairly intuitive, but the part you'll really want to pay special attention to is setting the schema to Active Directory, but changing the 'subnet name attribute' to sAMAccountName (default is userPrincipalName). Doing this will change the schema from Active Directory to Custom, but leaves all the defaults from Active Directory.
3. Now we'll configure our Secure LDAP connection, specifiying a bind account as well. I've previously added a user in my Azure AD called 'ldapbind' that has basic user permissions.
8. I already have my c3750-X added as a Network Device, using shared secret 'supersecretsharedpasswd'. Also I have a policy-set setup to catch all Wired dot1X and Wired MAB authentications.