1# General config 2CONFIG_REQUIRES_FULL_LIBC=y 3 4# Networking config 5CONFIG_NETWORKING=y 6CONFIG_NET_IPV4=y 7CONFIG_NET_IPV6=n 8CONFIG_NET_TCP=y 9CONFIG_NET_SOCKETS=y 10CONFIG_POSIX_API=y 11 12# Network driver config 13CONFIG_TEST_RANDOM_GENERATOR=y 14 15# Network address config 16CONFIG_NET_CONFIG_SETTINGS=y 17CONFIG_NET_CONFIG_NEED_IPV4=y 18CONFIG_NET_CONFIG_MY_IPV4_ADDR="192.0.2.1" 19CONFIG_NET_CONFIG_PEER_IPV4_ADDR="192.0.2.2" 20 21# Networking tweaks 22# Required to handle large number of consecutive connections, 23# e.g. when testing with ApacheBench. 24CONFIG_NET_TCP_TIME_WAIT_DELAY=0 25 26# Network debug config 27CONFIG_NET_LOG=y 28#CONFIG_NET_SHELL=y 29