1# 2# Network configuration 3# 4mainmenu_option next_comment 5comment 'Networking options' 6tristate 'Packet socket' CONFIG_PACKET 7bool 'Kernel/User netlink socket' CONFIG_NETLINK 8if [ "$CONFIG_NETLINK" = "y" ]; then 9 bool 'Routing messages' CONFIG_RTNETLINK 10 tristate 'Netlink device emulation' CONFIG_NETLINK_DEV 11fi 12bool 'Network firewalls' CONFIG_FIREWALL 13bool 'Socket Filtering' CONFIG_FILTER 14tristate 'Unix domain sockets' CONFIG_UNIX 15bool 'TCP/IP networking' CONFIG_INET 16if [ "$CONFIG_INET" = "y" ]; then 17 source net/ipv4/Config.in 18 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 19# Sorry, but IPv6 as module is still invalid. 20 tristate 'The IPv6 protocol (EXPERIMENTAL)' CONFIG_IPV6 21# bool 'The IPv6 protocol (EXPERIMENTAL)' CONFIG_IPV6 22 if [ "$CONFIG_IPV6" != "n" ]; then 23 source net/ipv6/Config.in 24 fi 25 fi 26fi 27 28comment ' ' 29tristate 'The IPX protocol' CONFIG_IPX 30if [ "$CONFIG_IPX" != "n" ]; then 31 source net/ipx/Config.in 32fi 33tristate 'Appletalk DDP' CONFIG_ATALK 34if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 35# tristate 'DECnet Support (NOT YET FUNCTIONAL)' CONFIG_DECNET 36# if [ "$CONFIG_DECNET" != "n" ]; then 37# source net/decnet/Config.in 38# fi 39 tristate 'CCITT X.25 Packet Layer (EXPERIMENTAL)' CONFIG_X25 40 tristate 'LAPB Data Link Driver (EXPERIMENTAL)' CONFIG_LAPB 41 bool 'Bridging (EXPERIMENTAL)' CONFIG_BRIDGE 42 if [ "$CONFIG_BRIDGE" != "n" ]; then 43 int ' Maximum number of bridged interfaces' CONFIG_BRIDGE_NUM_PORTS 8 44 fi 45 bool '802.2 LLC (EXPERIMENTAL)' CONFIG_LLC 46# if [ "$CONFIG_LLC" = "y" ]; then 47# bool 'Netbeui (EXPERIMENTAL)' CONFIG_NETBEUI 48# fi 49 tristate 'Acorn Econet/AUN protocols (EXPERIMENTAL)' CONFIG_ECONET 50 if [ "$CONFIG_ECONET" != "n" ]; then 51 bool ' AUN over UDP' CONFIG_ECONET_AUNUDP 52 bool ' Native Econet' CONFIG_ECONET_NATIVE 53 fi 54 tristate 'WAN router' CONFIG_WAN_ROUTER 55 bool 'Fast switching (read help!)' CONFIG_NET_FASTROUTE 56 bool 'Forwarding between high speed interfaces' CONFIG_NET_HW_FLOWCONTROL 57 bool 'CPU is too slow to handle full bandwidth' CONFIG_CPU_IS_SLOW 58 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 59 mainmenu_option next_comment 60 comment 'QoS and/or fair queueing' 61 bool 'QoS and/or fair queueing' CONFIG_NET_SCHED 62 if [ "$CONFIG_NET_SCHED" = "y" ]; then 63 source net/sched/Config.in 64 fi 65# bool 'Network code profiler' CONFIG_NET_PROFILE 66 endmenu 67 fi 68fi 69endmenu 70

