Forum Discussion

Maryam_305638's avatar
Maryam_305638
Icon for Nimbostratus rankNimbostratus
Jul 24, 2017

Exchange 2016 and Autodiscover issue

Hi guys, we are deploying iApp 2016 exchange in our infrastructure to load balance between exch 2010 and 2016 until we migrate all users to 2016. Currently facing a weird issue: If a 2016 user tries OWA and go through the web they can login fine but for the autodiscover LTM appends an extra domain at the end of the credentials. for example in web/owa I put "jdoe" and then LTM append "@mycompany.com" at the end and it can authenticate and goes thru but since for Autodiscover I have to put the email address I put "jdoe@mycompany.com" and again LTM append it one more time so my credential would be "jdoe@mycompany.com.mycomapny.com" and of course it fails. Do you guys have any idea how to fix this?

 

1 Reply

  • Hi Maryam,

    I had the same issue and I made a workaround with an iRule:

    
    priority 1

    
    

    when HTTP_REQUEST {
        if { ([regexp {\/mapi\/} [string tolower [HTTP::uri]]]) || ([regexp {\/autodiscover\/} [string tolower [HTTP::uri]]]) } {
            ACCESS::disable
        }
    }
    

    `

    I think it's a bug and that should be fixed.

    Cheers, Christian