Forum Discussion

Julio_Navarro's avatar
Julio_Navarro
Icon for Cirrostratus rankCirrostratus
Feb 24, 2015

Access Profile NTLM - Auth Configuration

Hello;

 

This is my scenario: My FQDN is domaininc.com My Netbios name is domain.com I can register the Machine Account without any issues. But, when I try to configure the NTLM Auth Configuration I don't get authenticated.: nlclnt[14105cd0a] init: error [0xc00000ca,NT_STATUS_NETWORK_ACCESS_DENIED] setting up secure pipe

 

I found there a bug 439880 regarding the Netbios/FQDN

 

Is there a workaround with this issue?

 

I will appreciate ANY advise/help.

 

J

 

14 Replies

  • Hm...that is really strange - I have not observed that before...are they using IE? If so, what version?

     

  • Hi Michael!

     

    Yes, it happens with IE 11.

     

    I can open multiples tabs or window using Chrome.

     

    J

     

  • kunjan's avatar
    kunjan
    Icon for Nimbostratus rankNimbostratus

    Suspect the issue is due to the authentication header which IE send out when creating the access session.

    Can you try the following the iRule?

    when ACCESS_SESSION_STARTED { 
      if { [HTTP::header "Authorization"] ne "" } {
          set vContent {
                          
           }
          ACCESS::respond 200 content $vContent
          ACCESS::session remove
          unset vContent
      }
    }