Network Stack Cloning / Virtualization Extensions 44
HellRazr writes "From the FreeBSD hackers mailing list:
'at http://www.tel.fer.hr/zec/vimage/ you can find a set of patches
against 4.8-RELEASE kernel that provide support for network stack
cloning. The patched kernel allows multiple fully independent network
stack instances to simultaneously coexist within a single OS kernel,
providing a foundation for supporting diverse new applications.' We can sure have fun with this..."
BSD isn't dying (Score:3, Funny)
Yes (Score:5, Informative)
I've heard about the idea and development of the vimage patch and this is a great news, that it's finally done and fully functional. Some of those ideas are not really new, as anyone who knows OS/390 could tell you, but it's really great they can now be used in FreeBSD systems.
For those of you, who know that I'm involved in building honeynets [honeynet.org], it won't be a surprise, that I am really (by which I mean really) looking forward to use those new features in my future honeypots, firewalls and other security-related projects.
Actually, those features seem to be created just exactly to be used for deploying virtual honeynets [honeynet.org]. Just imagine what you can do with VMware, vimage-FreeBSD and UML all running on the same machine!
Great work, Marko.
Re:Yes (Score:2, Funny)
Bring my crappy computer to a screeching halt?
Re:Yes (Score:2)
Wow, get off yourself buddy. Slashdot is not a mensa meeting. In real life, people smile when someone makes a joke.
btw, could you imagine a beowulf cluster of these?
Re:Yes (Score:1)
Re:Yes (Score:1)
yeah, soo smart that you can't spell... the guy made a cheesy joke, get over it.
Re:Yes (Score:1)
I'm perfectly aware that the *actual* use is to create honeynets without needing to buy yourself a small rackfull of physical servers to do it with. And I applaud the BSD team for making it possible natively, I may well have a play with it when I get bored someday.
And I'm very sorry you didn't find my (admittedly poor) joke to your usual standards, I'll attempt to make the next one better.
Plan 9 blah blah (Score:2)
People, if you want plan 9 you know where to find it
http://plan9.bell-labs.com/plan9 [bell-labs.com]
Re:Plan 9 blah blah (Score:4, Informative)
but not only that, but the fact that resources can be distributed transparently over the network means that a specific network interface (perhaps an interface to the outside world) can be imported from another machine, and used, exactly as if it were a local IP stack.
none of this requires any particularly deep magic; it does however require a fresh approach from the ground up, something you're unlikely to find in any of the mainstream unix-like OSes...
This would'nt be even a news on GNU/Hurd (Score:1)
Re:This would'nt be even a news on GNU/Hurd (Score:2)
Re:This would'nt be even a news on GNU/Hurd (Score:1)
That's how it worked originally in UNIX (Score:4, Interesting)
UNET ran almost entirely in user space. All that went into the kernel were device drivers for the network devices and a psuedo-device to allow interprocess communication to the network process. This made modification and debugging much easier. You could kill and restart the network process without rebooting the system.
Twenty years later, someone has reinvented this approach.