FreeBSD Gets 'Fast IPsec' Implementation 62
An anonymous reader writes "Sam Leffler (yes, one of the authors of the
BSD Design and Implementation book you have on
your bookshelf if you know anything with operating
systems) has just committed a new FAST_IPSEC
implementation to the FreeBSD 5.x source tree.
It's a merge of the KAME IPsec implementation
and the OpenBSD hardware crypto accelerated
IPsec implementation. You can read the commit message here."
Re:FreeS/WAN and Linux (Score:1, Offtopic)
Re:FreeS/WAN and Linux (Score:1)
Re:FreeS/WAN and Linux (Score:2)
Re:The End of FreeBSD (Score:1)
I still think BSD has some great things going for it, and in a few ways it still kicks Linux butt. But Linux is moving faster, so those areas may get smaller and smaller if FreeBSD doesn't get back in gear.
I've been using FreeBSD for 5 years now for various things. It was my desktop for a while, but now it is simply my preferred server platform. I don't know if there is any advantage to using it as opposed to Linux for my uses since I've never tried to replace it. But it has been great.
Anyway, I suppose this post is off-topic, too. But I hope to see both FreeBSD and Linux continuing long into the future. Long live the non-UNIX Unices!
Re:The End of FreeBSD (Score:1)
Re:This is excellent news! (Score:2)
> Thats affirmative. It is, however, in Canada you fucktard. I'm assuming that you're an American because you are geographically retarded.
Nope, sorry, Sweden is not in Canada. Calgary is a city in western Canada, and Sweden is a nordic country. Apparently someone in Sweden uses OpenBSD, and is running on too little sleep.
Cool! (Score:2)
I certainly can't wait until this get's MFC'd.
Re:Cool! (Score:1, Funny)
-STABLE." HAHA.
Re:Cool! (Score:1)
Hopefully things will shape up as -CURRENT has gone into feature freeze and will soon go into code freeze in preperation for 5.0 Release, but don't expect 5.0 to be too stable.
Re:Cool! (Score:1, Informative)
Things preventing me from using FreeBSD: (Score:1, Interesting)
1) USB joypad support. Apparently non-existant, although I see some references to it in ports like BZFlag. FreeBSD USB page claims support may come in the future.
2) Hardware 3D. Work is ongoing here, but right now it's a bit of a messy job and I'm hoping it will be fully in the kernel with 5.0.
3) Sound -- Linux gives me two
4)
So, this probably deserves no mod points, but if anyone has any info here (should be clear that I've done some research!), please let me know.
Re:Things preventing me from using FreeBSD: (Score:2, Informative)
Re:Things preventing me from using FreeBSD: (Score:1, Informative)
It has nothing to do with GNU tools; it's a kernel limit, ARGS_MAX. You are limited to 65536 bytes of arguments (including the NUL at the end of each arg string). If you built GNU cp on FreeBSD (you can, you know) you'd see the exact same limit.
You could try rebuilding the kernel with a larger ARGS_MAX, but if you want a general solution (i.e. one that's entirely unlimited) it's best to look into solutions such as a "find" and "xargs" pipeline. (Invoking cp for each file, as the grandparent post suggests, is going to be pretty inefficient.)
Re:Things preventing me from using FreeBSD: (Score:1, Informative)
Use tar (Score:1)
It keeps permissions as well. You can even throw in a ssh and copy things over to another machine i.e.:
tar cf -|ssh -C machinename tar xvpf -
or
tar cf -|gzip -c|ssh machinename 'cd
Or throw in your favorite archive (cpio, pax) and compress (compress, bzip2) program