search for: nonprivilaged_port

Displaying 2 results from an estimated 2 matches for "nonprivilaged_port".

2000 Jul 07
0
Patch to add scp -L option
...* 2000/7/7 Jason Spangler <jasons at usemail.com> + * Added nonprivilaged port option -L that passes -P option to SSH + * */ /* @@ -93,6 +98,9 @@ and passphrase queries are not allowed). */ int batchmode = 0; +/* This is set to non-zero if a non-privilaged port is desired. */ +int nonprivilaged_port = 0; + /* This is set to the cipher type string if given on the command line. */ char *cipher = NULL; @@ -161,6 +169,8 @@ args[i++] = "-C"; if (batchmode) args[i++] = "-oBatchMode yes"; + if (nonprivilaged_port) + args[i++] = "-P"; if (cipher != NU...
2000 Jul 20
3
scp over 2 hosts
Hi folks, I have the that I must copy some through a Plag-Gateway of a Firewall over 2 host. A secure connection via "ssh - t hosta ssh -t hostb" works fine, but does this work with scp too? Icould not realize it either with scp (1.2.27 of ssh.com) or scp from openssh. Do you have any ideas? Thanks Stephan