Remoting on PowerShell Core
The cross-platform aspect of PowerShell Core will empower administrators to manage diverse operating systems. Being able to manage servers remotely has always been a focus of the product and this is still the case in PowerShell Core. The Windows platform has a robust offering for remote management (WMI, RPC, and WS-Management). However, remote management through PowerShell Core is still in the early stages.
PowerShell Core does support Windows Remote Management (WinRm) through NLTM and Kerberos connectivity in most scenarios. In scenarios involing macOS, only basic authentication is supported. Most Linux/Windows scenarios are supported through two alternative protocols: Simple and Protected Negotiate (SPNEGO) authentication, which is implemented in the PowerShell Remoting Protocol (https://github.com/powershell/psl-omi-provider), and remoting over SSH (https://github.com/PowerShell/PowerShell/blob/master/demos/SSHRemoting/). If you're interested, you should go...