Lines Matching +full:ip +full:- +full:addr
15 The :zephyr:code-sample:`sockets-echo-server` application from the Zephyr source
23 interface, we need to assign IP addresses and set up a routing table for
32 .. code-block:: console
34 …cdc_ether 1-2.7:1.0 eth0: register 'cdc_ether' at usb-0000:00:01.2-2.7, CDC Ethernet Device, 00:00…
36 We need to set it up and assign IP addresses as explained in the following
39 Choosing IP addresses
42 To establish network connection to the board we need to choose IP address
46 application. IP addresses usually set in the project configuration files
51 .. code-block:: console
57 Link addr : 00:00:5E:00:53:00
70 Next step is to assign IP addresses to the new Linux host interface, in
77 .. code-block:: console
79 # ip address add dev enx00005e005301 192.0.2.2
80 # ip link set enx00005e005301 up
81 # ip route add 192.0.2.0/24 dev enx00005e005301
86 .. code-block:: console
88 # ip address add dev enx00005e005301 2001:db8::2
89 # ip link set enx00005e005301 up
90 # ip -6 route add 2001:db8::/64 dev enx00005e005301
95 From the host we can test the connection by pinging Zephyr IP address of
98 .. code-block:: console