SSH on non-standard port?

Hello I’ve added a non-standard port to the ssh_config of my easy engine machine yet it’s still not allowing me to SSH into that port. I’m wondering if EasyEngine does something else to the machine that would block access to a non-standard port that I need to change. Thanks!

Check your firewall. It’s probably blocking that port.

EDIT: If you’re using Ubuntu, your Firewall is probably UFW. Then do this:

sudo ufw status

To check if UFW is running, if it is then open the port like this:

sudo ufw allow 2222/tcp

Obviously, replace 2222 with your SSH port.

Running sudo ufw status results in “inactive”

Did you restart SSH after changing ports?

sudo restart ssh

I did

run

netstat -atun

and look for a line like this:

tcp 0 0 0.0.0.0:5022 0.0.0.0:* LISTEN

where 5022 would be your chosen SSH port. this is to check if the port is actually open

EDIT:

also run:

iptables -L

and check if your port is open

I get “command not found” when running netstat-atun

also command not found for iptables-l

sorry iptables does work but I had to use sudo and I get

Chain INPUT (policy ACCEPT) target prot opt source destination

Chain FORWARD (policy ACCEPT) target prot opt source destination

Chain OUTPUT (policy ACCEPT) target prot opt source destination

Here’s a screenshot http://d.pr/i/1bYAc

sorry realized the -atun was a flag. here’s the screenshot of that http://d.pr/i/Lf3J

Ok I was able to add it and netstat -atun shows it correctly listening but I’m still getting denied

It look longer than I care to admit but it turns out I edited the ssh_config and not the sshd_config. It turns out if you edit the wrong config file it doesn’t seem to work:)

Thanks for the help. really appreciate it. I ended up learning a lot so that’s a bonus.

Hi,

I’m glad it worked, that would be my next step of troubleshooting (should have been the first though lol). Learning is always a plus.