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

Recent content by dumping99

  1. D

    Restricting access to specific ports - Whitelist ?

    http://www.snbforums.com/threads/whitelist-filtering-with-port-forwards.22086/ similar, but not exactly what you are trying to do.
  2. D

    Whitelist filtering with port forwards?

    Thanks to all for the help. Everything is working as it should. I am now a contributor and convert to merlin, Donation sent to asuswrt-merlin.
  3. D

    The rmerlin donation thread.

    great firmware. donated.
  4. D

    Whitelist filtering with port forwards?

    Ok it was an encoding issue to get the script recognized by merlin. I dont have notepad++ but I used EditPad Lite for Windows. I tried several encoding formats. The one that worked for merlin is: UNIX (LF only) and ISO 8859-1 encoding. Now I am need to do more testing to see if my port...
  5. D

    Whitelist filtering with port forwards?

    I executed the chmod 777 as you have recommended. Previously the file rights were set to execute for all three anyway. when I goto the command line and run: /jffs/scripts/nat-start I get the following error: -sh: /jffs/scripts/nat-start: not found Which is strange since I know the file is...
  6. D

    Whitelist filtering with port forwards?

    here is the nat-start file that is stored in /jffs/scripts/nat-start the IP addresses have been altered for privacy. ------ #!/bin/sh iptables -t nat -I VSERVER 1 -p tcp -m tcp -s 9.9.108.170 --dport 8086 -j DNAT --to 192.168.1.168:80 iptables -t nat -I VSERVER 1 -p tcp -m tcp -s...
  7. D

    Whitelist filtering with port forwards?

    Yes that is exactly the error message I get when manually typing in the command string. I typed in the VSERVER 1 instead and the error message went away. I updated the nat-start script, but it is still not working. Furthermore, if I go into the command line on the router and type in the...
  8. D

    Whitelist filtering with port forwards?

    the script is not working. Is there some syntax I need to do that is different if I am using multiple lines of this: iptables -t nat -I VSERVER 3 -p tcp -m tcp -s 10.10.10.10 --dport 3389 -j DNAT --to 192.168.1.100 Right now I am have ten of the above lines in my nat-start file located...
  9. D

    Whitelist filtering with port forwards?

    thanks for the link. Do I just create a line like that example for each and every incoming static IP address that I want to whitelist?
  10. D

    Whitelist filtering with port forwards?

    I have a IP security video camera. I would like to open up a port forward on my router to the internal camera but only accept incoming connections on a limited set of about 10 unique (and non sequential) IP addresses. The incoming connection addresses are fixed and static. I don't want the...
Back
Top