The most popular for Unix is OpenSSH client. The material below is adapted form the manpage.
ssh (SSH client) is a program for logging into a remote machine and for executing commands
on a remote machine. It is intended to replace rlogin and rsh, and provide secure encrypted communications
between two untrusted hosts over an insecure network. X11 connections and arbitrary TCP ports can also
be forwarded over the secure channel.
ssh connects and logs into the specified hostname (with optional user name).
The user must prove his/her identity to the remote machine using one of several methods depending on
the protocol version used (see below).
If command is specified, it is executed on the remote host instead of a login shell.
-A' Enables forwarding of the authentication agent connection. This can also be specified
on a per-host basis in a configuration file.
Agent forwarding should be enabled with caution. Users with the ability to bypass file permissions
on the remote host (for the agent's Unix-domain socket) can access the local agent through the forwarded
connection. An attacker cannot obtain key material from the agent, however they can perform operations
on the keys that enable them to authenticate using the identities loaded into the agent.
-a' Disables forwarding of the authentication agent connection.
-bbind_address
Use bind_address on the local machine as the source address of the connection. Only useful
on systems with more than one address.
-C' Requests compression of all data (including stdin, stdout, stderr, and data for forwarded
X11 and TCP connections). The compression algorithm is the same used by gzip(1), and the ''level'' can
be controlled by the CompressionLevel option for protocol version 1. Compression is desirable
on modem lines and other slow connections, but will only slow down things on fast networks. The default
value can be set on a host-by-host basis in the configuration files; see the Compression option.
-ccipher_spec
Selects the cipher specification for encrypting the session.
Protocol version 1 allows specification of a single cipher. The supported values are ''3des'',
''blowfish'', and ''des''. 3des (triple-des) is an encrypt-decrypt-encrypt triple with three
different keys. It is believed to be secure. blowfish is a fast block cipher; it appears very
secure and is much faster than 3des. des is only supported in the ssh client
for interoperability with legacy protocol 1 implementations that do not support the 3des cipher.
Its use is strongly discouraged due to cryptographic weaknesses. The default is ''3des''.
For protocol version 2, cipher_spec is a comma-separated list of ciphers listed in order
of preference. The supported ciphers are: 3des-cbc, aes128-cbc, aes192-cbc, aes256-cbc, aes128-ctr,
aes192-ctr, aes256-ctr, arcfour128, arcfour256, arcfour, blowfish-cbc, and cast128-cbc. The default
is:
Specifies a local ''dynamic'' application-level port forwarding. This works by allocating a socket
to listen to port on the local side, optionally bound to the specified bind_address.
Whenever a connection is made to this port, the connection is forwarded over the secure channel,
and the application protocol is then used to determine where to connect to from the remote machine.
Currently the SOCKS4 and SOCKS5 protocols are supported, and ssh will act as a SOCKS server.
Only root can forward privileged ports. Dynamic port forwardings can also be specified in the configuration
file.
IPv6 addresses can be specified with an alternative syntax:
[bind_address/]port or by enclosing the address in square brackets. Only the superuser
can forward privileged ports. By default, the local port is bound in accordance with the GatewayPorts
setting. However, an explicit bind_address may be used to bind the connection to a specific
address. The bind_address of ''localhost'' indicates that the listening port be bound for
local use only, while an empty address or '*' indicates that the port should be available from all
interfaces.
-eescape_char
Sets the escape character for sessions with a pty (default: '~'). The escape character is only recognized
at the beginning of a line. The escape character followed by a dot ('.') closes the connection; followed
by control-Z suspends the connection; and followed by itself sends the escape character once. Setting
the character to ''none'' disables any escapes and makes the session fully transparent.
-Fconfigfile
Specifies an alternative per-user configuration file. If a configuration file is given on the command
line, the system-wide configuration file (/etc/ssh/ssh_config) will be ignored. The default
for the per-user configuration file is ~/.ssh/config.
-f' Requests ssh to go to background just before command execution. This is useful
if ssh is going to ask for passwords or passphrases, but the user wants it in the background.
This implies -n. The recommended way to start X11 programs at a remote site is with something
like ssh -f host xterm.
-g' Allows remote hosts to connect to local forwarded ports.
-Ismartcard_device
Specify the device ssh should use to communicate with a smartcard used for storing the user's
private RSA key. This option is only available if support for smartcard devices is compiled in (default
is no support).
-iidentity_file
Selects a file from which the identity (private key) for RSA or DSA authentication is read. The default
is ~/.ssh/identity for protocol version 1, and ~/.ssh/id_rsa and ~/.ssh/id_dsa
for protocol version 2. Identity files may also be specified on a per-host basis in the configuration
file. It is possible to have multiple -i options (and multiple identities specified in configuration
files).
-k' Disables forwarding (delegation) of GSSAPI credentials to the server.
-L
[
bind_address:]port:host:hostport
Specifies that the given port on the local (client) host is to be forwarded to the given host and
port on the remote side. This works by allocating a socket to listen to port on the local
side, optionally bound to the specified bind_address. Whenever a connection is made to this
port, the connection is forwarded over the secure channel, and a connection is made to host
port hostport from the remote machine. Port forwardings can also be specified in the configuration
file. IPv6 addresses can be specified with an alternative syntax:
[bind_address/]port/host/hostport or by enclosing the address in square
brackets. Only the superuser can forward privileged ports. By default, the local port is bound in
accordance with the GatewayPorts setting. However, an explicit bind_address may be
used to bind the connection to a specific address. The bind_address of ''localhost'' indicates
that the listening port be bound for local use only, while an empty address or '*' indicates that
the port should be available from all interfaces.
-llogin_name
Specifies the user to log in as on the remote machine. This also may be specified on a per-host basis
in the configuration file.
-M' Places the ssh client into ''master'' mode for connection sharing. Multiple
-M options places ssh into ''master'' mode with confirmation required before slave
connections are accepted. Refer to the description of ControlMaster in ssh_config(5) for details.
-mmac_spec
Additionally, for protocol version 2 a comma-separated list of MAC (message authentication code)
algorithms can be specified in order of preference. See the MACs keyword for more information.
-N' Do not execute a remote command. This is useful for just forwarding ports (protocol
version 2 only).
-n' Redirects stdin from /dev/null (actually, prevents reading from stdin). This
must be used when ssh is run in the background. A common trick is to use this to run X11 programs
on a remote machine. For example, ssh -n shadows.cs.hut.fi emacs & will start an emacs on
shadows.cs.hut.fi, and the X11 connection will be automatically forwarded over an encrypted channel.
The ssh program will be put in the background. (This does not work if ssh needs to
ask for a password or passphrase; see also the -f option.)
-Octl_cmd
Control an active connection multiplexing master process. When the -O option is specified,
the ctl_cmd argument is interpreted and passed to the master process. Valid commands are:
''check'' (check that the master process is running) and ''exit'' (request the master to exit).
-ooption
Can be used to give options in the format used in the configuration file. This is useful for specifying
options for which there is no separate command-line flag. For full details of the options listed
below, and their possible values, see ssh_config(5).
-pport
Port to connect to on the remote host. This can be specified on a per-host basis in the configuration
file.
-q' Quiet mode. Causes all warning and diagnostic messages to be suppressed.
-R
[
bind_address:]port:host:hostport
Specifies that the given port on the remote (server) host is to be forwarded to the given host and
port on the local side. This works by allocating a socket to listen to port on the remote
side, and whenever a connection is made to this port, the connection is forwarded over the secure
channel, and a connection is made to host port hostport from the local machine.
Port forwardings can also be specified in the configuration file. Privileged ports can be forwarded
only when logging in as root on the remote machine. IPv6 addresses can be specified by enclosing
the address in square braces or using an alternative syntax:
[bind_address/]host/port/hostport.
By default, the listening socket on the server will be bound to the loopback interface only. This
may be overriden by specifying a bind_address. An empty bind_address, or the address
'*', indicates that the remote socket should listen on all interfaces. Specifying a remote bind_address
will only succeed if the server's GatewayPorts option is enabled (see sshd_config(5)).
-Sctl_path
Specifies the location of a control socket for connection sharing. Refer to the description of
ControlPath and ControlMaster in ssh_config(5) for details.
-s' May be used to request invocation of a subsystem on the remote system. Subsystems are
a feature of the SSH2 protocol which facilitate the use of SSH as a secure transport for other applications
(eg. sftp(1)). The subsystem
is specified as the remote command.
-T' Disable pseudo-tty allocation.
-t' Force pseudo-tty allocation. This can be used to execute arbitrary screen-based programs
on a remote machine, which can be very useful, e.g., when implementing menu services. Multiple
-t options force tty allocation, even if ssh has no local tty.
-V' Display the version number and exit.
-v' Verbose mode. Causes ssh to print debugging messages about its progress. This
is helpful in debugging connection, authentication, and configuration problems. Multiple -v
options increase the verbosity. The maximum is 3.
-wtunnel:tunnel
Requests a tun(4) device on the client (first tunnel arg) and server (second tunnel
arg). The devices may be specified by numerical ID or the keyword ''any'', which uses the next available
tunnel device. See also the Tunnel directive in ssh_config(5).
-X' Enables X11 forwarding. This can also be specified on a per-host basis in a configuration
file.
X11 forwarding should be enabled with caution. Users with the ability to bypass file permissions
on the remote host (for the user's X authorization database) can access the local X11 display through
the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring.
For this reason, X11 forwarding is subjected to X11 SECURITY extension restrictions by default.
Please refer to the ssh -Y option and the ForwardX11Trusted directive in ssh_config(5) for more information.
-x' Disables X11 forwarding.
-Y' Enables trusted X11 forwarding. Trusted X11 forwardings are not subjected to the X11
SECURITY extension controls.
ssh may additionally obtain configuration data from a per-user configuration file and a
system-wide configuration file. The file format and configuration options are described in ssh_config(5).
ssh exits with the exit status of the remote command or with 255 if an error occurred.
Client Recommendations
Client configuration specifies host option assignment, data compression, keep-alives, protocol
support, and identity management. Specific recommendations are given for each topic.
Host Option Assignment
Configuration options can be assigned to a specific host or to all hosts by using the Host
keyword. The value is matched to what the user types on the command line, not to the actual host
name of the server. An asterisk (*) is used to set global default options. Options assigned
to a specific host have precedence over the global defaults.
# Only for a specific host
Host legacy
Protocol 1
# For all hosts
Host *
Protocol 2
Data Compression
Data compression can be used on the encrypted data stream to save bandwidth. Set to off
by default, you should enable it for interactive sessions or for transferring easily compressible
data. The compression cost is asymmetric in that compressing the data is more computationally expensive
than decompression. Client-side CPU cycles are generally cheaper than server-side CPU cycles. Avoid
attempting to compress already compressed or encrypted data to avoid needlessly raising the CPU load
on the server.
# For interactive sessions, low bandwidth links,
or easily
# compressable files
Compression yes
Keep-Alives
Enable TCP keep-alives to detect downed connections. See "Keep-Alives"
on page 44 for the server recommendations.
KeepAlive yes
Protocol Support
Always use Protocol 2 when possible. See "Protocol Support" on page
43 for the server recommendation.
Protocol 2
rlogin and rsh
The rlogin and rsh protocols should not be used. Prevent the client from attempting
to execute rsh if a Secure Shell connection is refused.
FallBackToRsh no
UseRsh no
Server Identity
Verify server identity both by its host key and IP address. For higher levels of identity assurance,
set StrictHostKeyChecking to yes and distribute host keys out-of-band. This is
impractical when users frequently encounter new hosts. Set StrictHostKeyChecking to
ask, and train the users to verify the offered host key with the stored host key on the server.
See "Managing Keys and Identities"
on page 71 for more information.
CheckHostIP yes
# only access one host
StrictHostKeyChecking yes
CheckHostIP yes
# access a variety of hosts
StrictHostKeyChecking ask
User Identity
User identities are stronger and provide more flexibility than does password authentication. When
user identities are combined with agents, password-free logins can safely be obtained if the server
permits it. See "Integrating Secure
Shell" on page 59 and "Managing
Keys and Identities" on page 71 for details.
DSAAuthentication yes
PubkeyAuthentication yes
Authentication
The OpenSSH SSH client supports SSH protocols 1 and 2. Protocol 2 is the default, with ssh
falling back to protocol 1 if it detects protocol 2 is unsupported. These settings may be altered using
the Protocol option in ssh_config(5),
or enforced using the -1 and -2 options (see above). Both protocols support similar authentication
methods, but protocol 2 is preferred since it provides additional mechanisms for confidentiality (the
traffic is encrypted using AES, 3DES, Blowfish, CAST128, or Arcfour) and integrity (hmac-md5, hmac-sha1,
hmac-ripemd160). Protocol 1 lacks a strong mechanism for ensuring the integrity of the connection.
The methods available for authentication are: host-based authentication, public key authentication,
challenge-response authentication, and password authentication. Authentication methods are tried in
the order specified above, though protocol 2 has a configuration option to change the default order:
PreferredAuthentications.
Host-based authentication works as follows: If the machine the user logs in from is listed in
/etc/hosts.equiv or /etc/ssh/shosts.equiv on the remote machine, and the user names are the
same on both sides, or if the files ~/.rhosts or ~/.shosts exist in the user's home directory
on the remote machine and contain a line containing the name of the client machine and the name of the
user on that machine, the user is considered for login. Additionally, the server must be able
to verify the client's host key (see the description of /etc/ssh/ssh_known_hosts and ~/.ssh/known_hosts,
below) for login to be permitted. This authentication method closes security holes due to IP spoofing,
DNS spoofing, and routing spoofing. [Note to the administrator: /etc/hosts.equiv, ~/.rhosts,
and the rlogin/rsh protocol in general, are inherently insecure and should be disabled if security is
desired.]
Public key authentication works as follows: The scheme is based on public-key cryptography, using
cryptosystems where encryption and decryption are done using separate keys, and it is unfeasible to
derive the decryption key from the encryption key. The idea is that each user creates a public/private
key pair for authentication purposes. The server knows the public key, and only the user knows the private
key. ssh implements public key authentication protocol automatically, using either the RSA or
DSA algorithms. Protocol 1 is restricted to using only RSA keys, but protocol 2 may use either. The
HISTORY section of ssl(8) contains a brief discussion of the two algorithms.
The file ~/.ssh/authorized_keys lists the public keys that are permitted for logging in. When
the user logs in, the ssh program tells the server which key pair it would like to use for authentication.
The client proves that it has access to the private key and the server checks that the corresponding
public key is authorized to accept the account.
The user creates his/her key pair by running ssh-keygen(1). This stores the
private key in ~/.ssh/identity (protocol 1), ~/.ssh/id_dsa (protocol 2 DSA), or ~/.ssh/id_rsa
(protocol 2 RSA) and stores the public key in ~/.ssh/identity.pub (protocol 1), ~/.ssh/id_dsa.pub
(protocol 2 DSA), or ~/.ssh/id_rsa.pub (protocol 2 RSA) in the user's home directory. The user
should then copy the public key to ~/.ssh/authorized_keys in his/her home directory on the remote
machine. The authorized_keys file corresponds to the conventional ~/.rhosts file, and
has one key per line, though the lines can be very long. After this, the user can log in without giving
the password.
The most convenient way to use public key authentication may be with an authentication agent. See
ssh-agent(1) for more information.
Challenge-response authentication works as follows: The server sends an arbitrary "challenge" text,
and prompts for a response. Protocol 2 allows multiple challenges and responses; protocol 1 is restricted
to just one challenge/response. Examples of challenge-response authentication include BSD Authentication
(see login.conf(5)) and PAM (some non-OpenBSD systems).
Finally, if other authentication methods fail, ssh prompts the user for a password. The password
is sent to the remote host for checking; however, since all communications are encrypted, the password
cannot be seen by someone listening on the network.
ssh automatically maintains and checks a database containing identification for all hosts
it has ever been used with. Host keys are stored in ~/.ssh/known_hosts in the user's home directory.
Additionally, the file /etc/ssh/ssh_known_hosts is automatically checked for known hosts. Any
new hosts are automatically added to the user's file. If a host's identification ever changes, ssh
warns about this and disables password authentication to prevent server spoofing or man-in-the-middle
attacks, which could otherwise be used to circumvent the encryption. The StrictHostKeyChecking
option can be used to control logins to machines whose host key is not known or has changed.
When the user's identity has been accepted by the server, the server either executes the given command,
or logs into the machine and gives the user a normal shell on the remote machine. All communication
with the remote command or shell will be automatically encrypted.
If a pseudo-terminal has been allocated (normal login session), the user may use the escape characters
noted below.
If no pseudo-tty has been allocated, the session is transparent and can be used to reliably transfer
binary data. On most systems, setting the escape character to ''none'' will also make the session transparent
even if a tty is used.
The session terminates when the command or shell on the remote machine exits and all X11 and TCP
connections have been closed.
Escape Characters
When a pseudo-terminal has been requested, ssh supports a number of functions through the
use of an escape character.
A single tilde character can be sent as ~~ or by following the tilde by a character other
than those described below. The escape character must always follow a newline to be interpreted as special.
The escape character can be changed in configuration files using the EscapeChar configuration
directive or on the command line by the -e option.
The supported escapes (assuming the default '~') are:
~.' Disconnect.
~^Z' Background ssh.
~#' List forwarded connections.
~&' Background ssh at logout when waiting for forwarded connection / X11 sessions
to terminate.
~?' Display a list of escape characters.
~B' Send a BREAK to the remote system (only useful for SSH protocol version 2 and if the
peer supports it).
~C' Open command line. Currently this allows the addition of port forwardings using the
-L and -R options (see above). It also allows the cancellation of existing remote port-forwardings
using -KRhostport. !command allows the user to execute a local command
if the PermitLocalCommand option is enabled in ssh_config(5). Basic help
is available, using the -h option.
~R' Request rekeying of the connection (only useful for SSH protocol version 2 and if the
peer supports it).
Tcp Forwarding
Forwarding of arbitrary TCP connections over the secure channel can be specified either on the command
line or in a configuration file. One possible application of TCP forwarding is a secure connection to
a mail server; another is going through firewalls.
In the example below, we look at encrypting communication between an IRC client and server, even
though the IRC server does not directly support encrypted communications. This works as follows: the
user connects to the remote host using ssh, specifying a port to be used to forward connections
to the remote server. After that it is possible to start the service which is to be encrypted on the
client machine, connecting to the same local port, and ssh will encrypt and forward the connection.
The following example tunnels an IRC session from client machine ''127.0.0.1'' (localhost) to remote
server ''server.example.com'':
This tunnels a connection to IRC server ''server.example.com'', joining channel ''#users'', nickname
''pinky'', using port 1234. It doesn't matter which port is used, as long as it's greater than 1023
(remember, only root can open sockets on privileged ports) and doesn't conflict with any ports already
in use. The connection is forwarded to port 6667 on the remote server, since that's the standard port
for IRC services.
The -f option backgrounds ssh and the remote command ''sleep 10'' is specified to allow
an amount of time (10 seconds, in the example) to start the service which is to be tunnelled. If no
connections are made within the time specified, ssh will exit.
X11 FORWARDING
If the ForwardX11 variable is set to ''yes'' (or see the description of the -X,
-x, and -Y options above) and the user is using X11 (the DISPLAY environment variable is
set), the connection to the X11 display is automatically forwarded to the remote side in such a way
that any X11 programs started from the shell (or command) will go through the encrypted channel, and
the connection to the real X server will be made from the local machine. The user should not manually
set DISPLAY. Forwarding of X11 connections can be configured on the command line or in configuration
files.
The DISPLAY value set by ssh will point to the server machine, but with a display number greater
than zero. This is normal, and happens because ssh creates a ''proxy'' X server on the server
machine for forwarding the connections over the encrypted channel.
ssh will also automatically set up Xauthority data on the server machine. For this purpose,
it will generate a random authorization cookie, store it in Xauthority on the server, and verify that
any forwarded connections carry this cookie and replace it by the real cookie when the connection is
opened. The real authentication cookie is never sent to the server machine (and no cookies are sent
in the plain).
If the ForwardAgent variable is set to ''yes'' (or see the description of the -A and
-a options above) and the user is using an authentication agent, the connection to the agent
is automatically forwarded to the remote side.
Verifying Host Keys
When connecting to a server for the first time, a fingerprint of the server's public key is presented
to the user (unless the option StrictHostKeyChecking has been disabled). Fingerprints can be
determined using ssh-keygen(1):
$ ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key
If the fingerprint is already known, it can be matched and verified, and the key can be accepted.
If the fingerprint is unknown, an alternative method of verification is available: SSH fingerprints
verified by DNS. An additional resource record (RR), SSHFP, is added to a zonefile and the connecting
client is able to match the fingerprint with that of the key presented.
In this example, we are connecting a client to a server, ''host.example.com''. The SSHFP resource
records should first be added to the zonefile for host.example.com:
The output lines will have to be added to the zonefile. To check that the zone is answering fingerprint
queries:
$ dig -t SSHFP host.example.com
Finally the client connects:
$ ssh -o "VerifyHostKeyDNS ask" host.example.com
[...]
Matching host key fingerprint found in DNS.
Are you sure you want to continue connecting (yes/no)?
See the VerifyHostKeyDNS option in ssh_config(5) for more information.
SSH-BASED VIRTUAL PRIVATE NETWORKS
ssh contains support for Virtual Private Network (VPN) tunnelling using the tun(4)
network pseudo-device, allowing two networks to be joined securely. The sshd_config(5) configuration
option PermitTunnel controls whether the server supports this, and at what level (layer 2 or
3 traffic).
The following example would connect client network 10.0.50.0/24 with remote network 10.0.99.0/24,
provided that the SSH server running on the gateway to the remote network, at 192.168.1.15, allows it:
Client access may be more finely tuned via the /root/.ssh/authorized_keys file (see below) and
the PermitRootLogin server option. The following entry would permit connections on the first
tun(4) device from user ''jane'' and on the second device from user ''john'', if PermitRootLogin
is set to ''forced-commands-only'':
tunnel="1",command="sh /etc/netstart tun1" ssh-rsa ... jane
tunnel="2",command="sh /etc/netstart tun1" ssh-rsa ... john
Since a SSH-based setup entails a fair amount of overhead, it may be more suited to temporary setups,
such as for wireless VPNs. More permanent VPNs are better provided by tools such as ipsecctl(8)
and isakmpd(8).
Environment
ssh will normally set the following environment variables:
DISPLAY' The DISPLAY variable indicates thelocation of the X11 server. It is automaticallyset by ssh to point to a value of the form''hostname:n'', where ''hostname'' indicates thehost where the shell runs, and 'n' is an integer >=1. ssh uses this special value to forward X11connections over the secure channel. The usershould normally not set DISPLAY explicitly, as thatwill render the X11 connection insecure (and willrequire the user to manually copy any requiredauthorization cookies).
HOME' Set to the path of the user's home directory.
LOGNAME' Synonym for USER; set for compatibility with systems that use this variable.
MAIL' Set to the path of the user's mailbox.
PATH' Set to the default PATH, as specified when compiling ssh.
SSH_ASKPASS' If ssh needs a passphrase, it will read the passphrase from the current terminal
if it was run from a terminal. If ssh does not have a terminal associated with it but DISPLAY
and SSH_ASKPASS are set, it will execute the program specified by SSH_ASKPASS and open an X11 window
to read the passphrase. This is particularly useful when calling ssh from a .xsession
or related script. (Note that on some machines it may be necessary to redirect the input from /dev/null
to make this work.)
SSH_AUTH_SOCK' Identifies the path of a UNIX-domain socket used to communicate with the agent.
SSH_CONNECTION' Identifies the client and server ends of the connection. The variable contains four
space-separated values: client IP address, client port number, server IP address, and server port number.
SSH_ORIGINAL_COMMAND
This variable contains the original command line if a forced command is executed. It can be used to
extract the original arguments.
SSH_TTY' This is set to the name of the tty (path to the device) associated with the current shell
or command. If the current session has no tty, this variable is not set.
TZ' This variable is set to indicate the present time zone if it was set when the daemon was started
(i.e., the daemon passes the value on to new connections).
USER' Set to the name of the user logging in.
Additionally, ssh reads ~/.ssh/environment, and adds lines of the format ''VARNAME=value''
to the environment if the file exists and users are allowed to change their environment. For more information,
see the PermitUserEnvironment option in sshd_config(5).
Files
~/.rhosts
This file is used for host-based authentication (see above). On some machines this file may need
to be world-readable if the user's home directory is on an NFS partition, because sshd(8) reads it as root. Additionally,
this file must be owned by the user, and must not have write permissions for anyone else. The recommended
permission for most machines is read/write for the user, and not accessible by others.
~/.shosts
This file is used in exactly the same way as .rhosts, but allows host-based authentication
without permitting login with rlogin/rsh.
~/.ssh/authorized_keys
Lists the public keys (RSA/DSA) that can be used for logging in as this user. The format of this
file is described in the sshd(8)
manual page. This file is not highly sensitive, but the recommended permissions are read/write for
the user, and not accessible by others.
~/.ssh/config
This is the per-user configuration file. The file format and configuration options are described
in ssh_config(5). Because
of the potential for abuse, this file must have strict permissions: read/write for the user, and
not accessible by others.
~/.ssh/environment
Contains additional definitions for environment variables; see ENVIRONMENT, above.
~/.ssh/identity
~/.ssh/id_dsa
~/.ssh/id_rsa
Contains the private key for authentication. These files contain sensitive data and should be readable
by the user but not accessible by others (read/write/execute). ssh will simply ignore a private
key file if it is accessible by others. It is possible to specify a passphrase when generating the
key which will be used to encrypt the sensitive part of this file using 3DES.
~/.ssh/identity.pub
~/.ssh/id_dsa.pub
~/.ssh/id_rsa.pub
Contains the public key for authentication. These files are not sensitive and can (but need not)
be readable by anyone.
~/.ssh/known_hosts
Contains a list of host keys for all hosts the user has logged into that are not already in the systemwide
list of known host keys. See sshd(8)
for further details of the format of this file.
~/.ssh/rc
Commands in this file are executed by ssh when the user logs in, just before the user's shell
(or command) is started. See the sshd(8)
manual page for more information.
/etc/hosts.equiv
This file is for host-based authentication (see above). It should only be writable by root.
/etc/ssh/shosts.equiv
This file is used in exactly the same way as hosts.equiv, but allows host-based authentication
without permitting login with rlogin/rsh.
/etc/ssh/ssh_config
Systemwide configuration file. The file format and configuration options are described in ssh_config(5).
/etc/ssh/ssh_host_key
/etc/ssh/ssh_host_dsa_key
/etc/ssh/ssh_host_rsa_key
These three files contain the private parts of the host keys and are used for host-based authentication.
If protocol version 1 is used, ssh must be setuid root, since the host key is readable only
by root. For protocol version 2, ssh uses ssh-keysign(8) to access
the host keys, eliminating the requirement that ssh be setuid root when host-based authentication
is used. By default ssh is not setuid root.
/etc/ssh/ssh_known_hosts
Systemwide list of known host keys. This file should be prepared by the system administrator to contain
the public host keys of all machines in the organization. It should be world-readable. See sshd(8) for further details of the
format of this file.
/etc/ssh/sshrc
Commands in this file are executed by ssh when the user logs in, just before the user's shell
(or command) is started. See the sshd(8)
manual page for more information.
T. Ylonen, T. Kivinen, M. Saarinen, T. Rinne, and S. Lehtinen, SSH Protocol Architecture, draft-ietf-secsh-architecture-12.txt, January 2002, work in progress material.
Appendix C. Client Configuration Options
This appendix contains a list of the client configuration options supported by the Solaris Secure
Shell software and OpenSSH. The list is formatted in the following manner:
Name of the option and the value or values it takes
Description
Default in the Solaris Secure Shell software and OpenSSH
Recommendation, as applicable
References, as applicable
Example, given in a code box
Note
Client options cannot override the server's configuration.
BatchMode yes|no
Specifies whether or not the password or passphrase prompting is disabled. Use this option in
scripts for automated logins.
The Solaris Secure Shell software and OpenSSH default to no.
# For automated scripts
BatchMode yes
CheckHostIP yes|no
Specifies whether or not to check the server IP address in the known_hosts file. This
option detects DNS spoofing.
The Solaris Secure Shell software and OpenSSH default to yes.
Recommended value is yes.
See also StrictHostKeyChecking.
CheckHostIP yes
Cipher 3des|blowfish|des
For Protocol 1 only, specifies the ciphers to use when encrypting the session, in order of preference.
Multiple ciphers are comma delimited.
The Solaris Secure Shell software and OpenSSH default to 3des. des is supported
only on OpenSSH.
Recommended value is 3des.
See also Ciphers.
# For legacy protocol 1 servers only
Cipher 3des,blowfish
Ciphers list
For Protocol 2 only, specifies the ciphers to use when encrypting the session, in order of preference.
Multiple ciphers are comma delimited.
The Solaris Secure Shell software defaults to 3des-cbc,blowfish-cbc,aes-128-cbc.
OpenSSH defaults to aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc.
See also Cipher.
Ciphers 3des-cbc,blowfish-cbc,aes-128-cbc
Compression yes|no
Specifies whether or not to use compression. Compression can improve performance over low-bandwidth
network connections. No performance will be gained in the transfer of minimally compressible data
such as MPEG2 files or GZIP compressed files.
The Solaris Secure Shell software and OpenSSH default to no.
Recommended value is yes, if transferring a large amount of text data (for example,
logs).
See also CompressionLevel.
Compression yes
CompressionLevel value
Specifies the compression level to use. Valid values are 1 (least compression, but fastest
performance) through 9 (most compression, but slowest performance). This keyword requires
Compression set to yes.
The Solaris Secure Shell software and OpenSSH default to 6.
See also Compression.
CompressionLevel 9
ConnectionAttempts value
Specifies the number of attempts to make a connection before exiting or falling back to rsh(1).
The Solaris Secure Shell software and OpenSSH default to 3.
See also FallbackToRsh and NumberOfPasswordPrompts.
ConnectionAttempts 3
DSAAuthentication yes|no
For Protocol 2 only, specifies whether or not to attempt DSA authentication. This option requires
a DSA identity file.
The Solaris Secure Shell software and OpenSSH default to yes.
Recommended value is yes.
See also PasswordAuthentication and PubkeyAuthentication.
DSAAuthentication yes
EscapeChar Value
Specifies the escape character. Valid values are a single character or a caret (^) followed by
a character to symbolize a control character. The value can also be left empty to have no escape
character.
The Solaris Secure Shell software and OpenSSH default to tilde (~).
# Completely transparent connection
EscapeChar
FallBackToRsh yes|no
Specifies whether or not the client should use rsh(1) if it is unable to make a secure
connection.
The Solaris Secure Shell software and OpenSSH default to no.
Recommended value is no.
See also ConnectionAttempts and UseRsh.
FallBackToRsh no
ForwardAgent yes|no
Specifies whether or not the agent connection will be forwarded to the server.
The Solaris Secure Shell software and OpenSSH default to no.
Recommended value is no.
ForwardAgent no
ForwardX11 yes|no
Specifies whether or not to enable X11 connection forwarding.
The Solaris Secure Shell software defaults to no. OpenSSH defaults to yes.
Recommended value is yes if users need to protect X connections.
ForwardX11 yes
GatewayPorts yes|no
Specifies whether or not other hosts may use forwarded ports.
The Solaris Secure Shell software and OpenSSH default to no.
Recommended value is no.
See also LocalForward and RemoteForward.
GatewayPorts no
GlobalKnownHostsFile value
Specifies global known host file, other than the default.
The Solaris Secure Shell software defaults to: /etc/ssh_known_hosts OpenSSH defaults
to: /usr/local/etc/ssh_known_hosts
See also UserKnownHostsFile.
GlobalKnownHostsFile /etc/ssh_known_hosts
Host value
Restricts keyword designations to a particular host until the next Host keyword. The
Host value is given on the command line. Wildcards of asterisk (*), matching any number
of characters, or question mark (?), matching a single character, can be used. An asterisk by itself
is used to set global defaults.
See also HostName.
# Only for legacy host
Host legacy
Protocol 1
# defaults
Host *
Protocol 2
CheckHostIP yes
ConnectionAttempts 3
HostName value
Specifies the real host name to which to connect. Allows abbreviations or nicknames to be specified
on the command line. Numeric IP addresses are also allowed. Use with the Host keyword.
Specifies the file from which to read identities. Multiple listings can be given that will be
checked sequentially.
The Solaris Secure Shell software and OpenSSH default to ~/ .ssh/identity for Protocol
1, ~/ .ssh/id_rsa for RSA authentication in Protocol 2, and ~/ .ssh/id_dsa for
DSA authentication in Protocol 2.
IdentityFile ~/ .ssh/dsa_ident_2
KeepAlive yes | no
Specifies whether or not TCP keep-alives are sent. If they are sent, the death of a connection,
crash of a machine, or downing of a route will be noticed, and the connection will be terminated.
This option prevents connections from hanging and consuming resources.
The Solaris Secure Shell software and OpenSSH default to yes.
Recommended value is yes.
KeepAlive yes
LocalForward localhost_port destination_host:port
Specifies that localhost_port be forwarded to the destination_host and port through the server.
Only the superuser can forward privileged ports (numbered below1024).
The Solaris Secure Shell software and OpenSSH default to no forwardings.
Specifies the level of logging from the client. Possible values are QUIET, FATAL, ERROR,
INFO, VERBOSE, and DEBUG, in order of increasing verbosity. OpenSSH additionally has
DEBUG1, DEBUG2, DEBUG3.
The Solaris Secure Shell software and OpenSSH default to INFO.
LogLevel DEBUG
MACs list
For Protocol 2 only, specifies which message authentication algorithm (MAC) to use in order of
preference. This is a comma-delimited list.
The Solaris Secure Shell software defaults to hmac-sha1, hmac-md5. OpenSSH defaults
to hmac-md5, hmac-sha1, hmac-ripemd160, hmac-sha1-96, hmac-md5-96.
MACs hmac-sha1, hmac-md5
NumberOfPasswordPrompts value
Specifies the number of password prompts allowed before exiting.
The Solaris Secure Shell software and OpenSSH default to 3.
See also ConnectionAttempts.
NumberOfPasswordPrompts 3
PasswordAuthentication yes | no
Specifies whether or not to attempt password Shell software and OpenSSH default to yes.
See also PubkeyAuthentication.
PasswordAuthentication yes
Port value
Specifies the port to connect to on the server. The port assigned to the Secure Shell by the
Internet Assigned Numbers Authority (IANA) is 22.
The Solaris Secure Shell software and OpenSSH default to 22.
Port 22
Protocol list
Specifies the Secure Shell protocol to use, in order of preference. The first version of the
protocol has been deprecated because flaws in the protocol allowed packet insertion and password
length-determination attacks. The second version of the protocol was developed to address these problems.
This is a comma-delimited list.
The Solaris Secure Shell software and OpenSSH default to 2,1.
Recommended value is 2.
# Protocol 2 only is recommended
Protocol 2
# Enable legacy support but default to Protocol 2.
Protocol 2,1
ProxyCommand
Specifies an external command through which to send the Secure Shell traffic. CheckHostIP
is ignored with ProxyCommand. Use with the Host keyword. Line breaks are not permitted
in this keyword.
The Solaris Secure Shell software provides two proxies in /usr/lib/ssh: ssh-socks5-proxy-connect
and ssh-http-proxy-connect. Consult their respective man pages for more details.
For Protocol 2 only, specifies whether or not to attempt public key authentication.
The Solaris Secure Shell software and OpenSSH default to yes.
See also DSAAuthentication and PasswordAuthentication.
PubkeyAuthentication yes
RemoteForward port destination_host:port
Specifies that the port on the server be forwarded to the destination_host and port through the
client. Only the superuser can forward privileged ports (numbered below 1024).
The Solaris Secure Shell software and OpenSSH default to no forwardings.
For Protocol 1 only, specifies whether or not to attempt rhosts(4) authentication. This
option requires OpenSSH to be installed as setuid.
The Solaris Secure Shell software will not do this because it is not installed as setuid.
OpenSSH defaults to no.
Recommended value is no.
See also UsePrivilegedPort.
RhostsAuthentication no
RhostsRSAAuthentication yes|no
For Protocol 1 only, specifies whether or not to attempt rhosts authentication, based
on RSA host keys. This option requires OpenSSH to be installed as setuid.
The Solaris Secure Shell software will not do this because it is not installed as setuid.
OpenSSH defaults to no.
Recommended value is no.
See also UsePrivilegedPort.
RhostsRSAAuthentication no
RSAAuthentication yes|no
For Protocol 1 only, specifies whether or not to attempt RSA authentication, provided an identity
file exists.
The Solaris Secure Shell software and OpenSSH default to yes.
Recommended value is yes.
RSAAuthentication yes
StrictHostKeyChecking yes|ask|no
Specifies whether or not the client automatically adds new host keys to the known_hosts
file, prompts the user, or never adds the key. In the case of yes and ask, the
client will refuse to connect to a host that has a changed host key.
The Solaris Secure Shell software and OpenSSH default to ask.
Recommended value is yes or ask.
See also CheckHostIP.
StrictHostKeyChecking yes
UsePrivilegedPort yes|no
Specifies whether or not to use a privileged port for outgoing connections. Setting to no disables
RhostsAuthentication and RhostsRSAAuthentication authentication.
The Solaris Secure Shell software will not use a privileged port. OpenSSH must be installed as
setuid to use a privileged port.
Recommended value is no.
See also RhostsAuthentication and RhostsRSAAuthentication.
UsePrivilegedPort no
User value
Specifies the user to authenticate. Use with the Host keyword.
The Solaris Secure Shell software and OpenSSH default to the user name that invoked the client.
See also Host.
Host legacy
User buster44
UserKnownHostsFile value
Specifies the user known_hosts file, other than the default.
The Solaris Secure Shell software and OpenSSH default to $HOME/ .ssh/known_hosts.
Connecting and transferring files to remote systems is something system administrators do
all the time. One essential tool used by many system administrators on Linux platforms is SSH.
SSH supports two forms of authentication:
Password authentication
Public-key Authentication
Public-key authentication is considered the most secure form of these two methods, though
password authentication is the most popular and easiest. However, with password authentication,
the user is always asked to enter the password. This repetition is tedious. Furthermore, SSH
also requires manual intervention when used in a shell script. If automation is needed when
using SSH password authentication, then a simple tool called sshpass is
indispensable.
What is sshpass?
The sshpass utility is designed to run SSH using the
keyboard-interactive password authentication mode, but in a non-interactive way.
SSH uses direct TTY access to ensure that the password is indeed issued by an interactive
keyboard user. sshpass runs SSH in a dedicated TTY, fooling SSH into thinking it
is getting the password from an interactive user.
Install sshpass
You can install sshpass with this simple command:
# yum install sshpass
Use sshpass
Specify the command you want to run after the sshpass options. Typically, the
command is ssh with arguments, but it can also be any other command. The SSH
password prompt is, however, currently hardcoded into sshpass .
The synopsis for the sshpass command is described below:
-ppassword
The password is given on the command line.
-ffilename
The password is the first line of the file filename.
-dnumber
number is a file descriptor inherited by sshpass from the runner. The password is read from the open file descriptor.
-e
The password is taken from the environment variable "SSHPASS".
Examples
To better understand the value and use of sshpass , let's look at some examples
with several different utilities, including SSH, Rsync, Scp, and GPG.
Example 1: SSH
Use sshpass to log into a remote server by using SSH. Let's assume the password
is !4u2tryhack . Below are several ways to use the sshpass options.
A. Use the -p (this is considered the least secure choice and shouldn't be
used):
You can also use sshpass with a GPG-encrypted file. When the -f
switch is used, the reference file is in plaintext. Let's see how we can encrypt a file with
GPG and use it.
sshpass is a simple tool that can be of great help to sysadmins. This doesn't,
by any means, override the most secure form of SSH authentication, which is public-key
authentication. However, sshpass can also be added to the sysadmin toolbox.
"... For us, fail2ban uses iptables to ban the IP address of the offending system for a "bantime" of 600 seconds (10 minutes). ..."
"... You can, of course, change any of these settings to meet your needs. Ten minutes seems to be long enough to cause a bot or script to "move on" to less secure hosts. However, ten minutes isn't so long as to alienate users who mistype their passwords more than three times. ..."
Security, for system administrators, is an ongoing struggle because you must secure your systems enough to
protect them from unwanted attacks but not so much that user productivity is hindered. It's a difficult balance to
maintain. There are always complaints of "too much" security, but when a system is compromised, the complaints
range from, "There wasn't enough security" to "Why didn't you use better security controls?" The struggle is real.
There are controls you can put into place that are both effective against intruder attack and yet stealthy enough
to allow users to operate in a generally unfettered manner.
Fail2ban
is the
answer to protect services from brute force and other automated attacks.
Note:
Fail2ban can only be used to protect services that require username/password authentication.
For example, you can't protect ping with fail2ban.
In this article, I demonstrate how to protect the SSH daemon (SSHD) from a brute force attack. You can set up
filters, as
fail2ban
calls them, to protect almost every listening service on your system.
Installation and initial setup
Fortunately, there is a ready-to-install package for
fail2ban
that includes all dependencies, if
any, for your system.
Unless you have some sort of syntax problem in your
fail2ban
configuration, you won't see any
standard output messages.
Now to configure a few basic things in
fail2ban
to protect the system without it interfering with
itself. Copy the
/etc/fail2ban/jail.conf
file to
/etc/fail2ban/jail.local
.
The
jail.local
file is the configuration file of interest for us.
Open
/etc/fail2van/jail.local
in your favorite editor and make the following changes or check to
be sure these few parameters are set. Look for the setting
ignoreip
and add all IP addresses to this
line that must have access without the possibility of a lockout. By default, you should add the loopback address,
and all IP addresses local to the protected system.
ignoreip = 127.0.0.1/8 192.168.1.10 192.168.1.20
You can also add entire networks of IP addresses, but this takes away much of the protection that you wish to
engage
fail2ban
for. Keep it simple and local for now. Save the
jail.local
file and
restart the
fail2ban
service.
$ sudo systemctl restart fail2ban
You must restart
fail2ban
every time you make a configuration change.
Setting up a filtered service
A fresh install of
fail2ban
doesn't really do much for you. You have to set up so-called filters
for any service that you want to protect. Almost every Linux system must be accessible by SSH. There are some
circumstances where you would most certainly stop and disable SSHD to better secure your system, but I assume that
every Linux system allows SSH connections.
Passwords, as everyone knows, are not a good security solution. However, it is often the standard by which we
live. So, if user or administrative access is limited to SSH, then you should take steps to protect it. Using
fail2ban
to "watch" SSHD for failed access attempts with subsequent banning is a good start.
Note:
Before implementing any security control that might hinder a user's access to a system, inform
the users that this new control might lock them out of a system for ten minutes (or however long you decide) if
their failed login attempts exceed your threshold setting.
To set up filtered services, you must create a corresponding "jail" file under the
/etc/fail2ban/jail.d
directory. For SSHD, create a new file named
sshd.local
and enter service filtering instructions into
it.
Create the
[sshd]
heading and enter the setting you see above as a starting place. Most of the
settings are self-explanatory. For the two that might not be intuitively obvious, the "action" setting describes
the action you want
fail2ban
to take in the case of a violation. For us,
fail2ban
uses
iptables
to ban the IP address of the offending system for a "bantime" of 600 seconds (10 minutes).
You can, of course, change any of these settings to meet your needs. Ten minutes seems to be long enough to
cause a bot or script to "move on" to less secure hosts. However, ten minutes isn't so long as to alienate users
who mistype their passwords more than three times.
Once you're satisfied with the settings, restart the
fail2ban
service.
What banning looks like
On the protected system (192.168.1.83),
tail
the
/var/log/fail2ban.log
to see any
current ban actions.
2020-05-15 09:12:06,722 fail2ban.filter [25417]: INFO [sshd] Found 192.168.1.69 - 2020-05-15 09:12:06
2020-05-15 09:12:07,018 fail2ban.filter [25417]: INFO [sshd] Found 192.168.1.69 - 2020-05-15 09:12:07
2020-05-15 09:12:07,286 fail2ban.actions [25417]: NOTICE [sshd] Ban 192.168.1.69
2020-05-15 09:22:08,931 fail2ban.actions [25417]: NOTICE [sshd] Unban 192.168.1.69
You can see that the IP address 192.168.1.69 was banned at 09:12 and unbanned ten minutes later at 09:22.
On the remote system, 192.168.1.69, a ban action looks like the following:
You can see that I entered my password incorrectly three times before being banned. The banned user, unless
explicitly informed, won't know why they can no longer reach the target system. The
fail2ban
filter
performs a silent ban action. It gives no explanation to the remote user, nor is the user notified when the ban is
lifted.
Unbanning a system
It will inevitably happen that a system gets banned that needs to be quickly unbanned. In other words, you
can't or don't want to wait for the ban period to expire. The following command will immediately unban a system.
$ sudo fail2ban-client set sshd unbanip 192.168.1.69
You don't need to restart the fail2ban daemon after issuing this command.
Wrap up
That's basically how
fail2ban
works. You set up a filter, and when conditions are met, then the
remote system is banned. You can ban for longer periods of time, and you can set up multiple filters to protect
your system. Remember that
fail2ban
is a single solution and does not secure your system from other
vulnerabilities. A layered, multi-faceted approach to security is the strategy you want to pursue. No single
solution provides enough security.
You can find examples of other filters and some advanced
fail2ban
implementations described at
fail2ban.org
.
By default, the SSH client verifies the identity of the host to which it connects.
If the remote host key is unknown to your SSH client, you would be asked to accept it by
typing "yes" or "no".
This could cause a trouble when running from script that automatically connects to a remote
host over SSH protocol.
Cool Tip: Slow SSH login? Password prompt takes too long? You can easily remove the delay!
Read more
→
This article explains how to bypass this verification step by disabling host key checking
.
The Authenticity Of Host Can't Be Established
When you log into a remote host that you have never connected before, the remote host key is
most likely unknown to your SSH client, and you would be asked to confirm its fingerprint :
The authenticity of host ***** can't be established.
RSA key fingerprint is *****.
Are you sure you want to continue connecting (yes/no)?
If your answer
is 'yes', the SSH client continues login, and stores the host key locally in the file
~/.ssh/known_hosts .
If your answer is 'no', the connection will be terminated.
If you would like to bypass this verification step , you can set the "
StrictHostKeyChecking " option to " no " on the command line:
$ ssh -o "StrictHostKeyChecking=no" user@host
This option disables the prompt and automatically adds the host key to the
~/.ssh/known_hosts file.
Remote Host Identification Has Changed
However, even with " StrictHostKeyChecking=no ", you may be refused to connect with
the following warning message:
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
*****
Please contact your system administrator.
Add correct host key in /home/user/.ssh/known_hosts to get rid of this message.
Offending key in /home/user/.ssh/known_hosts:1
RSA host key for ***** has changed and you have requested strict checking.
Host key verification failed.
If you are sure that it is harmless and the remote host key has been changed in a
legitimate way, you can skip the host key checking by sending the key to a null
known_hosts file:
Note: It is one thing to do this to allow a local IP address such as above 192.168.x.x
but it risky to do with a remote host etc.. I would probably just edit ~/.ssh/known_hosts
or wipe the file and start over if I am seeing the messages above.
I have a Ubuntu 12.04 server I bought, if I connect with putty using ssh and a sudoer user
putty gets disconnected by the server after some time if I am idle How do I configure Ubuntu to keep this connection alive indefinitely?
No, it's the time between keepalives. If you set it to 0, no keepalives are sent but you want
putty to send keepalives to keep the connection alive. – das Keks
Feb 19 at 11:46
In addition to the answer from "das Keks" there is at least one other aspect that can affect
this behavior. Bash (usually the default shell on Ubuntu) has a value TMOUT
which governs (decimal value in seconds) after which time an idle shell session will time out
and the user will be logged out, leading to a disconnect in an SSH session.
In addition I would strongly recommend that you do something else entirely. Set up
byobu (or even just tmux alone as it's superior to GNU
screen ) and always log in and attach to a preexisting session (that's GNU
screen and tmux terminology). This way even if you get forcibly
disconnected - let's face it, a power outage or network interruption can always happen - you
can always resume your work where you left. And that works across different machines. So you
can connect to the same session from another machine (e.g. from home). The possibilities are
manifold and it's a true productivity booster. And not to forget, terminal multiplexers
overcome one of the big disadvantages of PuTTY: no tabbed interface. Now you get "tabs" in
the form of windows and panes inside GNU screen and tmux .
apt-get install tmux
apt-get install byobu
Byobu is a nice frontend to both terminal multiplexers, but tmux is so
comfortable that in my opinion it obsoletes byobu to a large extent. So my
recommendation would be tmux .
Also search for "dotfiles", in particular tmux.conf and
.tmux.conf on the web for many good customizations to get you started.
Change the default value for "Seconds between keepalives(0 to turn off)" : from 0 to
600 (10 minutes) --This varies...reduce if 10 minutes doesn't help
Check the "Enable TCP_keepalives (SO_KEEPALIVE option)" check box.
Finally save setting for session
,
I keep my PuTTY sessions alive by monitoring the cron logs
tail -f /var/log/cron
I want the PuTTY session alive because I'm proxying through socks.
The above command kicks off the SSH Key installation process for users. The -o option
instructs ssh-keygen to store the private key in the new OpenSSH format instead of the old (and
more compatible PEM format). It is highly recommended to use the -o option as the new OpenSSH
format has an increased resistance to brute-force password cracking. In case the -o option does
not work on your server (it has been introduced in 2014) or you need a private key in the old
PEM format, then use the command ' ssh-keygen -b 4096 -t rsa '.
The -b option of the ssh-keygen command is used to set the key length to 4096 bit instead of
the default 1024 bit for security reasons.
Upon entering the primary Gen Key command, users need to go through the following drill by
answering the following prompts:
Enter the file where you wish to save the key (/home/demo/.ssh/id_rsa)
Users need to press ENTER in order to save the file to the user home
The next prompt would read as follows:
Enter passphrase
If, as an administrator, you wish to assign the passphrase, you may do so when prompted (as
per the question above), though this is optional, and you may leave the field vacant in case
you do not wish to assign a passphrase.
However, it is pertinent to note there that keying in a unique passphrase does offer a bevy
of benefits listed below:
1. The security of a key, even when highly encrypted, depends largely on its invisibility to
any other party. I 2. In the likely instance of a passphrase-secure private key falling into
the custody of an unauthorized user, they will be rendered unable to log in to its allied
accounts until they can crack the passphrase. This invariably gives the victim (the hacked
user) precious extra time to avert the hacking bid On the downside, assigning a passphrase to
the key requires you to key it in every time you make use of the Key Pair, which makes the
process a tad tedious, nonetheless absolutely failsafe.
Here is a broad outline of the end-to-end key generation process:
root@server1:~# ssh-keygen -b 4096 -o -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:KBZP/guc7lND8I239zKv8PRziF/5jnA6N0nEocCDlLA root@server1
The key's randomart image is:
+---[RSA 2048]----+
| .o.+ |
| ..o + . |
| . Eo o o o . |
| = .+ o . o |
| o +.S. . . |
| . o oo . . . .|
| +.....o+.+.|
| ... . +==Boo|
| .o.. +O==o|
+----[SHA256]-----+
The public key can now be traced to the link ~/.ssh/id_rsa.pub
The private key (identification) can now be traced to the link-/home/demo/.ssh/id_rsa
3
Step Two: Copying the Public Key
Once the distinct key pair has been generated, the next step remains to place the public key
on the virtual server that we intend to use. Users would be able to copy the public key into
the authorized_keys file of the new machine using the ssh-copy-id command. Given below is the
prescribed format (strictly an example) for keying in the username and IP address, and must be
replaced with actual system values:
Either of the above commands, when used, shall toss the following message on your
system:
The authenticity of host '192.168.0.100 ' can't be established. RSA key fingerprint is
b1:2d:32:67:ce:35:4d:5f:13:a8:cd:c0:c4:48:86:12. Are you sure you want to continue connecting
(yes/no)? yes Warning: Permanently added '192.168.0.100' (RSA) to the list of known hosts.
[email protected]'s password: Now try logging into the machine, with "ssh
'[email protected]'", and check in: ~/.ssh/authorized_keys to make sure we haven't added extra
keys that you weren't expecting.
After the above drill, users are ready to go ahead and log into [email protected] without
being prompted for a password. However, if you have earlier assigned a passphrase to the key
(as per Step 2 above), you will be prompted to enter the passphrase at this point (and each
time for subsequent log-ins.).
Step Three (This Step is Optional): Disabling the Password
to Facilitate Root Login
After users have copied their SSH keys unto your server and ensured seamless log-in with the
SSH keys only, they have the option to restrict the root login, and permit the same only
through SSH keys. To accomplish this, users need to access the SSH configuration file using the
following command:
sudo nano /etc/ssh/sshd_config
Once the file is accessed, users need to find the line within the file that includes
PermitRootLogin , and modify the same to ensure a foolproof connection using the SSH key. The
following command shall help you do that:
PermitRootLogin without-password
The last step in the process remains to implement the changes by using the following
command:
reload ssh
The above completes the process of installing SSH keys on the Linux server.
Converting
OpenSSH private key to new format
Most older OpenSSH keys are stored in the PEM format. While this format is compatible with
many older applications, it has the drawback that the password of a password-protected private
key can be attacked with brute-force attacks. This chapter explains how to convert a private
key in PEM format to one in the new OpenSSH format.
ssh-keygen -p -o -f /root/.ssh/id_rsa
The path /root/.ssh/id_rsa is the path of the old private key
file.
Conclusion
The above steps shall help you install SSH keys on any virtual private server in a
completely safe, secure and hassle-free manner.
If you're a Linux system administrator, chances are you've got more than one machine that
you're responsible for on a daily basis. You may even have a bank of machines that you maintain
that are similar -- a farm of Web servers, for example. If you have a need to type the same
command into several machines at once, you can login to each one with SSH and do it serially,
or you can save yourself a lot of time and effort and use a tool like ClusterSSH.
ClusterSSH is a Tk/Perl wrapper around standard Linux tools like XTerm and SSH. As such,
it'll run on just about any POSIX-compliant OS where the libraries exist -- I've run it on
Linux, Solaris, and Mac OS X. It requires the Perl libraries Tk ( perl-tk on
Debian or Ubuntu) and X11::Protocol ( libx11-protocol-perl on Debian or Ubuntu),
in addition to xterm and OpenSSH.
Installation
Installing ClusterSSH on a Debian or Ubuntu system is trivial -- a simple sudo apt-get
install clusterssh will install it and its dependencies. It is also packaged for use
with Fedora, and it is installable via the ports system on FreeBSD. There's also a MacPorts
version for use with Mac OS X, if you use an Apple machine. Of course, it can also be compiled
from source.
Configuration
ClusterSSH can be configured either via its global configuration file --
/etc/clusters , or via a file in the user's home directory called
.csshrc . I tend to favor the user-level configuration as that lets multiple
people on the same system to setup their ClusterSSH client as they choose. Configuration is
straightforward in either case, as the file format is the same. ClusterSSH defines a "cluster"
as a group of machines that you'd like to control via one interface. With that in mind, you
enumerate your clusters at the top of the file in a "clusters" block, and then you describe
each cluster in a separate section below.
For example, let's say I've got two clusters, each consisting of two machines. "Cluster1"
has the machines "Test1" and "Test2" in it, and "Cluster2" has the machines "Test3" and "Test4"
in it. The ~.csshrc (or /etc/clusters ) control file would look like
this:
clusters = cluster1 cluster2
cluster1 = test1 test2
cluster2 = test3 test4
You can also make meta-clusters -- clusters that refer to clusters. If you wanted to make a
cluster called "all" that encompassed all the machines, you could define it two ways. First,
you could simply create a cluster that held all the machines, like the following:
By calling out the "all" cluster as containing cluster1 and cluster2, if either of those
clusters ever change, the change is automatically captured so you don't have to update the
"all" definition. This will save you time and headache if your .csshrc file ever grows in
size.
Using ClusterSSH
Using ClusterSSH is similar to launching SSH by itself. Simply running cssh -l
<username> <clustername> will launch ClusterSSH and log you in as the
desired user on that cluster. In the figure below, you can see I've logged into "cluster1" as
myself. The small window labeled "CSSH [2]" is the Cluster SSH console window. Anything I type
into that small window gets echoed to all the machines in the cluster -- in this case, machines
"test1" and "test2". In a pinch, you can also login to machines that aren't in your .csshrc
file, simply by running cssh -l <username> <machinename1>
<machinename2> <machinename3> .
If I want to send something to one of the terminals, I can simply switch focus by clicking
in the desired XTerm, and just type in that window like I usually would. ClusterSSH has a few
menu items that really help when dealing with a mix of machines. As per the figure below, in
the "Hosts" menu of the ClusterSSH console there's are several options that come in handy.
"Retile Windows" does just that if you've manually resized or moved something. "Add host(s)
or Cluster(s)" is great if you want to add another set of machines or another cluster to the
running ClusterSSH session. Finally, you'll see each host listed at the bottom of the "Hosts"
menu. By checking or unchecking the boxes next to each hostname, you can select which hosts the
ClusterSSH console will echo commands to. This is handy if you want to exclude a host or two
for a one-off or particular reason. The final menu option that's nice to have is under the
"Send" menu, called "Hostname". This simply echoes each machine's hostname to the command line,
which can be handy if you're constructing something host-specific across your cluster.
Caveats with ClusterSSH
Like many UNIX tools, ClusterSSH has the potential to go horribly awry if you aren't
very careful with its use. I've seen ClusterSSH mistakes take out an entire tier of
Web servers simply by propagating a typo in an Apache configuration. Having access to multiple
machines at once, possibly as a privileged user, means mistakes come at a great cost. Take
care, and double-check what you're doing before you punch that Enter key.
Conclusion
ClusterSSH isn't a replacement for having a configuration management system or any of the
other best practices when managing a number of machines. However, if you need to do something
in a pinch outside of your usual toolset or process, or if you're doing prototype work,
ClusterSSH is indispensable. It can save a lot of time when doing tasks that need to be done on
more than one machine, but like any power tool, it can cause a lot of damage if used
haphazardly.
SSH is one of the most widely used protocols for connecting to remote shells. While there are numerous SSH clients the most-used
still remains OpenSSH's ssh . OpenSSH has been the default ssh client for every major Linux operation, and is trusted by
cloud computing providers such as
Amazon's EC2 services and web hosting companies like
MediaTemple . There is a plethora of tips and tricks that can be used to make
your experience even better than it already is. Read on to discover some of the best tweaks to your favorite SSH client.
Adding
A Keep-Alive
A keep-alive is a small piece of data transmitted between a client and a server to ensure that the connection is still open or
to keep the connection open. Many protocols implement this as a way of cleaning up dead connections to the server. If a client does
not respond, the connection is closed.
SSH does not enable this by default. There are pros and cons to this. A major pro is that under a lot of conditions if you disconnect
from the Internet, your connection will be usable when you reconnect. For those who drop out of WiFi a lot, this is a major plus
when you discover you don't need to login again.
For those who get the following message from their SSH client when they stop typing for a few minutes it's not as convenient:
symkat@symkat:~$ Read from remote host symkat.com: Connection reset by peer
Connection to symkat.com closed.
This happens because your router or firewall is trying to clean up dead connections. It's seeing that no data has been transmitted
in N seconds and falsely assumes that the connection is no longer in use.
To rectify this you can add a Keep-Alive. This will ensure that your connection stays open to the server and the firewall doesn't
close it.
To make all connections from your shell send a keepalive add the following to your ~/.ssh/config file:
KeepAlive yes
ServerAliveInterval 60
The con is that if your connection drops and a KeepAlive packet is sent SSH will disconnect you. If that becomes a problem, you
can always actually fix the Internet connection.
Multiplexing Your Connection
Do you make a lot of connections to the same servers? You may not have noticed how slow an initial connection to a shell is. If
you multiplex your connection you will definitely notice it though. Let's test the difference between a multiplexed connection using
SSH keys and a non-multiplexed connection using SSH keys:
# Without multiplexing enabled:
$ time ssh [email protected] uptime
20:47:42 up 16 days, 1:13, 3 users, load average: 0.00, 0.01, 0.00
real 0m1.215s
user 0m0.031s
sys 0m0.008s
# With multiplexing enabled:
$ time ssh [email protected] uptime
20:48:43 up 16 days, 1:14, 4 users, load average: 0.00, 0.00, 0.00
real 0m0.174s
user 0m0.003s
sys 0m0.004s
We can see that multiplexing the connection is much faster, in this instance on an order of 7 times faster than not multiplexing
the connection. Multiplexing allows us to have a β??controlβ? connection, which is your initial connection to a server, this is then
turned into a UNIX socket file on your computer. All subsequent connections will use that socket to connect to the remote host. This
allows us to save time by not requiring all the initial encryption, key exchanges, and negotiations for subsequent connections to
the server.
Host *
ControlMaster auto
ControlPath ~/.ssh/connections/%r_%h_%p
A negative to this is that some uses of ssh may fail to work with your multiplexed connection. Most notably commands which use
tunneling like git, svn or rsync, or forwarding a port. For these you can add the option -oControlMaster=no . To prevent
a specific host from using a multiplexed connection add the following to your ~/.ssh/config file:
Host YOUR_SERVER_OR_IP
MasterControl no
There are security precautions that one should take with this approach. Let's take a look at what actually happens when we connect
a second connection:
$ ssh -v -i /dev/null [email protected]
OpenSSH_4.7p1, OpenSSL 0.9.7l 28 Sep 2006
debug1: Reading configuration data /Users/symkat/.ssh/config
debug1: Reading configuration data /etc/ssh_config
debug1: Applying options for *
debug1: auto-mux: Trying existing master
Last login:
symkat@symkat:~$ exit
As we see no actual authentication took place. This poses a significant security risk if running it from a host that is not trusted,
as a user who can read and write to the socket can easily make the connection without having to supply a password. Take the same
care to secure the sockets as you take in protecting a private key.
Using SSH As A Proxy
Even Starbucks now has free WiFi in its stores. It seems the world has caught on to giving free Internet at most retail locations.
The downside is that more teenagers with "Got Root?" stickers are camping out at these locations running the latest version of wireshark.
SSH's encryption can stand up to most any hostile network, but what about web traffic?
Most web browsers, and certainly all the popular ones, support using a proxy to tunnel your traffic. SSH can provide a SOCKS proxy
on localhost that tunnels to your remote server with the -D option. You get all the encryption of SSH for your web traffic,
and can rest assured no one will be capturing your login credentials to all those non-ssl websites you're using.
Now there is a proxy running on 127.0.0.1:1080 that can be used in a web browser or email client. Any application that supports
SOCKS 4 or 5 proxies can use 127.0.0.1:1080 to tunnel its traffic.
$ nc -vvv 127.0.0.1 1080
Connection to 127.0.0.1 1080 port [tcp/socks] succeeded!
Using One-Off Commands
Often times you may want only a single piece of information from a remote host. "Is the file system full?" "What's the uptime
on the server?" "Who is logged in?"
Normally you would need to login, type the command, see the output and then type exit (or Control-D for those in the know.) There
is a better way: combine the ssh with the command you want to execute and get your result:
This executed the ssh symkat.com, logged in as symkat, and ran the command uptime on symkat. If you're not using
SSH keys then you'll be presented with a password prompt before the command is executed.
$ ssh [email protected] ps aux | echo $HOSTNAME
symkats-macbook-pro.local
This executed the command ps aux on symkat.com, sent the output to STDOUT, a pipe on my local laptop picked it up
to execute echo $HOSTNAME locally. Although in most situations using auxiliary data processing like grep
or awk will work flawlessly, there are many situations where you need your pipes and file IO redirects to work on the
remote system instead of the local system. In that case you would want to wrap the command in single quotes:
As a basic rule if you're using >>><- or | you're going to
want to wrap in single quotes.
It is also worth noting that in using this method of executing a command some programs will not work. Notably anything that requires
a terminal, such as screen, irssi, less, or a plethora of other interactive or curses based applications. To force a terminal to
be allocated you can use the -t option:
Pipes are useful. The concept is simple: take the output from one program's STDOUT and feed it to another program's STDIN. OpenSSH
can be used as a pipe into a remote system. Let's say that we would like to transfer a directory structure from one machine to another.
The directory structure has a lot of files and sub directories.
We could make a tarball of the directory on our own server and scp it over. If the file system this directory is on lacks the
space though we may be better off piping the tarballed content to the remote system.
What we did in this example was to create a new archive ( -c ) and to compress the archive with gzip ( -z
). Because we did not use -f to tell it to output to a file, the compressed archive was send to STDOUT. We then piped
STDOUT with | to ssh . We used a one-off command in ssh to invoke tar with the extract ( -x
) and gzip compressed ( -z ) arguments. This read the compressed archive from the originating server and unpacked it
into our server. We then logged in to see the listing of files.
Additionally, we can pipe in the other direction as well. Take for example a situation where you with to make a copy of a remote
database, into a local database:
symkat@chard:~$ echo "create database backup" | mysql -uroot -ppassword
symkat@chard:~$ ssh [email protected] 'mysqldump -udbuser -ppassword symkat' | \
> mysql -uroot -ppassword backup
symkat@chard:~$ echo "use backup;select count(*) from wp_links;" | mysql -uroot -ppassword
count(*)
12
symkat@chard:~$
What we did here is to create the database backup on our local machine. Once we had the database created we used a one-off
command to get a dump of the database from symkat.com. The SQL Dump came through STDOUT and was piped to another command. We used
mysql to access the database, and read STDIN (which is where the data now is after piping it) to create the database on our local
machine. We then ran a MySQL command to ensure that there is data in the backup table. As we can see, SSH can provide a true pipe
in either direction.
Using a Non Standard Port
Many people run SSH on an alternate port for one reason or another. For instance, if outgoing port 22 is blocked at your college
or place of employment you may have ssh listen on port 443.
Instead of saying ssh -p443 [email protected] you can add a configuration option to your
~/.ssh/config file that is specific to yourserver.com:
Host yourserver.com
Port 443
You can extrapolate from this information further that you can make ssh configurations specific to a host. There is little reason
to use all those -oOptions when you have a well-written ~/.ssh/config file.
Good Article ! I would like to try to implement Two Factor authentication with Google Authenticator , steps can be followed
here
http://www.digitaljournal.sg
Yes, user@hostname is common in SSH lines. Although, you could say, "-l symkat
symkat.com
" (-l is username), [email protected] works just the same. Anything preceding the @ is the username to submit, and anything following
the @ is the hostname or IP address to connect to.
I'm quite surprised you didn't cover key based authentication.
My favorite trick for key-based authentication is having per-host keys, which gives you an extra layer of theoretical security
in the event your key is leaked.
1. If your public key is leaked, nasty people could ( in theory, but its unlikely ) give you permission to log into their machines
with said key, and then log your actions, which, are you not observant, could be an information leak. ( This is insane paranoia
really ).
2. If your *private* key is leaked, every machine you gave a copy of your public key to is now vulnerable. ( This is a much
more valid concern ).
Having per-host keys makes this much weaker in some respects, because if you have a per-host key, then stealing *a* key will
only give them access to *one* machine instead of several. However, in saying that, chances are, if they get in and steal *one*
key, if you have multiple, they can probably steal *every* key, meaning blocking all those accesses via key deletion becomes much
harder. I'm not sure which is the most sane option really, I still just like per-host keys =P.
Doing this is very similar to setting up per-host auto-master connections.
and then send a copy of [email protected] to the admin of
bar.com to
put in the 'foo' users "authorized keys" file.
It will then JustWork(TM).
And if you can't be arsed having to set up a seperate key for a given host, it tries the per-host one before using the general
key, so you can just send them your common .pub file instead =).
Another option that I like when signing on to remote hosts who's ip changes - like AWS - is to prevent ssh from doing strict
host key checking via
-o StrictHostKeyChecking=no
Here's mine: remote to local mysql backup in one line
ssh user@server "/usr/bin/mysqldump -u user -p password database" | dd of=/where/you/want/the/dump.sql
Here's another one I found useful... Redirect local STDOUT to a file on a remote server.
If in the example above I wanted to create a tar.gz file of contents on the remote machine:
tar -cz contents | ssh [email protected] "cat > contents.tar.gz"
Wow. You must have looked in the wrong place all that time, because it is right there in the manpage:
# man ssh_config
Specifies whether the system should send TCP keepalive messages to the other side. If they are sent, death of the connection
or crash of one of the machines will be properly noticed. This option only uses TCP keepalives (as opposed to using ssh level
keepalives), so takes a long time to notice when the connection dies. As such, you probably want the ServerAliveInterval option
as well. However, this means
that connections will die if the route is down temporarily, and some people find it annoying.
The default is "yes" (to send TCP keepalive messages), and the client will notice if the network goes down or the remote host
dies. This is important in scripts, and many users want it too.
To disable TCP keepalive messages, the value should be set to "no".
...Here's a list of 10 things that I think are
particularly awesome and perhaps a bit off the beaten path.
Update: ( 2011-09-19 ) There are some user-submitted ssh-tricks on the wiki now!
Please feel free to add your favorites. Also the hacker news thread might be helpful for
some.
SSH Config
I used SSH regularly for years before I learned about the config file, that you can create
at ~/.ssh/config to tell how you want ssh to behave.
Consider the following configuration example:
Host example.com *.example.net
User root
Host dev.example.net dev.example.net
User shared
Port 220
Host test.example.com
User root
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
Host t
HostName test.example.org
Host *
Compression yes
CompressionLevel 7
Cipher blowfish
ServerAliveInterval 600
ControlMaster auto
ControlPath /tmp/ssh-%r@%h:%p
I'll cover some of the settings in the " Host * " block, which apply to all
outgoing ssh connections, in other items in this post, but basically you can use this to create
shortcuts with the ssh command, to control what username is used to connect to a given host,
what port number, if you need to connect to an ssh daemon running on a non-standard port. See "
man ssh_config " for more information. Control Master/Control Path
This is probably the coolest thing that I know about in SSH. Set the "
ControlMaster " and " ControlPath " as above in the ssh configuration.
Anytime you try to connect to a host that matches that configuration a "master session" is
created. Then, subsequent connections to the same host will reuse the same master connection
rather than attempt to renegotiate and create a separate connection. The result is greater
speed less overhead.
This can cause problems if you' want to do port forwarding, as this must be configured on
the original connection , otherwise it won't work. SSH Keys
While ControlMaster/ControlPath is the coolest thing you can do with SSH, key-based
authentication is probably my favorite. Basically, rather than force users to authenticate with
passwords, you can use a secure cryptographic method to gain (and grant) access to a system.
Deposit a public key on servers far
and wide, while keeping a "private" key secure on your local machine. And it just
works .
You can generate multiple keys, to make it more difficult for an intruder to gain access to
multiple machines by breaching a specific key, or machine. You can specify specific keys and
key files to be used when connected to specific hosts in the ssh config file (see above.) Keys
can also be (optionally) encrypted locally with a pass-code, for additional security. Once I
understood how secure the system is (or can be), I found my self thinking "I wish you could use
this for more than just SSH." SSH Agent
Most people start using SSH keys because they're easier and it means that you don't have to
enter a password every time that you want to connect to a host. But the truth is that in most
cases you want to have unencrypted private keys that have meaningful access to systems because
once someone has access to a copy of the private key the have full access to the system. That's
not good.
But the truth is that typing in passwords is a pain, so there's a solution: the
ssh-agent . Basically one authenticates to the ssh-agent locally, which
decrypts the key and does some magic, so that then whenever the key is needed for the
connecting to a host you don't have to enter your password. ssh-agent manages the
local encryption on your key for the current session.
SSH Reagent
I'm not sure where I found this amazing little function but it's great. Typically,
ssh-agents are attached to the current session, like the window manager, so that when
the window manager dies, the ssh-agent loses the decrypted bits from your ssh key.
That's nice, but it also means that if you have some processes that exist outside of your
window manager's session (e.g. Screen sessions) they loose the ssh-agent and get
trapped without access to an ssh-agent so you end up having to restart
would-be-persistent processes, or you have to run a large number of ssh-agents which
is not ideal.
Enter "ssh-reagent." stick this in your shell configuration (e.g. ~/.bashrc or
~/.zshrc ) and run ssh-reagent whenever you have an agent session running and
a terminal that can't see it.
ssh-reagent () {
for agent in /tmp/ssh-*/agent.*; do
export SSH_AUTH_SOCK=$agent
if ssh-add -l 2>&1 > /dev/null; then
echo Found working SSH Agent:
ssh-add -l
return
fi
done
echo Cannot find ssh agent - maybe you should reconnect and forward it?
}
It's magic.
SSHFS and SFTP
Typically we think of ssh as a way to run a command or get a prompt on a remote machine. But
SSH can do a lot more than that, and the OpenSSH package that probably the most
popular implementation of SSH these days has a lot of features that go beyond just "shell"
access. Here are two cool ones:
SSHFS creates a
mountable file system using FUSE of
the files located on a remote system over SSH. It's not always very fast, but it's
simple and works great for quick operations on local systems, where the speed issue is
much less relevant.
SFTP, replaces FTP (which is plagued by security problems,) with a similar tool for
transferring files between two systems that's secure (because it works over SSH) and is just as
easy to use. In fact most recent OpenSSH daemons provide SFTP access by default.
There's more, like a full VPN solution in recent versions, secure remote file copy, port
forwarding, and the list could go on. SSH Tunnels
SSH includes the ability to connect a port on your local system to a port on a remote
system, so that to applications on your local system the local port looks like a normal local
port, but when accessed the service running on the remote machine responds. All traffic is
really sent over ssh.
I set up an SSH tunnel for my local system to the outgoing mail server on my server. I tell
my mail client to send mail to localhost server (without mail server authentication!), and it
magically goes to my personal mail relay encrypted over ssh. The applications of this
are nearly endless.
Keep Alive Packets
The problem: unless you're doing something with SSH it doesn't send any packets, and as a
result the connections can be pretty resilient to network disturbances. That's not a problem,
but it does mean that unless you're actively using an SSH session, it can go silent causing
your local area network's NAT to eat a connection that it thinks has died, but hasn't. The
solution is to set the " ServerAliveInterval [seconds] " configuration in the SSH
configuration so that your ssh client sends a "dummy packet" on a regular interval so that the
router thinks that the connection is active even if it's particularly quiet. It's good stuff.
/dev/null .known_hosts
A lot of what I do in my day job involves deploying new systems, testing something out and
then destroying that installation and starting over in the same virtual machine. So my "test
rigs" have a few IP addresses, I can't readily deploy keys on these hosts, and every time I
redeploy SSH's host-key checking tells me that a different system is responding for the host,
which in most cases is the symptom of some sort of security error, and in most cases knowing
this is a good thing, but in some cases it can be very annoying.
These configuration values tell your SSH session to save keys to ` /dev/null (i.e.
drop them on the floor) and to not ask you to verify an unknown host:
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
This probably saves me a little annoyance and minute or two every day or more, but it's
totally worth it. Don't set these values for hosts that you actually care about.
I'm sure there are other awesome things you can do with ssh, and I'd live to hear more . Onward and Upward!
Do you make a lot of connections to the same servers? You may not have noticed how slow an initial connection to a shell is. If
you multiplex your connection you will definitely notice it though. Let's test the difference between a multiplexed connection using
SSH keys and a non-multiplexed connection using SSH keys:
# Without multiplexing enabled:
$ time ssh [email protected] uptime
20:47:42 up 16 days, 1:13, 3 users, load average: 0.00, 0.01, 0.00
real 0m1.215s
user 0m0.031s
sys 0m0.008s
# With multiplexing enabled:
$ time ssh [email protected] uptime
20:48:43 up 16 days, 1:14, 4 users, load average: 0.00, 0.00, 0.00
real 0m0.174s
user 0m0.003s
sys 0m0.004s
We can see that multiplexing the connection is much faster, in this instance on an order of 7 times faster than not multiplexing
the connection. Multiplexing allows us to have a "control" connection, which is your initial connection to a server, this is then
turned into a UNIX socket file on your computer. All subsequent connections will use that socket to connect to the remote host. This
allows us to save time by not requiring all the initial encryption, key exchanges, and negotiations for subsequent connections to
the server.
Host *
ControlMaster auto
ControlPath ~/.ssh/connections/%r_%h_%p
A negative to this is that some uses of ssh may fail to work with your multiplexed connection. Most notably commands which use
tunneling like git, svn or rsync, or forwarding a port. For these you can add the option -oControlMaster=no. To prevent a specific
host from using a multiplexed connection add the following to your ~/.ssh/config file:
Host YOUR_SERVER_OR_IP
MasterControl no
There are security precautions that one should take with this approach. Let's take a look at what actually happens when we connect
a second connection:
$ ssh -v -i /dev/null [email protected]
OpenSSH_4.7p1, OpenSSL 0.9.7l 28 Sep 2006
debug1: Reading configuration data /Users/symkat/.ssh/config
debug1: Reading configuration data /etc/ssh_config
debug1: Applying options for *
debug1: auto-mux: Trying existing master
Last login:
symkat@symkat:~$ exit
As we see no actual authentication took place. This poses a significant security risk if running it from a host that is not trusted,
as a user who can read and write to the socket can easily make the connection without having to supply a password. Take the same
care to secure the sockets as you take in protecting a private key.
Using SSH As A Proxy
Even Starbucks now has free WiFi in its stores. It seems the world has caught on to giving free Internet at most retail locations.
The downside is that more teenagers with "Got Root?" stickers are camping out at these locations running the latest version of wireshark.
SSH's encryption can stand up to most any hostile network, but what about web traffic?
Most web browsers, and certainly all the popular ones, support using a proxy to tunnel your traffic. SSH can provide a SOCKS proxy
on localhost that tunnels to your remote server with the -D option. You get all the encryption of SSH for your web traffic, and can
rest assured no one will be capturing your login credentials to all those non-ssl websites you're using.
Now there is a proxy running on 127.0.0.1:1080 that can be used in a web browser or email client. Any application that supports
SOCKS 4 or 5 proxies can use 127.0.0.1:1080 to tunnel its traffic.
$ nc -vvv 127.0.0.1 1080
Connection to 127.0.0.1 1080 port [tcp/socks] succeeded!
Using One-Off Commands
Often times you may want only a single piece of information from a remote host. "Is the file system full?" "What's the uptime
on the server?" "Who is logged in?"
Normally you would need to login, type the command, see the output and then type exit (or Control-D for those in the know.) There
is a better way: combine the ssh with the command you want to execute and get your result:
This executed the ssh symkat.com, logged in as symkat, and ran the command "uptime" on symkat. If you're not using SSH keys then
you'll be presented with a password prompt before the command is executed.
$ ssh [email protected] ps aux | echo $HOSTNAME
symkats-macbook-pro.local
This executed the command ps aux on symkat.com, sent the output to STDOUT, a pipe on my local laptop picked it up to execute "echo
$HOSTNAME" locally. Although in most situations using auxiliary data processing like grep or awk will work flawlessly, there are
many situations where you need your pipes and file IO redirects to work on the remote system instead of the local system. In that
case you would want to wrap the command in single quotes:
As a basic rule if you're using > >> < - or | you're going to want to wrap in single quotes.
It is also worth noting that in using this method of executing a command some programs will not work. Notably anything that requires
a terminal, such as screen, irssi, less, or a plethora of other interactive or curses based applications. To force a terminal to
be allocated you can use the -t option:
Pipes are useful. The concept is simple: take the output from one program's STDOUT and feed it to another program's STDIN. OpenSSH
can be used as a pipe into a remote system. Let's say that we would like to transfer a directory structure from one machine to another.
The directory structure has a lot of files and sub directories.
We could make a tarball of the directory on our own server and scp it over. If the file system this directory is on lacks the
space though we may be better off piping the tarballed content to the remote system.
What we did in this example was to create a new archive (-c) and to compress the archive with gzip (-z). Because we did not use
-f to tell it to output to a file, the compressed archive was send to STDOUT. We then piped STDOUT with | to ssh. We used a one-off
command in ssh to invoke tar with the extract (-x) and gzip compressed (-z) arguments. This read the compressed archive from the
originating server and unpacked it into our server. We then logged in to see the listing of files.
Additionally, we can pipe in the other direction as well. Take for example a situation where you with to make a copy of a remote
database, into a local database:
symkat@chard:~$ echo "create database backup" | mysql -uroot -ppassword
symkat@chard:~$ ssh [email protected] 'mysqldump -udbuser -ppassword symkat' | mysql -uroot -ppassword backup
symkat@chard:~$ echo use backup;select count(*) from wp_links;" | mysql -uroot -ppassword
count(*)
12
symkat@chard:~$
What we did here is to create the database "backup" on our local machine. Once we had the database created we used a one-off command
to get a dump of the database from symkat.com. The SQL Dump came through STDOUT and was piped to another command. We used mysql to
access the database, and read STDIN (which is where the data now is after piping it) to create the database on our local machine.
We then ran a MySQL command to ensure that there is data in the backup table. As we can see, SSH can provide a true pipe in either
direction.
Do you make a lot of connections to the same servers? You may not have noticed how slow an initial connection to a shell is. If
you multiplex your connection you will definitely notice it though. Let's test the difference between a multiplexed connection using
SSH keys and a non-multiplexed connection using SSH keys:
# Without multiplexing enabled:
$ time ssh [email protected] uptime
20:47:42 up 16 days, 1:13, 3 users, load average: 0.00, 0.01, 0.00
real 0m1.215s
user 0m0.031s
sys 0m0.008s
# With multiplexing enabled:
$ time ssh [email protected] uptime
20:48:43 up 16 days, 1:14, 4 users, load average: 0.00, 0.00, 0.00
real 0m0.174s
user 0m0.003s
sys 0m0.004s
We can see that multiplexing the connection is much faster, in this instance on an order of 7 times faster than not multiplexing
the connection. Multiplexing allows us to have a "control" connection, which is your initial connection to a server, this is then
turned into a UNIX socket file on your computer. All subsequent connections will use that socket to connect to the remote host. This
allows us to save time by not requiring all the initial encryption, key exchanges, and negotiations for subsequent connections to
the server.
Host *
ControlMaster auto
ControlPath ~/.ssh/connections/%r_%h_%p
A negative to this is that some uses of ssh may fail to work with your multiplexed connection. Most notably commands which use
tunneling like git, svn or rsync, or forwarding a port. For these you can add the option -oControlMaster=no. To prevent a specific
host from using a multiplexed connection add the following to your ~/.ssh/config file:
Host YOUR_SERVER_OR_IP
MasterControl no
There are security precautions that one should take with this approach. Let's take a look at what actually happens when we connect
a second connection:
$ ssh -v -i /dev/null [email protected]
OpenSSH_4.7p1, OpenSSL 0.9.7l 28 Sep 2006
debug1: Reading configuration data /Users/symkat/.ssh/config
debug1: Reading configuration data /etc/ssh_config
debug1: Applying options for *
debug1: auto-mux: Trying existing master
Last login:
symkat@symkat:~$ exit
As we see no actual authentication took place. This poses a significant security risk if running it from a host that is not trusted,
as a user who can read and write to the socket can easily make the connection without having to supply a password. Take the same
care to secure the sockets as you take in protecting a private key.
Using SSH As A Proxy
Even Starbucks now has free WiFi in its stores. It seems the world has caught on to giving free Internet at most retail locations.
The downside is that more teenagers with "Got Root?" stickers are camping out at these locations running the latest version of wireshark.
SSH's encryption can stand up to most any hostile network, but what about web traffic?
Most web browsers, and certainly all the popular ones, support using a proxy to tunnel your traffic. SSH can provide a SOCKS proxy
on localhost that tunnels to your remote server with the -D option. You get all the encryption of SSH for your web traffic, and can
rest assured no one will be capturing your login credentials to all those non-ssl websites you're using.
Now there is a proxy running on 127.0.0.1:1080 that can be used in a web browser or email client. Any application that supports
SOCKS 4 or 5 proxies can use 127.0.0.1:1080 to tunnel its traffic.
$ nc -vvv 127.0.0.1 1080
Connection to 127.0.0.1 1080 port [tcp/socks] succeeded!
Using One-Off Commands
Often times you may want only a single piece of information from a remote host. "Is the file system full?" "What's the uptime
on the server?" "Who is logged in?"
Normally you would need to login, type the command, see the output and then type exit (or Control-D for those in the know.) There
is a better way: combine the ssh with the command you want to execute and get your result:
This executed the ssh symkat.com, logged in as symkat, and ran the command "uptime" on symkat. If you're not using SSH keys then
you'll be presented with a password prompt before the command is executed.
$ ssh [email protected] ps aux | echo $HOSTNAME
symkats-macbook-pro.local
This executed the command ps aux on symkat.com, sent the output to STDOUT, a pipe on my local laptop picked it up to execute "echo
$HOSTNAME" locally. Although in most situations using auxiliary data processing like grep or awk will work flawlessly, there are
many situations where you need your pipes and file IO redirects to work on the remote system instead of the local system. In that
case you would want to wrap the command in single quotes:
As a basic rule if you're using > >> < - or | you're going to want to wrap in single quotes.
It is also worth noting that in using this method of executing a command some programs will not work. Notably anything that requires
a terminal, such as screen, irssi, less, or a plethora of other interactive or curses based applications. To force a terminal to
be allocated you can use the -t option:
Pipes are useful. The concept is simple: take the output from one program's STDOUT and feed it to another program's STDIN. OpenSSH
can be used as a pipe into a remote system. Let's say that we would like to transfer a directory structure from one machine to another.
The directory structure has a lot of files and sub directories.
We could make a tarball of the directory on our own server and scp it over. If the file system this directory is on lacks the
space though we may be better off piping the tarballed content to the remote system.
What we did in this example was to create a new archive (-c) and to compress the archive with gzip (-z). Because we did not use
-f to tell it to output to a file, the compressed archive was send to STDOUT. We then piped STDOUT with | to ssh. We used a one-off
command in ssh to invoke tar with the extract (-x) and gzip compressed (-z) arguments. This read the compressed archive from the
originating server and unpacked it into our server. We then logged in to see the listing of files.
Additionally, we can pipe in the other direction as well. Take for example a situation where you with to make a copy of a remote
database, into a local database:
symkat@chard:~$ echo "create database backup" | mysql -uroot -ppassword
symkat@chard:~$ ssh [email protected] 'mysqldump -udbuser -ppassword symkat' | mysql -uroot -ppassword backup
symkat@chard:~$ echo use backup;select count(*) from wp_links;" | mysql -uroot -ppassword
count(*)
12
symkat@chard:~$
What we did here is to create the database "backup" on our local machine. Once we had the database created we used a one-off command
to get a dump of the database from symkat.com. The SQL Dump came through STDOUT and was piped to another command. We used mysql to
access the database, and read STDIN (which is where the data now is after piping it) to create the database on our local machine.
We then ran a MySQL command to ensure that there is data in the backup table. As we can see, SSH can provide a true pipe in either
direction.
"... Now, you need to supply this file and path to sshd daemon so that it can fetch this banner for each user login request. For that open /etc/sshd/sshd_config file and search for line #Banner none Here you have to edit file and write your filename and remove hash mark. It should look like : Banner /etc/login.warn ..."
"... Save file and restart sshd daemon. To avoid disconnecting existing connected users, use HUP signal to restart sshd. ..."
How to display message when user connects to system before login
This message will be displayed to user when he connects to server and before he logged in. Means
when he enter the username, this message will be displayed before password prompt.
You can use any filename and enter your message within. Here we used /etc/login.warn
file and put our messages inside.
Shell
# cat /etc/login.warn !!!! Welcome to KernelTalks test server !!!! This server is meant for testing
Linux commands and tools. If you are not associated with kerneltalks.com and not authorized please
dis-connect immediately.
Now, you need to supply this file and path to sshd daemon so that it can fetch this
banner for each user login request. For that open /etc/sshd/sshd_config file and search
for line #Banner none Here you have to edit file and write your filename and remove hash mark. It should look like :
Banner /etc/login.warn
Save file and restart sshd daemon. To avoid disconnecting existing connected users,
use HUP signal to restart sshd.
Port forwarding
using SSH
tunnels is a convenient way to circumvent well-intentioned firewall rules, or to access
resources on otherwise unaddressable networks, particularly those behind NAT (with addresses
such as 192.168.0.1 ).
However, it has a shortcoming in that it only allows us to address a specific host and port
on the remote end of the connection; if we forward a local port to machine A on the remote
subnet, we can't also reach machine B unless we forward another port. Fetching documents from a
single server therefore works just fine, but browsing multiple resources over the endpoint is a
hassle.
The proper way to do this, if possible, is to have a VPN connection into the appropriate
network, whether via a virtual interface or a network route through an IPsec tunnel. In cases
where this isn't possible or practicable, we can use a SOCKS proxy set up via an SSH connection to delegate
all kinds of network connections through a remote machine, using its exact network stack,
provided our client application supports it.
Being command-line junkies, we'll show how to set the tunnel up with ssh and to
retrieve resources on it via curl , but of course graphical browsers are
able to use SOCKS proxies as well.
As an added benefit, using this for browsing implicitly encrypts all of the traffic up to
the remote endpoint of the SSH connection, including the addresses of the machines you're
contacting; it's thus a useful way to protect unencrypted traffic from snoopers on your local
network, or to circumvent firewall policies.
Establishing the tunnel
First of all we'll make an SSH connection to the machine we'd like to act as a SOCKS proxy,
which has access to the network services that we don't. Perhaps it's the only publically
addressable machine in the network.
$ ssh -fN -D localhost:8001 remote.example.com
In this example, we're backgrounding the connection immediately with -f , and
explicitly saying we don't intend to run a command or shell with -N . We're only
interested in establishing the tunnel.
Of course, if you do want a shell as well, you can leave these options out:
$ ssh -D localhost:8001 remote.example.com
If the tunnel setup fails, check that AllowTcpForwarding is set to
yes in /etc/ssh/sshd_config on the remote machine:
AllowTcpForwarding yes
Note that in both cases we use localhost rather than 127.0.0.1 ,
in order to establish both IPv4 and IPv6 sockets if appropriate.
We can then check that the tunnel is established with ss on GNU/Linux:
# ss dst :8001
State Recv-Q Send-Q Local Address:Port Peer Address:Port
ESTAB 0 0 127.0.0.1:45666 127.0.0.1:8001
ESTAB 0 0 127.0.0.1:45656 127.0.0.1:8001
ESTAB 0 0 127.0.0.1:45654 127.0.0.1:8001
Requesting documents
Now that we have a SOCKS proxy running on the far end of the tunnel, we can use it to
retrieve documents from some of the servers that are otherwise inaccessible. For example, when
we were trying to run this from the client side, we found it wouldn't work:
This is because the example subnet is on a remote and unroutable LAN. If its
name comes from a private DNS server, we may not even be able to resolve its address, let alone
retrieve the document.
We can fix both problems with our local SOCKS proxy, by pointing curl to it
with its --proxy option:
$ curl --proxy socks5h://localhost:8001 http://private.example/contacts.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Contacts</title>
...
Older versions of curl may need to use the --socks5-hostname
option:
This not only tunnels our HTTP request through to remote.example.com and
returns any response, it does the DNS lookup on the other end too. This means we can not only
retrieve documents from remote servers, we can resolve their hostnames too, even if our client
side can't contact the appropriate DNS server on its own. This is what the h
suffix does in the socks5h:// URI syntax above.
We can configure graphical web browsers to use the SOCKS proxy in the same way, optionally
including DNS resolution:
Browsers are not the only application that can use SOCKS proxies; many IM clients such as
Pidgin and Bitlbee can use them too, for example.
Making things more
permanent
If this all works for you and you'd like to set up the SOCKS proxy on the far end each time
you connect, you can add it to your ssh_config file in
$HOME/.ssh/config :
If you've
dabbled with SSH much, for example by following the excellent suso.org tutorial a few years ago,
you'll know about adding keys to allow passwordless login (or, if you prefer, a passphrase)
using public key authentication. Specifically, you copy the public key
~/.ssh/id_rsa.pub or ~/.ssh/id_dsa.pub off the machine from which you
wish to connect into the /.ssh/authorized_keys file on the target machine. That
will allow you to open an SSH session with the machine from the user account on the local
machine to the one on the remote machine, without having to type in a password.
However, there's a nice shortcut that I didn't know about when I first learned how to do
this, which has since been added to that tutorial too -- specifically, the
ssh-copy-id tool, which is available in most modern OpenSSH distributions and
combines this all into one less error-prone step. If you have it available to you, it's
definitely a much better way to add authorized keys onto a remote machine.
tom@conan:~$ ssh-copy-id crom
Incidentally, this isn't just good for convenience or for automated processes; strong
security policies for publically accessible servers might disallow logging in via passwords
completely, as usernames and passwords can be guessed. It's a lot harder to guess an entire SSH
key, so forcing this login method will reduce your risk of script kiddies or automated attacks
brute-forcing your OpenSSH server to zero. You can arrange this by setting
ChallengeResponseAuthentication to no in your
sshd_config , but if that's a remote server, be careful not to lock yourself
out!
Quite apart from
replacing Telnet and other insecure protocols as the primary means of choice for contacting and
administrating services, the OpenSSH implementation of the SSH protocol has developed into a
general-purpose toolbox for all kinds of well-secured communication, whether using both simple
challenge-response authentication in the form of user and password logins, or for more complex
public key authentication.
SSH is useful in a general sense for tunneling pretty much any kind of TCP traffic, and
doing so securely and with appropriate authentication. This can be used both for ad-hoc
purposes such as talking to a process on a remote host that's only listening locally or within
a secured network, or for bypassing restrictive firewall rules, to more stable implementations
such as setting up a persistent SSH tunnel between two machines to ensure sensitive traffic
that might otherwise be sent in cleartext is not only encrypted but authenticated. I'll discuss
a couple of simple examples here, in addition to talking about the SSH escape sequences, about
which I don't seem to have seen very much information online.
SSH tunnelling for port
forwarding
Suppose you're at work or on a client site and you need some information off a webserver on
your network at home, perhaps a private wiki you run, or a bug tracker or version control
repository. This being private information, and your HTTP daemon perhaps not the most secure in
the world, the server only listens on its local address of 192.168.1.1 , and HTTP
traffic is not allowed through your firewall anyway. However, SSH traffic is, so all you need
to do is set up a tunnel to port forward a local port on your client machine to a local port on
the remote machine. Assuming your SSH-accessible firewall was listening on
firewall.yourdomain.com , one possible syntax would be:
If you then pointed your browser to localhost:5080 , your traffic would be
transparently tunnelled to your webserver by your firewall, and you could act more or less as
if you were actually at home on your office network with the webserver happily trusting all of
your requests. This will work as long as the SSH session is open, and there are means to
background it instead if you prefer -- see man ssh and look for the -f and
-N options. As you can see by the use of the 192.168.1.1 address
here, this also works through NAT.
This can work in reverse, too; if you need to be able to access a service on your local
network that might be behind a restrictive firewall from a remote machine, a perhaps
less typical but still useful case, you could set up a tunnel to listen for SSH connections on
the network you're on from your remote firewall:
As long as this TCP session stays active on the machine, you'll be able to point an SSH
client on your firewall to localhost on port 5022, and it will open an SSH session
as normal:
$ ssh localhost -p 5022
I have used this as an ad-hoc VPN back into a remote site when the established VPN system
was being replaced, and it worked very well. With appropriate settings for sshd ,
you can even allow other machines on that network to use the forward through the firewall, by
allowing GatewayPorts and providing a bind_address to the SSH
invocation. This is also in the manual.
SSH's practicality and transparency in this regard has meant it's quite typical for advanced
or particularly cautious administrators to make the SSH daemon the only process on appropriate
servers that listens on a network interface other than localhost , or as the
only port left open on a private network firewall, since an available SSH service proffers full
connectivity for any legitimate user with a basic knowledge of SSH tunnelling anyway. This has
the added bonus of transparent encryption when working on any sort of insecure network. This
would be a necessity, for example, if you needed to pass sensitive information to another
network while on a public WiFi network at a café or library; it's the same rationale for
using HTTPS rather than HTTP wherever possible on public networks.
Escape sequences
If you use these often, however, you'll probably find it's a bit inconvenient to be working
on a remote machine through an SSH session, and then have to start a new SSH session or restart
your current one just to forward a local port to some resource that you discovered you need on
the remote machine. Fortunately, the OpenSSH client provides a shortcut in the form of its
escape sequence, ~C .
Typed on its own at a fresh Bash prompt in an ssh session, before any other
character has been inserted or deleted, this will drop you to an ssh> prompt.
You can type ? and press Enter here to get a list of the commands available:
The syntax for the -L and -R commands is the same as when used as
a parameter for SSH. So to return to our earlier example, if you had an established SSH session
to the firewall of your local network, to forward a port you could drop to the
ssh> prompt and type -L5080:localhost:80 to get the same port
forward rule working.
Posted on For system and
network administrators or other users who frequently deal with sessions on multiple machines,
SSH ends up being one of the most oft-used Unix tools. SSH usually works so well that until you
use it for something slightly more complex than
starting a terminal session on a remote machine, you tend to use it fairly automatically.
However, the ~/.ssh/config file bears mentioning for a few ways it can make using
the ssh a client a little easier. Abbreviating hostnames
If you often have to SSH into a machine with a long host and/or network name, it can get
irritating to type it every time. For example, consider the following command:
$ ssh web0911.colo.sta.solutionnetworkgroup.com
If you interact with the web0911 machine a lot, you could include a stanza like
this in your ~/.ssh/config :
This would allow you to just type the following for the same result:
$ ssh web0911
Of course, if you have root access on the system, you could also do this by adding the
hostname to your /etc/hosts file, or by adding the domain to your
/etc/resolv.conf to search it, but I prefer the above solution as it's cleaner and
doesn't apply system-wide.
Fixing alternative ports
If any of the hosts with which you interact have SSH processes listening on alternative
ports, it can be a pain to both remember the port number and to type it in every time:
$ ssh webserver.example.com -p 5331
You can affix this port permanently into your .ssh/config file instead:
Host webserver.example.com
Port 5331
This will allow you to leave out the port definition when you call ssh on that
host:
$ ssh webserver.example.com
Custom identity files
If you have a private/public key setup working between your client machine and the server,
but for whatever reason you need to use a different key from your normal one, you'll be using
the -i flag to specify the key pair that should be used for the connection:
I need to do this for Mikrotik's RouterOS connections, as my own private key structure is
2048-bit RSA which RouterOS doesn't support, so I keep a DSA key as well just for that
purpose.
Logging in as a different user
By default, if you omit a username, SSH assumes the username on the remote machine is the
same as the local one, so for servers on which I'm called tom , I can just
type:
tom@conan:$ ssh server.network
However, on some machines I might be known as a different username, and hence need to
remember to connect with one of the following:
If I always connect as the same user, it makes sense to put that into my
.ssh/config instead, so I can leave it out of the command entirely:
Host server.anothernetwork
User tomryder
SSH proxies
If you have an SSH server that's only accessible to you via an SSH session on an
intermediate machine, which is a very common situation when dealing with remote networks using
private RFC1918 addresses through network address translation, you can automate that in
.ssh/config too. Say you can't reach the host nathost directly, but
you can reach some other SSH server on the same private subnet that is publically accessible,
publichost.example.com :
"... The ssh-agent program is designed as a wrapper for a shell. If you have a private and public key setup ready, and you have remote machines for which your key is authorised, you can get an idea of how the agent works by typing: ..."
Public key authentication has a lot of advantages for connecting to servers,
particularly if it's the only allowed means of authentication, reducing the chances of a brute
force password attack to zero. However, it doesn't solve the problem of having to type in a
password or passphrase on each connection, unless you're using a private key with no
passphrase, which is quite risky if the private key is compromised.
Thankfully, there's a nice supplement to a well-secured SSH key setup in the use of
agents on trusted boxes to securely store decrypted keys per-session, per-user.
Judicious use of an SSH agent program on a trusted machine allows you to connect to any server
for which your public key is authorised by typing your passphrase to decrypt your private key
only once.
SSH agent setup
The ssh-agent program is designed as a wrapper for a shell. If you have a
private and public key setup ready, and you have remote machines for which your key is
authorised, you can get an idea of how the agent works by typing:
$ ssh-agent bash
This will prompt you for your passphrase, and once entered, within the context of that
subshell, you will be able to connect to authorised remote servers without typing in the
passphrase again. Once loaded, you can examine the identities you have by using ssh-add
-l to see the fingerprints, and ssh-add -L for the public keys:
You can set up your .bashrc file to automatically search for accessible SSH
agents to use for the credentials for new connections, and to prompt you for a passphrase to
open a new one if it need be. There are very workable instructions on GitHub for
setting this up.
If you want to shut down the agent at any time, you can use ssh-agent -k .
Where the configuration of the remote machine allows it, you can forward
authentication requests made from the remote machine back to the agent on your workstation.
This is handy for working with semi-trusted gateway machines that you trust to forward your
authentication requests correctly, but on which you'd prefer not to put your private key.
This means that if you connect to a remote machine from your workstation running an SSH
agent with the following, using the -A parameter:
user@workstation:~$ ssh -A remote.example.com
You can then connect to another machine from remote.example.com using your
private key on workstation :
user@remote:~$ ssh another.example.com
SSH agent authentication via PAM
It's also possible to use SSH agent authentication as a PAM method for general
authentication, such as for sudo , using pam_ssh_agent_auth .
It may be the case
that while you're happy to allow a user or process to have public key authentication access to
your server via the ~/.ssh/authorized_keys file, you don't necessarily want to
give them a full shell, or you may want to restrict them from doing things like SSH port
forwarding or X11 forwarding.
One method that's supposed to prevent users from accessing a shell is by defining their
shell in /etc/passwd as /bin/false , which does indeed prevent them
from logging in with the usual ssh or ssh command syntax. This isn't
a good approach because it still allows port forwarding and other
SSH-enabled services.
If you want to restrict the use of logins with a public key, you can prepend option pairs to
its line in the authorized_keys file. Some of the most useful options here
include:
from="<hostname/ip>" -- Prepending from="*.example.com"
to the key line would only allow public-key authenticated login if the connection was coming
from some host with a reverse DNS of example.com . You can also put IP addresses
in here. This is particularly useful for setting up automated processes through keys with
null passphrases.
command="<command>" -- Means that once authenticated, the command
specified is run, and the connection is closed. Again, this is useful in automated setups for
running only a certain script on successful authentication, and nothing else.
no-agent-forwarding -- Prevents the key user from forwarding authentication
requests to an SSH agent on their client, using the -A or
ForwardAgent option to ssh .
no-port-forwarding -- Prevents the key user from forwarding ports using
-L and -R .
no-X11-forwarding -- Prevents the key user from forwarding X11
processes.
no-pty -- Prevents the key user from being allocated a tty
device at all.
So, for example, a public key that is only used to run a script called
runscript on the server by the client [email protected] :
A public key for a user whom you were happy to allow to log in from anywhere with a full
shell, but did not want to allow agent, port, or X11 forwarding:
Use of these options goes a long way to making your public key authentication setup harder
to exploit, and is very consistent with the principle of least privilege .
To see a complete list of the options available, check out the man page for sshd .
Occasionally you
may find yourself using a network behind a firewall that doesn't allow outgoing TCP connections
with a destination port of 22, meaning you're unable to connect to your OpenSSH server, perhaps
to take advantage of a SOCKS proxy for encrypted and
unfiltered web browsing.
Since these restricted networks almost always allow port 443 out, since it's the destination
port for outgoing HTTPS requests, an easy workaround is to have your OpenSSH server listen on
port 443 if it isn't already using the port.
This is sometimes given as a rationale for changing the sshd port completely,
but you don't need to do that; you can simply add another Port directive to
sshd_config(5) :
Port 22
Port 443
After restarting the OpenSSH server with this new line in place, you can verify that it's
listening with ss(8)
or netstat(8)
# ss -lnp src :22
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 :::22 :::*
users:(("sshd",3039,6))
LISTEN 0 128 *:22 *:*
users:(("sshd",3039,5))
# ss -lnp src :443
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 :::443 :::*
users:(("sshd",3039,4))
LISTEN 0 128 *:443 *:*
users:(("sshd",3039,3))
You'll then be able to connect to the server on port 443, the same way you would on port 22.
If you intend this setup to be permanent, it would be a good idea to save the configuration in your
ssh_config(5)
file, or whichever SSH client you happen to use. Posted in SSH Tagged additional ports , multiple ports ,
workaround
SSHGuard is an intrusion prevention
utility that parses logs and automatically blocks misbehaving IP addresses (or their subnets)
with the system firewall. SSHGuard version 2.1 was just released with new blocking services,
the ability to block a configurable-sized subnet, and better log reading capabilities.
For system and network administrators or other users who frequently deal with sessions on
multiple machines, SSH ends up being one of the most oft-used Unix tools. SSH usually works so
well that until you use it for something slightly more complex than
starting a terminal session on a remote machine, you tend to use it fairly automatically.
However, the ~/.ssh/config file bears mentioning for a few ways it can make using
the ssh a client a little easier. Abbreviating hostnames
If you often have to SSH into a machine with a long host and/or network name, it can get
irritating to type it every time. For example, consider the following command:
$ ssh web0911.colo.sta.solutionnetworkgroup.com
If you interact with the web0911 machine a lot, you could include a stanza like
this in your ~/.ssh/config :
This would allow you to just type the following for the same result:
$ ssh web0911
Of course, if you have root access on the system, you could also do this by adding the
hostname to your /etc/hosts file, or by adding the domain to your
/etc/resolv.conf to search it, but I prefer the above solution as it's cleaner and
doesn't apply system-wide.
Fixing alternative ports
If any of the hosts with which you interact have SSH processes listening on alternative
ports, it can be a pain to both remember the port number and to type it in every time:
$ ssh webserver.example.com -p 5331
You can affix this port permanently into your .ssh/config file instead:
Host webserver.example.com
Port 5331
This will allow you to leave out the port definition when you call ssh on that
host:
$ ssh webserver.example.com
Custom identity files
If you have a private/public key setup working between your client machine and the server,
but for whatever reason you need to use a different key from your normal one, you'll be using
the -i flag to specify the key pair that should be used for the connection:
I need to do this for Mikrotik's RouterOS connections, as my own private key structure is
2048-bit RSA which RouterOS doesn't support, so I keep a DSA key as well just for that
purpose.
Logging in as a different user
By default, if you omit a username, SSH assumes the username on the remote machine is the
same as the local one, so for servers on which I'm called tom , I can just
type:
tom@conan:$ ssh server.network
However, on some machines I might be known as a different username, and hence need to
remember to connect with one of the following:
If I always connect as the same user, it makes sense to put that into my
.ssh/config instead, so I can leave it out of the command entirely:
Host server.anothernetwork
User tomryder
SSH proxies
If you have an SSH server that's only accessible to you via an SSH session on an
intermediate machine, which is a very common situation when dealing with remote networks using
private RFC1918 addresses through network address translation, you can automate that in
.ssh/config too. Say you can't reach the host nathost directly, but
you can reach some other SSH server on the same private subnet that is publically accessible,
publichost.example.com :
As a Linux user, we use
ssh command
to log in to remote machines. The more you use ssh command, the more time you are wasting in typing
some significant commands. We can use either
alias
defined in your .bashrc file or functions to minimize the time you spend on CLI. But this is
not a better solution. The better solution is to use SSH-alias in ssh config file.
A couple of examples where we can better the ssh commands we use.
Connecting to ssh to AWS instance is a pain. Just to type below command, every time is complete
waste your time as well.
In this post, we will see how to achieve shorting of your ssh commands without using bash alias
or functions. The main advantage of ssh alias is that all your ssh command shortcuts are stored in
a single file and easy to maintain. The other advantage is we can use same alias for both SSH and
SCP commands alike
Before we jump into actual configurations, we should know difference between /etc/ssh/ssh_config,
/etc/ssh/sshd_config, and ~/.ssh/config files. Below is the explanation for these files.
System-level SSH configurations are stored in /etc/ssh/ssh_config. Whereas user-level ssh configurations
are stored in ~/.ssh/config file.
System-level SSH configurations are stored in /etc/ssh/ssh_config. Whereas system level SSH server
configurations are stored in /etc/ssh/sshd_config file.
... ... ...
Example1: Create SSH alias for a host(www.linuxnix.com)
Edit file ~/.ssh/config with following content
Host tlj
User root
HostName 18.197.176.13
port 22
... ... ...
Examaple5: Resolve SSH timeout issues in Linux. By default, your ssh logins are timed out if you
don't activily use the terminial.
SSH timeouts are one
more pain where you have to re-login to a remote machine after a certain time. We can set SSH time
out right in side your ~/.ssh/config file to make your session active for whatever time you want.
To achieve this we will use two SSH options for keeping the session alive. One ServerAliveInterval
keeps your session live for number of seconds and ServerAliveCountMax will initial session after
session for a given number.
ServerAliveInterval A
ServerAliveCountMax B
Example:
Host tlj linuxnix linuxnix.com
User root
HostName 18.197.176.13
port 22
ServerAliveInterval 60
ServerAliveCountMax 30
We will see some other exiting howto in our next post. Keep visiting linuxnix.com.
UPDATE: This was a good exercise but I decided to replace the script with denyhosts:
http://denyhosts.sourceforge.net/
. In CentOS, just
install the
EPEL
repo first,
then you can install it via yum.
This is one of the problems that my team encountered when we opened up a firewall for SSH
connections. Brute force SSH attacks using botnets are just everywhere! And if you're not
careful, it's quite a headache if one of your servers was compromised.
Lot of tips can be found in the Internet and this is the approach that I came up with based
on numerous sites that I've read.
strong passwords
DUH! This is obvious but most people ignore it. Don't be lazy.
disable root access through SSH
Most of the time, direct root access is not needed. Disabling it is highly recommended.
open
/etc/ssh/sshd_config
enable and set this SSH config to no:
PermitRootLogin no
restart SSH:
service sshd restart
limit users who can log-in through SSH
Users who can use the SSH service can be specified. Botnets often use user names that were
added by an application, so listing the users can lessen the vulnerability.
open
/etc/ssh/sshd_config
enable and list the users with this SSH config:
AllowUsers user1 user2
user3
restart SSH:
service sshd restart
use a script to automatically block malicious IPs
Utilizing SSH daemon's log file (in CentOS/RHEL, it's in /var/log/secure ), a simple script
can be written that can automatically block malicious IPs using tcp_wrapper's host.deny
If AllowUsers is enabled, the SSH daemon will log invalid attempts in this format:
sshd[8207]: User apache from 125.5.112.165 not allowed because not listed in AllowUsers
sshd[15398]: User ftp from 222.169.11.13 not allowed because not listed in AllowUsers
SSH also logs invalid attempts in this format: sshd[6419]: Failed password for invalid
user zabbix from 69.10.143.168 port 50962 ssh2 Based on the information above, I came up
with this script:
#!/bin/bash
# always exclude these IPs
exclude_ips='192.168.60.1|192.168.60.10'
file_log='/var/log/secure'
file_host_deny='/etc/hosts.deny'
tmp_list='/tmp/ips.for.restriction'
if [[ -e $tmp_list ]]
then
rm $tmp_list
fi
# set the separator to new lines only
IFS=$'\n'
# REGEX filter
filter="^$(date +%b\\s*%e).+(not listed in AllowUsers|\
Failed password.+invalid user)"
for ip in $( pcregrep $filter $file_log \
| perl -ne 'if (m/from\s+([^\s]+)\s+(not|port)/) { print $1,"\n"; }' )
do
if [[ $ip ]]
then
echo "ALL: $ip" >> $tmp_list
fi
done
# reset
unset IFS
cat $file_host_deny >> $tmp_list
sort -u $tmp_list | pcregrep -v $exclude_ips > $file_host_deny
I deployed the script in root's crontab and set it to run every minute
This page shows common problems experienced with SSH in general, and when establishing an
SSH tunnel
, and
solutions for each problem.
Tip: Most port-forwarding problems are caused by a basic misunderstanding of how an SSH
tunnel actually works, so it is highly recommended that you read the
SSH Tunnel
page before continuing.
Table of Contents
Connection Problems
Unable to open connection: Host does not
exist
Connection fails with the following error:
Unable to open connection:
Host does not exist
This error occurs when:
The server name cannot be resolved to an IP address. If it could be, a different error
would be displayed (such as Connection refused). Check the server exists and is reachable
using PING.
ping servername
Unable to open connection: gethostbyname: unknown error Connection fails with the
following error:
Unable to open connection:
gethostbyname: unknown error
Connection refused
Connection fails with the following error:
Failed to connect to 100.101.102.103: Network error: Connection refused
Network error: Connection refused
FATAL ERROR: Network error: Connection refused
This error occurs when:
The server name is incorrect. Verify the server exists and is running SSHD.
The port specified with the -P (PLINK/PuTTY) or -p (ssh) argument is incorrect. Verify
that the port is correct.
There is a firewall or other connection problem between the two servers. Try using telnet
to telnet to the server/port.
Failed to add the host to the list of known hosts (/home/USERNAME/.ssh/known_hosts)
Connection works, but the following warning is issued
Failed to add the host to the list of known hosts (/home/USERNAME/.ssh/known_hosts)
This error occurs when:
The user's HOME folder has incorrect permissions
The user's HOME/.ssh folder or HOME/.ssh/known_hosts file has incorrect permissions (such
as when the folder has been copied into location by root, or permissions have been manually
set incorrectly)
To fix, execute these commands (as root) to reset the permissions to their correct values
(replace USERNAME with the appropriate username)
Authentication Problems
When using a key, you are prompted for a password (instead of
automatically authenticating)
This can be caused be:
Providing a passphrase on the key. Verify that you have created the SSH key-pair with no
passphrase
Incorrect setup on the SSH server (key file or security not correctly configured). In
some cases, no error will appear in the SSHD logs on the server.
Incorrect key specified on the client. For example, specifying the public key in the
command line arguments instead of the private key.
Incorrect username specified for the key. For example, the key has been installed for
user "neale" but you are connecting as username "cassie".
Unable to use key file "keys\KEYNAME.ppk" (unable to open file)
This is caused by an inability to open the specified SSH key file.
Verify that the key file exists, and is really at the location you have specified with
the -i argument
Verify that the local user executing the PLINK/ssh command has permissions to read the
key file
Tunnel Problems / Port Forwarding Problems
Note that some of these errors will only appear if verbose-output (-v) is switched on for
the PLINK command or SSH commands. PuTTY hides them, but PLINK can be used with exactly the
same command line arguments, so test with PLINK and the -v command line option.
Forwarded
connection refused by server: Administratively prohibited [open failed], or channel N: open
failed: administratively prohibited: open failed
This error appears in the PLINK/PuTTY/ssh window when:
the port forwarding address does not exist (most common reason, normally a typo)
port-forwarding has been disabled server-wide in /etc/ssh/sshd_config using
AllowTcpForwarding no (default setting is yes)
port-forwarding is limited to specific hosts only (and the one you are connecting to is
not in the list), in the server-wide setting file /etc/ssh/sshd_config under the PermitOpen
option. Note that even if the host is allowed in permitopen in authorized_keys2 (see below),
it still needs to be allowed in sshd_config as well.
you are using a certificate-based connection and port-forwarding has been disabled in
/home/username/.ssh/authorized_keys2 with the option no-port-forwarding
you are using a certificate-based connection and port-forwarding is limited to specific
hosts only (and the one you are connecting to is not in the list), in the
/home/username/.ssh/authorized_keys2 file using the permitopen= option
a DNS problem on the server is preventing the host name from being resolved to an IP
address (error in DNS, or manual entry in /etc/hosts)
For example, you have tried to connect to servername.example.com using an SSH command line
argument such as:
-L 127.0.0.1:3500:servername.example.com:3506
However, servername.example.com does not exist, is not permitted, or cannot be resolved
correctly by the remote server. Unfortunately, the error message is quite vague, and always makes
it look like a security issue. Verify the server name is correct and try again, then check with
your administrator.
When this is the problem the following will appear in the SSH server logs (eg:
/var/log/auth.log in Linux):
Nov 28 17:00:57 server sshd[27850]: error: connect_to servername.example.com: unknown host (Name or service not known)
or
Aug 26 17:48:10 server sshd[24180]: Received request to connect to host servername.example.com port NNNN, but the request was denied.
Forwarded connection refused by server: Connect failed [Connection refused]
This error appears in the PLINK/PuTTY/ssh window, when you try to establish a connection to
the tunnel, and the server cannot connect to the remote port specified.
For example, you have specified that the tunnel goes to servername.example.com:3506 using an
SSH command line argument such as:
-L 127.0.0.1:3500:servername.example.com:3506
When you then try to telnet to 127.0.0.1:3500 on the client machine, this is tunnelled
through to the server, which then attempts to connect to servername.example.com:3506. However, that
that connection between the server and servername.example.com:3506 is refused.
Check the tunnel server:port is correct, or ensure that the server is able to connect to the
specified server:port.
Service lookup failed for destination port ""
This error appears in the PLINK/PuTTY/ssh window, if your tunnel definition is incomplete or
incorrect.
For example, the additional space after "3500:" in the following line will cause this
error:
line which causes error:
-L 127.0.0.1:3500: mysql5.metawerx.net:3506
correct line:
-L 127.0.0.1:3500:mysql5.metawerx.net:3506
Local port 127.0.0.1:nnnnn forwarding to nnn.nnn.nnn.nnn:nnnnn failed: Network error:
Permission denied
This error appears in the PLINK/PuTTY/ssh window, if your PuTTY client cannot listen on the
local port you have specified.
This normally occurs because of another service already running on that port.
For example, the tunnel below will fail if you have a local version of SQL/Server already
listening on port 1433:
-L 127.0.0.1:1433:sql2005-1.metawerx.net:1433
To fix, close the program that is listening on that port (ie: SQL/Server in the example
above).
Advanced: You can also adjust to tunnel from another port, such as 127.0.0.2:1433 or
127.0.0.1:1434. However, with SQL/Server, the Management Console application will only allow
connections to 1433. Additionally, it listens on 0.0.0.0:1433, preventing use of port 1433 on
any other IP address. Therefore, unless you first adjust the SQL/Server registry settings to
listen on a specific IP first, it is not possible to have SQL/Server running at the same time
as a local tunnel.
<some program>: not found
If you have connected successfully, but get errors when you try to enter commands at the
tunnel prompt, this is because you have access to the tunnel itself, but not to an SSH prompt
or any tools on the server. You should not be running these commands at the SSH prompt
itself.
Example errors:
createuser: not found
mysql: not found
If you were trying to establish an SSH tunnel, you have already accomplished this part. Your
tunnel should be listening on 127.0.0.1:<some port>. The commands you are trying to
execute should be performed in a new Command Prompt or Shell.
Remember - the tunnel is providing access to a remote service, on your local machine, as if
the server is your own computer.
You can therefore use any command line or GUI tools at your disposal, and connect directly
to 127.0.0.1:<whatever port>.
If you are confused about how this works, see the
SSH Tunnel
page for diagrams and a full
explanation.
Support Topics
page for examples of setting up remote database connections over SSH
Problem not found / not solved? Something to add?
If your problem is not solved by the above guide, please click Add Comment and specify
the error message or problem you are having. This will allow us improve this guide.
If you have helpful information to add, please feel free to add a comment or register so
that you can edit this page yourself.
Contributors:
Christopher Hollowell, John DeStefano There are a number of problems that can cause failures
when connecting to the RACF. Here are some things to look at and try in order to resolve your
problem.
Have you uploaded your public key to the RACF via the key file upload form
(requires your Kerberos user name and password)?
Are you connecting to our SSH gateway from the same system on which you generated
your key pair? If not, you will have to copy the private key to this additional system. If
this system is using a different SSH client, you may need to convert or import the private
key. See: https://www.racf.bnl.gov/docs/authentication/ssh/sshkeys
and click on "Using SSH keys" to help you out. Do not generate and upload another public key
from this additional system; uploading another public key will overwrite your existing public
key and create more problems. Even using different SSH clients on the same system may require
this conversion/import of the private key.
Are you asked for a passphrase when you connect? If not, then your client is not
using the private key for some reason. It could be the private key doesn't exist, is not in
the default filename, access rights of the file are incorrect, the file is not in a directory
the client is searching, or some other reason.
If you have uploaded another public key , then that key pair is the only usable
pair that will work, and all other pairs are now obsolete. Also, the private key from this
pair must be copied and possibly converted or imported to any other SSH clients you are
using.
Username Issues
If your username on your local system is different from your username at the RACF,
then you must specify your RACF username when you connect to the RACF, using the -l option to
the ssh commmand:
ssh -l [username] [RACF-hostname]
or prepending username@ to the SSH gateway system name (no space between the @ and the SSH
gateway system name):
ssh [username]@[RACF-hostname]
In Windows SSH clients, there is typically a text box in which you type in your
username.
Ownership/Access Rights Issues
If you are using a Linux/UNIX based SSH client, please check the ownership and access
rights of your ~/.ssh/ directory and
the private key file in that directory. Both must be owned by your local user account (not
necessarily the same as your
RACF user account). The rights on your ~/.ssh/ directory should be 700 , and the rights
on the private key file (possibly,
but not definitely, named ~/.ssh/id_rsa ), should be 600 . The important thing here is
that "group" and "other" access rights
must be 00 .
PuTTY Issues
If you are using PuTTY in
Windows , then you have to either import your private key , or somehow tell PuTTY
where the key file is.
In the main PuTTY Configuration, click on SSH and then Auth . The window will have a text
box where you can put the path
of the key or browse for it. See Windows SSH Key Generation
for more information on generating SSH keys for use with PuTTY.
You may also need to forward your private key through a remote gateway machine to another
server. See SSH Agent for more information
on storing and forwarding your private key.
Viewing Your Public Key
You can view the contents of the public key you uploaded to the RACF by directing
your Web client to: https://www.racf.bnl.gov/docs/authentication/ssh/sshkeys
and clicking on SSH Public Key File Viewing
Utility . You can check this against the public key that may be on your local
system (the public key is not required to be on your local system; the private key is required
to be there). If they
are not the same, then the private key on your local system may not paired with the public key
you uploaded to the RACF.
If you have both private and public keys on your local system, check the date/time stamps on
them, as they should be the same. If they are not the same, then the private key on your local
system may not be paired with the public key that you uploaded to the RACF. If you are using
the openssh client, then you
can also check to see if your local private key is paired to the public key that you uploaded
to the RACF. Run the command:
ssh-keygen -y
on your local system. It will ask for the filename of your private key and its passphrase
and will display the public
key (without the trailing comment field) that is paired with it. Check this against the results
of viewing the public key
you uploaded to the RACF as described above.
Frozen Sessions and Terminals
If your connection or session intermittently freezes, try adding a server keep-alive option
to your usual SSH command:
ssh ... -o ServerAliveInterval=120
This ensures that a set of request and acknowledgment packets will be sent between the
connection every two minutes, even when no other data has been requested. You can also add this
option to your SSH configuration file ( ~/.ssh/config ) instead of specifying it
with each SSH command:
ServerAliveInterval 120
Host Key Issues
Sometimes host key problems can close the ssh connection before login completes. If you see
an error like this:
ssh_exchange_identification: Connection closed by remote host
Then you might try removing the offending host key from your ~/.ssh/known_hosts
file and try again.
Error: Agent admitted failure to sign using the key
This error might occur if you accidentally load the wrong SSH identity for a specific key,
if you've uploaded a new public key that hasn't yet been synced with your account (or uploaded
multiple or invalid keys), or if you're trying to load too many SSH identities at one time.
Your best recourse is usually to:
I've helped a few people recently who have had trouble getting
OpenSSH
working properly; I've also had my share of issues over the
years. Generally problems with SSH connections fall into two groups - network related and
server related. Most of these problems can be fixed fairly quickly if you know what to look
for.
Network Related Problems
These will typically be caused by improper routing or firewall configurations. Here are some
things to check.
1. If your SSH server sits behind a firewall or router, make sure the default route of your
internal SSH server points back to that firewall or router. Seems obvious, but it's common to
forget about the return trip packets need to make. This will display your default
gateway:
netstat -rn | grep UG
Sometimes the default gateway is just one of your server interfaces, this is OK as long as
that interface is directly connected to something that knows how to get back to your
client.
2. While you're at it, make sure the incoming SSH packets are actually getting to your SSH
server.
Tcpdump
works
very nicely for this, you'll need to be root to run it on the server:
tcpdump -n -i
eth0 tcp port 22 and host [IP address of client]
Just replace eth0 by your client-facing interface name. If you don't see incoming SSH
packets during connection attempts, it's probably due to a firewall or router access
list.
SSH Server Problems
All of these issues revolve around SSH server configuration settings - not misconfigurations
necessarily, just settings you may not be aware of.
1. Permissions can be a problem - in its default configuration, OpenSSH sets StrictModes to
yes and won't allow any connections if the account you're trying to SSH into has group- or
world-writable permissions on its home directory, ~/.ssh directory, or ~/.ssh/authorized_keys
file. I typically just make the two directories mode 700 and the authorized_keys file mode 600.
The sshd man page suggests this one-liner:
chmod go-w ~/ ~/.ssh
~/.ssh/authorized_keys
2. On Debian or Ubuntu systems, it is possible the keys you are using to connect are
blacklisted. This is only an issue on Debian or Debian-based clients, and stems from this
now-famous vulnerability
in May of 2008
. To detect any such blacklisted keys, run ssh-vulnkey on the client, while
logged into the account you are connecting from. Debian and Ubuntu SSH servers will reject any
such keys unless the PermitBlacklistedKeys directive in the /etc/ssh/sshd_config file is set to
no . I don't recommend you actually leave this security check disabled, but it can be useful to
temporarily disable it during testing.
3. Finally, if all else fails, you can see exactly what the SSH server is doing by running
it in debug mode on a non-standard port:
/usr/sbin/sshd -d -p 2222
Then, on the client, connect and watch the server output:
ssh -vv -p 2222 [Server
IP]
Note the -vv option to provide verbose client output. This alone can sometimes help debug
connection issues (and try -vvv for even more output).
I have user
$USER
which is a system user account with an authorized users file.
When I have SELinux enabled I am unable to ssh into the server using the public key. If I
setenabled 0
,
$USER
can now log in.
What SELinux bool/policy should I change to correct this behaviour without disabling
SELinux entirely?
It's worth noting that
$USER
can login with a password under this default
SELinux configuration, I'd appreciate some insight as to what is happening here, and why
SELinux isn't blocking that. (I will be disabling
A:
Assuming the filesystem permissions are correct on ~/.ssh/*, then check the output of
sealert -a /var/log/audit/audit.log
There should be a clue in an AVC entry there. Most likely the solution will boil down to
running:
restorecon -R -v ~/.ssh
could successfully SSH into my machine yesterday with the exact same credentials I am
using today. The machine is running Centos 6.3 . But now for some reason it is giving me
permission denied. Here is my
-v
print out, sshd_config, and ssh_config
files.
$ ssh -vg -L 3333:localhost:6666 misfitred@devilsmilk
OpenSSH_6.1p1, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to devilsmilk [10.0.10.113] port 22.
debug1: Connection established.
debug1: identity file /home/kgraves/.ssh/id_rsa type -1
debug1: identity file /home/kgraves/.ssh/id_rsa-cert type -1
debug1: identity file /home/kgraves/.ssh/id_dsa type -1
debug1: identity file /home/kgraves/.ssh/id_dsa-cert type -1
debug1: identity file /home/kgraves/.ssh/id_ecdsa type -1
debug1: identity file /home/kgraves/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.1
debug1: match: OpenSSH_6.1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.1
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA de:1c:37:d7:84:0b:f8:f9:5e:da:11:49:57:4f:b8:f1
debug1: Host 'devilsmilk' is known and matches the ECDSA host key.
debug1: Found key in /home/kgraves/.ssh/known_hosts:1
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interacti ve
debug1: Next authentication method: publickey
debug1: Trying private key: /home/kgraves/.ssh/id_rsa
debug1: Trying private key: /home/kgraves/.ssh/id_dsa
debug1: Trying private key: /home/kgraves/.ssh/id_ecdsa
debug1: Next authentication method: keyboard-interactive
debug1: Authentications that can continue: publickey,password,keyboard-interacti ve
debug1: Next authentication method: password
misfitred@devilsmilk's password:
debug1: Authentications that can continue: publickey,password,keyboard-interacti ve
Permission denied, please try again.
misfitred@devilsmilk's password:
debug1: Authentications that can continue: publickey,password,keyboard-interacti ve
Permission denied, please try again.
misfitred@devilsmilk's password:
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: No more authentication methods to try.
Permission denied (publickey,password,keyboard-interactive).
Here is my sshd_config file on devilsmilk:
# $OpenBSD: sshd_config,v 1.80 2008/07/02 02:24:18 djm Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options change a
# default value.
Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
# Disable legacy (protocol version 1) support in the server for new
# installations. In future the default will change to require explicit
# activation of protocol 1
#Protocol 2
# HostKey for protocol version 1
# HostKey /etc/ssh/ssh_host_key
# HostKeys for protocol version 2
# HostKey /etc/ssh/ssh_host_rsa_key
# HostKey /etc/ssh/ssh_host_dsa_key
# Lifetime and size of ephemeral version 1 server key
#KeyRegenerationInterval 1h
#ServerKeyBits 1024
# Logging
# obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
#PermitRootLogin yes
StrictModes no
#MaxAuthTries 6
#MaxSessions 10
#RSAAuthentication yes
#PubkeyAuthentication yes
#AuthorizedKeysFile .ssh/authorized_keys
#AuthorizedKeysCommand none
#AuthorizedKeysCommandRunAs nobody
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#RhostsRSAAuthentication no
# similar for protocol version 2
#HostbasedAuthentication yes
# Change to yes if you don't trust ~/.ssh/known_hosts for
# RhostsRSAAuthentication and HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes
# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes
#PermitEmptyPasswords no
# Change to no to disable s/key passwords
#ChallengeResponseAuthentication yes
# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no
#KerberosUseKuserok yes
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPIAuthentication yes
#GSSAPICleanupCredentials yes
#GSSAPICleanupCredentials yes
#GSSAPIStrictAcceptorCheck yes
#GSSAPIKeyExchange no
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
#UsePAM no
# Accept locale-related environment variables
#AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
#AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
#AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE
#AcceptEnv XMODIFIERS
#AllowAgentForwarding yes
AllowTcpForwarding yes
GatewayPorts yes
#X11Forwarding no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PrintMotd yes
#PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#ShowPatchLevel no
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no
#ChrootDirectory none
# no default banner path
#Banner none
# override default of no subsystems
Subsystem sftp /usr/libexec/openssh/sftp-server
# Example of overriding settings on a per-user basis
#Match User anoncvs
# X11Forwarding no
# AllowTcpForwarding no
# ForceCommand cvs server
And here is my ssh_config file:
# $OpenBSD: ssh_config,v 1.25 2009/02/17 01:28:32 djm Exp $
# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.
# Configuration data is parsed as follows:
# 1. command line options
# 2. user-specific file
# 3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.
# Site-wide defaults for some commonly used options. For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.
# Host *
# ForwardAgent no
# ForwardX11 no
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
# GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# GSSAPIKeyExchange no
# GSSAPITrustDNS no
# BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# Cipher 3des
# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
# MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
# VisualHostKey no
#Host *
# GSSAPIAuthentication yes
# If this option is set to yes then remote X11 clients will have full access
# to the original X11 display. As virtually no X11 client supports the untrusted
# mode correctly we set this to yes.
ForwardX11Trusted yes
# Send locale-related environment variables
SendEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
SendEnv LC_IDENTIFICATION LC_ALL LANGUAGE
SendEnv XMODIFIERS
UPDATE REQUEST 1: /var/log/secure
Jan 29 12:26:26 localhost sshd[2317]: Server listening on 0.0.0.0 port 22.
Jan 29 12:26:26 localhost sshd[2317]: Server listening on :: port 22.
Jan 29 12:26:34 localhost polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session1 (system bus name :1.29 [/usr/libexec/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 29 12:36:09 localhost pam: gdm-password[3029]: pam_unix(gdm-password:session): session opened for user misfitred by (uid=0)
Jan 29 12:36:09 localhost polkitd(authority=local): Unregistered Authentication Agent for session /org/freedesktop/ConsoleKit/Session1 (system bus name :1.29, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
Jan 29 12:36:11 localhost polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session2 (system bus name :1.45 [/usr/libexec/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 29 12:53:39 localhost polkitd(authority=local): Operator of unix-session:/org/freedesktop/ConsoleKit/Session2 successfully authenticated as unix-user:root to gain TEMPORARY authorization for action org.freedesktop.packagekit.system-update for system-bus-name::1.64 [gpk-update-viewer] (owned by unix-user:misfitred)
Jan 29 12:54:02 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 12:54:06 localhost sshd[2317]: Received signal 15; terminating.
Jan 29 12:54:06 localhost sshd[3948]: Server listening on 0.0.0.0 port 22.
Jan 29 12:54:06 localhost sshd[3948]: Server listening on :: port 22.
Jan 29 12:55:46 localhost su: pam_unix(su:session): session closed for user root
Jan 29 12:55:56 localhost pam: gdm-password[3029]: pam_unix(gdm-password:session): session closed for user misfitred
Jan 29 12:55:56 localhost polkitd(authority=local): Unregistered Authentication Agent for session /org/freedesktop/ConsoleKit/Session2 (system bus name :1.45, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
Jan 29 12:55:58 localhost polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session3 (system bus name :1.78 [/usr/libexec/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 29 12:56:29 localhost pam: gdm-password[4044]: pam_unix(gdm-password:auth): conversation failed
Jan 29 12:56:29 localhost pam: gdm-password[4044]: pam_unix(gdm-password:auth): auth could not identify password for [misfitred]
Jan 29 12:56:29 localhost pam: gdm-password[4044]: gkr-pam: no password is available for user
Jan 29 12:57:11 localhost pam: gdm-password[4051]: pam_selinux_permit(gdm-password:auth): Cannot determine the user's name
Jan 29 12:57:11 localhost pam: gdm-password[4051]: pam_succeed_if(gdm-password:auth): error retrieving user name: Conversation error
Jan 29 12:57:11 localhost pam: gdm-password[4051]: gkr-pam: couldn't get the user name: Conversation error
Jan 29 12:57:17 localhost pam: gdm-password[4053]: pam_unix(gdm-password:session): session opened for user misfitred by (uid=0)
Jan 29 12:57:17 localhost polkitd(authority=local): Unregistered Authentication Agent for session /org/freedesktop/ConsoleKit/Session3 (system bus name :1.78, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
Jan 29 12:57:17 localhost polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session4 (system bus name :1.93 [/usr/libexec/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 29 12:57:49 localhost unix_chkpwd[4495]: password check failed for user (root)
Jan 29 12:57:49 localhost su: pam_unix(su:auth): authentication failure; logname=misfitred uid=501 euid=0 tty=pts/0 ruser=misfitred rhost= user=root
Jan 29 12:58:04 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 13:16:16 localhost su: pam_unix(su:session): session closed for user root
Jan 29 13:18:05 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 13:21:14 localhost su: pam_unix(su:session): session closed for user root
Jan 29 13:21:40 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 13:24:17 localhost su: pam_unix(su:session): session opened for user misfitred by misfitred(uid=0)
Jan 29 13:27:10 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 13:28:55 localhost su: pam_unix(su:session): session closed for user root
Jan 29 13:28:55 localhost su: pam_unix(su:session): session closed for user misfitred
Jan 29 13:28:55 localhost su: pam_unix(su:session): session closed for user root
Jan 29 13:29:00 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 13:31:48 localhost sshd[3948]: Received signal 15; terminating.
Jan 29 13:31:48 localhost sshd[5498]: Server listening on 0.0.0.0 port 22.
Jan 29 13:31:48 localhost sshd[5498]: Server listening on :: port 22.
Jan 29 13:44:58 localhost sshd[5498]: Received signal 15; terminating.
Jan 29 13:44:58 localhost sshd[5711]: Server listening on 0.0.0.0 port 22.
Jan 29 13:44:58 localhost sshd[5711]: Server listening on :: port 22.
Jan 29 14:00:19 localhost sshd[5711]: Received signal 15; terminating.
Jan 29 14:00:19 localhost sshd[5956]: Server listening on 0.0.0.0 port 22.
Jan 29 14:00:19 localhost sshd[5956]: Server listening on :: port 22.
Jan 29 15:03:00 localhost sshd[5956]: Received signal 15; terminating.
Jan 29 15:10:23 localhost su: pam_unix(su:session): session closed for user root
Jan 29 15:10:38 localhost pam: gdm-password[4053]: pam_unix(gdm-password:session): session closed for user misfitred
Jan 29 15:10:38 localhost polkitd(authority=local): Unregistered Authentication Agent for session /org/freedesktop/ConsoleKit/Session4 (system bus name :1.93, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
Jan 29 15:11:21 localhost polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session1 (system bus name :1.29 [/usr/libexec/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 29 15:11:32 localhost pam: gdm-password[2919]: pam_unix(gdm-password:session): session opened for user misfitred by (uid=0)
Jan 29 15:11:32 localhost polkitd(authority=local): Unregistered Authentication Agent for session /org/freedesktop/ConsoleKit/Session1 (system bus name :1.29, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
Jan 29 15:11:33 localhost polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session2 (system bus name :1.45 [/usr/libexec/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 29 15:15:10 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 15:30:24 localhost userhelper[3700]: running '/usr/share/system-config-users/system-config-users ' with root privileges on behalf of 'root'
Jan 29 15:32:00 localhost su: pam_unix(su:session): session opened for user misfitred by misfitred(uid=0)
Jan 29 15:32:23 localhost passwd: gkr-pam: changed password for 'login' keyring
Jan 29 15:32:39 localhost passwd: pam_unix(passwd:chauthtok): password changed for misfitred
Jan 29 15:32:39 localhost passwd: gkr-pam: couldn't change password for 'login' keyring: 1
Jan 29 15:33:06 localhost passwd: pam_unix(passwd:chauthtok): password changed for misfitred
Jan 29 15:33:06 localhost passwd: gkr-pam: changed password for 'login' keyring
Jan 29 15:37:08 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 15:38:16 localhost su: pam_unix(su:session): session closed for user root
Jan 29 15:38:16 localhost su: pam_unix(su:session): session closed for user misfitred
Jan 29 15:38:16 localhost su: pam_unix(su:session): session closed for user root
Jan 29 15:38:25 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 15:42:47 localhost su: pam_unix(su:session): session closed for user root
Jan 29 15:47:13 localhost sshd[4111]: pam_unix(sshd:session): session opened for user misfitred by (uid=0)
Jan 29 16:49:40 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 29 16:55:19 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
Jan 30 08:34:57 localhost sshd[4111]: pam_unix(sshd:session): session closed for user misfitred
Jan 30 08:34:57 localhost su: pam_unix(su:session): session closed for user root
Jan 30 08:35:24 localhost su: pam_unix(su:session): session opened for user root by misfitred(uid=501)
I agree with fboaventura; The configs look fine; try changing the password for
your user to what you think it should be, also check that it isn't expired/account
locked. And try another user just in case. Also, are you able to log in locally as
that user? i.e. is the error specific to SSH or is it having an error via other
auth mechs. –
Justin
Jan 29 '13 at 22:56
@ fboaventura & Justin I did try another user and I also changed the
password and tried it again with no success. I can login locally just fine and I
can also SSH to localhost just fine. –
Kentgrav
Jan 30 '13 at 13:33
@ John Siu I added the /var/log/secure and I attempted the SSH right before I
copied it. And nothing was added to it. Hope it helps. –
Kentgrav
Jan 30 '13 at 13:41
Yeah I did this already I actually figured out what the problem was. And as I
thought...it was the one thing that should have been blatantly obvious. –
Kentgrav
Jan 30 '13 at 16:08
The problem with this answer is that the defaults are commented out by default
as the comments in the file explain. It doesn't matter if (1) is commented or not
because the default is "yes". The correct answer is below. It's probably a DNS
problem and can easily test by using the IP address instead of the domain name.
–
Colin Keenan
Sep 18 '15 at 4:41
Make sure the permissions on the
~/.ssh
directory and its contents are proper.
When I first set up my ssh key auth, I didn't have the
~/.ssh
folder properly
set up, and it yelled at me.
Your home directory
~
, your
~/.ssh
directory and the
~/.ssh/authorized_keys
file on the remote machine must be writable only by
you:
rwx------
and
rwxr-xr-x
are fine, but
rwxrwx---
is no good¹, even if you are the only user in your group (if you prefer numeric modes:
700
or
755
, not
775
).
If
~/.ssh
or
authorized_keys
is a symbolic link,
the canonical path (with symbolic links expanded) is checked
.
Your
~/.ssh/authorized_keys
file (on the remote machine) must be readable
(at least 400), but you'll need it to be also writable (600) if you will add any more keys
to it.
Your private key file (on the local machine) must be readable and writable only by you:
rw-------
, i.e.
600
.
If you have root access to the server, the easy way to solve such problems is to run sshd in
debug mode, e.g.:
service ssh stop # will not kill existing ssh connections
/usr/sbin/sshd -d # full path to sshd executable needed, 'which sshd' can help
...debug output...
service ssh start
(If you can access the server through any port, you can just use
/usr/sbin/sshd -d
-p <port number>
to avoid having to stop the SSH server. You still need to be
root though.)
In the debug output, look for something like
debug1: trying public key file /path/to/home/.ssh/authorized_keys
...
Authentication refused: bad ownership or modes for directory /path/to/home/
Is your home dir encrypted? If so, for your first ssh session you will have to provide a
password. The second ssh session to the same server is working with auth key. If this is the
case, you could move your
authorized_keys
to an unencrypted dir and change the
path in
~/.ssh/config
.
What I ended up doing was create a
/etc/ssh/username
folder, owned by
username, with the correct permissions, and placed the
authorized_keys
file in
there. Then changed the AuthorizedKeysFile directive in
/etc/ssh/config
to :
AuthorizedKeysFile /etc/ssh/%u/authorized_keys
This allows multiple users to have this ssh access without compromising permissions.
I faced challenges when the home directory on the remote does not have correct privileges. In
my case the user changed the home dir to 777 for some local access with in the team. The
machine could not connect with ssh keys any longer. I changed the permission to 744 and it
started to work again.
We ran into the same problem and we followed the steps in the answer. But it still did not
work for us. Our problem was that login worked from one client but not from another (the .ssh
directory was NFS mounted and both clients were using the same keys).
So we had to go one step further. By running the ssh command in verbose mode you get a lot
of information.
ssh -vv user@host
What we discovered was that the default key (id_rsa) was not accepted and instead the ssh
client offered a key matching the client hostname:
debug1: Offering public key: /home/user/.ssh/id_rsa
debug2: we sent a publickey packet, wait for reply
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Offering public key: /home/user/.ssh/id_dsa
debug2: we sent a publickey packet, wait for reply
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Offering public key: user@myclient
debug2: we sent a publickey packet, wait for reply
debug1: Server accepts key: pkalg ssh-rsa blen 277
Obviously this will not work from any other client.
So the solution in our case was to switch the default rsa key to the one that contained
user@myclient. When a key is default, there is no checking for client name.
Then we ran into another problem, after the switch. Apparently the keys are cached in the
local ssh agent and we got the following error on the debug log:
'Agent admitted failure to sign using the key'
This was solved by reloading the keys to the ssh agent:
ssh-add
,
It would be SSH miss configuration at server end. Server side sshd_config file has to be
edited. Located in
/etc/ssh/sshd_config
. In that file, change variables
'yes' to 'no' for ChallengeResponseAuthentication, PasswordAuthentication, UsePAM
I am not sure whether it is possible to scp a folder from remote to local, but
still I am left with no other options. I use ssh to log into my server and from there I would
like to copy the folder foo to home/user/Desktop (my local). Is there
any command so that I can do this?
To use full power of scp you need to go through next steps:
Then, for example if you'll have this ~/.ssh/config :
Host
test
User
testuser
HostName
test
-
site
.
com
Port
22022
Host
prod
User
produser
HostName
production
-
site
.
com
Port
22022
you'll save yourself from password entry and simplify scp syntax like this:
scp
-
r prod
:/
path
/
foo
/
home
/
user
/
Desktop
# copy to local
scp
-
r prod
:/
path
/
foo test
:/
tmp
# copy from remote prod to remote test
More over, you will be able to use remote path-completion:
scp test
:/
var
/
log
/
# press tab twice
Display
all
151
possibilities
?
(
y or n
)
Update:
For enabling remote bash-completion you need to have bash-shell on both <source>
and <target> hosts, and properly working bash-completion. For more information see related
questions:
"... scp will overwrite the files only if you have write permissions to them. In other words: You can make scp effectively skip said files by temporarily removing the write permissions on them (if you are the files' owner, that is). ..."
"... before running scp (it will complain and skip the existing files). And change them back afterward ( chmod +w to get umask based value). If the files do not all have write permission according to your umask, you would somehow have to store the permissions so that you can restore them. (Gilles' answer overwrites existing files if locally they are newer, I lost valuable data that way. Do not understand why that wrong and harmful answer has so many up votes). I don't get it: how did rsync --ignore-existing cause you to lose data? ..."
"... Unable to create temporary file Clock skew detected ..."
"... In my case - I could not do this and the solution was: lftp . lftp 's usage for syncronization is below: ..."
"... To copy a whole bunch of files, it's faster to tar them. By using -k you also prevent tar from overwriting files when unpacking it on the target system. ..."
How do I copy an entire directory into a directory of the same name without replacing the content
in the destination directory? (instead, I would like to add to the contents of the destination folder)
ssh rsync scp synchronization
Use rsync , and pass -u if you want to only update files that are newer
in the original directory, or --ignore-existing to skip all files that already exist
in the destination.
rsync -au /local/directory/ host:/remote/directory/
rsync -a --ignore-existing /local/directory/ host:/remote/directory/
(Note the / on the source side: without it rsync would create
/remote/directory/directory .)
@Anthon I don't understand your comment and I don't see an answer or comment by chandra.
--ignore-existing does add without replacing, what data loss do you see?
Gilles
Nov 27 '13 at 9:59
Sorry, I only looked at your first example that is where you can have data loss (and is IMHO not
what the OP asked for), if you include --ignore-existing data-loss should not happen.
Anthon
Nov 27 '13 at 10:08
@Gilles: True, but all of the options seems to involve Cygwin DLLs... (The current state of the
MS port of OpenSSH is such that enabling compression on scp is enough to break SCP...) (Getting rsync
functional over Win32-OpenSSH also seems non-trivial - hopefully that improves over time) (Solaris
10 is the other example, where a third party package and --rsync-path is needed)
Gert van den
Berg
Oct 25 '16 at 13:01
scp will overwrite
the files only if you have write permissions to them. In other words: You can make scp
effectively skip said files by temporarily removing the write permissions on them (if you
are the files' owner, that is).
If you can make the destination file contents read-only:
find . -type f -exec chmod a-wbefore running scp (it will complain and skip the existing files). And change
them back afterward ( chmod +w to get umask based value). If the files do not all
have write permission according to your umask, you would somehow have to store the permissions
so that you can restore them.
(Gilles' answer overwrites existing files if locally they are newer, I lost valuable data
that way. Do not understand why that wrong and harmful answer has so many up votes).
I had a similar task, in my case I could not use rsync , csync , or
FUSE because my storage has only SFTP. rsync could not change the date and time for
the file, some other utilities (like csync ) showed me other errors: " Unable to
create temporary file Clock skew detected ".
If you have access to the storage-server - just install openssh-server or launch
rsync as a daemon here.
In my case - I could not do this and the solution was: lftp . lftp 's usage for
syncronization is below:
scp does overwrite files and there's no switch to stop it doing that, but you can
copy things out the way, do the scp and then copy the existing files back. Examples:
Copy all existing files out the way
mkdir original_files ; cp -r * original_files/
Copy everything using scp
scp -r user@server:dir/* ./
Copy the original files over anything scp has written over:
cp -r original_files/* ./
This method doesn't help when you're trying to pull files over from a remote and pick up where
you left off. I.e. if the whole purpose is to save time.
Oliver Williams
Dec 1 '16 at 17:58
>To copy a whole bunch of files, it's faster to tar them. By using -k you also prevent tar
from overwriting files when unpacking it on the target system.
It does make a remote connection. First it tar's the source, pipes it into the ssh connection
and unpacks it on the remote system.
huembi
Aug 22 '16 at 21:17
Then, for example if you'll have this ~/.ssh/config:
Host test
User testuser
HostName test-site.com
Port 22022
Host prod
User produser
HostName production-site.com
Port 22022
you'll save yourself from password entry and simplify scp syntax like this:
scp -r prod:/path/foo /home/user/Desktop # copy to local
scp -r prod:/path/foo test:/tmp # copy from remote prod to remote test
More over, you will be able to use remote path-completion:
scp test:/var/log/ # press tab twice
Display all 151 possibilities? (y or n)
Update:
For enabling remote bash-completion you need to have bash-shell on both <source>
and <target> hosts, and properly working bash-completion. For more information see related
questions:
The Last but not LeastTechnology is dominated by
two types of people: those who understand what they do not manage and those who manage what they do not understand ~Archibald Putt.
Ph.D
FAIR USE NOTICEThis site contains
copyrighted material the use of which has not always been specifically
authorized by the copyright owner. We are making such material available
to advance understanding of computer science, IT technology, economic, scientific, and social
issues. We believe this constitutes a 'fair use' of any such
copyrighted material as provided by section 107 of the US Copyright Law according to which
such material can be distributed without profit exclusively for research and educational purposes.
This is a Spartan WHYFF (We Help You For Free)
site written by people for whom English is not a native language. Grammar and spelling errors should
be expected. The site contain some broken links as it develops like a living tree...
You can use PayPal to to buy a cup of coffee for authors
of this site
Disclaimer:
The statements, views and opinions presented on this web page are those of the author (or
referenced source) and are
not endorsed by, nor do they necessarily reflect, the opinions of the Softpanorama society.We do not warrant the correctness
of the information provided or its fitness for any purpose. The site uses AdSense so you need to be aware of Google privacy policy. You you do not want to be
tracked by Google please disable Javascript for this site. This site is perfectly usable without
Javascript.