Date: Tue, 4 Jan 2000 17:52:08 -0500 (EST)
From: "Richard B. Johnson" <root@chaos.analogic.com>
If .config is set as:
CONFIG_IP_ADVANCED_ROUTER=y
You get this:
Configure file bug, routing by FWMARK should never be offered
when netfilter is not enabled. Here is the fix:
--- net/ipv4/Config.in.~1~ Mon Dec 20 18:40:16 1999
+++ net/ipv4/Config.in Wed Jan 5 17:11:11 2000
@@ -8,7 +8,9 @@
define_bool CONFIG_NETLINK y
bool ' IP: policy routing' CONFIG_IP_MULTIPLE_TABLES
if [ "$CONFIG_IP_MULTIPLE_TABLES" = "y" ]; then
- bool ' IP: use FWMARK value as routing key' CONFIG_IP_ROUTE_FWMARK
+ if [ "$CONFIG_NETFILTER" = "y" ]; then
+ bool ' IP: use FWMARK value as routing key' CONFIG_IP_ROUTE_FWMARK
+ fi
bool ' IP: fast network address translation' CONFIG_IP_ROUTE_NAT
fi
bool ' IP: equal cost multipath' CONFIG_IP_ROUTE_MULTIPATH
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Fri Jan 07 2000 - 21:00:05 EST