Displaying 20 results from an estimated 25 matches for "ocontrolpath".
Did you mean:
controlpath
2007 Aug 03
1
race condition with ControlMaster=auto
There is a race in the setup of the ControlMaster socket in auto mode, as
illustrated by the following command line:
ssh -oControlMaster=auto -oControlPath=sock localhost 'sleep 1; echo 1' &
ssh -oControlMaster=auto -oControlPath=sock localhost 'sleep 2; echo 2' &
Both of the commands will try to start up as a control client, find that
sock does not exist, and switch into control master mode. One will succeed
in creating the c...
2009 May 04
2
Multiplex tests fail on 5.2p1
I noticed "make tests" for openssh-5.2p1 fails the multiplex.sh tests.
Turns out this is because I happen to have some non-standard configuration
options in $HOME/.ssh/config and most of the multiplex.sh tests do not use
a "-F $OBJ/ssh_config" option, which means they end up reading the users
$HOME/.ssh/config.
Is this on purpose or a bug?
2005 Jun 23
0
ControlPersist.
...100
+++ openssh/readconf.c 2005-06-23 11:05:11.000000000 +0100
@@ -106,7 +106,7 @@ typedef enum {
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
oAddressFamily, oGssAuthentication, oGssDelegateCreds,
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
- oSendEnv, oControlPath, oControlMaster, oHashKnownHosts,
+ oSendEnv, oControlPath, oControlMaster, oControlPersist, oHashKnownHosts,
oDeprecated, oUnsupported
} OpCodes;
@@ -197,6 +197,7 @@ static struct {
{ "sendenv", oSendEnv },
{ "controlpath", oControlPath },
{ "controlmaster"...
2006 Feb 10
0
OpenSSH ControlAllowUsers, et al Patch
...=============
--- readconf.c (revision 15802)
+++ readconf.c (revision 15803)
@@ -106,8 +106,9 @@
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
oAddressFamily, oGssAuthentication, oGssDelegateCreds,
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
- oSendEnv, oControlPath, oControlMaster, oHashKnownHosts,
- oDeprecated, oUnsupported
+ oSendEnv, oControlBindMask, oControlPath, oControlMaster,
+ oControlAllowUsers, oControlDenyUsers, oControlAllowGroups,
+ oControlDenyGroups, oHashKnownHosts, oDeprecated, oUnsupported
} OpCodes;
/* Textual representations of the t...
2024 Jul 17
1
scattered thoughts on connection sharing
...sense that we added a way to do multiplexing on
Cygwin (-O proxy), not fixed in the sense that Cygwin gained the file
descriptor passing support needed to make the default way work.
> Do you need more details to reproduce this or do you folks have a windows install to test this on?
Try:
ssh -oControlPath=/something -oControlMaster=yes -N you at host
and open a multiplexed connection using:
ssh -oControlPath=/something -O proxy you at host
> Thing 2: It appears that "ssh -M localhost" does NOT attempt to start a "master" session, and the -M is silently ignored because no co...
2008 Jun 19
5
Portforwarding using the control master.
Hi all,
currently I am considering writing a patch for OpenSSH that will allow
portforwarding using the control_master unix domain socket. The idea is
to introduce an extra SSHMUX command, SSHMUX_COMMAND_SOCKS, which will
then pass control to the normal socks functions used for dynamic
forwarding.
The main reason for me to write this patch are:
- some more control over who gets to connect to
2024 Jul 17
2
scattered thoughts on connection sharing
...sense that we added a way to do multiplexing on Cygwin (-O proxy), not fixed in the sense that Cygwin gained the file descriptor passing support needed to make the default way work.
> Do you need more details to reproduce this or do you folks have a windows install to test this on?
Try:
ssh -oControlPath=/something -oControlMaster=yes -N you at host
and open a multiplexed connection using:
ssh -oControlPath=/something -O proxy you at host
> Thing 2: It appears that "ssh -M localhost" does NOT attempt to start a "master" session, and the -M is silently ignored because no co...
2004 Oct 03
3
[PATCH] PreferAskpass in ssh_config
...f.c 17 Jul 2004 06:12:08 -0000 1.109
+++ readconf.c 3 Oct 2004 10:58:52 -0000
@@ -106,7 +106,7 @@
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
oAddressFamily, oGssAuthentication, oGssDelegateCreds,
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
- oSendEnv, oControlPath, oControlMaster,
+ oSendEnv, oControlPath, oControlMaster, oPreferAskpass,
oDeprecated, oUnsupported
} OpCodes;
@@ -197,6 +197,7 @@
{ "sendenv", oSendEnv },
{ "controlpath", oControlPath },
{ "controlmaster", oControlMaster },
+ { "preferaskpass",...
2009 Jul 08
4
Feature request: "SetupCommand" invoked before connecting
Hi,
(I'm not subscribed to the list, so please CC me on reply.)
I'd like to request adding a feature to OpenSSH:
Task:
~~~~~
It is quite sometime useful to invoke a program prior to connecting to
an ssh server. The most common use case will probably be port knocking.
That is a small program sends certain packets to a server and the server
reacts to this by unlocking the ssh port, which
2022 Jul 05
6
[Bug 3456] New: provide a way to have forwardings killed, when the remote command/shell finishes
https://bugzilla.mindrot.org/show_bug.cgi?id=3456
Bug ID: 3456
Summary: provide a way to have forwardings killed, when the
remote command/shell finishes
Product: Portable OpenSSH
Version: v9.0p1
Hardware: Other
OS: All
Status: NEW
Severity: enhancement
Priority: P5
2024 Jul 22
1
scattered thoughts on connection sharing
...sense that we added a way to do multiplexing on Cygwin (-O proxy), not fixed in the sense that Cygwin gained the file descriptor passing support needed to make the default way work.
> Do you need more details to reproduce this or do you folks have a windows install to test this on?
Try:
ssh -oControlPath=/something -oControlMaster=yes -N you at host
and open a multiplexed connection using:
ssh -oControlPath=/something -O proxy you at host
> Thing 2: It appears that "ssh -M localhost" does NOT attempt to start a "master" session, and the -M is silently ignored because no co...
2007 Aug 04
13
[Bug 1349] New: race condition with ControlMaster=auto
...ReportedBy: dot at dotat.at
Created an attachment (id=1335)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=1335)
Fix race in ControlMaster=auto
There is a race in the setup of the ControlMaster socket in auto mode,
as illustrated by the following command line:
ssh -oControlMaster=auto -oControlPath=sock localhost 'sleep 1; echo 1'
&
ssh -oControlMaster=auto -oControlPath=sock localhost 'sleep 2; echo 2'
&
Both of the commands will try to start up as a control client, find
that sock does not exist, and switch into control master mode. One will
succeed in creating the c...
2015 Feb 18
0
[Bug 1902] persistent mux master should chdir away from the current directory
...st continuously, though -- the change works when i building
from source, not when building the debian package, but those issues
don't belong here.
for reference, my test setup is
$ killall ssh
$ mkdir a
# mount -ttmpfs tmp a
$ cd a
$ ssh -F /dev/null -oControlPersist=yes -oControlMaster=auto
-oControlPath=/tmp/x.sock somehost
somehost$ exit
$ cd ..
# umount a
which works (ie. umount returns 0) iff i run the using_daemon(0,1)
version.
i did no tests with respect to relative paths -- what would a setup
look like where relative paths could fail?
--
You are receiving this mail because:
You are watch...
2010 Oct 14
1
about testing SSH5.6 new feature.
Hi, all
Congratulations for the latest OpenSSH release!
Currently I'm writing the cases for testing the new feature. But this new feature is very complex for me:
Ssh(1) connection multiplexing now supports remote forwarding with dynamic port allocation and can report the allocated port back to the user:
LPORT=`ssh -S muxsocket -R0:localhost:25 -O forward somehost
Can you tell me the way
2024 Jul 15
2
scattered thoughts on connection sharing
Resending, got blocked last time.
I have a few things I'd like to say about the (seriously nifty) connection sharing feature of OpenSSH and I'm not sure if the convention here is to use one email thread per distinct thing or just stuff everything into one email.
I decided to combine them because splitting is much easier than combining.
Thing 1: This is the main thing that motivated me to
2019 Sep 06
3
[Bug 3067] New: Fails to unlink ControlMaster socket early enough, confuses other clients
https://bugzilla.mindrot.org/show_bug.cgi?id=3067
Bug ID: 3067
Summary: Fails to unlink ControlMaster socket early enough,
confuses other clients
Product: Portable OpenSSH
Version: 7.9p1
Hardware: Other
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component:
2008 Aug 29
4
[Bug 1517] New: ssh ControlMaster process is crashing frequently when multiplexing ssh and scp connections with error 'select: Invalid argument'
...ng 3KB files and then performing
checkum and mv commands. We are using ssh multiplexing to reduce CPU
and network load. We have a script in cron to restart the
ControlMaster process; it is restarting approx 280 times per day.
The ssh ControlMaster syntax:
/usr/local/bin/ssh -oControlMaster=yes
-oControlPath="/cdrc/.ssh/mp_sock-scholzite" -fnN -c blowfish-cbc
transfer at scholzite-be
We are using Openssh-5.1p1 compiled from source (and Openssl-0.9.8h).
This OpenSSH version is used on the client and server, both servers are
Solaris 9 Sparc platforms. The max file descriptors kernel paramete...
2013 Mar 22
1
[PATCH] Allow matching HostName against Host entries
...n 1.197
diff -u -r1.197 readconf.c
--- usr.bin/ssh/readconf.c 6 Mar 2013 23:36:53 -0000 1.197
+++ usr.bin/ssh/readconf.c 22 Mar 2013 01:34:26 -0000
@@ -128,7 +128,7 @@
oAddressFamily, oGssAuthentication, oGssDelegateCreds,
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
oSendEnv, oControlPath, oControlMaster, oControlPersist,
- oHashKnownHosts,
+ oHashKnownHosts, oMatchHostName,
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication,
oKexAlgorithms, oIPQoS, oRequestTTY,
@@ -228,6 +228,7 @@
{ "controlmast...
2024 Oct 13
5
[Bug 3743] New: ControlMaster forces ForkAfterAuthentication even when not wanted, and can't be disabled
https://bugzilla.mindrot.org/show_bug.cgi?id=3743
Bug ID: 3743
Summary: ControlMaster forces ForkAfterAuthentication even when
not wanted, and can't be disabled
Product: Portable OpenSSH
Version: 9.9p1
Hardware: Other
OS: Linux
Status: NEW
Severity: normal
Priority: P5
2005 Mar 01
7
[Bug 989] openssh-3.9p1 on Solaris 8 - multiplex.sh NOK
....9p1/regress/ls.copy
+ rm -f /opt/SSH/openssh-3.9p1/regress/ls.copy
+ trace sftp transfer over multiplexed connection and check result
+ [ Xyes = Xyes ]
+ echo sftp transfer over multiplexed connection and check result
sftp transfer over multiplexed connection and check result
+ sftp + -S ssh -oControlPath=/opt/SSH/openssh-3.9p1/regress/ctl-sock otherhost
echo get /bin/ls /opt/SSH/openssh-3.9p1/regress/ls.copy
Connecting to otherhost...
Request failed on channel 1
Connection closed
+ test -f /opt/SSH/openssh-3.9p1/regress/ls.copy
+ fail sftp: failed copy /bin/ls
RESULT=1
+ echo sftp: failed copy...