What's new

Port Forwarding Problem on AC68U

  • 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!

WRobertE

Regular Contributor
I'm running 386.1_2 on an RT-AC68U and I'm unable to get port forwarding to work. It used to work but I don't know when it stopped working.

Basically I have remote cameras in my mother's house and I'm forwarding recorded video to an FTP server running on my Synology NAS.

I've setup this port forwarding rule on my router:

1615849654907.png


On the router, when I run the command:

iptables --list-rules

I don't see any rule that references this information. So, it seems like something with port forwarding is broken.

The remote cameras can login to the Synology NAS but they can't forward anything to the FTP server on the NAS. I've checked all permissions on the NAS for the account used by the cameras and all that is correct.

This isn't my area of expertise ... what am I missing? This is driving me nuts!
 
I'm running 386.1_2 on an RT-AC68U and I'm unable to get port forwarding to work. It used to work but I don't know when it stopped working.

Basically I have remote cameras in my mother's house and I'm forwarding recorded video to an FTP server running on my Synology NAS.

I've setup this port forwarding rule on my router:

View attachment 32045

On the router, when I run the command:

iptables --list-rules

I don't see any rule that references this information. So, it seems like something with port forwarding is broken.

This isn't my area of expertise ... what am I missing?
Use
Code:
iptables --line -t nat -nvL VSERVER
 
Code:
admin@merlin-lab1:/tmp/home/root# iptables -t nat -vnL VSERVER
Chain VSERVER (1 references)
pkts bytes target     prot opt in     out     source               destination
    8   480 DNAT       tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            tcp dpt:8443 to:192.168.1.1:8443
    0     0 DNAT       tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            tcp dpts:55536:57583 to:10.4.58.206
    0     0 DNAT       tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            tcp dpt:64221 to:10.4.58.206
    0     0 VUPNP      all  --  *      *       0.0.0.0/0            0.0.0.0/0
 
Code:
admin@merlin-lab1:/tmp/home/root# iptables -t nat -vnL VSERVER
Chain VSERVER (1 references)
pkts bytes target     prot opt in     out     source               destination
    8   480 DNAT       tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            tcp dpt:8443 to:192.168.1.1:8443
    0     0 DNAT       tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            tcp dpts:55536:57583 to:10.4.58.206
    0     0 DNAT       tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            tcp dpt:64221 to:10.4.58.206
    0     0 VUPNP      all  --  *      *       0.0.0.0/0            0.0.0.0/0

OK ... I see the rule now. Thank you.

1615850608999.png


But I'm still stumped as to why it's no longer working.

Here's my setup on the Synology:

1615850782672.png
 
FINALLY figured it out. Turns out to be a setting on the Synology. Appears to be a new setting that I didn't have to use before.

1615851264725.png



Thanks again for the help.
 

Similar threads

Latest threads

Sign Up For SNBForums Daily Digest

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