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...
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...
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...
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...
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...
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...