cduke250, on Jul 22 2005, 08:22 AM, said:
Maybe something like samplicator, socat, nc, vtun? There is a really cool tool out there that is a socket file, like mysql.sock, but it is really a redirector. I use it to connect remotely to mysql servers, when they do not allow remote connections.
Ya datapipe is solid also. Samplicator is UDP. socat is probably the best.
socat is far and away the best, as a port redirector basically it's netcat for ports.
i use it for redirecting ssh session through tor for reasons best known to myself....
i.e
started tor (port 9050)
socat tcp4-listen:22,Fork socks4a:127.0.0.1:dest.ip.in.here:22,socksport:9050
then ssh to 127.0.0.1 and it'll bounce your ssh connection via tor ;)
now if that does'nt give you any ideas you ned to explain yourself better and say what you are trying to do.