search for: oforwardagent

Displaying 19 results from an estimated 19 matches for "oforwardagent".

Did you mean: forwardagent
2007 Sep 18
7
[Bug 1365] New: sftp exits immediately after connection (fgets EAGAIN)
...ehavior has noticed in version 4.6p1 but sftp.c does not have changed in 4.7p1 ~ # sftp -S /usr/bin/dbclient -s /usr/lib/openssh/sftp-server foglietr at 172.16.119.6 Connecting to 172.16.119.6... WARNING: Ignoring unknown argument '-oForwardX11 no' WARNING: Ignoring unknown argument '-oForwardAgent no' WARNING: Ignoring unknown argument '-oPermitLocalCommand no' WARNING: Ignoring unknown argument '-oClearAllForwardings yes' WARNING: Ignoring unknown argument '-oProtocol 2' foglietr at 172.16.119.6's password: foglietr at 172.16.119.6's password: foglietr at...
2000 Feb 04
0
Patch that allows equal sign in options
..." \t\r\n=" /* @@ -237,7 +238,7 @@ return 0; /* Get the keyword. (Each line is supposed to begin with a keyword). */ - cp = strtok(cp, WHITESPACE); + cp = strtok(cp, WHITESPACE_EQ); opcode = parse_token(cp, filename, linenum); switch (opcode) { @@ -248,7 +249,7 @@ case oForwardAgent: intptr = &options->forward_agent; parse_flag: - cp = strtok(NULL, WHITESPACE); + cp = strtok(NULL, WHITESPACE_EQ); if (!cp) fatal("%.200s line %d: Missing yes/no argument.", filename, linenum); value = 0; /* To avoid compiler warning... */ @@ -330,7 +331,7 @@ c...
2002 May 22
0
[PATCH] connect() timeout
...+ if (!arg || *arg == '\0') + fatal("%.200s line %d: Missing time argument.", filename, linenum); + if ((value = convtime(arg)) == -1) + fatal("%.200s line %d: Invalid time argument.", filename, linenum); + if (*intptr == -1) + *intptr = value; + break; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -775,6 +790,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; opt...
2001 May 08
1
sftp problem
...configure the same and everything is functional. SFTP going in has been a problem since the first release including SFTP. I included the output from debug. Thanks-JWP $ sftp -v jpaint at ETwebuatbu Connecting to ETwebuatbu... debug1: SSH args "ssh -l jpaint -v ETwebuatbu -s -oForwardX11=no -oForwardAgent= no -oProtocol=2 sftp" OpenSSH_2.5.2p2, SSH protocols 1.5/2.0, OpenSSL 0x0090600f debug1: Seeded RNG with 36 bytes from programs debug1: Seeded RNG with 3 bytes from system calls debug1: Rhosts Authentication disabled, originating port will not be trusted. debug1: ssh_connect: getuid 1009 gete...
2015 Aug 16
0
[Bug 831] Allow agent forwarding in sftp & scp
...as it will conflict on both sftp.c (options changed since patch) and scp.c (the declaration of "n" added since patch). Patch changes behaviour in two ways: * Sets ForwardAgent=no by default, ForwardAgent=yes if -A is set. * Sets ForwardAgent=no after processing other args, which allows -oForwardAgent=yes to take effect, as ssh ignores duplicate command-line options. Once updated, I'd very much like this patch to go through. -- You are receiving this mail because: You are the assignee for the bug. You are watching the reporter of the bug.
2004 Nov 03
1
Urgent: rsync hangs with large directories from windows
...synchronisize windows to linux, starting on linux. The problem is not new, I found some mails in this list (archive) and on http://www.mikerubel.org/computers/rsync_snapshots/#Bugs too. Example of the command: rsync -e 'ssh -i /backup/data/servers/identities/backup.W2000Server -p 22 -x -oForwardAgent=no -oClearAllForwardings=yes' --archive --delete --backup --numeric-ids --backup-dir=/backup/data/incoming/W2000Server/Daten/ backup@192.168.0.7:"D:/Datensicherung/ /backup/data/current/W2000Server/ Daten/" I do read the source-code a little and I thought, it would be nice, to rewr...
2002 Jan 26
5
[PATCH] Connect timeout
...ationForLocalhost }, + { "connecttimeout", oConnectTimeout }, { NULL, 0 } }; @@ -294,6 +296,11 @@ /* don't panic, but count bad options */ return -1; /* NOTREACHED */ + + case oConnectTimeout: + intptr = &options->connection_timeout; + goto parse_int; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -775,6 +782,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; opt...
2001 Oct 10
0
sftp localhost exits after authentication?
...s not work in LynxOS (may be problem with saved ids). Might this be a problem. I have attached the debug output of the client program. Can I expect some help, Hari. bash-2.02$ sftp -v hari at localhost Connecting to localhost... debug1: SSH args "ssh -l hari -v localhost -s -oForwardX11=no -oForwardAgent=no -oProtocol=2 sftp" OpenSSH_2.9p2, SSH protocols 1.5/2.0, OpenSSL 0x0090600f debug1: Seeding random number generator debug1: Rhosts Authentication disabled, originating port will not be trusted. debug1: restore_uid debug1: ssh_connect: getuid 7 geteuid 7 anon 1 debug1: Connecting to localhos...
2001 Feb 20
0
sftd problem on Tru64 Unix
...H_2.5.1p1". I have included the output of sftpd -v -v . OpenSSH was complied with the gcc version 2.95.2 19991024 Byron Jennings ______________________________________________________________________________________________ Connecting to alph01... debug: SSH args "ssh -oProtocol=2 -s -oForwardAgent=no -oForwardX11=no -v -v alph01 sftp" OpenSSH_2.5.1p1, SSH protocols 1.5/2.0, OpenSSL 0x0090581f debug: Reading configuration data /home/jennings/.ssh/config debug: Applying options for alph01 debug: Applying options for * debug: Reading configuration data /home/jennings/ssh/etc/ssh_config deb...
2001 Nov 17
0
[PATCH] Connect timeout
...ationForLocalhost }, + { "connecttimeout", oConnectTimeout }, { NULL, 0 } }; @@ -294,6 +296,11 @@ /* don't panic, but count bad options */ return -1; /* NOTREACHED */ + + case oConnectTimeout: + intptr = &options->connection_timeout; + goto parse_int; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -775,6 +782,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; opt...
2003 Apr 15
0
Connect timeout patch
...if (!arg || *arg == '\0') + fatal("%.200s line %d: Missing time argument.", filename, linenum); + if ((value = convtime(arg)) == -1) + fatal("%.200s line %d: Invalid time argument.", filename, linenum); + if (*intptr == -1) + *intptr = value; + break; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -770,6 +783,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; opt...
2002 Apr 03
1
[PATCH] connect() timeout
...+ if (!arg || *arg == '\0') + fatal("%.200s line %d: Missing time argument.", filename, linenum); + if ((value = convtime(arg)) == -1) + fatal("%.200s line %d: Invalid time argument.", filename, linenum); + if (*intptr == -1) + *intptr = value; + break; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -775,6 +790,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; opt...
2001 Apr 24
1
HELP! sftp hangs on exit / Bug?
...h the newsgroup and my email > > address. > > > > Regards, > > > > Dave Hawkins > > Caltech > > dwh at ovro.caltech.edu > > > > > > > > Connecting to inyo... > > debug1: SSH args "ssh -v > > inyo -s -oForwardX11=no -oForwardAgent=no -oProtocol=2 sftp" > > OpenSSH_2.5.2p2, SSH protocols 1.5/2.0, OpenSSL 0x0090600f > > debug1: Seeding random number generator > > debug1: Rhosts Authentication disabled, originating port will not be > > trusted. > > debug1: ssh_connect: getuid 500 geteuid 500 a...
2002 Oct 17
0
[PATCH] connect() timeout for OpenSSH-3.5p1
...if (!arg || *arg == '\0') + fatal("%.200s line %d: Missing time argument.", filename, linenum); + if ((value = convtime(arg)) == -1) + fatal("%.200s line %d: Invalid time argument.", filename, linenum); + if (*intptr == -1) + *intptr = value; + break; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -769,6 +782,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; opt...
2001 Oct 26
2
Patch to add "warn" value to ForwardX11 and ForwardAgent
...supposed to go into OpenBSD GNATS but I don't find any references to GNATS on www.openbsd.com or www.openssh.com. How do I submit a patch to it? - Dave Dykstra --- readconf.c.O Fri Oct 26 10:45:15 2001 +++ readconf.c Fri Oct 26 11:42:22 2001 @@ -296,28 +296,44 @@ /* NOTREACHED */ case oForwardAgent: intptr = &options->forward_agent; -parse_flag: +parse_yesnowarn: arg = strdelim(&s); if (!arg || *arg == '\0') - fatal("%.200s line %d: Missing yes/no argument.", filename, linenum); + fatal("%.200s line %d: Missing yes/no/warn argument.", +...
2013 Apr 15
10
[Bug 2091] New: scp hangs while copying a large file and being executed as a background process ( with nohup )
...ps -ef|grep scp test1 1245328 1 0 16:32:39 - 0:00 scp /tmp/testfile test3 at target_machine:/tmp/testfile test1 1638838 1245328 0 16:32:39 - 0:18 /usr//bin/ssh -x -oForwardAgent no -oPermitLocalCommand no -oClearAllForwardings yes -l test3 -- target_machine scp -t -- /tmp/testfile test1 4850090 3998138 0 16:42:59 pts/1 0:00 grep scp -- You are receiving this mail because: You are watching the assignee of the bug.
2023 Feb 01
16
[Bug 3531] New: Ssh will not exit when it receives SIGTERM before calling poll in client_wait_until_can_do_something until some events happen.
https://bugzilla.mindrot.org/show_bug.cgi?id=3531 Bug ID: 3531 Summary: Ssh will not exit when it receives SIGTERM before calling poll in client_wait_until_can_do_something until some events happen. Product: Portable OpenSSH Version: 9.1p1 Hardware: Other OS: Linux Status:
2002 Jan 26
7
[PATCH] Added NoDelay config option and nodelay subsystem option
...(s, cmd); diff -ru openssh-3.0.2p1.orig/sftp.c openssh-3.0.2p1.cfgnodelay/sftp.c --- openssh-3.0.2p1.orig/sftp.c Thu Sep 20 02:57:56 2001 +++ openssh-3.0.2p1.cfgnodelay/sftp.c Sat Jan 26 19:47:36 2002 @@ -119,6 +119,7 @@ addargs(&args, "-oForwardX11 no"); addargs(&args, "-oForwardAgent no"); addargs(&args, "-oClearAllForwardings yes"); + addargs(&args, "-oNoDelay yes"); ll = SYSLOG_LEVEL_INFO; infile = stdin; /* Read from STDIN unless changed by -b */ diff -ru openssh-3.0.2p1.orig/ssh_config openssh-3.0.2p1.cfgnodelay/ssh_config --- opens...
2013 Oct 07
4
Feature request: FQDN Host match
Hello! I'm hoping that Gmail won't HTML format this mail so that I'll get flamed :) Anyway, my question relates to ssh_config. The problem I find is that the Host pattern is only applied to the argument given on the command line, as outlined in the man page: "The host is the hostname argument given on the command line (i.e. the name is not converted to a canonicalized host name