Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

forwarding using speed touch 510

Status
Not open for further replies.
Apr 4, 2001
34
GB
Hello
I am having problems forwarding ports using the speed touch 510 v3. I have set it up like this

inside 10.0.0.1 port 80
outside 0.0.0.0 port 80

i have tested my server and i know that is ok. so why doesn't it forward. I have tryed other outside ports and other inside ports and tried ftp etc.. but that doesn't work.

What am I doing wrong.
P.S can I update the firmware to match the v4 version of the speedtouch?

Cheers Russ
 
yesterdays,

Not a lot of information to go on. I assume you are trying to forward incoming requests on port 80 to a computer on the LAN. Are you also trying to pass outgoing port 80 traffic?

From the CLI Guide found at
Example creating a telnet port (23) forward and passing outgoing port 23 traffic. Assumes that your WAN interface is 10.0.0.0/8 and the destination is 200.200.200.1. You can adjust as needed.
===============
=>firewall rule list chain=Telnet
=>firewall rule create chain=telnet src=10.0.0.0/8 dst=200.200.200.1 srcintfgrp=lan
prot=tcp srcport=1024 srcportend=65535 dstport=23
action=accept
=>firewall rule create chain=telnet src=200.200.200.1 dst=10.0.0.0/8 srcintfgrp=wan
prot=tcp srcport=23 dstport=1024 dstportend=65535
action=accept
=>firewall rule create chain=telnet
action=drop
=>firewall rule list chain=Telnet
:firewall rule create chain=Telnet index=0 srcintfgrp=lan src=10.0.0.0/8
dst=200.200.200.1/32 prot=tcp srcport=1024 srcportend=65535 dstport=telnet
action=accept
:firewall rule create chain=Telnet index=1 srcintfgrp=wan src=200.200.200.1/32
dst=10.0.0.0/8 prot=tcp srcport=telnet dstport=1024 dstportend=65535
action=accept
:firewall rule create chain=Telnet index=2
action=drop
=>
===============

Hope that helps.
The Old Man
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top