SPN

Service Principal Name

The NetLogon service registers the default SPNs for the base operating system and refreshes those every 22 minutes after operating system startup. 

The SPN is part of Kerberos.
Includes "Kerberos Configuration Manager for SQL Server"

setspn

Check

Commands should be run from a Windows Command Prompt or Powershell...

To return a list of the SPNs that myhost has registered with Active Directory...

setspn –l myhost

To return a list of the SPNs that the local computer has registered with Active Directory...

setspn –l hostname

Common entries to see include...

Set

For MS-SQL...

setspn -s MSSQLSvc/MYHOST.mydomain.com:1433 mydomain\myservice

MSSQLSvc is a fixed string identifying this as a SQL Server SPNMYHOST is the fully qualified domain name of the SQL Server1433 is the SQL Server portmydomain\myservice is the domain service account for the SQL Server serviceAn SPN is required for all aliasesYou must restart SQL after setting SPNs

Bibliography