Lines Matching +full:net +full:- +full:tools
1 .. zephyr:code-sample:: dns-resolve
3 :relevant-api: dns_resolve net_mgmt
14 - If IPv4 is enabled, then A record for ``www.zephyrproject.org`` is
16 - If IPv6 is enabled, then AAAA record for ``www.zephyrproject.org`` is
18 - If mDNS is enabled, then ``zephyr.local`` name is resolved.
23 - :ref:`networking_with_host`
25 - screen terminal emulator or equivalent.
27 - For most boards without ethernet, the ENC28J60 Ethernet module is required.
29 - dnsmasq application. The dnsmasq version used in this sample is:
31 .. code-block:: console
33 dnsmasq -v
34 Dnsmasq version 2.76 Copyright (c) 2000-2016 Simon Kelley
50 .. code-block:: cfg
62 installation, the sample dnsmasq start script can be found in the `net-tools`_
63 project or downloaded from https://github.com/zephyrproject-rtos/net-tools.
67 .. code-block:: console
69 $ cd net-tools
78 .. code-block:: cfg
85 net-tools uses port 5353 to allow executing the daemon without
90 .. code-block:: console
96 .. code-block:: console
98 $ killall -s KILL dnsmasq
102 For testing mDNS, use Avahi script in net-tools project:
104 .. code-block:: console
106 $ cd net-tools
107 $ ./avahi-daemon.sh
109 .. _`net-tools`: https://github.com/zephyrproject-rtos/net-tools target
117 .. code-block:: cfg
120 CONFIG_NET_HOSTNAME="zephyr-device"
139 .. zephyr-app-commands::
140 :zephyr-app: samples/net/dns_resolve
145 See :zephyr:board:`Freedom-K64F board documentation <frdm_k64f>` for more information
150 .. code-block:: console
159 Wi-Fi
162 The IPv4 Wi-Fi support can be enabled in the sample with
163 :ref:`Wi-Fi snippet <snippet-wifi-ipv4>`.