What's new
  • 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!

telnet across WAN

Can be done using my firmware. First, I would strongly recommend you use SSH instead of telnet. Telnet is completely unencrypted, and a security risk when using over the Internet.

Create a firewall-start script (see README for details) with the following entry:

iptables -I INPUT 6 -p tcp -m tcp --dport 23 -j ACCEPT

If you wish to use SSH instead:

iptables -I INPUT 6 -p tcp -m tcp --dport 22 -j ACCEPT

If you are running the original Asuswrt, then you will have to manually run this command over telnet every time you reboot your router or restart the firewall on it. Also, the original firmware does not support SSH.
 

Similar threads

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!
Back
Top