/Zephyr-Core-3.6.0/samples/net/wpan_serial/ |
D | README.rst | 59 #. 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/ |
D | net_if.c | 684 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 …]
|
D | route.c | 949 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()
|
D | ipv6_nbr.c | 745 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/ |
D | README.rst | 5 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/ |
D | net_if.h | 1182 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/ |
D | iface.c | 134 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/ |
D | Kconfig.thread | 122 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
|
D | CMakeLists.txt | 42 kconfig_to_ot_option(CONFIG_OPENTHREAD_BACKBONE_ROUTER OT_BACKBONE_ROUTER "Enable backbone router f…
|
/Zephyr-Core-3.6.0/doc/connectivity/networking/api/ |
D | net_config.rst | 50 this option tells that the network application needs IPv6 router to exists 52 until it receives IPv6 router advertisement message before continuing."
|
D | thread.rst | 32 `OpenThread Border Router guide <https://openthread.io/guides/border-router>`_
|
/Zephyr-Core-3.6.0/subsys/net/lib/config/ |
D | Kconfig | 38 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/ |
D | armfvp_user_networking_setup.rst | 16 User mode networking emulates a built-in IP router and DHCP server, and routes
|
D | networking_with_host.rst | 48 * User mode networking emulates a built-in IP router and DHCP server, and
|
D | qemu_setup.rst | 154 board is connected to a dedicated router, it should not be needed.
|
/Zephyr-Core-3.6.0/samples/arch/smp/pktqueue/ |
D | README.rst | 14 IP router system.
|
/Zephyr-Core-3.6.0/subsys/net/lib/dhcpv4/ |
D | dhcpv4.c | 747 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/ |
D | README.rst | 11 DHCPv4 server, and prints address, lease time, netmask and router
|
/Zephyr-Core-3.6.0/boards/arm/usb_kw24d512/doc/ |
D | index.rst | 14 network node, border router or as a development board.
|
/Zephyr-Core-3.6.0/boards/arm/b_l4s5i_iot01a/doc/ |
D | index.rst | 94 - 14-channel DMA controller with multiplex request router
|
/Zephyr-Core-3.6.0/samples/subsys/mgmt/updatehub/ |
D | README.rst | 42 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/ |
D | release-notes-1.8.rst | 218 * ``ZEP-1032`` - IPSP router role support
|
D | release-notes-1.12.rst | 190 * Add RPL border router sample application. 345 * :github:`3824` - Add RPL border router functionality to Zephyr
|
D | release-notes-1.7.rst | 256 * ``ZEP-1267`` - Echo server crashes upon reception of router advertisement
|
D | release-notes-2.2.rst | 1011 * :github:`21339` - Expired IPv6 router causes an infinite loop
|