Posted by: Anonymous
[ip: 83.240.85.23]
on September 16, 2008 09:15 PM
Good article in overall, but this line has caught my attention:
> alias ssh2rws='ssh -p port_number my_remote_userid@my.remote.web.server'
This, in particular should be solved by ~/.ssh/config which is a ssh client config file. See ssh_config(5) for more details, but this particular case would be served like:
---
Host rws
HostName my.remote.web.server
User my_remove_userid
Port port_number
---
And then you just type "ssh rws".
ssh alias
Posted by: Anonymous [ip: 83.240.85.23] on September 16, 2008 09:15 PM> alias ssh2rws='ssh -p port_number my_remote_userid@my.remote.web.server'
This, in particular should be solved by ~/.ssh/config which is a ssh client config file. See ssh_config(5) for more details, but this particular case would be served like:
---
Host rws
HostName my.remote.web.server
User my_remove_userid
Port port_number
---
And then you just type "ssh rws".
#