1# 2# Network configuration 3# 4mainmenu_option next_comment 5comment 'Networking options' 6tristate 'Packet socket' CONFIG_PACKET 7if [ "$CONFIG_PACKET" != "n" ]; then 8 bool ' Packet socket: mmapped IO' CONFIG_PACKET_MMAP 9fi 10 11tristate 'Netlink device emulation' CONFIG_NETLINK_DEV 12 13bool 'Network packet filtering (replaces ipchains)' CONFIG_NETFILTER 14if [ "$CONFIG_NETFILTER" = "y" ]; then 15 bool ' Network packet filtering debugging' CONFIG_NETFILTER_DEBUG 16fi 17bool 'Socket Filtering' CONFIG_FILTER 18tristate 'Unix domain sockets' CONFIG_UNIX 19bool 'TCP/IP networking' CONFIG_INET 20if [ "$CONFIG_INET" = "y" ]; then 21 source net/ipv4/Config.in 22 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 23# IPv6 as module will cause a CRASH if you try to unload it 24 tristate ' The IPv6 protocol (EXPERIMENTAL)' CONFIG_IPV6 25 if [ "$CONFIG_IPV6" != "n" ]; then 26 source net/ipv6/Config.in 27 fi 28 fi 29 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 30 source net/khttpd/Config.in 31 fi 32fi 33if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 34 bool 'Asynchronous Transfer Mode (ATM) (EXPERIMENTAL)' CONFIG_ATM 35 if [ "$CONFIG_ATM" = "y" ]; then 36 if [ "$CONFIG_INET" = "y" ]; then 37 bool ' Classical IP over ATM' CONFIG_ATM_CLIP 38 if [ "$CONFIG_ATM_CLIP" = "y" ]; then 39 bool ' Do NOT send ICMP if no neighbour' CONFIG_ATM_CLIP_NO_ICMP 40 fi 41 fi 42 tristate ' LAN Emulation (LANE) support' CONFIG_ATM_LANE 43 if [ "$CONFIG_INET" = "y" -a "$CONFIG_ATM_LANE" != "n" ]; then 44 tristate ' Multi-Protocol Over ATM (MPOA) support' CONFIG_ATM_MPOA 45 fi 46 fi 47 48 dep_tristate '802.1Q VLAN Support (EXPERIMENTAL)' CONFIG_VLAN_8021Q $CONFIG_EXPERIMENTAL 49 50fi 51 52comment ' ' 53tristate 'The IPX protocol' CONFIG_IPX 54if [ "$CONFIG_IPX" != "n" ]; then 55 source net/ipx/Config.in 56fi 57tristate 'Appletalk protocol support' CONFIG_ATALK 58tristate 'DECnet Support' CONFIG_DECNET 59if [ "$CONFIG_DECNET" != "n" ]; then 60 source net/decnet/Config.in 61fi 62dep_tristate '802.1d Ethernet Bridging' CONFIG_BRIDGE $CONFIG_INET 63if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 64 tristate 'CCITT X.25 Packet Layer (EXPERIMENTAL)' CONFIG_X25 65 tristate 'LAPB Data Link Driver (EXPERIMENTAL)' CONFIG_LAPB 66 bool '802.2 LLC (EXPERIMENTAL)' CONFIG_LLC 67 bool 'Frame Diverter (EXPERIMENTAL)' CONFIG_NET_DIVERT 68# if [ "$CONFIG_LLC" = "y" ]; then 69# bool ' Netbeui (EXPERIMENTAL)' CONFIG_NETBEUI 70# fi 71 if [ "$CONFIG_INET" = "y" ]; then 72 tristate 'Acorn Econet/AUN protocols (EXPERIMENTAL)' CONFIG_ECONET 73 fi 74 if [ "$CONFIG_ECONET" != "n" ]; then 75 bool ' AUN over UDP' CONFIG_ECONET_AUNUDP 76 bool ' Native Econet' CONFIG_ECONET_NATIVE 77 fi 78 tristate 'WAN router' CONFIG_WAN_ROUTER 79 bool 'Fast switching (read help!)' CONFIG_NET_FASTROUTE 80 bool 'Forwarding between high speed interfaces' CONFIG_NET_HW_FLOWCONTROL 81fi 82 83mainmenu_option next_comment 84comment 'QoS and/or fair queueing' 85bool 'QoS and/or fair queueing' CONFIG_NET_SCHED 86if [ "$CONFIG_NET_SCHED" = "y" ]; then 87 source net/sched/Config.in 88fi 89#bool 'Network code profiler' CONFIG_NET_PROFILE 90endmenu 91 92endmenu 93

