How to run the SSH server on a port other than 22
Mia Lopez
I have two computers behind the same router. Let's call them A and B.
A can SSH to B in the following manner: ssh usr@<internal ip of computer>
B can SSH to A by doing the same, but the external IP must be used. I have forwarded port 22 of my router to the IP of computer A, so that all makes sense to me.
However, I want to also forward port 26 to computer B, and SSH from outside the network by using the external IP for both, but specifying either port 22 or 26, to effectively select which computer to use.
I have tried allowing port 26 through OUTPUT of iptables on A and INPUT of B, but that didn't seem to work. I have also forwarded port 26 to the internal IP of B (through the router), as I did with 22 for A.
Here's what I get when I try to SSH from A to B using the external IP and port 26:
ssh: connect to host xx.xx.xxx.xx port 26: Connection refused.Versions:
- A = OpenSSH_5.9p1 Debian-5ubuntu1, OpenSSL 1.0.1 14 Mar 2012
- B = OpenSSH_6.0p1 Debian-4, OpenSSL 1.0.1c 10 May 2012
A has 12.04 Ubuntu, B is a Raspberry Pi with Raspbian.
EDIT: Something that I forgot to put in: I did try switching the SSH config file (I found it is /etc/ssh/ssh_config) I uncommented (deleted the #) the line with Port and changed 22 to 26. It gave me the connection refused message still. (I rebooted to no avail.)
6 Answers
If you are on Linux system and you want connect to an SSH server on port 26 you can use the following command.
ssh user@192.168.1.1 -p 26Note:
- Replace server IP with the IP Address or DNS name of your server.
- Change your port number as you have set.
- if you are using custom port SSH then same port most be allowed for outbound, inbound connection on firewall otherwise the connection will not establish
It seems like you're not running SSH on port 26 on the second machine. You can either change the port number on that machine to 26.
Either edit /etc/ssh/sshd_config & don't forget to restart SSH (service sshd restart) or leave it on 22, but forward port 26 on the router to port 22 on the second machine. Also, don't forget to change any firewall settings on the second machine to allow the connections through.
I use port 22 only for the intranet ssh access.
For access via internet I use a custom (unusual) port. This has the benefit the I reduce the load produced generated by script kids who are scanning port 22 for "well known usernames".
The external sshd processes are controlled by xinetd and running in parallel to the internal sshd process.
In the following example I use the port 12345:
You are free to change this to any available free port number on your system. Maybe a higher value will make it also a bit more unlikely that this port is scanned by a "quick port scan".
The xinetd configuration is:
service ssh-external
{ socket_type = stream wait = no protocol = tcp type = UNLISTED user = root server = /usr/sbin/sshd server_args = -i -f /etc/ssh/external-sshd.config port = 12345 log_on_failure += USERID
}The file /etc/ssh/external-ssdh.config can be a copy of your usual sshd configuration.
Ensure that the following statements are configured:
Port 12345
AddressFamily inetI also suggest to enforce public key authentication and disable password authentication for the internet access:
PasswordAuthentication no
PermitEmptyPasswords no
ChallengeResponseAuthentication no Listen ports also can be hard linked to IP addresses
/etc/ssh/sshd_config:
ListenAddress 10.10.10.10:22
ListenAddress 20.20.20.20:4444 1 As I've explained in a related answer, ssh client allows specifying URI format as ssh://user@host:1234. For example:
ssh ssh://:2222where 2222 is the port number. Substitute the port number which you intend to use instead. Of course, remember that in order to connect to the specified port ssh server (on the host to which you are trying to connect) has to listen on the specified port in the first place
5Is not a good idea to run ssh on default port (TCP/22), neither forward from WAN IP 22 to whatever port is using ssh-server on LAN IP.
To make ssh-server listen on any given port you have to
Edit on
/etc/ssh/sshd_config(note the d) from#Port 22toPort 26. Ie, uncomment and change the port. Better than 26 would be something randomly above (below 65535), like 42895.
Also consider changing toPermitRootLogin no.Test your configuration with ssh test mode
sudo sshd -tRestart ssh-server service
sudo systemctl restart sshd.service
Then from ssh-client you will be able to connect
ssh user@serverNameOrIP -p 42895Bonus: mosh
If mosh package is installed on server you then use
mosh --ssh="ssh -p 42895" serverNameOrIP