FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14455 questions

17168 answers

28195 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
0 votes
1,329 views 0 comments
by
I am trying to SSH into my RUT950 but can't seem to do so. I've followed the instructions online and enabled SSH through WAN. My WAN IP address differs from the machine that is connected to the RUT950 so that seems like it might be part of the problem. Here's a screenshot for reference: https://imgur.com/9fKCbg6

Does anyone have experience with this?

1 Answer

+1 vote
by anonymous

Hi,

Simply, if you would like to connect to the RUT955, then you should use the address of RUT955 connecting over SSH.

Have you tried adding iptable rules to firewall "Custom rules" section?

Network -> Firewall -> Custom rules

Allow All Incoming SSH

iptables -A INPUT -p tcp --dport 22 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -p tcp --sport 22 -m conntrack --ctstate ESTABLISHED -j ACCEPT

Allow Outgoing SSH

iptables -A OUTPUT -p tcp --dport 22 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -p tcp --sport 22 -m conntrack --ctstate ESTABLISHED -j ACCEPT