Displaying 2 results from an estimated 2 matches for "usepriviledgeport".
2000 Dec 27
1
scp doesn't have a 'Use non privileged port' switch
...-L Use non privileged port. With this you cannot use
|> rhosts or rsarhosts authentications, but it can be
|> used to bypass some firewalls that dont allow privi?
|> leged source ports to pass. Same as saying "-o
|> UsePriviledgePort=no" or -P to ssh; -L is used due
|> to exhaustion of suitable letters.
|This can and does break scripts and is esp. nasty behind firewalls.
Ciao
Christian
--
Debian Developer and Quality Assurance Team Member
1024/26CC7853 31E6 A8CA 68FC 284F 7D16 63EC...
2000 Aug 18
0
[PATCH] Support symlinks in scp of openssh 2
...pting this patch.
Index: scp.1
--- scp.1.prev
+++ scp.1 Fri Aug 18 04:24:46 2000
@@ -20,5 +20,5 @@
.Sh SYNOPSIS
.Nm scp
-.Op Fl pqrvC46
+.Op Fl aLpqrvC46
.Op Fl P Ar port
.Op Fl c Ar cipher
@@ -69,4 +69,9 @@
.It Fl o Ar ssh_options
specify options to be passed to ssh. For example: "-o UsePriviledgePort=no"
+.It Fl a
+Archival copy. Shorthand for "-Lpr".
+.It Fl L
+Preserves symbolic links as such, instead of following them and
+copying their targets.
.It Fl p
Preserves modification times, access times, and modes from the
Index: scp.c
--- scp.c.prev
+++ scp.c Fri Aug 18 04:14:40...