search for: ofallbacktorsh

Displaying 17 results from an estimated 17 matches for "ofallbacktorsh".

Did you mean: fallbacktorsh
2000 Nov 06
1
openssh-2.1.1p1 on HP-UX 11.00: processes hanging around
...f problem this is, but If I use eval $(ssh-agent) ssh-add scp ... (several times) ssh-add -D exit There are many ssh processes around in the system: UID PID PPID C STIME TTY TIME COMMAND root 4266 1 0 11:33:56 pts/0 0:00 /usr/local/bin/ssh -x -oFallBack ToRsh no -oFallBackToRsh no root 1876 9788 0 11:11:26 ? 0:01 /usr/local/sbin/sshd root 4199 1 0 11:33:37 pts/0 0:00 /usr/local/bin/ssh -x -oFallBack ToRsh no -oFallBackToRsh no root 4323 1 0 11:34:13 pts/0 0:00 /usr/local/bin/ssh -x -oFallBack ToRsh no -oFallBackToRsh no root...
2000 Dec 18
2
scp remote path specification
...e Nov 7 17:59:37 2000 @@ -245,7 +245,7 @@ char *argv[]; { int ch, fflag, tflag; - char *targ; + char *targ, *pathsep; extern char *optarg; extern int optind; @@ -253,6 +253,19 @@ addargs("ssh"); /* overwritten with ssh_program */ addargs("-x"); addargs("-oFallBackToRsh no"); + + /* check explicit path for ssh binary, default is SSH_PROGRAM */ + if ((argc > 0) && + (argv[0] != NULL)) { + pathsep = strrchr(argv[0], '/'); + if (pathsep != NULL) { + pathsep++; + *pathsep = 0; + ssh_program = xmalloc(strlen(argv[0]) + 4); /...
2006 Jan 04
1
[Bug 1143] connections with "sshd: root@notty" is established but not closed
...There is connection leak between my twom production servers. One server shows number of sshd processes in sleep mode with name "sshd:root at notty". This server has ssh version 3.9 installed. Another server on other hand shows same number of ssh processes with name "/usr/bin/ssh -x -oFallBackToRsh no -lroot 172.25.32.105 scp -t /var/log/gtwlogs/gtw40.log". This server has ssh version 2.9pl installed.I can not upgrade this ssh version as of now as this is planned sometimes later. Please help me knowing the exact cause behind this. Regards Sujit ------- You are receiving this mail b...
2001 Jul 22
1
[patch] add -1 and -2 options to scp
Hi, Several people have asked that scp support the -1 and -2 options, so I wrote this patch. Cheers, Matthew -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: scp.diff Url: http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20010722/7e096fab/attachment.ksh -------------- next part -------------- -- "At least you know
2001 Sep 08
1
force SSH1 and SSH2
...cribed... -- --------------------------------- pozdr. Pawe? Go?aszewski --------------------------------- R.I.P. - rest in pieces ... -------------- next part -------------- --- ./scp.c.org Sat Sep 8 23:37:22 2001 +++ ./scp.c Sun Sep 9 00:07:36 2001 @@ -244,9 +244,11 @@ addargs("-oFallBackToRsh no"); fflag = tflag = 0; - while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:o:")) != -1) + while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q1246S:o:")) != -1) switch (ch) { /* User-visible flags. */ + case '1': + case '2': case '4':...
2000 Aug 12
0
[PATCH] scp -S support
...xecutes the given command as the specified user on the * given host. This returns < 0 if execution fails, and >= 0 otherwise. This @@ -148,7 +151,7 @@ close(pout[1]); i = 0; - args[i++] = SSH_PROGRAM; + args[i++] = ssh_program; args[i++] = "-x"; args[i++] = "-oFallBackToRsh no"; if (IPv4) @@ -182,8 +185,8 @@ args[i++] = cmd; args[i++] = NULL; - execvp(SSH_PROGRAM, args); - perror(SSH_PROGRAM); + execvp(ssh_program, args); + perror(ssh_program); exit(1); } /* Parent. Close the other side, and return the local side. */ @@ -247,7 +250,7 @@ e...
2000 Oct 11
2
scp -L option
.../* * This function executes the given command as the specified user on the * given host. This returns < 0 if execution fails, and >= 0 otherwise. This *************** *** 165,170 **** --- 168,175 ---- args[i++] = ssh_program; args[i++] = "-x"; args[i++] = "-oFallBackToRsh no"; + if (highport) + args[i++] = "-P"; if (IPv4) args[i++] = "-4"; if (IPv6) *************** *** 262,268 **** extern int optind; fflag = tflag = 0; ! while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S")) != EOF) switch (ch) {...
2002 Jan 23
1
Fix AFS and Kerberos interaction
...oRemoteForward, oLocalForward, @@ -147,7 +147,7 @@ #if defined(AFS) || defined(KRB5) { "kerberostgtpassing", oKerberosTgtPassing }, #endif -#ifdef AFS +#if defined(AFS) && defined(KRB4) { "afstokenpassing", oAFSTokenPassing }, #endif { "fallbacktorsh", oFallBackToRsh }, @@ -368,7 +368,7 @@ intptr = &options->kerberos_tgt_passing; goto parse_flag; #endif -#ifdef AFS +#if defined(AFS) && defined(KRB4) case oAFSTokenPassing: intptr = &options->afs_token_passing; goto parse_flag; @@ -757,7 +757,7 @@ #if defined(AFS) || defined(...
2001 Nov 20
3
problem with AFS token forwarding
Hello, I came across an interoperability problem in OpenSSH 3.0p1 and 3.0.1p1 concerning the AFS token forwarding. That means that the new versions are not able to exchange AFS tokens (and Kerberos TGTs) with older OpenSSH releases (including 2.9p2) and with the old SSH 1.2.2x. In my opinion this problem already existed in Openssh 2.9.9p1, but I have never used this version (I only looked at the
2001 Feb 06
4
argv[0] => host feature considered harmful
OpenSSH still has this feature, SSH-1.2.27 no longer has it. Admittedly it can be useful sometimes, even though I'd prefer this to be done using a trivial shell wrapper, which would be the UNIX way of doing things. Not being able to call OpenSSH's ssh by another name (say ``ssh1'') can get in the way when having to maintain two versions of ssh in parallel because the ``ssh ->
2001 May 31
0
Bug in scp
...se(8) = 0 567 dup2(6, 0) = 0 567 dup2(9, 1) = 1 567 close(6) = 0 567 close(9) = 0 567 execve("/usr/bin/ssh", ["/usr/bin/ssh", "-x", "-oFallBackToRsh no", "-oFallBackToRsh no", "-l", "acolomb", "ledge", "scp -t /tmp"], [/* 23 vars */]) = 0 567 brk(0) = 0x80661ec 567 open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or directory) 567 ope...
2001 Nov 12
4
Please test -current
Could people please test -current? We will be making a release fairly soon. -d -- | By convention there is color, \\ Damien Miller <djm at mindrot.org> | By convention sweetness, By convention bitterness, \\ www.mindrot.org | But in reality there are atoms and space - Democritus (c. 400 BCE)
2001 May 12
4
Erase the source file open; specify a tempfile name option
...ecursive, targetshouldbedirectory; +int eraseflag; +char *tmpfn = ""; -#define CMDNEEDS 64 -char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */ +char *cmd; +int cmdlen; int response(void); void rsource(char *, struct stat *); @@ -236,7 +239,7 @@ addargs(&args, "-oFallBackToRsh no"); fflag = tflag = 0; - while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:o:")) != -1) + while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:o:ET:")) != -1) switch (ch) { /* User-visible flags. */ case '4': @@ -270,6 +273,12 @@ case 'q':...
2001 Oct 12
17
Please test snapshots for 3.0 release
Could everyone please test the latest snapshots as we will be making a new release soon. If you have any patches you would like us to consider, please resend them to the list ASAP. -d -- | Damien Miller <djm at mindrot.org> \ ``E-mail attachments are the poor man's | http://www.mindrot.org / distributed filesystem'' - Dan Geer
2001 Aug 22
1
[Fwd: [Fwd: openssh 2.9p2 hang problem]]
...h > > root 25886 25885 0 15:00:40 ? 0:00 ssh xcalibur du -sk /oracle/u01/admin/xvkprd00/arch > > root 22924 22923 0 14:45:27 ? 0:00 ssh xcalibur du -sk /oracle/u01/admin/xitprd00/arch > > root 6335 6334 0 09:19:33 ? 0:00 /usr/local/bin/ssh -x -oFallBackToRsh no -C -4 monet scp -p -f /etc/hosts.allow > > root 25047 25026 0 08:20:56 pts/16 0:00 grep ssh > > root 22533 22393 0 08:13:13 pts/6 0:00 ssh middleware > > root 10348 10347 0 05:45:07 ? 0:00 ssh xesapbw df -k | grep saparch > > root 17284 1728...
2000 Aug 24
0
patch for a few things
...= 1; + #endif /* DEFAULT_NO_PROGRESS */ /* This is set to non-zero if running in batch mode (that is, password and passphrase queries are not allowed). */ *************** *** 165,170 **** --- 175,184 ---- args[i++] = ssh_program; args[i++] = "-x"; args[i++] = "-oFallBackToRsh no"; + if (protocol==1) + args[i++] = "-oProtocol 1"; + else if (protocol==2) + args[i++] = "-oProtocol 2"; if (IPv4) args[i++] = "-4"; if (IPv6) *************** *** 262,270 **** extern int optind; fflag = tflag = 0; ! while ((ch =...
2001 Jul 26
1
possible bug: OpenSSH appears to freeze on exit
...in/xanprd00/arch > root 25886 25885 0 15:00:40 ? 0:00 ssh xcalibur du -sk /oracle/u01/admin/xvkprd00/arch > root 22924 22923 0 14:45:27 ? 0:00 ssh xcalibur du -sk /oracle/u01/admin/xitprd00/arch > root 6335 6334 0 09:19:33 ? 0:00 /usr/local/bin/ssh -x -oFallBackToRsh no -C -4 monet scp -p -f /etc/hosts.allow > root 25047 25026 0 08:20:56 pts/16 0:00 grep ssh > root 22533 22393 0 08:13:13 pts/6 0:00 ssh middleware > root 10348 10347 0 05:45:07 ? 0:00 ssh xesapbw df -k | grep saparch > root 17284 17283 0 14:27:59 ?...