On 12/01/2010 08:31 PM, Brian Gupta wrote: > Do you guys think kfreebsd is ready to be used in production as an > internet access router running pf and carp? > > -Brian > > Well, the kernel isn't much different from a normal FreeBSD-kernel I guess.
It's mostly a tooling problem. Some thing you would normally expect to work on Linux won't work on kFreeBSD, but the FreeBSD/OpenBSD version might not work either. Their might be workarounds for those things though. An example, listing the routing table: Linux: - route -n - ip ro ls - netstat -nr OpenBSD/FreeBSD: - route -n show - netstat -nr The only one that works on kFreeBSD: - netstat -nr Because: - iproute package is unvailable (Linux specific) - route -n show does not work (actually /sbin/route is a shell script which uses /lib/freebsd/route). Eventhough you might expect it to work when you look at the route manual page, this is because the route manual came directly from FreeBSD. An other example, CARP is not included in the default install in the kernel, so you would want to build your own. If that isn't for you, then maybe you should wait for the next release. Atleast that is what I've seen. (I just did apt-get update && apt-get upgrades from an install months ago, but I think I got it right) -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

