Hi
I want to hide my router from my ISP accessing through dude or any other tool. how can I do that? Firewall etc. Give me an example please
Thanks in advance
Hi
I want to hide my router from my ISP accessing through dude or any other tool. how can I do that? Firewall etc. Give me an example please
Thanks in advance
Is this possible?
Anyone?
Thanks,
Block all but undesired traffic in the input chain, which contains all traffic directed directly to the router (but not traffic flowing through it).
Something like this?
add chain=ICMP protocol=icmp icmp-options=0:0-255 limit=5,5 action=accept comment=“0:0 and limit for 5pac/s” disabled=no
add chain=ICMP protocol=icmp icmp-options=3:3 limit=5,5 action=accept comment=“3:3 and limit for 5pac/s” disabled=no
add chain=ICMP protocol=icmp icmp-options=3:4 limit=5,5 action=accept comment=“3:4 and limit for 5pac/s” disabled=no
add chain=ICMP protocol=icmp icmp-options=8:0-255 limit=5,5 action=accept comment=“8:0 and limit for 5pac/s” disabled=no
add chain=ICMP protocol=icmp icmp-options=11:0-255 limit=5,5 action=accept comment=“11:0 and limit for 5pac/s” disabled=no
add chain=ICMP protocol=icmp action=drop comment=“Drop everything else” disabled=no
or should I have to do this
add chain=services src-address-list=127.0.0.1 dst-address=127.0.0.1 action=accept comment=“accept localhost” disabled=no
add chain=services protocol=udp dst-port=20561 action=accept comment=“allow MACwinbox " disabled=no
add chain=services protocol=tcp dst-port=2000 action=accept comment=“Bandwidth server” disabled=no
add chain=services protocol=udp dst-port=5678 action=accept comment=” MT Discovery Protocol" disabled=no
add chain=services protocol=tcp dst-port=161 action=accept comment=“allow SNMP” disabled=yes
add chain=services protocol=tcp dst-port=179 action=accept comment=“Allow BGP” disabled=yes
add chain=services protocol=udp dst-port=5000-5100 action=accept comment=“allow BGP” disabled=yes
add chain=services protocol=udp dst-port=123 action=accept comment=“Allow NTP” disabled=yes
add chain=services protocol=tcp dst-port=1723 action=accept comment=“Allow PPTP” disabled=yes
add chain=services protocol=gre action=accept comment=“allow PPTP and EoIP” disabled=yes
add chain=services protocol=tcp dst-port=53 action=accept comment=“allow DNS request” disabled=yes
add chain=services protocol=udp dst-port=53 action=accept comment=“Allow DNS request” disabled=yes
add chain=services protocol=udp dst-port=1900 action=accept comment=“UPnP” disabled=yes
add chain=services protocol=tcp dst-port=2828 action=accept comment=“UPnP” disabled=yes
add chain=services protocol=udp dst-port=67-68 action=accept comment=“allow DHCP” disabled=yes
add chain=services protocol=tcp dst-port=8080 action=accept comment=“allow Web Proxy” disabled=yes
add chain=services protocol=ipencap action=accept comment=“allow IPIP” disabled=yes
add chain=services protocol=tcp dst-port=443 action=accept comment=“allow https for Hotspot” disabled=yes
add chain=services protocol=tcp dst-port=1080 action=accept comment=“allow Socks for Hotspot” disabled=yes
add chain=services protocol=udp dst-port=500 action=accept comment=“allow IPSec connections” disabled=yes
add chain=services protocol=ipsec-esp action=accept comment=“allow IPSec” disabled=yes
add chain=services protocol=ipsec-ah action=accept comment=“allow IPSec” disabled=yes
add chain=services protocol=udp dst-port=520-521 action=accept comment=“allow RIP” disabled=yes
add chain=services protocol=ospf action=accept comment=“allow OSPF” disabled=yes
add chain=services action=return comment=“” disabled=no
Thanks,