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 32 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 33 source net/sctp/Config.in 34 fi 35fi 36if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 37 tristate 'Asynchronous Transfer Mode (ATM) (EXPERIMENTAL)' CONFIG_ATM 38 if [ "$CONFIG_ATM" = "y" -o "$CONFIG_ATM" = "m" ]; then 39 if [ "$CONFIG_INET" = "y" ]; then 40 dep_tristate ' Classical IP over ATM' CONFIG_ATM_CLIP $CONFIG_ATM 41 if [ "$CONFIG_ATM_CLIP" != "n" ]; then 42 bool ' Do NOT send ICMP if no neighbour' CONFIG_ATM_CLIP_NO_ICMP 43 fi 44 fi 45 dep_tristate ' LAN Emulation (LANE) support' CONFIG_ATM_LANE $CONFIG_ATM 46 if [ "$CONFIG_INET" = "y" -a "$CONFIG_ATM_LANE" != "n" ]; then 47 tristate ' Multi-Protocol Over ATM (MPOA) support' CONFIG_ATM_MPOA 48 fi 49 dep_tristate ' RFC1483/2684 Bridged protocols' CONFIG_ATM_BR2684 $CONFIG_ATM 50 if [ "$CONFIG_ATM_BR2684" != "n" ]; then 51 bool ' Per-VC IP filter kludge' CONFIG_ATM_BR2684_IPFILTER 52 fi 53 fi 54fi 55tristate '802.1Q VLAN Support' CONFIG_VLAN_8021Q 56 57comment ' ' 58tristate 'The IPX protocol' CONFIG_IPX 59if [ "$CONFIG_IPX" != "n" ]; then 60 source net/ipx/Config.in 61fi 62 63tristate 'Appletalk protocol support' CONFIG_ATALK 64if [ "$CONFIG_ATALK" != "n" ]; then 65 source drivers/net/appletalk/Config.in 66fi 67 68tristate 'DECnet Support' CONFIG_DECNET 69if [ "$CONFIG_DECNET" != "n" ]; then 70 source net/decnet/Config.in 71fi 72dep_tristate '802.1d Ethernet Bridging' CONFIG_BRIDGE $CONFIG_INET 73if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 74 tristate 'CCITT X.25 Packet Layer (EXPERIMENTAL)' CONFIG_X25 75 tristate 'LAPB Data Link Driver (EXPERIMENTAL)' CONFIG_LAPB 76 bool '802.2 LLC (EXPERIMENTAL)' CONFIG_LLC 77 bool 'Frame Diverter (EXPERIMENTAL)' CONFIG_NET_DIVERT 78# if [ "$CONFIG_LLC" = "y" ]; then 79# bool ' Netbeui (EXPERIMENTAL)' CONFIG_NETBEUI 80# fi 81 if [ "$CONFIG_INET" = "y" ]; then 82 tristate 'Acorn Econet/AUN protocols (EXPERIMENTAL)' CONFIG_ECONET 83 if [ "$CONFIG_ECONET" != "n" ]; then 84 bool ' AUN over UDP' CONFIG_ECONET_AUNUDP 85 bool ' Native Econet' CONFIG_ECONET_NATIVE 86 fi 87 fi 88 tristate 'WAN router' CONFIG_WAN_ROUTER 89 bool 'Fast switching (read help!)' CONFIG_NET_FASTROUTE 90 bool 'Forwarding between high speed interfaces' CONFIG_NET_HW_FLOWCONTROL 91fi 92 93mainmenu_option next_comment 94comment 'QoS and/or fair queueing' 95bool 'QoS and/or fair queueing' CONFIG_NET_SCHED 96if [ "$CONFIG_NET_SCHED" = "y" ]; then 97 source net/sched/Config.in 98fi 99#bool 'Network code profiler' CONFIG_NET_PROFILE 100endmenu 101 102mainmenu_option next_comment 103comment 'Network testing' 104dep_tristate 'Packet Generator (USE WITH CAUTION)' CONFIG_NET_PKTGEN $CONFIG_PROC_FS 105endmenu 106 107endmenu 108