/Zephyr-latest/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-latest/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-latest/subsys/net/ip/ |
D | net_if.c | 714 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 …]
|
D | route.c | 967 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()
|
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() 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/ |
D | net_if.h | 1345 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/ |
D | iface.c | 162 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/ |
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-latest/modules/openthread/ |
D | Kconfig.thread | 128 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
|
D | CMakeLists.txt | 42 kconfig_to_ot_option(CONFIG_OPENTHREAD_BACKBONE_ROUTER OT_BACKBONE_ROUTER "Enable backbone router f…
|
/Zephyr-latest/subsys/net/lib/config/ |
D | Kconfig | 49 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/ |
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 | 49 * User mode networking emulates a built-in IP router and DHCP server, and
|
D | qemu_setup.rst | 156 board is connected to a dedicated router, it should not be needed.
|
/Zephyr-latest/samples/net/wifi/apsta_mode/ |
D | README.rst | 18 2. ``STA mode``: Provide the SSID and PSK of you router
|
/Zephyr-latest/samples/arch/smp/pktqueue/ |
D | README.rst | 14 IP router system.
|
/Zephyr-latest/samples/net/secure_mqtt_sensor_actuator/ |
D | README.rst | 42 (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/ |
D | dhcpv4.c | 1030 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/ |
D | README.rst | 11 DHCPv4 server, and prints address, lease time, netmask and router
|
/Zephyr-latest/tests/net/ipv6/src/ |
D | main.c | 982 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/ |
D | index.rst | 11 network node, border router or as a development board.
|
/Zephyr-latest/boards/st/b_l4s5i_iot01a/doc/ |
D | index.rst | 87 - 14-channel DMA controller with multiplex request router
|
/Zephyr-latest/samples/subsys/mgmt/updatehub/ |
D | README.rst | 42 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/ |
D | README.rst | 288 ot-ctl router table
|