Messages in this thread Patch in this message |  | | Subject | 2.1.25 fix for IP-IP tunneling, multicast routing | From | Andy Berkheimer <> | Date | Mon, 03 Feb 1997 18:05:56 -0500 |
| |
It would appear that the CONFIG_IP_FORWARD option was removed in 2.1.25, however, one part of net/ipv4/Config.in still tests for it (making it impossible to enable IP-IP tunneling or multicast routing). Below is the minor patch needed. If anything more is needed, I wouldn't mind hearing about it.
--- linux/net/ipv4/Config.in.orig Mon Feb 3 17:56:42 1997 +++ linux/net/ipv4/Config.in Mon Feb 3 17:43:55 1997 @@ -18,12 +18,10 @@ fi fi bool 'IP: accounting' CONFIG_IP_ACCT -if [ "$CONFIG_IP_FORWARD" = "y" ]; then - bool 'IP: optimize as router not host' CONFIG_IP_ROUTER - tristate 'IP: tunneling' CONFIG_NET_IPIP - if [ "$CONFIG_IP_MULTICAST" = "y" ]; then - bool 'IP: multicast routing' CONFIG_IP_MROUTE - fi +bool 'IP: optimize as router not host' CONFIG_IP_ROUTER +tristate 'IP: tunneling' CONFIG_NET_IPIP +if [ "$CONFIG_IP_MULTICAST" = "y" ]; then + bool 'IP: multicast routing' CONFIG_IP_MROUTE fi if [ "$CONFIG_NET_ALIAS" = "y" ]; then tristate 'IP: aliasing support' CONFIG_IP_ALIAS
-- Andy Berkheimer | Home: andy@tho.org aberkhei@acm.org | Work: andrewb@mitre.org
|  |