/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/include/zephyr/net/ |
D | net_if.h | 1410 void net_if_router_rm(struct net_if_router *router); 1845 static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router) in net_if_router_ipv6() argument 1847 if (router == NULL) { in net_if_router_ipv6() 1851 return &router->address.in6_addr; in net_if_router_ipv6() 1854 static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router) in net_if_router_ipv6() argument 1858 ARG_UNUSED(router); in net_if_router_ipv6() 1894 void net_if_ipv6_router_update_lifetime(struct net_if_router *router, 1917 bool net_if_ipv6_router_rm(struct net_if_router *router); 2482 static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router) in net_if_router_ipv4() argument 2484 if (router == NULL) { in net_if_router_ipv4() [all …]
|
/Zephyr-latest/subsys/net/ip/ |
D | net_if.c | 716 struct net_if_router *router = NULL; in iface_router_lookup() local 734 router = &routers[i]; in iface_router_lookup() 742 return router; in iface_router_lookup() 745 static void iface_router_notify_deletion(struct net_if_router *router, in iface_router_notify_deletion() argument 749 router->address.family == AF_INET6) { in iface_router_notify_deletion() 751 net_sprint_ipv6_addr(net_if_router_ipv6(router)), in iface_router_notify_deletion() 755 router->iface, in iface_router_notify_deletion() 756 &router->address.in6_addr, in iface_router_notify_deletion() 759 router->address.family == AF_INET) { in iface_router_notify_deletion() 761 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 | 732 struct net_if_router *router; in check_route() local 756 router = net_if_ipv6_router_find_default(NULL, dst); in check_route() 757 if (!router) { in check_route() 770 nexthop = &router->address.in6_addr; in check_route() 772 NET_DBG("Router %p nexthop %s", router, in check_route() 2531 struct net_if_router *router; in handle_ra_input() local 2703 router = net_if_ipv6_router_lookup(net_pkt_iface(pkt), in handle_ra_input() 2705 if (router) { in handle_ra_input() 2710 net_if_ipv6_router_rm(router); in handle_ra_input() 2717 router, router_lifetime); in handle_ra_input()
|
/Zephyr-latest/subsys/net/lib/shell/ |
D | iface.c | 162 struct net_if_router *router; in iface_cb() local 425 router = net_if_ipv6_router_find_default(iface, NULL); in iface_cb() 426 if (router) { in iface_cb() 429 net_sprint_ipv6_addr(&router->address.in6_addr), in iface_cb() 430 router->is_infinite ? " infinite" : ""); in iface_cb()
|
/Zephyr-latest/samples/net/openthread/coap/ |
D | README.rst | 84 router 87 A valid state could be child, router or leader. 115 router 176 .. _OpenThread Border Router: https://openthread.io/codelabs/openthread-border-router-nat64
|
/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
|
/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/subsys/net/lib/dhcpv4/ |
D | Kconfig | 185 bool "Set the router option in the DHCP server response" 188 If enabled, set the DHCP router option pointing to the interface own
|
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/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/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 | 974 struct net_if_router *router; in verify_rs_on_iface_event() local 985 router = net_if_ipv6_router_lookup(TEST_NET_IF, &test_router_addr); in verify_rs_on_iface_event() 986 if (router) { in verify_rs_on_iface_event() 987 (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
|