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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

UDP port forward

Status
Not open for further replies.

fakrul

Programmer
Apr 21, 2003
3
0
0
BD
I have a Cisco 2801 router with C2801-IPBASE-M IOS. I have already done a lot of port forward. Now if I want to add more udp port forward it give the following error:

Maximum UDP forwarding ports in use

Is there any limitation of UDP port forward? Can it be maximized by changing the router or ios?
 
What protocols are you using that require you to forward more than a few UDP broadcasts?

Andy
 
I think he means static NAT with UDP, not broadcast traffic...post what you have so far...

Burt
 
Ahh, I was thinking of IP Helpers and the global commands
Code:
ip forward-protocol udp xxx

If the range of ports is that big, why not forward the IP instead of the Layer-4 ports and use ACLs/Firewall to restrict the traffic?

Andy
 
Yes, Andy is right. We are giving service to a software which need to forward 3 UDP port per client. There is already around 200 UDP port forwarded. I can't make them in range. The ports are not in serial. Andy, could you please clarify more about "Layer 4 ports and ACLs/Firewall" staff.

Fakrul
 
could you please clarify more about "Layer 4 ports and ACLs/Firewall" staff.

What I suggested was to do an IP layer static NAT:
Code:
ip nat inside source static 10.1.1.1 192.168.10.10

However if you only have 1 external IP address?

Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top