Home
last modified time | relevance | path

Searched refs:router (Results 1 – 25 of 33) sorted by relevance

12

/Zephyr-latest/samples/net/wpan_serial/
DREADME.rst59 #. Run Contiki-based native border router (6lbr, native-router, etc)
64 $ cd examples/ipv6/native-border-router
66 $ sudo ./border-router.native -v5 -s ttyACM0 fd01::1/64
68 Now you have a Contiki native board router. You can access its web-based
70 border-router output.
/Zephyr-latest/samples/net/openthread/coprocessor/
DREADME.rst5 Build a Thread border-router using OpenThread's co-processor designs.
17 https://openthread.io/guides/border-router/build#set-up-the-border-router.
/Zephyr-latest/subsys/net/ip/
Dnet_if.c714 struct net_if_router *router = NULL; in iface_router_lookup() local
732 router = &routers[i]; in iface_router_lookup()
740 return router; in iface_router_lookup()
743 static void iface_router_notify_deletion(struct net_if_router *router, in iface_router_notify_deletion() argument
747 router->address.family == AF_INET6) { in iface_router_notify_deletion()
749 net_sprint_ipv6_addr(net_if_router_ipv6(router)), in iface_router_notify_deletion()
753 router->iface, in iface_router_notify_deletion()
754 &router->address.in6_addr, in iface_router_notify_deletion()
757 router->address.family == AF_INET) { in iface_router_notify_deletion()
759 net_sprint_ipv4_addr(net_if_router_ipv4(router)), in iface_router_notify_deletion()
[all …]
Droute.c967 struct net_if_router *router; in net_route_get_info() local
995 router = net_if_ipv6_router_find_default(NULL, dst); in net_route_get_info()
996 if (!router) { in net_route_get_info()
1000 *nexthop = &router->address.in6_addr; in net_route_get_info()
Dipv6_nbr.c745 struct net_if_router *router; in check_route() local
769 router = net_if_ipv6_router_find_default(NULL, dst); in check_route()
770 if (!router) { in check_route()
783 nexthop = &router->address.in6_addr; in check_route()
785 NET_DBG("Router %p nexthop %s", router, in check_route()
2552 struct net_if_router *router; in handle_ra_input() local
2721 router = net_if_ipv6_router_lookup(net_pkt_iface(pkt), in handle_ra_input()
2723 if (router) { in handle_ra_input()
2728 net_if_ipv6_router_rm(router); in handle_ra_input()
2735 router, router_lifetime); in handle_ra_input()
/Zephyr-latest/include/zephyr/net/
Dnet_if.h1345 void net_if_router_rm(struct net_if_router *router);
1780 static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router) in net_if_router_ipv6() argument
1782 if (router == NULL) { in net_if_router_ipv6()
1786 return &router->address.in6_addr; in net_if_router_ipv6()
1789 static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router) in net_if_router_ipv6() argument
1793 ARG_UNUSED(router); in net_if_router_ipv6()
1829 void net_if_ipv6_router_update_lifetime(struct net_if_router *router,
1852 bool net_if_ipv6_router_rm(struct net_if_router *router);
2417 static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router) in net_if_router_ipv4() argument
2419 if (router == NULL) { in net_if_router_ipv4()
[all …]
/Zephyr-latest/subsys/net/lib/shell/
Diface.c162 struct net_if_router *router; in iface_cb() local
421 router = net_if_ipv6_router_find_default(iface, NULL); in iface_cb()
422 if (router) { in iface_cb()
425 net_sprint_ipv6_addr(&router->address.in6_addr), in iface_cb()
426 router->is_infinite ? " infinite" : ""); in iface_cb()
/Zephyr-latest/doc/connectivity/networking/api/
Dnet_config.rst50 this option tells that the network application needs IPv6 router to exists
52 until it receives IPv6 router advertisement message before continuing."
Dthread.rst32 `OpenThread Border Router guide <https://openthread.io/guides/border-router>`_
/Zephyr-latest/modules/openthread/
DKconfig.thread128 previous parent router that they have attached to a new parent
129 router, enable the Inform Previous Parent on Reattach feature.
135 better parent router than their current one—while still attached
DCMakeLists.txt42 kconfig_to_ot_option(CONFIG_OPENTHREAD_BACKBONE_ROUTER OT_BACKBONE_ROUTER "Enable backbone router f…
/Zephyr-latest/subsys/net/lib/config/
DKconfig49 bool "This application wants IPv6 router to exists"
52 The network application needs IPv6 router to exists before continuing.
54 IPv6 router advertisement message before continuing.
/Zephyr-latest/doc/connectivity/networking/
Darmfvp_user_networking_setup.rst16 User mode networking emulates a built-in IP router and DHCP server, and routes
Dnetworking_with_host.rst49 * User mode networking emulates a built-in IP router and DHCP server, and
Dqemu_setup.rst156 board is connected to a dedicated router, it should not be needed.
/Zephyr-latest/samples/net/wifi/apsta_mode/
DREADME.rst18 2. ``STA mode``: Provide the SSID and PSK of you router
/Zephyr-latest/samples/arch/smp/pktqueue/
DREADME.rst14 IP router system.
/Zephyr-latest/samples/net/secure_mqtt_sensor_actuator/
DREADME.rst42 (for locally hosted Mosquitto broker) or your internet router
89 - By connecting the board to your internet router, it should automatically be assigned
/Zephyr-latest/subsys/net/lib/dhcpv4/
Ddhcpv4.c1030 struct in_addr router; in dhcpv4_parse_options() local
1043 if (net_pkt_read(pkt, router.s4_addr, 4) || in dhcpv4_parse_options()
1050 net_sprint_ipv4_addr(&router)); in dhcpv4_parse_options()
1051 net_if_ipv4_set_gw(iface, &router); in dhcpv4_parse_options()
/Zephyr-latest/samples/net/dhcpv4_client/
DREADME.rst11 DHCPv4 server, and prints address, lease time, netmask and router
/Zephyr-latest/tests/net/ipv6/src/
Dmain.c982 struct net_if_router *router; in verify_rs_on_iface_event() local
993 router = net_if_ipv6_router_lookup(TEST_NET_IF, &test_router_addr); in verify_rs_on_iface_event()
994 if (router) { in verify_rs_on_iface_event()
995 (void)net_if_ipv6_router_rm(router); in verify_rs_on_iface_event()
/Zephyr-latest/boards/nxp/usb_kw24d512/doc/
Dindex.rst11 network node, border router or as a development board.
/Zephyr-latest/boards/st/b_l4s5i_iot01a/doc/
Dindex.rst87 - 14-channel DMA controller with multiplex request router
/Zephyr-latest/samples/subsys/mgmt/updatehub/
DREADME.rst42 gateway or some sort of border router. It is out of scope provide such
463 .. _OpenThread Router: https://openthread.io/guides/border-router
/Zephyr-latest/samples/net/sockets/echo_client/
DREADME.rst288 ot-ctl router table

12