Ad Widget

Collapse

Azure AD SAML Error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rrspyder
    Junior Member
    • Oct 2013
    • 8

    #1

    Azure AD SAML Error

    I am trying to setup SAML with Azure AD SSO. I tried both of these guides:




    However the error I get is:

    AADSTS75011: Authentication method 'X509, MultiFactor' by which the user authenticated with the service doesn't match requested authentication method 'Password, ProtectedTransport'. Contact the Zabbix application owner.

    Anyone else run into this and know the fix?

    Thanks.
  • Markku
    Senior Member
    Zabbix Certified SpecialistZabbix Certified ProfessionalZabbix Certified Expert
    • Sep 2018
    • 1782

    #2
    I've seen that as well, the workaround for me was using another browser. I don't know what caused that.

    Please let us all know if you figure that out.

    Markku

    Comment

    • falkoz
      Junior Member
      • Mar 2021
      • 2

      #3
      Hi,
      I solved the problem.
      Cause: you use modern authentication methods like sign in with a mobile app or WHfB (Windows Hello for Business) instead of a password. The library OneLogin's SAML PHP Toolkit checks the value authncontext by default, which is completely unnecessary.

      Solution: You can deactive the check as described here in advanced settings: 3 Authentication (zabbix.com)

      Go to /usr/share/zabbix/conf/zabbix.conf.php
      Replace
      Code:
      $SSO['SETTINGS']
      with
      Code:
      $SSO['SETTINGS'] = [
      'security' => [
      'requestedAuthnContext' => false
      ]
      ];
      Restart Zabbix
      Last edited by falkoz; 06-01-2022, 16:10.

      Comment

      Working...