Traffic Manager Endpoint monitor and ADFS /adfs/probe

Microsoft Azure, Windows

Microsoft has a very nice post on how to setup Traffic manager in front of an ADFS farm for high availability, where both sites are in Azure but in different GEO locations or one in Azure and one on premises. The Article is located here: https://docs.microsoft.com/en-us/azure/active-directory/active-directory-adfs-in-azure-with-azure-traffic-manager. What the article lacks is how to setup proper ADFS monitoring, which monitors both tte WAP and the ADFS service, at the moment the article only goes into details which monitor the WAP service.

So this post will go over how to configure your environment so the health point will report the status of both WAP and ADFS.

Some info before we begin:

  • The solutions is achieved by monitoring the /adfs/probe/ on the ADFS server via the WAP proxy
  • The solution will report failure if the WAP proxy is not forwarding or the ADFS service is down. So we are monitoring the whole solution.
  •  It will work if you have an external load balancer in front of the WAP servers and an internal one in front of the ADFS servers, for simplicity I will outline how it’s done on the non-load-balanced solution but it’s the same procedure for both.
  • You can’t monitor /adfs/probe on the WAP server as that will only give you the status of the WAP server
  • You can create a rule on the WAP server to redirect /adfs/probe to the ADFS server, but it will get ignored and show you the status of the WAP server.
  • I tested this on Server 2016 but it will work for 2012 R2 as well
  • If you are using 2012 R2 make sure you update your WAP to the latest version so you can forward HTTP traffic
  • We use HTTP as this prevents certificate problems and because Traffic manager does not support SNI.
  • You can’t monitor the “/federationmetadata/2007-06/federationmetadata.xml” because the way you set this up for Traffic manager means you are monitoring the ADFS on a different DNS so the request will not be forwarded.

Essentially this is what we are doing

adfs_probe_check

Once you setup the environment as per Microsofts Article above we need to do the following:

The variables for my test environment:

  • ADFS URL and Federation Service Name – test123.blah.local
  • Traffic Manager DNS – adfstest.trafficmanager.net
  • WAP server public IP dns (this can be replaced by a load balancer) – http://mytestadfsa.westeurope.cloudapp.azure.com
  • Custom monitor path (you can choose anything but the default which is /adfs/) –  /adfsprobe/

The Steps:

  • Change the Traffic Manager Configuration to point to our custom monitor path for the endpoint monitoring

configuration-microsoft-azure

  • Create an HTTP rule on the WAP server in the Remote Access Management Console to forward (via Pass- through) the WAP DNS + our custom monitor path to the ADFS server. I assume that your WAP server host file has been modified to point the ADFS URL to the ADFS internal IP or load balancer IP

wap-rule

iis-url-rewrite

  • The rule to be created is Reverse Proxy with the following settings:

arp-rule

  • And finally change your Public DNS record and create a CName for your ADFS URL (test123.blah.local) to point to the traffic manager DNS name (adfstest.trafficmanager.net)

And you are done.

7 thoughts on “Traffic Manager Endpoint monitor and ADFS /adfs/probe

    1. Hello Peter,

      2012 R2 can publish HTTP applications using pass-through preauthentication. I think there where some restrictions in terms of you can’t forward to HTTPS or something similar, at the moment i cant recall.

      Regards,
      Luben

  1. Hi,

    I have two ADFS and two WAP on-premise.

    I build a third ADFS an a third WAP but in Azure.

    Now I want that the Traffic Manager monitor the two ADFS on-premise too. I have to install IIS on each server and make only one HTTP rule on the WAP servers ?

    IIS was not installed by default on the ADFS servers.

    Can you please help me a bit ?

    By the way, thanks for your post.

    Regards,

  2. It is truly a nice and helpful piece of information. I’m happy that you shared this helpful info with
    us. Please stay us up to date like this.
    Thanks for sharing.

  3. Unfortunately, it didn’t work for me. Azure traffic manager kept saying degraded, even though could hit the /adfsprobe/ externally.. not sure what gives.

  4. Just did this, exactly as described. Traffic Manager for me shows Online. Note that I first tried to see if I could get away with using HTTP Redirection in IIS on the ADFS server, but no go. It seemed to work fine testing in a browser but Traffic Manager would always see it as Degraded.

    Upon installing URL Rewrite and ARR and then setting up the simple Reverse Proxy rule, Traffic Manager then started to see it as Online.

    One caveat though, if the ADFS service on the WAP server is stopped, ADFS logins won’t work. However, Traffic Manager will still show the endpoint as Online. So it’s a trade off with the HTTP probe, probe WAP at the expense of ADFS visibility, or probe ADFS using this approach , at the expense of WAP’s ADFS service visibility.

    Too bad there weren’t two probe paths available in Traffic Manager. Too bad Microsoft didn’t think about this stuff and make a better probe that would start at the WAP and also cover the backend ADFS.

Leave a Reply