summaryrefslogtreecommitdiffstats
path: root/net/ipv4/Config.in
blob: a84d61d1766f88310936ec9f0a1085b9ae0ecbad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# IP configuration
#
bool 'IP: multicasting' CONFIG_IP_MULTICAST
bool 'IP: advanced router' CONFIG_IP_ADVANCED_ROUTER
if [ "$CONFIG_IP_ADVANCED_ROUTER" = "y" ]; then
  define_bool CONFIG_RTNETLINK y	
  define_bool CONFIG_NETLINK y
  bool 'IP: policy routing' CONFIG_IP_MULTIPLE_TABLES
  bool 'IP: equal cost multipath' CONFIG_IP_ROUTE_MULTIPATH
  bool 'IP: use TOS value as routing key' CONFIG_IP_ROUTE_TOS
  bool 'IP: verbose route monitoring' CONFIG_IP_ROUTE_VERBOSE
  bool 'IP: large routing tables' CONFIG_IP_ROUTE_LARGE_TABLES
  if [ "$CONFIG_IP_MULTIPLE_TABLES" = "y" ]; then
    bool 'IP: fast network address translation' CONFIG_IP_ROUTE_NAT
  fi
fi
if [ "$CONFIG_IP_MULTIPLE_TABLES" = "y" ]; then
  bool 'IP: use FWMARK value as routing key' CONFIG_IP_ROUTE_FWMARK
fi
bool 'IP: kernel level autoconfiguration' CONFIG_IP_PNP
if [ "$CONFIG_IP_PNP" = "y" ]; then
  bool '      BOOTP support' CONFIG_IP_PNP_BOOTP
  bool '      RARP support' CONFIG_IP_PNP_RARP
# not yet ready..
#  bool '      ARP support' CONFIG_IP_PNP_ARP		
fi
bool 'IP: optimize as router not host' CONFIG_IP_ROUTER
tristate 'IP: tunneling' CONFIG_NET_IPIP
tristate 'IP: GRE tunnels over IP' CONFIG_NET_IPGRE
if [ "$CONFIG_IP_MULTICAST" = "y" ]; then
  if [ "$CONFIG_NET_IPGRE" != "n" ]; then
    bool 'IP: broadcast GRE over IP' CONFIG_NET_IPGRE_BROADCAST
  fi
  bool 'IP: multicast routing' CONFIG_IP_MROUTE
  if [ "$CONFIG_IP_MROUTE" = "y" ]; then
    bool 'IP: PIM-SM version 1 support' CONFIG_IP_PIMSM_V1
    bool 'IP: PIM-SM version 2 support' CONFIG_IP_PIMSM_V2
  fi
fi
bool 'IP: aliasing support' CONFIG_IP_ALIAS
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  if [ "$CONFIG_RTNETLINK" = "y" ]; then
    bool 'IP: ARP daemon support (EXPERIMENTAL)' CONFIG_ARPD
  fi
fi
bool 'IP: TCP syncookie support (not enabled per default)' CONFIG_SYN_COOKIES
comment '(it is safe to leave these untouched)'
#bool 'IP: PC/TCP compatibility mode' CONFIG_INET_PCTCP
#bool 'IP: Path MTU Discovery (normally enabled)' CONFIG_PATH_MTU_DISCOVERY
#bool 'IP: Disable NAGLE algorithm (normally enabled)' CONFIG_TCP_NAGLE_OFF
bool 'IP: Allow large windows (not recommended if <16Mb of memory)' CONFIG_SKB_LARGE
#if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 
#bool 'IP: support experimental checksum copy to user for UDP'  CONFIG_UDP_DELAY_CSUM
#fi