SSH, The Secure Shell: The Definitive Guide: The Definitive Guide

SSH, The Secure Shell: The Definitive Guide: The Definitive Guide

SSH, The Secure Shell: The Definitive Guide: The Definitive Guide

SSH, The Secure Shell: The Definitive Guide: The Definitive Guide

Paperback(Second Edition)

$44.99 
  • SHIP THIS ITEM
    Qualifies for Free Shipping
  • PICK UP IN STORE
    Check Availability at Nearby Stores

Related collections and offers


Overview

Are you serious about network security? Then check out SSH, the Secure Shell, which provides key-based authentication and transparent encryption for your network connections. It's reliable, robust, and reasonably easy to use, and both free and commercial implementations are widely available for most operating systems. While it doesn't solve every privacy and security problem, SSH eliminates several of them very effectively.



Everything you want to know about SSH is in our second edition of SSH, The Secure Shell: The Definitive Guide. This updated book thoroughly covers the latest SSH-2 protocol for system administrators and end users interested in using this increasingly popular TCP/IP-based solution.



How does it work? Whenever data is sent to the network, SSH automatically encrypts it. When data reaches its intended recipient, SSH decrypts it. The result is "transparent" encryption-users can work normally, unaware that their communications are already encrypted. SSH supports secure file transfer between computers, secure remote logins, and a unique "tunneling" capability that adds encryption to otherwise insecure network applications. With SSH, users can freely navigate the Internet, and system administrators can secure their networks or perform remote administration.



Written for a wide, technical audience, SSH, The Secure Shell: The Definitive Guide covers several implementations of SSH for different operating systems and computing environments. Whether you're an individual running Linux machines at home, a corporate network administrator with thousands of users, or a PC/Mac owner who just wants a secure way to telnet or transfer files between machines, our indispensable guide has you covered. It starts with simple installation and use of SSH, and works its way to in-depth case studies on large, sensitive computer networks.



No matter where or how you're shipping information, SSH, The Secure Shell: The Definitive Guide will show you how to do it securely.


Product Details

ISBN-13: 9780596008956
Publisher: O'Reilly Media, Incorporated
Publication date: 05/15/2005
Edition description: Second Edition
Pages: 666
Sales rank: 987,013
Product dimensions: 7.00(w) x 9.19(h) x 1.50(d)

About the Author

Daniel J. Barrett has been immersed in Internet technology since 1985. Currently working as a software engineer, Dan has also been a heavy metal singer, Unix system administrator, university lecturer, web designer, and humorist. He is the author of O'Reilly's Linux Pocket Guide, and is the coauthor of Linux Security Cookbook, and the first edition of SSH, The Secure Shell: The Definitive Guide. He also writes monthly columns for Compute! and Keyboard Magazine, and articles for the O'Reilly Network.

Richard E. Silverman has a B.A. in computer science and an M.A. in pure mathematics. Richard has worked in the fields of networking, formal methods in software development, public-key infrastructure, routing security, and Unix systems administration. He co-authored the first edition of SSH, The Secure Shell: The Definitive Guide.

Robert G. Byrnes, Ph.D., has been hacking on Unix systems for twenty years, and has been involved with security issues since the original Internet worm was launched from Cornell University, while he was a graduate student and system administrator. Currently, he's a software engineer at Curl Corporation, and has worked in the fields of networking, telecommunications, distributed computing, financial technology, and condensed matter physics.

Read an Excerpt

Chapter 8: Per-Account Server Configuration

In this chapter:
Limits of This Technique
Public Key-Based Configuration
Trusted-Host Access Control
The User rc File
Summary

We've seen two techniques for controlling the SSH server's behavior globally: compile-time configuration (Chapter 4) and serverwide configuration (Chapter 5). These techniques affect all incoming SSH connections to a given server machine. Now it's time to introduce a third, finer-grained method of server control: per-account configuration.

As the name implies, per-account configuration controls the SSH server differently for each user account on the server machine. For example, a user account sandy can accept incoming SSH connections from any machine on the Internet, while rick permits connections only from the domain verysafe.com, and fraidycat refuses key-based connections. Each user configures his or her own account, using the facilities highlighted in Figure 8-1, without needing special privileges or assistance from the system administrator.

We have already seen a simple type of per-account configuration. A user may place a public key into her authorization file, instructing the SSH server to permit logins to her account by public-key authentication. But per-account configuration can go further, becoming a powerful tool for access control and playing some fun tricks with your account. Accepting or rejecting connections by particular keys or hosts is just the beginning. For instance, you can make an incoming SSH connection run a program of your choice, instead of the client's choice. This is called a forced command, and we'll cover quite a few interesting applications.

Per-account configuration may control only incoming SSH connections to your account. If you're interested in configuring outgoing SSH connections by running SSH clients, refer to Chapter 7.

Limits of This Technique

Per-account configuration can do many interesting things, but it has some restrictions that we will discuss:

  • It can't defeat security measures put in place by compile-time or serverwide configuration. (Thank goodness.)

  • It is most flexible and secure if you use public-key authentication. Trusted-host and password authentication provide a much narrower range of options.

Overriding Serverwide Settings

SSH settings in a user's account may only restrict the authentication of incoming connections. They can't enable any SSH features that have been turned off more globally, and they can't permit a forbidden user or host to authenticate. For example, if your SSH server rejects all connections from the domain evil.org, you can't override this restriction within your account by per-account configuration.[1]

This limitation makes sense. No end-user tool should be able to violate a server security policy. However, end users should be (and are) allowed to restrict incoming connections to their accounts.

A few features of the server may be overridden by per-account configuration. The most notable one is the server's idle timeout, which may be extended beyond the serverwide setting. But such features can't coerce the server to accept a connection it has been globally configured to reject.

If you are an end user, and per-account configuration doesn't provide enough flexibility, you can run your own instance of the SSH server, which you may configure to your heart's content. Be cautious, though, since this is seldom the right thing to do. The restrictions you're trying to circumvent are part of the security policy defined for the machine by its administrators, and you shouldn't run a program that flouts this policy just because you can. If the machine in question is under your administrative control, simply configure the main SSH server as you wish. If not, then installing and running your own sshd might violate your usage agreement and/or certainly annoy your sysadmin. And that's never a wise thing to do.

Authentication Issues

To make the best use of per-account configuration, use public-key authentication. Password authentication is too limited, since the only way to control access is with the password itself. Trusted-host authentication permits a small amount of flexibility, but not nearly as much as public-key authentication.

If you're still stuck in the password-authentication dark ages, let this be another reason to switch to public keys. Even though passwords and public-key passphrases might seem similar (you type a secret word, and voilà, you're logged in), public keys are far more flexible for permitting or denying access to your account. Read on and learn how.

Public Key-Based Configuration

To set up public-key authentication in your account on an SSH server machine, you create an authorization file, typically called authorized_keys (SSH1, OpenSSH/1), authorized_keys2 (OpenSSH/2), or authorization (SSH2), and list the keys that provide access to your account. Well, we've been keeping a secret. Your authorization file can contain not only keys but also other keywords or options to control the SSH server in powerful ways. We will discuss:

  • The full format of an authorization file

  • Forced commands for limiting the set of programs that the client may invoke on the server

  • Restricting incoming connections from particular hosts

  • Setting environment variables for remote programs

  • Setting an idle timeout so clients will be forcibly disconnected if they aren't sending data

  • Disabling certain features of the incoming SSH connection, such as port forwarding and tty allocation

As we demonstrate how to modify your authorization file, remember that the file is consulted by the SSH server only at authentication time. Therefore, if you change your authorization file, only new connections will use the new information. Any existing connections are already authenticated and won't be affected by the change.

Also remember that an incoming connection request won't reach your authorization file if the SSH server rejects it for other reasons, namely, failing to satisfy the serverwide configuration. If a change to your authorization file doesn't seem to be having an effect, make sure it doesn't conflict with a (more powerful) serverwide configuration setting.

SSH1 Authorization Files

Your SSH1 authorized_keys file, generally found in ~/.ssh/authorized_keys, is a secure doorway into your account via the SSH-1 protocol. Each line of the file contains a public key and means the following: "I give permission for SSH-1 clients to access my account, in a particular way, using this key as authentication." Notice the words "in a particular way." Until now, public keys have provided unlimited access to an account. Now we'll see the rest of the story.

Each line of authorized_keys contains up to three items in order, some optional and some required:

  • A set of options (optional, surprise, surprise).

  • The public key (required). This appears in three parts:

  • The number of bits in the key, typically a small integer such as 1024

  • The exponent of the key: an integer

  • The modulus of the key: a very large integer, typically several hundred digits long

  • A descriptive comment (optional). This can be any text, such as "Bob's public key" or "My home PC using SecureCRT 3.1."

Public keys and comments are generated by ssh-keygen in .pub files, you may recall, and you typically insert them into authorized_keys by copying. Options, however, are usually typed into authorized_keys with a text editor.[2]

An option may take two forms. It may be a keyword, such as:

# SSH1, OpenSSH: Turn off port forwarding
no-port-forwarding 

or it may be a keyword followed by an equals sign and a value, such as:

# SSH1, OpenSSH: Set idle timeout to five minutes
idle-timeout=5m 

Multiple options may be given together, separated by commas, with no whitespace between the options:

# SSH1, OpenSSH
no-port-forwarding,idle-timeout=5m 

If you mistakenly include whitespace:

# THIS IS ILLEGAL: whitespace between the options
no-port-forwarding, idle-timeout=5m 

your connection by this key won't work properly. If you connect with debugging turned on (ssh1 -v), you will see a "syntax error" message from the SSH server.

Many SSH users aren't aware of options or neglect to use them. This is a pity because options provide extra security and convenience. The more you know about the clients that access your account, the more options you can use to control that access.

SSH2 Authorization Files

An SSH2 authorization file, typically found in ~/.ssh2/authorization,[3] has a different format from its SSH1 ancestor. Instead of public keys, it contains keywords and values, much like other SSH configuration files we've seen. Each line of the file contains one keyword followed by its value. The most commonly used keywords are Key and Command.

Public keys are indicated using the Key keyword. Key is followed by whitespace, and then the name of a file containing a public key. Relative filenames refer to files in ~/.ssh2. For example:

# SSH2 only
Key myself.pub 

Table of Contents

Preface; Protect Your Network with SSH; Intended Audience; Reading This Book; Our Approach; Which Chapters Are for You?; Supported Platforms; Disclaimers; Conventions Used in This Book; Comments and Questions; Safari Enabled; Acknowledgments; Chapter 1: Introduction to SSH; 1.1 What Is SSH?; 1.2 What SSH Is Not; 1.3 The SSH Protocol; 1.4 Overview of SSH Features; 1.5 History of SSH; 1.6 Related Technologies; 1.7 Summary; Chapter 2: Basic Client Use; 2.1 A Running Example; 2.2 Remote Terminal Sessions with ssh; 2.3 Adding Complexity to the Example; 2.4 Authentication by Cryptographic Key; 2.5 The SSH Agent; 2.6 Connecting Without a Password or Passphrase; 2.7 Miscellaneous Clients; 2.8 Summary; Chapter 3: Inside SSH; 3.1 Overview of Features; 3.2 A Cryptography Primer; 3.3 The Architecture of an SSH System; 3.4 Inside SSH-2; 3.5 Inside SSH-1; 3.6 Implementation Issues; 3.7 SSH and File Transfers (scp and sftp); 3.8 Algorithms Used by SSH; 3.9 Threats SSH Can Counter; 3.10 Threats SSH Doesn't Prevent; 3.11 Threats Caused by SSH; 3.12 Summary; Chapter 4: Installation and Compile-Time Configuration; 4.1 Overview; 4.2 Installing OpenSSH; 4.3 Installing Tectia; 4.4 Software Inventory; 4.5 Replacing r-Commands with SSH; 4.6 Summary; Chapter 5: Serverwide Configuration; 5.1 Running the Server; 5.2 Server Configuration: An Overview; 5.3 Getting Ready: Initial Setup; 5.4 Authentication: Verifying Identities; 5.5 Access Control: Letting People In; 5.6 User Logins and Accounts; 5.7 Forwarding; 5.8 Subsystems; 5.9 Logging and Debugging; 5.10 Compatibility Between SSH-1 and SSH-2 Servers; 5.11 Summary; Chapter 6: Key Management and Agents; 6.1 What Is an Identity?; 6.2 Creating an Identity; 6.3 SSH Agents; 6.4 Multiple Identities; 6.5 PGP Authentication in Tectia; 6.6 Tectia External Keys; 6.7 Summary; Chapter 7: Advanced Client Use; 7.1 How to Configure Clients; 7.2 Precedence; 7.3 Introduction to Verbose Mode; 7.4 Client Configuration in Depth; 7.5 Secure Copy with scp; 7.6 Secure, Interactive Copy with sftp; 7.7 Summary; Chapter 8: Per-Account Server Configuration; 8.1 Limits of This Technique; 8.2 Public-Key-Based Configuration; 8.3 Hostbased Access Control; 8.4 The User rc File; 8.5 Summary; Chapter 9: Port Forwarding and X Forwarding; 9.1 What Is Forwarding?; 9.2 Port Forwarding; 9.3 Dynamic Port Forwarding; 9.4 X Forwarding; 9.5 Forwarding Security: TCP-Wrappers and libwrap; 9.6 Summary; Chapter 10: A Recommended Setup; 10.1 The Basics; 10.2 Compile-Time Configuration; 10.3 Serverwide Configuration; 10.4 Per-Account Configuration; 10.5 Key Management; 10.6 Client Configuration; 10.7 Remote Home Directories (NFS, AFS); 10.8 Summary; Chapter 11: Case Studies; 11.1 Unattended SSH: Batch or cron Jobs; 11.2 FTP and SSH; 11.3 Pine, IMAP, and SSH; 11.4 Connecting Through a Gateway Host; 11.5 Scalable Authentication for SSH; 11.6 Tectia Extensions to Server Configuration Files; 11.7 Tectia Plugins; Chapter 12: Troubleshooting and FAQ; 12.1 Debug Messages: Your First Line of Defense; 12.2 Problems and Solutions; 12.3 Other SSH Resources; Chapter 13: Overview of Other Implementations; 13.1 Common Features; 13.2 Covered Products; 13.3 Other SSH Products; Chapter 14: OpenSSH for Windows; 14.1 Installation; 14.2 Using the SSH Clients; 14.3 Setting Up the SSH Server; 14.4 Public-Key Authentication; 14.5 Troubleshooting; 14.6 Summary; Chapter 15: OpenSSH for Macintosh; 15.1 Using the SSH Clients; 15.2 Using the OpenSSH Server; Chapter 16: Tectia for Windows; 16.1 Obtaining and Installing; 16.2 Basic Client Use; 16.3 Key Management; 16.4 Accession Lite; 16.5 Advanced Client Use; 16.6 Port Forwarding; 16.7 Connector; 16.8 File Transfers; 16.9 Command-Line Programs; 16.10 Troubleshooting; 16.11 Server; Chapter 17: SecureCRT and SecureFX for Windows; 17.1 Obtaining and Installing; 17.2 Basic Client Use; 17.3 Key Management; 17.4 Advanced Client Use; 17.5 Forwarding; 17.6 Command-Line Client Programs; 17.7 File Transfer; 17.8 Troubleshooting; 17.9 VShell; 17.10 Summary; Chapter 18: PuTTY for Windows; 18.1 Obtaining and Installing; 18.2 Basic Client Use; 18.3 File Transfer; 18.4 Key Management; 18.5 Advanced Client Use; 18.6 Forwarding; 18.7 Summary; OpenSSH 4.0 New Features; Server Features: sshd; Client Features: ssh, scp, and sftp; ssh-keygen; Tectia Manpage for sshregex; Regex Syntax: Egrep Patterns; Regex Syntax: ZSH_FILEGLOBTectia (continued)sshregex manpageZSH_FILEGLOB sshregex (Tectia) manpageZSH_FILEGLOB regular expressions manpage (Tectia)ZSH_FILEGLOB (or Traditional) Patterns; Character Sets for Egrep and ZSH_FILEGLOB; Regex Syntax: SSH Patterns; Authors; See Also; Tectia Module Names for Debugging; ; SSH-1 Features of OpenSSH and Tectia; OpenSSH Features; Tectia Features; SSH Quick Reference; Legend; sshd Options; sshd Keywords; ssh Options; scp Options; ssh and scp Keywords; ssh-keygen Options; ssh-agent Options; ssh-add Options; Identity and Authorization Files, OpenSSH; Identity and Authorization Files, Tectia; Environment Variables; Colophon;
From the B&N Reads Blog

Customer Reviews