Report this

What is the reason for this report?

How to limit SSH-Access to IP

Posted on September 9, 2015

Hi there

I’m using Ubuntu 14x and due to security, I’d like to limit ssh connections to just my VPN (OpenVPN) address.

How to proceed? I found many ways, but AllowUsers root@ip didn’t do the job.

Thanks, Sullivan



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

This comment has been deleted

Thank you very much.

That means

iptables -I INPUT -p tcp ! -s 178.000.000.000 --dport 22 -j DROP

will protect my server on port 22 and ssh will only be allowed through this ip?

Best

Configure your Firewall, (iptables or ufw) to reject connections on your SSH Port unless from that specific IP Address. Using something like the below: iptables -I INPUT -p tcp ! -s <permittedIP> -j DROP

ref: http://unix.stackexchange.com/questions/145929/how-to-ensure-ssh-port-is-only-open-to-a-specific-ip-address

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.