cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2789
Views
1
Helpful
10
Replies

Webex SSO with ADFS 2019

IT-Sauer
Level 1
Level 1

Hi Comunity,

 

I am trying to establish a SSO Configuration with ADFS on Microsoft Server 2019.

 

I used this Documantation:

 

https://help.webex.com/en-us/nyx7kubb/Configure-Single-Sign-On-in-Cisco-Webex-Control-Hub-With-Active-Directory-Federation-Services

 

When I click the "Test SSO Connection" Button, i am getting redirected to our ADFS Site as expacted. But wenn I insert my Credentials, I get an Error  Invalid Status code in Response.

In the Eventlog on the ADFS Server i do not get any errors or warnings.

 

In the Claim Issuance Policy of the Rellying Party Trust I have two Rules, like descripted in the Documantation:

1. The Attributes Rule: LDAP Attribute --> uid

2. The Custom Role:

 

c:[Type == "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsaccountname"]
=> issue(Type = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier", Issuer = c.Issuer, OriginalIssuer = c.OriginalIssuer, Value = c.Value, ValueType = c.ValueType, Properties["http://schemas.xmlsoap.org/ws/2005/05/identity/claimproperties/format"] = "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress", Properties["http://schemas.xmlsoap.org/ws/2005/05/identity/claimproperties/namequalifier"] = "http://myfqdn/adfs/services/trust", Properties["http://schemas.xmlsoap.org/ws/2005/05/identity/claimproperties/spnamequalifier"] = "https://idbroker-.....");

 

Do anyone know what to do for Troubleshooting?

If you need more Information please let me know.

 

Thank you an kind regards,

 

BS

10 Replies 10

maqsood ahmed
Level 1
Level 1

 

Certificate revocation list is provided by IdP. Since you are using SSO with ADFS. This is something that needs to be checked from your ADFS team. In case it is enabled. You will need to turn off using the following command:

Hello & thanks for your response,

 

wich command did you mean?

 

is it necessary to set the SigningCertificateRevocationCheck and EncryptionCertificateRevocationCheck of the Party trust to none?

josviz
Cisco Employee
Cisco Employee

Hello @IT-Sauer,

Did you get it fixed? As per the problem, the description seems to be an issue with the relying party trust’s encryption certificate invalid and has been revoked. You should see the attempt in the Event Viewer log from your ADFS server.

Something similar like "An error occurred during an attempt to build the certificate chain..." run the following PowerShell commands to disable Relying Party certificates CRL check:
Set-AdfsRelyingPartyTrust -TargetName "Cisco WebEx" -EncryptionCertificateRevocationCheck None
Set-AdfsRelyingPartyTrust -TargetName "Cisco WebEx" -SigningCertificateRevocationCheck none
Just change the TargetName and use your own Relying Party Trust name.

Please rate if it's “Helpful”.
If this answered your question please click “Accept as Solution”.

collinks2
Level 5
Level 5

Hi, i have the same problem? how did you resolve it ?

@collinks2 see my previous post on 02-01-2023, it's an ADFS Cert revocation issue. Use the PowerShell commands provided to fix it.

 

 

I have done it but still the samesso_error.PNG error

@collinks2 based on your specific TrackingID, you have a time mismatch in your ADFS server. This is the error based on the screenshot provided:

com.sun.identity.saml2.common.SAML2Exception: Time is not valid in Conditions of Assertion.

Please follow this:

Ensure that your ADFS server's system clock is synchronized to a reliable Internet time source that uses the Network Time Protocol (NTP). Use the following PowerShell command to skew the clock for the Webex Relying Party Trust relationship only.

Set-ADFSRelyingPartyTrust -TargetIdentifier "https://idbroker.webex.com/$ENTITY_ID_HEX_VALUE" -NotBeforeSkew 3

The hexadecimal value is unique for your environment. Please replace the value from the SP EntityDescriptor ID value in the Webex metadata file.

Ref: https://help.webex.com/en-us/article/nyx7kubb/Configure-single-sign-on-in-Control-Hub-with-Active-Directory-FederationServices-(ADFS)

Please rate if it's “Helpful”.
If this answered your question please click “Accept as Solution”.

 

 

 

 

 

 

 

 

 

 

 

 

Yes, that command has fixed the issue. Thanks a lot. I think i am having the same issue with cucm as well

josviz
Cisco Employee
Cisco Employee

@collinks2 CUCM is not my area of expertice but take a look on this guide, seems you are missing a step:

https://www.cisco.com/c/en/us/support/docs/unified-communications/unified-communications-manager-callmanager/211302-Configure-Single-Sign-On-using-CUCM-and.html

@IT-Sauer do you mind confirming if the PowerShell commands provided solved the initial issue reported?

Please rate if it's “Helpful”.
If this answered your question please click “Accept as Solution”.

 

 

Yes, the PowerShell command resolved the initial issue reported. I stated it in my response: "Yes, that command has fixed the issue."