Lines Matching refs:net
16 See also the :zephyr:code-sample:`net-capture` sample application from the Zephyr
26 On the Linux Host, find the Zephyr `net-tools`_ project, which can either be
27 found in a Zephyr standard installation under the ``tools/net-tools`` directory
32 git clone https://github.com/zephyrproject-rtos/net-tools
34 The ``net-tools`` project provides a configure file to setup IP-to-IP tunnel
41 ./net-setup.sh -c zeth-tunnel.conf
59 ``net-capture.py`` script from ``net-tools`` project to print or save the
60 captured network packets. The ``net-capture.py`` provides an UDP listener,
66 $ ./net-capture.py -i zeth-ip6ip -w capture.pcap
76 The ``net-capture.py`` has following command line options:
81 ./net-capture.py \
93 Instead of the ``net-capture.py`` script, you can for example use ``netcat``
106 .. _`net-tools`: https://github.com/zephyrproject-rtos/net-tools
117 :zephyr-app: samples/net/capture
131 configuration options are enabled (see ``samples/net/capture/prj.conf`` file
136 ``net-shell`` to setup and enable the monitoring.
138 The network packet monitoring needs to be setup first. The ``net-shell`` has
139 ``net capture setup`` command for doing that. The command syntax is
143 net capture setup <remote-ip-addr> <local-ip-addr> <peer-ip-addr>
154 net capture setup 192.0.2.2 2001:db8:200::1 2001:db8:200::2
166 net capture setup 192.0.2.2 [2001:db8:200::1]:9999 [2001:db8:200::2]:9998
172 net capture setup 192.0.2.2 198.51.100.1:9999 198.51.100.2:9998
180 uart:~$ net capture
193 net capture enable 2
200 You can use ``net iface`` command to see what network interfaces are available.
205 ``net capture setup`` so that the IP tunnel is attached to desired network
211 uart:~$ net capture
224 net capture disable
231 net capture cleanup
233 It is not necessary to use ``net-shell`` for configuring the monitoring.