Hello. Stian Sletner wrote: > | And I also think that tunelling to dsn will work. I tried 2 dosemu > | sessions: first with $_vnet=(on) and the second with $_vnet=(off) (as > | acting from outside) and the dooms see each other. > Mm, I still have some testing to do... OK, given that SIB doesn't support more than 2 interfaces and that dosnet doesn't support a kernel bridging (bridging to it from user-space is OK however), the things are difficult... But I've found a solution for you:) At first, compile and start the simple bridge I've just made by copy/pasting some examples supplied with TUN/TAP driver. The code is attached. If it printed something like: Allocated devices: tap0 and tap1 then everything goes fine. The second, as dosnet doesn't support the kernel bridging, apply the TUN/TAP patch from my page, do the necessary change in dosemu.conf and start dosemu. It will allocate tap2 (now as the tap0 and tap1 are busy already). Now do this: ifconfig tap0 up ifconfig tap1 up ifconfig tap2 up brctl addbr br0 brctl addif br0 tap1 brctl addif br0 tap2 brctl addif br0 eth0 ifconfig br0 up If there were no errors, you are doing good:) Now configure your SIB to communicate to tap0 (note that tap0 was not added to br0 bridge as it is intended to be used by SIB). That should do it. If I haven't forgot something, now you have 3 dosemu sessions working together: on the other end of SIB; on tap2 on the same machine; somewhere on the net to which the eth0 is connected. Well, this may be too complicated at a first glance (3 different bridging software working between different virtual interfaces etc), but that would definitely be a lot of fun for you to play with:)