Home
last modified time | relevance | path

Searched full:gateway (Results 1 – 25 of 380) sorted by relevance

12345678910>>...16

/openbmc/linux/net/batman-adv/
H A Dgateway_common.c22 * gateway setting change
50 * batadv_gw_tvlv_ogm_handler_v1() - process incoming gateway tvlv container
54 * @tvlv_value: tvlv buffer containing the gateway data
62 struct batadv_tvlv_gateway_data gateway, *gateway_ptr; in batadv_gw_tvlv_ogm_handler_v1() local
68 tvlv_value_len < sizeof(gateway)) { in batadv_gw_tvlv_ogm_handler_v1()
69 gateway.bandwidth_down = 0; in batadv_gw_tvlv_ogm_handler_v1()
70 gateway.bandwidth_up = 0; in batadv_gw_tvlv_ogm_handler_v1()
73 gateway.bandwidth_down = gateway_ptr->bandwidth_down; in batadv_gw_tvlv_ogm_handler_v1()
74 gateway.bandwidth_up = gateway_ptr->bandwidth_up; in batadv_gw_tvlv_ogm_handler_v1()
75 if (gateway.bandwidth_down == 0 || in batadv_gw_tvlv_ogm_handler_v1()
[all …]
H A Dgateway_client.c74 * batadv_gw_get_selected_gw_node() - Get currently selected gateway
77 * Return: selected gateway (with increased refcnt), NULL on errors
98 * batadv_gw_get_selected_orig() - Get originator of currently selected gateway
101 * Return: orig_node of selected gateway (with increased refcnt), NULL on errors
147 * batadv_gw_reselect() - force a gateway reselection
150 * Set a flag to remind the GW component to perform a new gateway reselection.
151 * However this function does not ensure that the current gateway is going to be
152 * deselected. The reselection mechanism may elect the same gateway once again.
154 * This means that invoking batadv_gw_reselect() does not guarantee a gateway
181 /* deselect the current gateway so that next time that client mode is in batadv_gw_check_client_stop()
[all …]
/openbmc/openbmc-test-automation/redfish/managers/
H A Dtest_bmc_network_conf.robot74 Get Gateway And Verify
75 [Documentation] Get gateway and verify it's existence on the BMC.
79 Verify Gateway On BMC ${network_configuration['Gateway']}
168 # ip subnet_mask gateway valid_status_codes
177 # ip subnet_mask gateway valid_status_codes
186 # ip subnet_mask gateway valid_status_codes
195 # ip subnet_mask gateway valid_status_codes
282 # ip subnet_mask gateway valid_status_codes
290 # ip subnet_mask gateway valid_status_codes
298 # ip subnet_mask gateway valid_status_codes
[all …]
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-security/trusted-services/corstone1000/
H A D0009-Remove-Werror-flag.patch11 deployments/smm-gateway/config/default-opteesp/CMakeLists.txt | 1 -
12 deployments/smm-gateway/config/default-sp/CMakeLists.txt | 1 -
18 diff --git a/deployments/smm-gateway/config/default-opteesp/CMakeLists.txt b/deployments/smm-gatewa…
20 --- a/deployments/smm-gateway/config/default-opteesp/CMakeLists.txt
21 +++ b/deployments/smm-gateway/config/default-opteesp/CMakeLists.txt
22 @@ -99,7 +99,6 @@ target_compile_definitions(smm-gateway PRIVATE
24 target_compile_options(smm-gateway PRIVATE
30 diff --git a/deployments/smm-gateway/config/default-sp/CMakeLists.txt b/deployments/smm-gateway/con…
32 --- a/deployments/smm-gateway/config/default-sp/CMakeLists.txt
33 +++ b/deployments/smm-gateway/config/default-sp/CMakeLists.txt
[all …]
H A D0017-Implement-Private-Authenticated-Variable-verificatio.patch264 diff --git a/deployments/smm-gateway/config/default-opteesp/CMakeLists.txt b/deployments/smm-gatewa…
266 --- a/deployments/smm-gateway/config/default-opteesp/CMakeLists.txt
267 +++ b/deployments/smm-gateway/config/default-opteesp/CMakeLists.txt
269 add_platform(TARGET "smm-gateway")
276 set(SMM_SP_HEAP_SIZE 64*1024 CACHE STRING "SMM gateway SP heap size")
277 diff --git a/deployments/smm-gateway/config/default-sp/CMakeLists.txt b/deployments/smm-gateway/con…
279 --- a/deployments/smm-gateway/config/default-sp/CMakeLists.txt
280 +++ b/deployments/smm-gateway/config/default-sp/CMakeLists.txt
282 add_platform(TARGET "smm-gateway")
289 set(SMM_SP_HEAP_SIZE 64*1024 CACHE STRING "SMM gateway SP heap size")
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/
H A Dthingsboard-gateway_3.6.3.bb3 The Thingsboard IoT Gateway is an open-source solution that allows you \
14 PYPI_PACKAGE = "thingsboard-gateway"
40 file://thingsboard-gateway.service \
47 SYSTEMD_SERVICE:${PN} = "thingsboard-gateway.service"
56 install -d ${D}${sysconfdir}/thingsboard-gateway/config
59 install -m 0644 "$file" ${D}${sysconfdir}/thingsboard-gateway/config
62 install -m 0644 ${UNPACKDIR}/tb_gateway.yaml ${D}${sysconfdir}/thingsboard-gateway/config
63 install -m 0644 ${UNPACKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config
66 …install -m 0644 ${UNPACKDIR}/thingsboard-gateway.service ${D}${systemd_system_unitdir}/thingsboard…
/openbmc/webui-vue/src/views/Settings/Network/
H A DModalIpv4.vue34 :label="$t('pageNetwork.modal.gateway')"
35 label-for="gateway"
38 id="gateway"
39 v-model="form.gateway"
41 :state="getValidationState(v$.form.gateway)"
42 @input="v$.form.gateway.$touch()"
45 <template v-if="v$.form.gateway.required.$invalid">
48 <template v-if="v$.form.gateway.ipAddress.$invalid">
116 gateway: '',
123 this.form.gateway = this.defaultGateway;
[all …]
/openbmc/linux/tools/testing/selftests/net/
H A Damt.sh7 # There are four network-namespaces, LISTENER, SOURCE, GATEWAY, RELAY.
11 # The role of GATEWAY is to work Gateway role of AMT interface.
28 # | . GATEWAY netns |
77 readonly GATEWAY=$(mktemp -u gateway-XXXXXXXX)
101 ip netns add "${GATEWAY}" || exit_cleanup "${LISTENER}"
102 ip netns add "${RELAY}" || exit_cleanup "${LISTENER}" "${GATEWAY}"
103 ip netns add "${SOURCE}" || exit_cleanup "${LISTENER}" "${GATEWAY}" \
111 exit_cleanup "${LISTENER}" "${GATEWAY}" "${RELAY}" "${SOURCE}"
116 for ns in "${LISTENER}" "${GATEWAY}" "${RELAY}" "${SOURCE}"; do
125 ip link set gw_l netns "${GATEWAY}" up
[all …]
/openbmc/phosphor-networkd/src/
H A Dstatic_gateway.cpp26 std::string gateway, IP::Protocol protocolType) : in StaticGateway() argument
27 StaticGateway(bus, makeObjPath(objRoot, gateway), parent, gateway, in StaticGateway()
34 std::string gateway, IP::Protocol protocolType) : in StaticGateway() argument
39 StaticGatewayObj::gateway(gateway, true); in StaticGateway()
67 std::string StaticGateway::gateway(std::string /*gateway*/) in gateway() function in phosphor::network::StaticGateway
H A Dstatic_gateway.hpp30 * @brief OpenBMC network static gateway implementation.
41 * @param[in] gateway - Gateway address.
45 std::string gateway, IP::Protocol protocolType);
51 using StaticGatewayObj::gateway;
52 std::string gateway(std::string) override;
70 std::string gateway, IP::Protocol protocolType);
H A Dethernet_interface.cpp235 if (!info.gateway) in addStaticGateway()
237 lg2::error("Missing static gateway on {NET_INTF}", "NET_INTF", in addStaticGateway()
252 if (auto it = staticGateways.find(*info.gateway); in addStaticGateway()
255 it->second->StaticGatewayObj::gateway(*info.gateway); in addStaticGateway()
259 staticGateways.emplace(*info.gateway, in addStaticGateway()
262 *info.gateway, protocolType)); in addStaticGateway()
389 ObjectPath EthernetInterface::staticGateway(std::string gateway, in staticGateway() argument
396 addr.emplace(stdplus::fromStr<stdplus::InAnyAddr>(gateway)); in staticGateway()
397 route = gateway; in staticGateway()
401 lg2::error("Not a valid IP address {GATEWAY}: {ERROR}", "GATEWAY", in staticGateway()
[all …]
H A Dethernet_interface.hpp139 * @param[in] gateway - Gateway
142 ObjectPath staticGateway(std::string gateway,
216 /** @brief set the default v4 gateway of the interface.
217 * @param[in] gateway - default v4 gateway of the interface.
219 std::string defaultGateway(std::string gateway) override;
221 /** @brief set the default v6 gateway of the interface.
222 * @param[in] gateway - default v6 gateway of the interface.
224 std::string defaultGateway6(std::string gateway) override;
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DAddressPool.v1_3_0.json310 "description": "The anycast gateway IPv4 address.",
311 …"longDescription": "This property shall contain the anycast gateway IPv4 address for a host subnet…
321 "description": "The anycast gateway MAC address.",
322 …"longDescription": "This property shall contain the anycast gateway MAC address for a host subnet.…
344 "description": "The gateway IPv4 address.",
345 … "longDescription": "This property shall contain the Gateway IPv4 address for a host subnet.",
357 …ongDescription": "This property shall contain the IPv4 address range for gateway nodes on this sub…
455 "description": "Border Gateway Protocol (BGP) neighbor related properties.",
456 …"longDescription": "This type shall contain all Border Gateway Protocol (BGP) neighbor related pro…
473 "description": "Border Gateway Protocol (BGP) neighbor address.",
[all …]
/openbmc/linux/include/uapi/linux/
H A Damt.h9 /* AMT interface works as Gateway mode.
10 * The Gateway mode encapsulates IGMP/MLD traffic and decapsulates
26 /* This attribute specify mode etier Gateway or Relay. */
29 * AMT interface is created as Gateway mode, this attribute is used
35 /* This attribute specify Gateway port.
36 * AMT interface is created as Gateway mode, this attribute is used
50 * When Gateway get started, it send discovery message to find the
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/
H A DMAINTAINERS4 F: board/gardena/smart-gateway-mt7688
5 F: include/configs/gardena-smart-gateway-mt7688.h
6 F: configs/gardena-smart-gateway-mt7688_defconfig
7 F: configs/gardena-smart-gateway-mt7688-ram_defconfig
8 F: arch/mips/dts/gardena-smart-gateway-mt7688.dts
/openbmc/bmcweb/redfish-core/lib/
H A Dethernet.hpp78 std::string gateway; member
102 std::string gateway; member
608 property.first == "Gateway") in extractIPV6Data()
610 // Type & Gateway is not used in extractIPV6Data()
701 property.first == "Gateway") in extractIPData()
703 // Type & Gateway is not used in extractIPData()
724 * @brief Modifies the default gateway assigned to the NIC
726 * @param[in] ifaceId Id of network interface whose default gateway is to be
728 * @param[in] gateway The new gateway value. Assigning an empty string
729 * causes the gateway to be deleted
[all …]
H A Dhypervisor_system.hpp272 property.first == "Gateway") in extractHypervisorInterfaceData()
274 // Type & Gateway is not used in extractHypervisorInterfaceData()
403 * @brief Sets the Hypervisor Interface Gateway DBUS
406 * @param[in] gateway Gateway from the incoming request
413 const std::string& gateway) in setHypervisorIPv4Gateway() argument
416 "Setting the DefaultGateway to the last configured gateway"); in setHypervisorIPv4Gateway()
418 setDbusProperty(asyncResp, "IPv4StaticAddresses/1/Gateway", in setHypervisorIPv4Gateway()
423 "DefaultGateway", gateway); in setHypervisorIPv4Gateway()
431 * @param[in] gateway IPv4 address of this interfaces gateway
439 const std::string& gateway, const std::string& address, in createHypervisorIPv4() argument
[all …]
/openbmc/bmcweb/test/redfish-core/lib/
H A Dethernet_test.cpp42 eth["Gateway"] = "1.1.1.1"; in TEST()
55 EXPECT_EQ(addrOut[0].gateway, "1.1.1.1"); in TEST()
62 // Missing gateway should default to no gateway
80 EXPECT_EQ(addrOut[0].gateway, ""); in TEST()
93 eth["Gateway"] = "1.1.1.1"; in TEST()
96 eth["Gateway"] = "1.1.1.5"; in TEST()
115 eth["Gateway"] = "1.1.1.1"; in TEST()
122 existing.gateway = "192.168.1.1"; in TEST()
167 // and clear gateway
192 // deletion and clear gateway in TEST()
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_network_configuration.robot44 Set IPMI Inband Network Configuration ${STATIC_IP} ${NETMASK} ${GATEWAY}
50 Valid Value lan_print_output['Default Gateway IP'] ["${GATEWAY}"]
70 Should Be Equal ${ip_address['Gateway']} ${GATEWAY}
141 ... ${netmask} ${gateway} interface=${interface}
187 [Arguments] ${ip} ${netmask} ${gateway} ${login}=${1}
192 # gateway The Gateway address to be set using ipmitool-inband.
201 ... lan set ${CHANNEL_NUMBER} defgw ipaddr ${gateway} login_host=${0}
211 ... ${initial_lan_config['Default Gateway IP']} login=${0}
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Network/StaticGateway/
H A DCreate.interface.yaml5 Create a static gateway entry.
7 - name: Gateway
10 Static gateway address
19 The path for the created static gateway object.
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DAddressPool_v1.xml304 <Annotation Term="OData.Description" String="The gateway IPv4 address."/>
305 …<Annotation Term="OData.LongDescription" String="This property shall contain the gateway IPv4 addr…
310 <Annotation Term="OData.Description" String="The anycast gateway IPv4 address."/>
311 …="OData.LongDescription" String="This property shall contain the anycast gateway IPv4 address for …
316 <Annotation Term="OData.Description" String="The anycast gateway MAC address."/>
317 …="OData.LongDescription" String="This property shall contain the anycast gateway MAC address for a…
348 <Annotation Term="OData.Description" String="The gateway IPv4 address."/>
349 …<Annotation Term="OData.LongDescription" String="This property shall contain the Gateway IPv4 addr…
354 <Annotation Term="OData.Description" String="The anycast gateway IPv4 address."/>
355 …="OData.LongDescription" String="This property shall contain the anycast gateway IPv4 address for …
[all …]
/openbmc/openbmc-test-automation/lib/
H A Dbmc_ipv6_utils.robot56 Verify IPv6 Default Gateway On BMC
57 [Documentation] Verify IPv6 default gateway on BMC.
61 # gateway_ip Gateway IPv6 address.
65 # If gateway IP is empty it will not have route entry.
68 ... Pass Execution Gateway IP is not configured.
71 ... msg=Gateway IP address not matching
/openbmc/openbmc-test-automation/lib/external_intf/
H A Dvmi_utils.robot39 [Arguments] ${ip} ${gateway} ${netmask} ${valid_status_code}=${HTTP_ACCEPTED}
44 # gateway Gateway for VMI IP.
49 ${ip_details}= Create dictionary Address=${ip} SubnetMask=${netmask} Gateway=${gateway}
60 ... Verify VMI Network Interface Details ${ip} Static ${gateway} ${netmask} ${interface}
64 [Arguments] ${ip} ${origin} ${gateway} ${netmask}
70 # gateway Gateway for VMI IP.
77 Should Be Equal As Strings ${gateway} ${vmi_ip["IPv4_Gateway"]}
150 ... IPv4_Gateway=${ip_resp["IPv4Addresses"][0]["Gateway"]}
220 Set Static IPv4 Address To VMI And Verify ${vmi_ip} ${bmc_ip_data[0]['Gateway']}
316 Set VMI IPv6 Static Default Gateway
[all …]
/openbmc/linux/sound/soc/sof/
H A Dipc4-topology.h105 * is connected to Gateway
184 * struct sof_copier_gateway_cfg - IPC gateway configuration
185 * @node_id: ID of Gateway Node
186 * @dma_buffer_size: Preferred Gateway DMA buffer size (in bytes)
187 * @config_length: Length of gateway node configuration blob specified in #config_data
188 * config_data: Gateway node configuration blob
202 * @gtw_cfg: Gateway configuration
212 * struct sof_ipc4_gtw_attributes: Gateway attributes
213 * @lp_buffer_alloc: Gateway data requested in low power memory
214 * @alloc_from_reg_file: Gateway data requested in register file memory
[all …]
/openbmc/linux/drivers/net/wireless/ath/wil6210/
H A Dfw.h161 /* 1-dword gateway */
168 /* gateway write block.
170 * through the gateway
179 #define WIL_FW_GW_CTL_BUSY BIT(29) /* gateway busy performing operation */
180 #define WIL_FW_GW_CTL_RUN BIT(30) /* start gateway operation */
185 /* 4-dword gateway */
192 /* gateway write block.
194 * through the gateway

12345678910>>...16