Home
last modified time | relevance | path

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

12

/Zephyr-Core-3.6.0/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-Core-3.6.0/subsys/net/ip/
Dnet_if.c684 struct net_if_router *router = NULL; in iface_router_lookup() local
702 router = &routers[i]; in iface_router_lookup()
710 return router; in iface_router_lookup()
713 static void iface_router_notify_deletion(struct net_if_router *router, in iface_router_notify_deletion() argument
717 router->address.family == AF_INET6) { in iface_router_notify_deletion()
719 net_sprint_ipv6_addr(net_if_router_ipv6(router)), in iface_router_notify_deletion()
723 router->iface, in iface_router_notify_deletion()
724 &router->address.in6_addr, in iface_router_notify_deletion()
727 router->address.family == AF_INET) { in iface_router_notify_deletion()
729 net_sprint_ipv4_addr(net_if_router_ipv4(router)), in iface_router_notify_deletion()
[all …]
Droute.c949 struct net_if_router *router; in net_route_get_info() local
977 router = net_if_ipv6_router_find_default(NULL, dst); in net_route_get_info()
978 if (!router) { in net_route_get_info()
982 *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()
2489 struct net_if_router *router; in handle_ra_input() local
2658 router = net_if_ipv6_router_lookup(net_pkt_iface(pkt), in handle_ra_input()
2660 if (router) { in handle_ra_input()
2665 net_if_ipv6_router_rm(router); in handle_ra_input()
2672 router, router_lifetime); in handle_ra_input()
/Zephyr-Core-3.6.0/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-Core-3.6.0/include/zephyr/net/
Dnet_if.h1182 void net_if_router_rm(struct net_if_router *router);
1592 static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router) in net_if_router_ipv6() argument
1594 NET_ASSERT(router); in net_if_router_ipv6()
1596 return &router->address.in6_addr; in net_if_router_ipv6()
1599 static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router) in net_if_router_ipv6() argument
1603 ARG_UNUSED(router); in net_if_router_ipv6()
1639 void net_if_ipv6_router_update_lifetime(struct net_if_router *router,
1662 bool net_if_ipv6_router_rm(struct net_if_router *router);
2126 static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router) in net_if_router_ipv4() argument
2128 NET_ASSERT(router); in net_if_router_ipv4()
[all …]
/Zephyr-Core-3.6.0/subsys/net/lib/shell/
Diface.c134 struct net_if_router *router; in iface_cb() local
389 router = net_if_ipv6_router_find_default(iface, NULL); in iface_cb()
390 if (router) { in iface_cb()
393 net_sprint_ipv6_addr(&router->address.in6_addr), in iface_cb()
394 router->is_infinite ? " infinite" : ""); in iface_cb()
/Zephyr-Core-3.6.0/modules/openthread/
DKconfig.thread122 previous parent router that they have attached to a new parent
123 router, enable the Inform Previous Parent on Reattach feature.
129 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-Core-3.6.0/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-Core-3.6.0/subsys/net/lib/config/
DKconfig38 bool "This application wants IPv6 router to exists"
42 The network application needs IPv6 router to exists before continuing.
44 IPv6 router advertisement message before continuing.
/Zephyr-Core-3.6.0/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.rst48 * User mode networking emulates a built-in IP router and DHCP server, and
Dqemu_setup.rst154 board is connected to a dedicated router, it should not be needed.
/Zephyr-Core-3.6.0/samples/arch/smp/pktqueue/
DREADME.rst14 IP router system.
/Zephyr-Core-3.6.0/subsys/net/lib/dhcpv4/
Ddhcpv4.c747 struct in_addr router; in dhcpv4_parse_options() local
760 if (net_pkt_read(pkt, router.s4_addr, 4) || in dhcpv4_parse_options()
767 net_sprint_ipv4_addr(&router)); in dhcpv4_parse_options()
768 net_if_ipv4_set_gw(iface, &router); in dhcpv4_parse_options()
/Zephyr-Core-3.6.0/samples/net/dhcpv4_client/
DREADME.rst11 DHCPv4 server, and prints address, lease time, netmask and router
/Zephyr-Core-3.6.0/boards/arm/usb_kw24d512/doc/
Dindex.rst14 network node, border router or as a development board.
/Zephyr-Core-3.6.0/boards/arm/b_l4s5i_iot01a/doc/
Dindex.rst94 - 14-channel DMA controller with multiplex request router
/Zephyr-Core-3.6.0/samples/subsys/mgmt/updatehub/
DREADME.rst42 gateway or some sort of border router. It is out of scope provide such
500 .. _OpenThread Router: https://openthread.io/guides/border-router
/Zephyr-Core-3.6.0/doc/releases/
Drelease-notes-1.8.rst218 * ``ZEP-1032`` - IPSP router role support
Drelease-notes-1.12.rst190 * Add RPL border router sample application.
345 * :github:`3824` - Add RPL border router functionality to Zephyr
Drelease-notes-1.7.rst256 * ``ZEP-1267`` - Echo server crashes upon reception of router advertisement
Drelease-notes-2.2.rst1011 * :github:`21339` - Expired IPv6 router causes an infinite loop

12