Versiones de SMB y como habilitarlas en Windows Server 2012

 

Hola a todos

En post anteriores os comentábamos las novedades de SMB 3.0, en este post os vamos a hablar de las distintas versiones de SMB y de como habilitarlas en Windows Server 2012

En la siguiente tabla podemos ver las versiones que se usan dependiendo del sistema operativo del cliente y del servidor:

 

Cliente / Servidor

Windows 8 Windows Server 2012

Windows 7 Windows Server 2008 R2

Windows Vista Windows Server 2008

Versiones anteriores de Windows

Windows 8 Windows Server 2012

SMB 3.0

SMB 2.1

SMB 2.0

SMB 1.0

Windows 7 Windows Server 2008 R2

SMB 2.1

SMB 2.1

SMB 2.0

SMB 1.0

Windows Vista Windows Server 2008

SMB 2.0

SMB 2.0

SMB 2.0

SMB 1.0

Previous versions of Windows

SMB 1.0

SMB 1.0

SMB 1.0

SMB 1.0 Bottom of Form

 

 

En Windows Server 2012 podemos habilitar o deshabilitar los distintos protocolos SMB mediante comandos Powershell, evitando así tener que modificar claves de registro:

 

· Para ver la configuración actual:

Get-SmbServerConfiguration | Select EnableSMB1Protocol, EnableSMB2Protocol

 

· Para deshabilitar SMB1:

 

Set-SmbServerConfiguration -EnableSMB1Protocol $false

 

· Para deshabilitar SMB2/SMB3:

 

Set-SmbServerConfiguration -EnableSMB2Protocol $false

 

· Para habilitar SMB1:

 

Set-SmbServerConfiguration -EnableSMB1Protocol $true

 

· Para habilitar SMB2/SMB3:

 

Set-SmbServerConfiguration -EnableSMB2Protocol $true

Un saludo

Arancha Alvarez Sierra