Created on 06-27-2022 09:01 AM Edited on 07-27-2024 07:29 AM By Jean-Philippe_P
Description
This article describes a step-by-step guide on how to configure and set up a SAML SSO login for Wi-Fi SSID using Azure AD as the IdP.
Scope
FortiGate, FOS 7.0.5 and later.
Tunnel Mode SSID (Bridge Mode SSID is not supported with SAML authentication).
Solution
In FortiOS 7.0.5 and later, a new feature has been added where the SAML authentication for Wi-Fi SSID can be configured with FortiGate as the wireless controller.
Wireless Authentication using SAML Credentials 7.0.5
This article focuses on using Azure AD as the IdP. The steps remain the same if any other IdP is used.
Topology:
Configure Enterprise Application (SAML SSO) on Azure:
Setup Single Sign-On:
Once done, the SAML-based Sign-On page will show up where the FortiGate SP details have to be entered in the Basic SAML Configuration step.
Identifier (Entity ID): http://<FortiGate internal IP address>:1000/saml/metadata/
Reply URL (Assertion consumer Service URL): https://<FortiGate internal IP address>:1003/saml/login/
Sign on URL: https://<FortiGate internal IP address>:1003/saml/login/
Relay State: Optional
Logout URL: https://<FortiGate internal IP address>:1003/saml/logout/
Optional: May change the imported remote certificate to make sense of the certificate name (default imported naming 'REMOTE_Cert#' where # is a number [1-9]).
Configure SAML on FortiGate:
By default, FortiGate uses port 1000 (HTTP) and port 1003 (HTTPS) for captive portal authentication.
If using any different port, note those ports' numbers. To get the port number configured on FortiGate, use the below command:
sh full-configuration | grep auth-http
set auth-http-port 1000
set auth-https-port 1003
Use these port numbers for SAML SP configuration.
config user saml
edit "saml-ad"
set entity-id "http://10.10.90.1:1000/saml/metadata/"
set single-sign-on-url "https://10.10.90.1:1003/saml/login/"
set single-logout-url "https://10.10.90.1:1003/saml/logout/"
set idp-entity-id "https://sts.windows.net/abc_can_be_random_string/"
set idp-single-sign-on-url "https://login.microsoftonline.com/abc_can_be_random_string"
set idp-single-logout-url "https://login.microsoftonline.com/abc_can_be_random_string"
set idp-cert "REMOTE_Cert_2"
set user-name "username"
set group-name "group"
set digest-method sha1
next
end
Configure User Group on FortiGate with SAML IdP as Member:
config user group
edit "saml_grp"
set member "saml-ad"
config match
edit 1
set server-name "saml-ad"
set group-name "<object Id of the grp from Azure>"
next
end
next
end
group-name is the Object-ID that was noted from Azure ID for the specific group.
In this example, only one specific group is allowed to authenticate. If all users/groups are required to authenticate, then ignore the config match part.
For Example:
config user group
edit "saml_grp"
set member "saml-ad"
next
end
Configure Address group to exempt from captive portal:
As the clients try to connect to the SSID, a Microsoft login will be prompted.
Hence, those destinations must be exempted from the Captive Portal so that the user can connect and log in for captive portal authentication.
In the majority of cases, the Azure IdP queries login.microsoftonline.com and sts.windows.net for authentication. If using Okta, Duo, or any similar service for 2FA, those destinations need to be exempted as well.
config firewall address
edit "sts.windows.net-for-saml"
set type fqdn
set fqdn "sts.windows.net"
next
edit "login.microsoftonline.com-for saml"
set type fqdn
set fqdn "login.microsoftonline.com"
next
end
Configure Firewall Policy to exempt the services to IdP for Authentication:
config firewall policy
edit <policy Id>
set name "saml-exempt"
set srcintf "CFS HQ"
set dstintf "virtual-wan-link"
set action accept
set srcaddr "all"
set dstaddr "login.microsoftonline.com-for saml" "sts.windows.net-for-saml"
set schedule "always"
set service "ALL"
set nat enable
set captive-portal-exempt enable
next
end
Firewall policy to exempt Duo or any similar services for 2FA:
edit <policy ID>
set name "saml-exempt-duo"
set srcintf "CFS HQ"
set dstintf "virtual-wan-link"
set action accept
set srcaddr "all"
set internet-service enable
set internet-service-name "Cisco-Duo.Security"
set schedule "always"
set nat enable
set comments “”
set captive-portal-exempt enable
next
Note:
Configure set captive-portal-exempt enable in these firewall policies so that the clients can reach this destination for authentication purposes. Make this change from CLI.
Configure SSID on FortiGate:
edit "CFS HQ"
set ssid "CFS HQ"
set security captive-portal
set selected-usergroups "saml_grp"
set security-exempt-list "CFS HQ-exempt-list"
set schedule "always"
next
'CFS HQ-exempt-list' is the destination group comprising login.microsoftonline.com and sts.windows.net address objects that were created.
This object will be automatically created once the address object is added in the Exempt Destination/Services part in GUI.
Configure Firewall Policy to allow internet post-authentication:
edit <policy ID>
set name "CFS SAML"
set srcintf "<Wi-Fi SSID Interface>"
set dstintf "virtual-wan-link"
set action accept
set srcaddr "all"
set dstaddr "all"
set schedule "always"
set service "ALL"
set nat enable
set groups "saml_grp"
next
Increase the remote authentication timeout:
config system global
set remoteauthtimeout 60
next
Troubleshooting:
If firewall authentication fails after successful login to Microsoft, collect samld debugs, and note down the timestamp of testing.
diag debug console timestamp enable
diag debug app samld -1
diag debug enable
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2024 Fortinet, Inc. All Rights Reserved.