Hi,
I'm trying to restrict access to the DLNA server to only one station.
I found that it is possible to do via telnet by modifying iptables.
Quote:
iptables -I INPUT 3 -p udp --dport 1900 -s 192.168.xx.yy -j ACCEPT
iptables -I INPUT 4 -p tcp --dport 8200 -s 192.168.xx.yy -j ACCEPT
iptables -I INPUT 5 -p udp --dport 1900 -j DROP
iptables -I INPUT 6 -p tcp --dport 8200 -j DROP
|
But i do not know how to store this modification and how to automatically apply this on each boot. Which file to edit, where? Please help...
I'm runnig latest stock FW, 3.0.0.4.270
Thanks.