En Microsoft han modificado los periodos de liberación de versiones de sus productos, y ahora ya no harán entregas cada 3 años como regularmente ocurría, sino que las distribuciones ahora serán semestrales. Windows Server es uno de los productos que da inicio a estas ediciones con la distribución 1709, lo que significa que fue liberado el mes de septiembre de 2017.
Este sistema operativo viene basado a x64, es un servidor core, es decir no viene con interfaz gráfica, y se puede administrar desde un equipo cliente con las Remote Server Administration Tools, o con una nueva consola de administración que se denomina Honolulu, en ambos casos se encuentran en beta al momento de escribir esto, pero se pueden descargar del sitio de www.microsoft.com/downloads
Una vez instalado el servidor por defecto queda en línea de comandos (CMD), pero desde esta podemos iniciar un PowerShell, configurar una dirección IP, usar NETSH para configurar el firewall y que permita PING o el RDP.
Aquí copio lo que hice en mi escenario.
C:\Users\Student>powershell
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
PS C:\Users\Student> Get-NetAdapter
Name InterfaceDescription ifIndex Status MacAddress LinkSpeed
—- ——————– ——- —— ———- ———
Ethernet 3 Microsoft Hyper-V Network Adapter #3 2 Up 00-0D-3A-76-73-55 40 Gbps
PS C:\Users\Student> Get-NetIPAddress
IPAddress : fe80::8034:7d4:e095:5b52%2
InterfaceIndex : 2
InterfaceAlias : Ethernet 3
AddressFamily : IPv6
Type : Unicast
PrefixLength : 64
PrefixOrigin : WellKnown
SuffixOrigin : Link
AddressState : Preferred
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : ActiveStore
IPAddress : fe80::3007:386a:f5ff:fff9%9
InterfaceIndex : 9
InterfaceAlias : Teredo Tunneling Pseudo-Interface
AddressFamily : IPv6
Type : Unicast
PrefixLength : 64
PrefixOrigin : WellKnown
SuffixOrigin : Link
AddressState : Preferred
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : ActiveStore
IPAddress : 2001:0:4137:9e76:3007:386a:f5ff:fff9
InterfaceIndex : 9
InterfaceAlias : Teredo Tunneling Pseudo-Interface
AddressFamily : IPv6
Type : Unicast
PrefixLength : 64
PrefixOrigin : RouterAdvertisement
SuffixOrigin : Link
AddressState : Preferred
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : ActiveStore
IPAddress : ::1
InterfaceIndex : 1
InterfaceAlias : Loopback Pseudo-Interface 1
AddressFamily : IPv6
Type : Unicast
PrefixLength : 128
PrefixOrigin : WellKnown
SuffixOrigin : WellKnown
AddressState : Preferred
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : ActiveStore
IPAddress : 10.0.0.6
InterfaceIndex : 2
InterfaceAlias : Ethernet 3
AddressFamily : IPv4
Type : Unicast
PrefixLength : 20
PrefixOrigin : Dhcp
SuffixOrigin : Dhcp
AddressState : Preferred
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : ActiveStore
IPAddress : 127.0.0.1
InterfaceIndex : 1
InterfaceAlias : Loopback Pseudo-Interface 1
AddressFamily : IPv4
Type : Unicast
PrefixLength : 8
PrefixOrigin : WellKnown
SuffixOrigin : WellKnown
AddressState : Preferred
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : ActiveStore
PS C:\Users\Student> netsh advfirewall firewall set rule group=»remote desktop» new enable=Yes
Updated 3 rule(s).
Ok.
PS C:\Users\Student> netsh advfirewall firewall set rule group=»File and Printer Sharing» new enable=Yes
Updated 18 rule(s).
Ok.
PS C:\Users\Student> netsh advfirewall firewall add rule name=»ICMP Allow incoming V4 echo request» protocol=icmpv4:8,any dir=in action=allow
Ok.
PS C:\Users\Student> Enable-PSRemoting
PS C:\Users\Student> set-item WSMan:\localhost\Client\TrustedHosts *
WinRM Security Configuration.
This command modifies the TrustedHosts list for the WinRM client. The computers in the TrustedHosts list might not be authenticated. The client might send
credential information to these computers. Are you sure that you want to modify this list?
[Y] Yes [N] No [S] Suspend [?] Help (default is «Y»): Y
PS C:\Users\Student>
Este es el Server Manager desde mi estación cliente con Remote Server Administration Tools RSAT for 1709
Esta por otro lado es la nueva consola Honolulu. Que va por vía web, y requiere acceso por WMI. Me agrado que es super liviana, te da mas acceso y control sobre el servidor, administración de los usuarios, eventos, servicios, certificados, discos, carpetas, roles y características.