What's new

Protecting AC-68R VPN portal !?

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

mike37

Regular Contributor
Greetings! Am presently, successfully using openvpn, with connections on 443.

Would like to either hide this port, or limit inbound connection/hack attempts.

One way might be portknocking; another might be some sort of iptables trick limiting unsuccessful connections within a time period; e.g.

iptables -I INPUT -p tcp --dport 443 -m state --state NEW \
-m recent --set

iptables -I INPUT -p tcp --dport 443 -m state --state NEW \
-m recent --update --seconds 60 --hitcount 3 -j DROP

Is anyone doing something along these lines?
If yes, please describe how (e.g. ssh into router and change iptables script)? (am usually using an android)

Thank You In Advance
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top