RSS Subscription
Linux Howtos & Tutorials

Enter your email:

Delivered by


NOTE:New tutorials are from LinuxCareer.com

Poll

Do you own or wish to have iPhone?
 


Linux eBooks FREE Download
A guide to programming Linux kernel modules
Introduction to Linux - A Hands on Guide
A Newbie's Getting Started Guide to Linux

Linux from Scratch - Create Your Own Linux System - Free eBook

Linux: The Hacking Solution (v.3.0)

SQLite 3 with PHP Essential Training – Free Video Training Tutorials

This guide will introduce you to the world of GNU/Linux

The GNU/Linux Advanced Administration

A Complete Beginner's Manual for Ubuntu 10.04 (Lucid Lynx)

Advanced Bash-Scripting Guide

Set up, maintain, and secure a small office email server

Partner Linux Sites:
How-To.LinuxCareer.com
Jobs.LinuxCareer.com
TuxMachines
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
All For Linux

ssh

Article Index
1. Name
2. Synopsis
3. Frequently used options
4. Examples

1. Name

ssh [man page] - OpenSSH SSH client (remote login program)

2. Synopsis

ssh [-1246AaCfgKkMNnqsTtVvXxY] [-b bind_address]
         [-c cipher_spec] [-D [bind_address:]port]
         [-e escape_char] [-F configfile]
         [-i identity_file] [-L  [bind_address:]
         port:host:hostport] [-l login_name]
         [-m mac_spec] [-O ctl_cmd] [-o option]
         [-p port] [-R [bind_address:]
         port:host:hostport] [-S ctl_path]
         [-w tunnel:tunnel] [user@]hostname
         [command] 

3. Frequently used options

-l      login_name
-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. 

4. Examples

 

 

ssh to a box with an IP Address 192.168.148.142 and as user root:

ssh -l root 192.168.148.142 

or

ssh root@192.168.148.142 

Feel free to specify host name instead of IP address. To ssh to linuxconfig.org_remote as a root user we can use:

ssh root@linuxconfig.org_remote 

For troubleshooting your ssh service use -vvv option as follows:

ssh -vvv root@linuxconfig.org_remote 

Share this linux post:

Submit ssh in Delicious Submit ssh in Digg Submit ssh in FaceBook Submit ssh in Google Bookmarks Submit ssh in Stumbleupon Submit ssh in Technorati Submit ssh in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.


Linux eBooks FREE Download