Displaying 8 results from an estimated 8 matches for "oforwardx11".
Did you mean:
forwardx11
2007 Sep 18
7
[Bug 1365] New: sftp exits immediately after connection (fgets EAGAIN)
...is condition is not propely tested. Patch would fix.
This behavior 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...
2001 May 08
1
sftp problem
...3 other system 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...
2001 Oct 10
0
sftp localhost exits after authentication?
...o root as it
does 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: Conn...
2001 Feb 20
0
sftd problem on Tru64 Unix
...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
debug: Rhosts Authe...
2001 Apr 24
1
HELP! sftp hangs on exit / Bug?
...ase reply to both 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...
2001 Oct 26
2
Patch to add "warn" value to ForwardX11 and ForwardAgent
...(arg, "warn") == 0)
+ value = 2;
else
- fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
+ fatal("%.200s line %d: Bad yes/no/warn argument.", filename, linenum);
if (*activep && *intptr == -1)
*intptr = value;
break;
case oForwardX11:
intptr = &options->forward_x11;
- goto parse_flag;
+ goto parse_yesnowarn;
case oGatewayPorts:
intptr = &options->gateway_ports;
- goto parse_flag;
+parse_flag:
+ arg = strdelim(&s);
+ if (!arg || *arg == '\0')
+ fatal("%.200s line %d: Missing yes/no...
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
...uot;, cmd);
s->is_subsystem = 1;
do_exec(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_c...