blob: 683c2adf5a86012c8c4f8e6974174546b5cc8478 [file] [log] [blame]
Masahiro Yamadaed363232014-09-16 16:32:58 +09001#
2# Network configuration
3#
4
5menuconfig NET
6 bool "Networking support"
Michal Simek3b3ea2c2018-02-26 16:01:02 +01007 default y
Masahiro Yamadaed363232014-09-16 16:32:58 +09008
9if NET
10
Tom Rini5d4e8632022-03-11 09:12:01 -050011config ARP_TIMEOUT
12 int "Milliseconds before trying ARP again"
13 default 5000
14
Philippe Reynesb43ea1b2020-09-18 14:13:00 +020015config PROT_UDP
16 bool "Enable generic udp framework"
17 help
18 Enable a generic udp framework that allows defining a custom
19 handler for udp protocol.
20
Adam Ford3275f262020-07-03 09:00:14 -050021config BOOTP_SEND_HOSTNAME
22 bool "Send hostname to DNS server"
23 help
24 Some DHCP servers are capable to do a dynamic update of a
25 DNS server. To do this, they need the hostname of the DHCP
26 requester.
27 If CONFIG_BOOTP_SEND_HOSTNAME is defined, the content
28 of the "hostname" environment variable is passed as
29 option 12 to the DHCP server.
30
Joe Hershbergerbef10142015-05-04 14:55:13 -050031config NET_RANDOM_ETHADDR
32 bool "Random ethaddr if unset"
33 help
Michal Simek381e6e52022-01-11 10:28:09 +010034 Selecting this will allow the Ethernet interface to function even
35 when the ethaddr variable for that interface is unset. In this case,
36 a random MAC address in the locally administered address space is
37 generated. It will be saved to the appropriate environment variable,
38 too.
Joe Hershbergerbef10142015-05-04 14:55:13 -050039
Bernhard Nortmann26660742015-09-14 15:29:46 +020040config NETCONSOLE
41 bool "NetConsole support"
42 help
43 Support the 'nc' input/output device for networked console.
44 See README.NetConsole for details.
45
Marek Vasut3f6bcdf2019-06-11 04:51:14 +020046config IP_DEFRAG
47 bool "Support IP datagram reassembly"
Marek Vasut3f6bcdf2019-06-11 04:51:14 +020048 help
49 Selecting this will enable IP datagram reassembly according
50 to the algorithm in RFC815.
51
Rasmus Villemoes215df012020-02-07 15:17:42 +000052config NET_MAXDEFRAG
53 int "Size of buffer used for IP datagram reassembly"
54 depends on IP_DEFRAG
55 default 16384
56 range 1024 65536
57 help
58 This defines the size of the statically allocated buffer
59 used for reassembly, and thus an upper bound for the size of
60 IP datagrams that can be received.
61
Marek Vasutb618b372019-06-11 04:51:15 +020062config TFTP_BLOCKSIZE
63 int "TFTP block size"
Andre Przywara16cdc2d2019-11-23 17:58:59 +000064 default 1468
Marek Vasutb618b372019-06-11 04:51:15 +020065 help
66 Default TFTP block size.
Patrick Delaunay421de7f2020-04-22 14:18:25 +020067 The MTU is typically 1500 for ethernet, so a TFTP block of
68 1468 (MTU minus eth.hdrs) provides a good throughput with
69 almost-MTU block sizes.
70 You can also activate CONFIG_IP_DEFRAG to set a larger block.
Marek Vasutb618b372019-06-11 04:51:15 +020071
Ramon Friedcc6b87e2020-07-18 23:31:46 +030072config TFTP_WINDOWSIZE
73 int "TFTP window size"
74 default 1
75 help
76 Default TFTP window size.
77 RFC7440 defines an optional window size of transmits,
78 before an ack response is required.
79 The default TFTP implementation implies a window size of 1.
80
Tero Kristo25094932021-05-12 11:03:04 +030081config TFTP_TSIZE
82 bool "Track TFTP transfers based on file size option"
83 depends on CMD_TFTPBOOT
84 default y if (ARCH_OMAP2PLUS || ARCH_K3)
85 help
86 By default, TFTP progress bar is increased for each received UDP
87 frame, which can lead into long time being spent for sending
88 data over the UART. Enabling this option, TFTP queries the file
89 size from server, and if supported, limits the progress bar to
90 50 characters total which fits on single line.
91
Lyle Franklinc8e251f2019-08-05 06:23:42 -040092config SERVERIP_FROM_PROXYDHCP
93 bool "Get serverip value from Proxy DHCP response"
94 help
95 Allows bootfile config to be fetched from Proxy DHCP server
96 while IP is obtained from main DHCP server.
97
98config SERVERIP_FROM_PROXYDHCP_DELAY_MS
99 int "# of additional milliseconds to wait for ProxyDHCP response"
100 default 100
101 help
102 Amount of additional time to wait for ProxyDHCP response after
103 receiving response from main DHCP server. Has no effect if
104 SERVERIP_FROM_PROXYDHCP is false.
105
Simon Glass3df6cd42021-12-18 11:27:48 -0700106config KEEP_SERVERADDR
107 bool "Write the server's MAC address to 'serveraddr'"
108 default y if SANDBOX
109 help
110 Keeps the server's MAC address, in the env 'serveraddr'
111 for passing to bootargs (like Linux's netconsole option). If this is
112 enabled, when an ARP reply is received, the server's IP address is
113 written there.
114
Simon Glass4b37fd12021-12-18 11:27:49 -0700115config UDP_CHECKSUM
116 bool "Check the UDP checksum"
Simon Glassd6b318d2021-12-18 11:27:50 -0700117 default y if SANDBOX
Simon Glass4b37fd12021-12-18 11:27:49 -0700118 help
119 Enable this to verify the checksum on UDP packets. If the checksum
120 is wrong then the packet is discussed and an error is shown, like
121 "UDP wrong checksum 29374a23 30ff3826"
122
Simon Glassd3877fb2021-12-18 11:27:51 -0700123config BOOTP_SERVERIP
124 bool "Use the 'serverip' env var for tftp, not bootp"
125 help
126 Enable this if the TFTP server will be the 'serverip' environment
127 variable, not the BOOTP server. This affects the operation of both
128 bootp and tftp.
129
Masahiro Yamadaed363232014-09-16 16:32:58 +0900130endif # if NET