What does NTSTATUS 0xC002002F (RPC_NT_BINDING_HAS_NO_AUTH) mean?

 
Previous Next
RPC_NT_PROCNUM_OUT_OF_RANGE RPC_NT_UNKNOWN_AUTHN_SERVICE

RPC_NT_BINDING_HAS_NO_AUTH

The binding is unauthenticated when authentication is required

RPC bindings are not authenticated unless authentication information is configured. This status indicates that an operation required auth data, but the binding handle does not contain it.

Use this to distinguish an absent security setup from bad credentials. If no call to set binding authentication was made, changing the password or certificate will not affect this status.

What to inspect

  • Check whether RpcBindingSetAuthInfo or RpcBindingSetAuthInfoEx was called for the binding.
  • Record authentication level, service, authorization service and server principal name.
  • Do not confuse missing authentication with access denied after authentication.

References


Looking for a different code? Search another status or error code.