Date: Mon, 12 May 1997 19:59:18 +0200 (MEST) From: Christoph Kukulies <kuku@gilberto.physik.RWTH-Aachen.DE> To: freebsd-current@freefall.FreeBSD.org Subject: arpproxy_all - patch for rc.conf/rc.network Message-ID: <199705121759.TAA00526@gil.physik.rwth-aachen.de>
index | next in thread | raw e-mail
appended two patches reflecting the fact that ARP_PROXY_ALL is
no longer a valid kernel config option. Instead there is
a sysctl for it.
--
Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de
*** rc.conf.orig Fri May 9 18:56:11 1997
--- rc.conf Fri May 9 18:58:15 1997
***************
*** 86,91 ****
--- 86,92 ----
ipxgateway_enable="NO" # Set to YES to enable IPX routing.
ipxrouted_enable="NO" # Set to YES to run the IPX routing daemon.
ipxrouted_flags="" # Flags for IPX routing daemon.
+ arpproxy_all="" # obsolete kernel option ARP_PROXY_ALL equiv.
##############################################################
*** rc.network.orig Fri May 9 18:56:22 1997
--- rc.network Fri May 9 19:00:14 1997
***************
*** 93,98 ****
--- 93,103 ----
echo -n ' IPXrouted: '
IPXrouted ${ipxrouted_flags} > /dev/null 2>&1
fi
+
+ if [ "X$arpproxy_all" = X"YES" ]; then
+ echo -n ' enabling ARP_PROXY_ALL: '
+ sysctl -w net.link.ether.inet.proxyall=1 2>&1
+ fi
echo '.'
network_pass1_done=YES # Let future generations know we made it.
}
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199705121759.TAA00526>
