For the most part, the default port for SSH access into a Linux machine is 22. However, many people change this default in the name of security, meaning that for most of our function usage, we simply need to use the -p port number switch when trying to access with that remote machine.
However, interestingly enough, the -p switch was never bundled with the useful ssh-copy-id function, meaning that should you try something like this:
ssh-copy-id -p221 -i ~/.ssh/id_rsa.pub username@host
you will get a reply back reading: Bad port ‘umask 077; test -d .ssh || mkdir .ssh ‘ cat >> .ssh/authorized_keys’.
Not exactly encouraging.
However, there is actually a simply way to fix this and use ssh-copy-id when interacting with a non-default port 22 machine. Simply enclose your port declaration together with the host name within quotation marks!
So the correct usage would now look like this:
ssh-copy-id -i ~/.ssh/id_rsa.pub ‘-p 221 username@host’
And damn it, it actually works! Nice.
SCP is a powerful utility that allows us to securely copy files between remote machines. What makes it even more powerful is the ability to add it to scripts and so for today's quick tutorial I will walk you through how you can go about either copying files from or to a remote machine with the use of SCP. Now norm ...
Although port 21 is the default port used for SSH connections and thus SCP, most of the time you will find that in order to increase protection, the actual assigned port is far removed from the default 21. So how do you specify this when running a SCP copy operation? Well SSH has the lowercase -p switch that all ...
If you have a closed machine that doesn't allow MySQL connections from the outside world but does allow SSH access in to the box, say hello to the world of SSH tunneling. The concept is simple. Bind one of your local machine's port via a SSH connection to another box on the outside. For example: [bash]ssh -N ...
When attempting to copy a non-empty directory in Ubuntu using the cp command, you will be presented with the following error message: cp: omitting directory mydirectory To force the copy cp command to handle the non-empty directory correctly, you need to force the recursive switch using -R So you should b ...
Changing the hostname of your Ubuntu server installation is a pretty simple affair. To view the current hostname of your system, simply enter hostname. Now to affect a termporary change of hostname, you could simply use: sudo hostname mynewhostname However, be careful here as this is really just a temporary hostn ...
Craig Lotter is an established web developer and application programmer, with strong creative urges (which keep bursting out at the most inopportune moments) and a seemingly insatiable need to love all things animated. Living in the beautiful coastal town of Gordon's Bay in South Africa, he games, develops, takes in animated fare, trains under whichever martial arts dojo is closest at the time, and for the most part, simply enjoys life with his amazing wife and daughter.
Oh, and he draws ever now and then too.
This is a collection of things that he has managed to find the time to scribble down since 2007.
Looking for Something?
Jump to Category: