Lines Matching +full:assigned +full:- +full:address
15 The :zephyr:code-sample:`sockets-echo-server` application from the Zephyr source
27 address.
29 You can check that network device is created and MAC address assigned by
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…
42 To establish network connection to the board we need to choose IP address
51 .. code-block:: console
66 This command shows that one IPv4 address and two IPv6 addresses have
67 been assigned to the board. We can use either IPv4 or IPv6 for network
74 Setting IPv4 address and routing
77 .. code-block:: console
79 # ip address add dev enx00005e005301 192.0.2.2
83 Setting IPv6 address and routing
86 .. code-block:: console
88 # ip address add dev enx00005e005301 2001:db8::2
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