Home
last modified time | relevance | path

Searched full:ntp (Results 1 – 25 of 157) sorted by relevance

1234567

/openbmc/openbmc-test-automation/redfish/managers/
H A Dtest_bmc_network_protocol.robot2 Documentation NTP configuration and verification
22 Verify NTP Server Set
23 [Documentation] Patch NTP servers and verify NTP servers is set.
25 [Setup] Set NTP state ${True}
28 ... body={'NTP':{'NTPServers': ['${ntp_server_1}', '${ntp_server_2}']}}
31 # NTP network take few seconds to reload.
32 Wait Until Keyword Succeeds 30 sec 10 sec Verify NTP Servers Are Populated
35 Verify NTP Server Value Not Duplicated
36 [Documentation] Verify NTP servers value not same for both primary and secondary server.
40 ... body={'NTP':{'NTPServers': ['${ntp_server_1}', '${ntp_server_1}']}}
[all …]
H A Dtest_managers_bmc.robot168 [Setup] Run Keywords Update NTP Test Initial Status AND
169 ... Set NTP state ${TRUE}
170 [Teardown] Restore NTP Status
203 Update NTP Test Initial Status
204 [Documentation] Update the initial status of NTP.
207 ${original_ntp}= Redfish.Get Attribute ${REDFISH_NW_PROTOCOL_URI} NTP
211 Set NTP state
212 [Documentation] Set NTP service inactive.
216 # state NTP protocol enabled state (e.g. True, False).
219 Redfish.Patch ${REDFISH_NW_PROTOCOL_URI} body={'NTP':{'ProtocolEnabled': ${state}}}
[all …]
H A Dtest_managers_bmc_time.robot120 Get NTP Initial Status
123 IF ${year_status} == False Enable NTP And Add NTP Address
131 Restore NTP Status
/openbmc/openbmc-test-automation/lib/
H A Dbmc_date_and_time_utils.robot2 Documentation This module provides general keywords for date time and ntp.
62 Redfish.Patch ${REDFISH_NW_PROTOCOL_URI} body={'NTP':{'ProtocolEnabled': ${False}}}
87 Set NTP state
88 [Documentation] Set NTP service inactive.
91 # state NTP protocol state (True/False).
93 Redfish.Patch ${REDFISH_NW_PROTOCOL_URI} body={'NTP':{'ProtocolEnabled': ${state}}}
97 Get NTP Initial Status
98 [Documentation] Get NTP service Status.
100 ${original_ntp}= Redfish.Get Attribute ${REDFISH_NW_PROTOCOL_URI} NTP
104 Restore NTP Status
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ntp/
H A Dntp_4.2.8p18.bb2 DESCRIPTION = "The Network Time Protocol (NTP) is used to \
6 HOMEPAGE = "http://support.ntp.org"
8 LICENSE = "NTP"
13 SRC_URI = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-${PV}.tar.gz \
14 file://ntp-4.2.4_p6-nano.patch \
20 file://ntp.conf \
29 UPSTREAM_CHECK_REGEX = "ntp-(?P<pver>(\d+(\.\d+)+)(p\d+)?)\.tar"
34 CVE_STATUS_NTP[status] = "fixed-version: Yocto CVE check can not handle 'p' in ntp version"
77 NTP_USER_HOME ?= "/var/lib/ntp"
80 --shell /bin/false --user-group ntp"
[all …]
/openbmc/phosphor-webui/app/configuration/controllers/
H A Ddate-time-controller.html5 <h2>Set date and time manually or configure a Network Time Protocol (NTP) Server</h2>
11 …<label class="control-radio" for="ntp-time">Obtain Automatically from a Network Time Protocol (NTP
12 <input type="radio" id="ntp-time" ng-model="time.mode" value="NTP">
17 … <fieldset class="date-time__ntp-servers" ng-repeat="server in ntp.servers track by $index">
18 …<label for="ntp-server{{$index+1}}">NTP Server Address {{$index+1}} <span ng-if="$first">(Primary)…
20 …<input id="ntp-server{{$index+1}}" type="text" ng-readonly="time.mode != 'NTP'" ng-model="server" …
26 … <button type="button" class="btn btn-primary" ng-click="addNTPField()">Add new NTP server</button>
38 …<input type="date" ng-model="bmc.date" ng-readonly="time.mode == 'NTP'" min="2018-01-01" max="2099…
39 <input type="time" ng-model="bmc.date" ng-readonly="time.mode == 'NTP'" />
H A Ddate-time-controller.js18 $scope.ntp = {servers: []}; class in $scope
70 $scope.ntp.servers = data.data;
83 …github.com/openbmc/phosphor-time-manager/blob/master/README.md#special-note-on-changing-ntp-setting
84 * When time mode is initially set to Manual from NTP,
85 * NTP service is disabled and the NTP service is
87 * There are no responses from backend to notify when NTP is stopped.
88 * To work around, a timeout is set to allow NTP to fully stop
133 // Set the Host if Split even if NTP. In split mode, the host has
159 $scope.ntp.servers.push('');
163 $scope.ntp.servers.splice(index, 1);
[all …]
/openbmc/webui-vue/src/views/Settings/DateTime/
H A DDateTime.vue127 value="ntp"
130 NTP
136 label-for="input-ntp-1"
140 id="input-ntp-1"
141 v-model="form.ntp.firstAddress"
142 :state="getValidationState(v$.form.ntp.firstAddress)"
145 @blur="v$.form.ntp.firstAddress.$touch()"
148 <div v-if="v$.form.ntp.firstAddress.required.$invalid">
158 label-for="input-ntp-2"
162 id="input-ntp-2"
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ntpsec/ntpsec/
H A Dvolatiles.ntpsec1 d ntp ntp 0755 @NTP_USER_HOME@ none
2 d ntp ntp 0755 /var/log/ntpstats none
3 f ntp ntp 0644 /var/log/ntpd.log none
/openbmc/webui-vue/src/store/modules/Settings/
H A DDateTimeStore.js24 const ntpServers = response.data.NTP.NTPServers;
25 const isNtpProtocolEnabled = response.data.NTP.ProtocolEnabled;
35 NTP: { class in DateTimeStore.actions.updateDateTime.ntpData
40 ntpData.NTP.NTPServers = dateTimeForm.ntpServersArray;
53 …github.com/openbmc/phosphor-time-manager/blob/master/README.md#special-note-on-changing-ntp-setting
54 * When time mode is initially set to Manual from NTP,
55 * NTP service is disabled and the NTP service is
57 * There are no responses from backend to notify when NTP is stopped.
58 * To work around, a timeout is set to allow NTP to fully stop
/openbmc/phosphor-time-manager/
H A DREADME.md78 - NTP: The time is set via NTP server.
85 | NTP | Fail to set |
88 - To set an NTP [server](https://tf.nist.gov/tf-cgi/servers.cgi):
103 - To go into NTP mode
109 TimeSyncMethod s "xyz.openbmc_project.Time.Synchronization.Method.NTP"
113 '{"data": "xyz.openbmc_project.Time.Synchronization.Method.NTP" }' \
117 ### Special note on changing NTP setting
120 new beahvior that it checks the NTP services' status during setting time,
121 instead of checking the NTP setting:
123 - When NTP server is set to disabled, and the NTP service is stopping but not
H A Dmanager.cpp18 constexpr auto propertyNtp = "NTP";
51 bool oldNtpMode = (Mode::NTP == getTimeMode()); in onPropertyChanged()
57 debug("NTP property changed in phosphor-settings, update to systemd" in onPropertyChanged()
62 debug("NTP mode is already the same, skip setting to systemd time" in onPropertyChanged()
105 bool oldNtpMode = (Mode::NTP == getTimeMode()); in onTimedateChanged()
116 debug("NTP property changed in systemd time service, update to" in onTimedateChanged()
121 debug("NTP mode is already the same, skip setting to" in onTimedateChanged()
127 error("Failed to sync NTP: {ERROR}", "ERROR", ex); in onTimedateChanged()
138 (value == "xyz.openbmc_project.Time.Synchronization.Method.NTP"); in updateNtpSetting()
145 info("Updated NTP setting: {ENABLED}", "ENABLED", isNtp); in updateNtpSetting()
[all …]
H A Dmanager.hpp85 * Notify listeners that time mode is changed and update ntp setting
91 /** @brief Callback to handle change in NTP
111 * @param[in] forceSet - true: Force sync NTP Settings to systemd time
118 /** @brief Update the NTP setting to systemd time service
120 * @param[in] value - The time mode value, e.g. "NTP" or "MANUAL"
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/chrony/chrony/
H A Dchrony.conf4 # Use public NTP servers from the pool.ntp.org project.
8 # read and comply with http://www.pool.ntp.org/vendors.html
9 pool 0.openembedded.pool.ntp.org iburst
38 # Allow NTP client access from local network.
41 # Serve time even if not synchronized to any NTP server.
44 # Specify file containing keys for NTP authentication.
/openbmc/openbmc-test-automation/gui/gui_test/settings_menu/
H A Dtest_date_and_time_sub_menu.robot44 Page Should Contain If NTP is selected but an NTP server is not given or the
45 ... given NTP server is not reachable, then time.google.com will be used.
149 Verify NTP Server Input Fields In Date And Time Page
150 [Documentation] Verify NTP server input fields in date and time page.
161 # Refresh the NTP Page.
203 Verify Changing BMC Time From NTP To Manual
204 [Documentation] Verify that BMC time can be changed from NTP to
209 # Add NTP server for BMC time to sync.
229 # Refresh the NTP Page.
238 Verify Moving From Manual To NTP
[all …]
/openbmc/openbmc/meta-google/recipes-google/systemd/files/
H A D40-gbmc-time.conf7 NTP=2001:4860:4806::
8 NTP=2001:4860:4806:4::
9 NTP=2001:4860:4806:8::
10 NTP=2001:4860:4806:c::
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ntp/ntp/
H A Dntpd4 # Provides: ntp
9 # Short-Description: Start NTP daemon
17 # ntpd init.d script for ntpdc from ntp.isc.org
18 test -x $DAEMON -a -r /etc/ntp.conf || exit 0
42 …start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --startas $DAEMON -- -u ntp:ntp -p $…
H A Dntpd.service7 ExecStart=/usr/sbin/ntpd -u ntp:ntp -n -g
/openbmc/phosphor-time-manager/test/
H A DTestUtils.cpp18 EXPECT_EQ(Mode::NTP, in TEST()
19 strToMode("xyz.openbmc_project.Time.Synchronization.Method.NTP")); in TEST()
34 EXPECT_EQ("xyz.openbmc_project.Time.Synchronization.Method.NTP", in TEST()
35 modeToStr(Mode::NTP)); in TEST()
/openbmc/openbmc/poky/meta/recipes-connectivity/dhcpcd/
H A Ddhcpcd_10.2.2.bb32 # ntp conflicts with chrony
33 PACKAGECONFIG[ntp] = "--with-hook=ntp, , ,ntp"
34 PACKAGECONFIG[chrony] = "--with-hook=ntp, , ,chrony"
/openbmc/u-boot/doc/
H A DREADME.SNTP4 The "sntp" command gets network time from NTP time server and
16 2. Only the 1st NTP server IP, in the option ntp-servers of DHCP, will
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ntpsec/
H A Dntpsec_1.2.2a.bb4 LICENSE = "CC-BY-4.0 & BSD-2-Clause & NTP & BSD-3-Clause & MIT"
9 file://LICENSES/NTP;md5=cb56b7747f86157c78ca81f224806694"
71 NTP_USER_HOME ?= "/var/lib/ntp"
82 cp -r ${S}/etc/ntp.d ${D}${sysconfdir}
118 --shell /bin/false --user-group ntp"
123 SYSTEMD_SERVICE:${PN} = "ntpd.service ntp-wait.service"
/openbmc/openbmc-test-automation/gui/test/server_config/
H A Dtest_obmc_gui_date_and_time_settings.robot15 ${xpath_set_time_from_ntp} //*[@for="ntp-time"]
16 ${xpath_add_new_ntp_server} //button[contains(text(), "Add new NTP server")]
31 ... Protocol (NTP) Server
/openbmc/linux/include/linux/
Dtimex.h
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-core/packagegroups/
H A Dpackagegroup-meta-networking.bb201 ntp sntp ntpdc ntpq ntp-tickadj ntp-utils \
254 # Use ntp and not chrony or ntimed

1234567