blogng/blog/2012-12-12-name-your-servers.markdown
Dhananjay Balan 3a30fb8a07 Compatibility with Octopress site.
Don't break urls.
 1. New Route function which generates routes compatible with old blog.
 2. Renamed posts folder to blog.
2017-01-31 20:44:01 +01:00

771 B

author comments date layout slug title wordpress_id categories
dhananjayishere true 2012-12-12 10:51:00 post name-your-servers Name your servers. 171537089
Terminal
SSH
GNU/Linux
Hack

If your day involves ssh-ing into various servers, you know how cumbersome is to type all that details again and again. When the number becomes large, you tend to confuse between host names, IPs and usernames.

But, ssh allows you to alias them into cute nicknames you prefer.

The configuration file needed to be edited is ~/.ssh/config.

The sample configuration that should be append to this file for adding alias server to user@example.org is :

Host server
Hostname example.org
User user

Now all you have to do is

$ ssh server