Home
last modified time | relevance | path

Searched full:ntpservers (Results 1 – 22 of 22) sorted by relevance

/openbmc/webui-vue/src/store/modules/Settings/
H A DDateTimeStore.js7 ntpServers: [], property in DateTimeStore.state
11 ntpServers: (state) => state.ntpServers,
15 setNtpServers: (state, ntpServers) => (state.ntpServers = ntpServers),
24 const ntpServers = response.data.NTP.NTPServers;
26 commit('setNtpServers', ntpServers);
40 ntpData.NTP.NTPServers = dateTimeForm.ntpServersArray;
/openbmc/openbmc-test-automation/redfish/managers/
H A Dtest_bmc_network_protocol.robot28 ... body={'NTP':{'NTPServers': ['${ntp_server_1}', '${ntp_server_2}']}}
40 ... body={'NTP':{'NTPServers': ['${ntp_server_1}', '${ntp_server_1}']}}
43 Should Contain X Times ${network_protocol["NTP"]["NTPServers"]} ${ntp_server_1} 1
53 ... body={'NTP':{'NTPServers': ['${ntp_server_1}', '${ntp_server_2}']}}
109 ... body={'NTP':{'NTPServers': ['${ntp_server_1}']}}
112 # Verify the NTP server is populated in NTPServers.
114 Should Contain ${network_protocol["NTP"]["NTPServers"]} ${ntp_server_1}
140 ... body={'NTP':{'NTPServers': ['${EMPTY}', '${EMPTY}']}}
/openbmc/bmcweb/redfish-core/lib/
H A Dnetwork_protocol.hpp78 const std::vector<std::string>* ntpServers = in extractNTPServersAndDomainNamesData() local
81 if (ntpServers != nullptr) in extractNTPServersAndDomainNamesData()
83 ntpData.insert(ntpData.end(), ntpServers->begin(), in extractNTPServersAndDomainNamesData()
84 ntpServers->end()); in extractNTPServersAndDomainNamesData()
87 else if (propertyPair.first == "NTPServers") in extractNTPServersAndDomainNamesData()
124 std::vector<std::string> ntpServers; in getEthernetIfaceData() local
130 callback(false, ntpServers, dynamicNtpServers, domainNames); in getEthernetIfaceData()
134 extractNTPServersAndDomainNamesData(dbusData, ntpServers, in getEthernetIfaceData()
137 callback(true, ntpServers, dynamicNtpServers, domainNames); in getEthernetIfaceData()
223 const std::vector<std::string>& ntpServers, in getNetworkData()
[all …]
/openbmc/webui-vue/src/views/Settings/DateTime/
H A DDateTime.vue135 :label="$t('pageDateTime.form.ntpServers.server1')"
157 :label="$t('pageDateTime.form.ntpServers.server2')"
172 :label="$t('pageDateTime.form.ntpServers.server3')"
280 ...mapState('dateTime', ['ntpServers', 'isNtpProtocolEnabled']),
301 ntpServers() {
340 ] = [this.ntpServers[0], this.ntpServers[1], this.ntpServers[2]];
380 [this.ntpServers[0], this.ntpServers[1], this.ntpServers[2]] = [
/openbmc/openbmc-test-automation/lib/
H A Dbmc_date_and_time_utils.robot119 Should Contain ${network_protocol["NTP"]["NTPServers"]} ${ntp_server_1}
121 Should Contain ${network_protocol["NTP"]["NTPServers"]} ${ntp_server_2}
150 Redfish.Patch ${REDFISH_NW_PROTOCOL_URI} body={'NTP':{'NTPServers': ${NTP_SERVER_ADDRESSES}}}
H A Dprotocol_setting_utils.robot78 # "NTPServers": [
/openbmc/phosphor-networkd/test/
H A Dtest_ethernet_interface.cpp65 ServerList ntpServers = {"10.1.1.1", "10.2.2.2", "10.3.3.3"}; in setNtpServers() local
66 interface.EthernetInterfaceIntf::ntpServers(ntpServers); in setNtpServers()
71 return interface.EthernetInterfaceIntf::ntpServers(); in getNtpServers()
179 EXPECT_THROW(interface.ntpServers(servers), NotAllowed); in TEST_F()
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Network/
H A DEthernetInterface.interface.yaml64 - name: NTPServers
72 This property describes statically defined NTPServers on the
/openbmc/phosphor-time-manager/
H A DREADME.md94 xyz.openbmc_project.Network.EthernetInterface NTPServers \
100 https://${BMC_IP}/xyz/openbmc_project/network/eth0/attr/NTPServers
/openbmc/phosphor-networkd/src/
H A Dethernet_interface.hpp114 /** @brief Function used to load the ntpservers
187 ServerList ntpServers(ServerList value) override;
H A Dethernet_interface.cpp110 EthernetInterfaceIntf::ntpServers( in EthernetInterface()
581 EthernetInterfaceIntf::ntpServers(networkSuppliedServers); in loadNTPServers()
736 ServerList EthernetInterface::ntpServers(ServerList /*servers*/) in ntpServers() function in phosphor::network::EthernetInterface
/openbmc/phosphor-webui/app/common/services/
H A Dapi-utils.js1286 // Even though NTPServers is a network interface specific path
1287 // (e.g. /xyz/openbmc_project/network/eth0/attr/NTPServers) it acts
1295 '/xyz/openbmc_project/network/eth0/attr/NTPServers',
1302 setNTPServers: function(ntpServers) { argument
1306 '/xyz/openbmc_project/network/eth0/attr/NTPServers',
1308 data: JSON.stringify({'data': ntpServers})
/openbmc/docs/
H A DREDFISH-cheatsheet.md199 …CH https://${bmc}/redfish/v1/Managers/bmc/NetworkProtocol -d '{"NTP":{"NTPServers":["time.nist.gov…
H A DREST-cheatsheet.md193 …UT -d '{"data": ["pool.ntp.org"] }' https://${bmc}/xyz/openbmc_project/network/eth0/attr/NTPServers
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/
H A DManagerNetworkProtocol.v1_12_0.json469 "NTPServers": { object
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DManagerNetworkProtocol.v1_12_0.json469 "NTPServers": { object
/openbmc/webui-vue/src/locales/
H A Dru-RU.json209 "ntpServers": { object
H A Dka-GE.json209 "ntpServers": { object
H A Den-US.json209 "ntpServers": { object
/openbmc/openbmc-tools/openbmctool/
H A Dopenbmctool.py3902 + "/attr/NTPServers"
3927 + "/attr/NTPServers"
3929 data = {"data": args.NTPServers.split(",")}
5221 parser_setNTP.add_argument("-N", "--NTPServers", required=True,
5222 help="Ex: NTPSERVERS=NTP1,NTP2,...")
/openbmc/bmcweb/redfish-core/schema/dmtf/installed/
H A DManagerNetworkProtocol_v1.xml321 <Property Name="NTPServers" Type="Collection(Edm.String)">
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DManagerNetworkProtocol_v1.xml321 <Property Name="NTPServers" Type="Collection(Edm.String)">