Mostrando entradas con la etiqueta NTP. Mostrar todas las entradas
Mostrando entradas con la etiqueta NTP. Mostrar todas las entradas

27 marzo 2013

Adding NTP server with POWERCLI


>Add NTP Server:
Get-VMHost -Name * | Add-VmHostNtpServer -NtpServer "ntp-server"

>Restart NTP service:
Get-VMHostService * | Where-Object {$_.key -eq "ntpd"} | Restart-VMHostService -Confirm:$false

>Set NTP to start and stop with the host (policy ON):
Get-VMHost * | Get-VMHostService |  where {$_.Key -eq "ntpd"} | Set-VMHostService -Policy On


25 enero 2012

#VMware #vSphere #PowerCLI: consultar si las VM sincronizan con el host #ESXi (Synchronize guest time with host)


Para consultar si las VM de nuestro vCenter o Host tienen el check marcado para sincronicen la hora con el propio host donde esten inventariadas, podemos consultarlo en modo grafico a traves de las propias tools de la mv, o desde las settings de la VM (Synchronize guest time with host)


Pero cuando tenemos muchas mv´s, el mejor modo es realizarlo es mediante PowerCLI y estos sencillos scripts:

Con este listas las VM que No tiene el check marcado para sincronizar con el host:

get-vm |where { ( %{ get-view $_.Id } | where { $_.Config.Tools.SyncTimeWithHost -ne "True" } ) } | select name


Con este otro listas lasVM que SI tienen el check marcado para sincronizar con el host:

get-vm |where { ( %{ get-view $_.Id } | where { $_.Config.Tools.SyncTimeWithHost } ) } | select name