diff options
author | Matt Johnston <matt@ucc.asn.au> | 2006-03-21 16:16:41 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2006-03-21 16:16:41 +0000 |
commit | cdbe853595d1ba06be4127d86c60a9bc2e9e3545 (patch) | |
tree | c69a24fd85c5048ca1e0e138858ad9de04ba2373 /debug.h | |
parent | 3f49fc5f2ca0ec4adb5cac081f502cbb86702efa (diff) |
A hack to make dbclient to tcp forwarding netcat style.
eg
./dbclient -i testkey -L 1234:remotehost:remoteport tunnelhost
will ssh to tunnelhost (using testkey, there's no way to ask for a password)
and then tcpfwd to remotehost:remoteport on stdin/stdout.
There's no way to give a cmdline password, so -i for a keyfile will have to do.
Yet another reason for agent forwarding.
The 1234 is a dummy var, I think it has to be a valid portnumber though.
--HG--
branch : dbclient-netcat-alike
extra : convert_revision : d1f69334581dc4c35f9ca16aa5355074c9dd315d
Diffstat (limited to 'debug.h')
-rw-r--r-- | debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ * Caution: Don't use this in an unfriendly environment (ie unfirewalled), * since the printing may not sanitise strings etc. This will add a reasonable * amount to your executable size. */ -/*#define DEBUG_TRACE */ +#define DEBUG_TRACE /* All functions writing to the cleartext payload buffer call * CHECKCLEARTOWRITE() before writing. This is only really useful if you're |