Skip to content

NTP Policy

An NTP Policy configures the NTP service on UCS servers and IMC endpoints, specifying NTP servers and the timezone for time synchronization.

Location in Intersight GUI: Policies » NTP

Diagram

policies (compute.intersight.organizations)

Section titled “policies (compute.intersight.organizations)”
NameTypeConstraintMandatoryDefault Value
ntpList[ntp]No

ntp (compute.intersight.organizations.policies)

Section titled “ntp (compute.intersight.organizations.policies)”
NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$Yes
descriptionStringNo
managedBooleantrue, falseNotrue
tagsList[tags]No
enabledBooleantrue, falseNotrue
timezoneStringNoUTC
ntp_serversListStringNo
authenticated_ntp_serversList[authenticated_ntp_servers]No

tags (compute.intersight.organizations.policies.ntp)

Section titled “tags (compute.intersight.organizations.policies.ntp)”
NameTypeConstraintMandatoryDefault Value
keyStringYes
valueStringYes

authenticated_ntp_servers (compute.intersight.organizations.policies.ntp)

Section titled “authenticated_ntp_servers (compute.intersight.organizations.policies.ntp)”
NameTypeConstraintMandatoryDefault Value
server_nameStringYes
key_typeChoiceSHA1No
sym_key_idIntegermin: 1No
sym_key_valueStringNo

Example-1: Configure an NTP policy with public NTP servers and UTC timezone.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ntp:
- name: MyNtpPolicy
enabled: true
timezone: UTC
ntp_servers:
- 0.pool.ntp.org
- 1.pool.ntp.org
tags:
- key: env
value: prod

Example-2: Configure an NTP policy with authenticated NTP servers.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ntp:
- name: MyAuthNtpPolicy
enabled: true
timezone: America/New_York
authenticated_ntp_servers:
- server_name: ntp.internal.example.com
key_type: SHA1
sym_key_id: 1
sym_key_value: !env NTP_KEY_VALUE

Example-3: Apply tags to an NTP policy for environment and owner tracking. Tags are supported on all policies, pools, and templates using the same syntax.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ntp:
- name: MyTaggedNtpPolicy
enabled: true
timezone: UTC
ntp_servers:
- 0.pool.ntp.org
tags:
- key: env
value: prod
- key: owner
value: network-ops