/openbmc/webui-vue/src/store/modules/Settings/ |
H A D | DateTimeStore.js | 7 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 D | test_bmc_network_protocol.robot | 28 ... 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 D | network_protocol.hpp | 78 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 D | DateTime.vue | 135 :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 D | bmc_date_and_time_utils.robot | 119 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 D | protocol_setting_utils.robot | 78 # "NTPServers": [
|
/openbmc/phosphor-networkd/test/ |
H A D | test_ethernet_interface.cpp | 65 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 D | EthernetInterface.interface.yaml | 64 - name: NTPServers 72 This property describes statically defined NTPServers on the
|
/openbmc/phosphor-time-manager/ |
H A D | README.md | 94 xyz.openbmc_project.Network.EthernetInterface NTPServers \ 100 https://${BMC_IP}/xyz/openbmc_project/network/eth0/attr/NTPServers
|
/openbmc/phosphor-networkd/src/ |
H A D | ethernet_interface.hpp | 114 /** @brief Function used to load the ntpservers 187 ServerList ntpServers(ServerList value) override;
|
H A D | ethernet_interface.cpp | 110 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 D | api-utils.js | 1286 // 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 D | REDFISH-cheatsheet.md | 199 …CH https://${bmc}/redfish/v1/Managers/bmc/NetworkProtocol -d '{"NTP":{"NTPServers":["time.nist.gov…
|
H A D | REST-cheatsheet.md | 193 …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 D | ManagerNetworkProtocol.v1_12_0.json | 469 "NTPServers": { object
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
H A D | ManagerNetworkProtocol.v1_12_0.json | 469 "NTPServers": { object
|
/openbmc/webui-vue/src/locales/ |
H A D | ru-RU.json | 209 "ntpServers": { object
|
H A D | ka-GE.json | 209 "ntpServers": { object
|
H A D | en-US.json | 209 "ntpServers": { object
|
/openbmc/openbmc-tools/openbmctool/ |
H A D | openbmctool.py | 3902 + "/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 D | ManagerNetworkProtocol_v1.xml | 321 <Property Name="NTPServers" Type="Collection(Edm.String)">
|
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/ |
H A D | ManagerNetworkProtocol_v1.xml | 321 <Property Name="NTPServers" Type="Collection(Edm.String)">
|