"Lee J." <(E-Mail Removed)> wrote:
> Anybody know if it's possible to make this 'invisible'? Ie.
> Described as 'stealth' instead of 'closed' by Shields Up? It's
> the only port that indicates any presence to passing port
> scanners yet it's also quite useless. I'd rather it were
> invisible.
>
> I changed the following config line:
>
> config upnp=on
>
> ..to...
>
> config upnp=off
>
> ...but it made no difference after a reboot.
Hi,
telnet into your router, and login using the same login name / password
as you use for the web interface. You will need to create a new firewall
rule to drop all incoming connections to TCP port 5000. So firstly, you
need to see how your firewall is setup. so follow these steps :-
=>firewall
[firewall]=>rule list chain=sink
If this returns details of existing rules in this chain, then you can just
add an additional rule at the start of the sink chain (for packets coming
into the router from the WAN). Use the following rule to stealth port 5000
:-
rule create chain=sink index=0 srcintfgrp=wan prot=tcp dstport=5000
action=drop
If the sink chain does not exist, then you will need to use these commands
instead to create the chain :-
[firewall]=>rule create chain=sink index=0 srcintfgrp=wan prot=tcp
dstport=5000 action=drop
[firewall]=>assign hook=sink chain=sink
Note that these will work only if you are at the firewall level, so make
sure you type 'firewall' on a line by itself before any of these commands.
For your info, the firewall has 3 hooks called sink, source and forward.
Each hook can have a single chain attached, and you can create a large
number of rules on each chain. Using an index of 0 will insert a rule at
the start of the chain. sink is the hook for data coming into the router
itself, source is for data from the router and forward is for traffic
passing through the router to the LAN. See
http://www.sdharris.com/speedtouch510/basic.htm for more info on using the
speedtouch firewall.
--
Martin