diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index 886ae053c9..939e7373cf 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -2605,7 +2605,7 @@ nsh> get CONFIG_NET && CONFIG_NET_UDP && - CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_NET_BUFSIZE >= 5581 + CONFIG_NFILE_DESCRIPTORS > 0 && MTU >= 5581 CONFIG_NSH_DISABLE_GET @@ -2711,7 +2711,7 @@ nsh> put CONFIG_NET && CONFIG_NET_UDP && - CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_NET_BUFSIZE >= 5581,2 + CONFIG_NFILE_DESCRIPTORS > 0 && MTU >= 5581,2 CONFIG_NSH_DISABLE_PUT @@ -3254,10 +3254,12 @@ set FOOBAR ABC_${FOO}_${BAR} - CONFIG_NET_BUFSIZE=650 (or larger) + CONFIG_NET_ETH_MTU=650 (or larger) Per RFC2131 (p. 9), the DHCP client must be prepared to receive DHCP messages of up to 576 bytes (excluding Ethernet, IP, or UDP headers and FCS). + NOTE: Note that the actual MTU setting will depend upon the specific link protocol. + Here Ethernet is indicated.