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!

Help setting up Citrix pass through port on 1601.

Status
Not open for further replies.
Mar 15, 2001
177
US
I have 2 1601's connected with frame relay. One of them also has a 128kb pipe to the internet. I am using Nat at both sites. How would I go about adding a connection to my Citrix server from the internet? I was told I could add some sort of port addressing to the main router with the internet connection.
Thanks in advance.
 
You need to static map the following ports through the NAT table.

ica 1494/tcp ica
ica 1494/udp ica

These ports can be changed to something else by tweaking the ini files for citrix.

Mike S
"Diplomacy; the art of saying 'nice doggie' till you can find a rock" Wynn Catlin
 
Ok, another question. How would I map the ports on the router with nat running on it? Do I have (or need) to setup PPTP on my server?
 
!
ip nat inside source list 1 interface Ethernet1 overload
ip nat inside source static tcp 192.168.50.4 1494 192.168.1.2 1494
ip nat inside source static UDP 192.168.50.4 1494 192.168.1.2 1494


This sample config says that ethernet 1's IP address will NATed.

The second line says that TCP port 1494 needs to be static mapped from 192.168.50.4 port 194 FROM 192.168.1.2 port 1494

The third line is a repeat but for the UDP port.

Your NAT more then likely will look something different but it should be close enough that you can figure out the details.

Mike S
"Diplomacy; the art of saying 'nice doggie' till you can find a rock" Wynn Catlin
 
Thanks alot. These are my first routers I have installed and still learning. Wish I had some time to play with some of these routers. For now it is just learn as I go.
Thanks again.
Will try this this week and see how it goes.
 
No problem... when you get into it with more questions, remember to come back here and "play" some more :)

Mike S
"Diplomacy; the art of saying 'nice doggie' till you can find a rock" Wynn Catlin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top