Displaying 20 results from an estimated 40 matches for "escape_char".
2014 Jun 23
1
-h, --help option
...ogle + StackOverflow. Having --help
option that works as an human friendly entrypoint for more
information about command would certainly save some time.
Current output from `ssh --help`:
usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]
[-D [bind_address:]port] [-e escape_char] [-F configfile]
[-i identity_file] [-L [bind_address:]port:host:hostport]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
[-R [bind_address:]port:host:hostport] [-S ctl_path]
[-w local_tun[:remote_tun]] [user@]hostname [command]
Propose...
2010 Apr 30
1
listescape und sieve
Hello,
bug or feature?
I'm using Dovecot 1.2.11. And because of a migration projekt I'm tempted
to use the listescape plugin.
If I understood well, it
plugin {
escape_char = "%"
}
should change the escape character to %. But it doesnt. Bug or feature?
But more important:
# sieve
fileinto "a.b";
does not work as expected - the folder is visible as "a.b" in a normal
imap client - because of the listescape plugin.
# sie...
2010 Aug 05
18
dot-containing foldernames \HasNoChildren bug ?
Hello,
we experience problems with dovecot configuration using the listescape
plugin to allow dots
in foldernames. In some mail clients, dot-containing folders won't show
any subfolders. This seems to
be related to the fact that the \HasNoChildren flag is set on such
folders even if subfolders do exits.
Here is an example from telnet session:
* LIST (\HasNoChildren) "/"
2011 Jul 17
2
openSSH 5.8p2 BindPort patch
...358189 +0100
@@ -4,7 +4,7 @@ NAME
ssh - OpenSSH SSH client (remote login program)
SYNOPSIS
- ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
+ ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-B bind_port
] [-c cipher_spec]
[-D [bind_address:]port] [-e escape_char] [-F configfile] [-I pkcs11]
[-i identity_file] [-L [bind_address:]port:host:hostport]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
@@ -55,6 +55,10 @@ DESCRIPTION
the connection. Only useful on systems with more than one
address....
2017 Mar 07
4
[Bug 2690] New: Add command line "ssh --version"
..." this is the standard
way to check the version, it is unclear what version ssh from the help
output, so could add it to that as well. If there was agreement.
$ ssh
usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c
cipher_spec]
[-D [bind_address:]port] [-E log_file] [-e escape_char]
[-F configfile] [-I pkcs11] [-i identity_file] [-L address]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p
port]
[-Q query_option] [-R address] [-S ctl_path] [-W host:port]
[-w local_tun[:remote_tun]] [user@]hostname [command]
I would sugge...
2009 Jul 09
0
[PATCH] Allow binding to a local port (OpenSSH 5.2)
...h.c b/ssh.c
--- a/ssh.c 2009-02-14 06:28:21.000000000 +0100
+++ b/ssh.c 2009-07-09 18:35:12.000000000 +0200
@@ -179,10 +179,11 @@
usage(void)
{
fprintf(stderr,
-"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
-" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
-" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
-" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
+"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-B bind_port ]\n"
+"...
2010 Jan 14
1
ssh(1) multiplexing rewrite
...8,7 @@ static volatile sig_atomic_t received_si
static int in_non_blocking_mode = 0;
/* Common data for the client loop code. */
-static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
+volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
static int escape_char1; /* Escape character. (proto1 only) */
static int escape_pending1; /* Last character was an escape (proto1 only) */
static int last_was_cr; /* Last character was a newline. */
@@ -556,9 +556,6 @@ client_wait_until_can_do_something(fd_se
if (packet_have_data_to_write())
FD_SET(connection_ou...
2002 Jul 17
2
[Patch] SSH through HTTP proxy using CONNECT
..._int;
+
case oPort:
intptr = &options->port;
parse_int:
@@ -765,6 +776,8 @@
options->hostname = NULL;
options->host_key_alias = NULL;
options->proxy_command = NULL;
+ options->proxy_server = NULL;
+ options->proxy_port = -1;
options->user = NULL;
options->escape_char = -1;
options->system_hostfile = NULL;
@@ -894,6 +907,7 @@
if (options->log_level == (LogLevel) - 1)
options->log_level = SYSLOG_LEVEL_INFO;
/* options->proxy_command should not be set by default */
+ /* options->proxy_server should not be set by default */
/* options->...
2000 Feb 04
0
Patch that allows equal sign in options
...activep = 0;
- while ((cp = strtok(NULL, WHITESPACE)) != NULL)
+ while ((cp = strtok(NULL, WHITESPACE_EQ)) != NULL)
if (match_pattern(host, cp)) {
debug("Applying options for %.100s", cp);
*activep = 1;
@@ -505,7 +506,7 @@
case oEscapeChar:
intptr = &options->escape_char;
- cp = strtok(NULL, WHITESPACE);
+ cp = strtok(NULL, WHITESPACE_EQ);
if (!cp)
fatal("%.200s line %d: Missing argument.", filename, linenum);
if (cp[0] == '^' && cp[2] == 0 &&
--- readconf.c.sv Mon Dec 6 01:47:29 1999
+++ readconf.c Thu Feb 3 22:37:54...
2000 Dec 21
1
Patch to allow DSA as well as RSA identities to be specified on the command line
...d multiple identities specified in config-
uration files).
diff -U2 openssh-2.2.0p1/ssh.1 openssh-2.2.0p1.nigelw/ssh.1
--- openssh-2.2.0p1/ssh.1 Tue Aug 29 11:33:51 2000
+++ openssh-2.2.0p1.nigelw/ssh.1 Thu Dec 21 10:56:23 2000
@@ -28,5 +28,6 @@
.Op Fl c Ar cipher_spec
.Op Fl e Ar escape_char
-.Op Fl i Ar identity_file
+.Op Fl i Ar rsa_identity_file
+.Op Fl I Ar dsa_identity_file
.Op Fl l Ar login_name
.Op Fl o Ar option
@@ -381,9 +382,21 @@
.It Fl g
Allows remote hosts to connect to local forwarded ports.
-.It Fl i Ar identity_file
+.It Fl i Ar rsa_identity_file
Selects the file f...
2001 Sep 13
4
ssh argv[0] support
....Dt SSH-ARGV0 1
.Os Debian Project
.Sh NAME
.Nm ssh-argv0
.Nd replaces the old ssh command-name as hostname handling
.Sh SYNOPSIS
.Ar hostname | user at hostname
.Op Fl l Ar login_name
.Op Ar command
.Pp
.Ar hostname | user at hostname
.Op Fl afgknqstvxACNPTX1246
.Op Fl c Ar cipher_spec
.Op Fl e Ar escape_char
.Op Fl i Ar identity_file
.Op Fl l Ar login_name
.Op Fl m Ar mac_spec
.Op Fl o Ar option
.Op Fl p Ar port
.Oo Fl L Xo
.Sm off
.Ar port :
.Ar host :
.Ar hostport
.Sm on
.Xc
.Oc
.Oo Fl R Xo
.Sm off
.Ar port :
.Ar host :
.Ar hostport
.Sm on
.Xc
.Oc
.Op Ar command
.Sh DESCRIPTION
.Nm
replaces the old s...
2004 Aug 26
2
OpenSSH PATCH: OpenCommand and CloseCommand
...as for .ssh/known_hosts */
char *proxy_command; /* Proxy command for connecting the host. */
+ char *open_command; /* Open command for before connecting the host. */
+ char *close_command; /* Close command for after connecting the host. */
char *user; /* User to log in as. */
int escape_char; /* Escape character; -2 = none */
Index: readconf.c
--- openssh-3.8p1.orig/readconf.c (.../.transvn:beginning) (revision 25)
+++ openssh-3.8p1/readconf.c (revision 25)
@@ -93,7 +93,8 @@
oPasswordAuthentication, oRSAAuthentication,
oChallengeResponseAuthentication, oXAuthLocation,
oIdentit...
2020 Jan 26
1
[Bug 3115] New: Add --help
...--help
etc.
Already works like
$ cat --help
except for the "unknown option" and error $? value.
$ ssh --help
unknown option -- -
usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface]
[-b bind_address] [-c cipher_spec] [-D [bind_address:]port]
[-E log_file] [-e escape_char] [-F configfile] [-I pkcs11]
[-i identity_file] [-J [user@]host[:port]] [-L address]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p
port]
[-Q query_option] [-R address] [-S ctl_path] [-W host:port]
[-w local_tun[:remote_tun]] destination [comm...
2004 Nov 20
1
[Bug 955] ssh -h " Displayed as illegal options " in SSH 3.9
...in the SSH Usage as
well as SSH man page
But when we try this as "ssh -h" ,
we are get Message as "ssh: illegal option -- h" log given below
# ssh -h
ssh: illegal option -- h
usage: ssh [-1246AaCfghkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]
[-D port] [-e escape_char] [-F configfile] [-i identity_file]
[-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]
[-p port] [-R port:host:hostport] [-S ctl] [user@]hostname [command]
To avoid this we have include the 'h' character in getopt( ) as given below
In ssh.c #
242...
2000 Aug 05
0
Protocol 2 and fork
...SG_CHANNEL_OPEN_CONFIRMATION, client_init, (void *)0);
+
+ /* Jarno: hack to get -f working with protocol 2 */
+ if (fork_after_authentication_flag) {
+ if (daemon(1, 1) < 0)
+ fatal("daemon() failed: %.200s", strerror(errno));
+ }
return client_loop(tty_flag, tty_flag ? options.escape_char : -1);
}
--
Jarno Huuskonen - System Administrator | Jarno.Huuskonen at uku.fi
University of Kuopio - Computer Center | Work: +358 17 162822
PL 1627, 70211 Kuopio, Finland | Mobile: +358 40 5388169
2004 Sep 08
0
[PATCH]Extending user@host syntax
...9p1/ssh.c openssh-3.9p1.new/ssh.c
- --- openssh-3.9p1/ssh.c 2004-08-15 09:23:34.000000000 +0200
+++ openssh-3.9p1.new/ssh.c 2004-09-08 16:12:58.000000000 +0200
@@ -157,7 +157,8 @@
"usage: ssh [-1246AaCfghkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
" [-D port] [-e escape_char] [-F configfile] [-i identity_file]\n"
" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]\n"
- -" [-p port] [-R port:host:hostport] [-S ctl] [user@]hostname [command]\n"
+" [-p port] [-R port:host:hostport] [-S ctl]\n&quo...
2024 Jan 06
14
[Bug 3649] New: Control sockets do not connect anymore (after updating OpenSSH)
https://bugzilla.mindrot.org/show_bug.cgi?id=3649
Bug ID: 3649
Summary: Control sockets do not connect anymore (after updating
OpenSSH)
Product: Portable OpenSSH
Version: 9.6p1
Hardware: ARM
OS: Mac OS X
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh
2013 Nov 23
2
[Bug 2174] New: no-pty in authorized_keys does not prevent and interactive shell
...6.32-5-amd64 #1 SMP Mon Oct 3 03:59:20 UTC 2011 x86_64
cat ~/.ssh/authorized_keys
no-pty ssh-rsa AAAA..5KS3+Q==
ssh -v
OpenSSH_5.5p1 Debian-6+squeeze3, OpenSSL 0.9.8o 01 Jun 2010
usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c
cipher_spec]
[-D [bind_address:]port] [-e escape_char] [-F configfile]
[-I pkcs11] [-i identity_file]
[-L [bind_address:]port:host:hostport]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p
port]
[-R [bind_address:]port:host:hostport] [-S ctl_path]
[-W host:port] [-w local_tun[:remote_tu...
2009 Feb 18
1
ssh -f & pid
...ell.
@@ -1223,6 +1259,12 @@
fatal("daemon() failed: %.200s", strerror(errno));
}
+ if (pid_file)
+ {
+ if (write_pid_file(pid_file) == -1)
+ fatal("write_pid(%s) failed: %.200s", pid_file, strerror(errno));
+ }
+
return client_loop(tty_flag, tty_flag ?
options.escape_char : SSH_ESCAPECHAR_NONE, id);
}
Folkert van Heusden
--
MultiTail is a versatile tool for watching logfiles and output of
commands. Filtering, coloring, merging, diff-view, etc.
http://www.vanheusden.com/multitail/
----------------------------------------------------------------------
Phone: +31-...
2004 Jan 08
3
Send Break to terminal server
Setup ::
PC (cygwin) <-> Terminal Server (InReach) <-> Sun Server (Solaris 8)
Scenarios :
Using Tera Term Pro with ssh extension, I connect to the Terminal Server via
ssh and I can use 'Control -> Send Break' to send the break sequence to drop
the Sun Server into its 'ok prompt'.
Using ssh via cygwin, I tried to do '~ ctrl-B', but it will not