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

Limiting one host to one website

Status
Not open for further replies.

br0ck

MIS
Apr 25, 2002
467
US
i need to limit the citrix server to one web site fedex.com can this be done easly ??
 
Which direction?

Do you need to limit the traffic going outbound, or do you need to only allow fedex.com to access one host inbound?
 
I have citrix server that 2 users have IE published to them
the boss only wants them to access fedex.com to manage shipments

thats what i have to accomplish

i would assume that it would be outbound?

thanks
 
Just put an access-list on the inside leg of the pix with something like :

access-list xxx permit tcp host <citrix server> host 199.81.196.121 eq 80
access-list xxx deny tcp host <citrix server> any eq 80
access-list xxx permit ip any any

access-group xxx in interface inside

This will enable the citrix server to browse and no other site, while maintaining ip access to the rest of the services on the internet.

If you don't wan't the citrix server to access anything on the net other than on port 80 you could put in
access-list xxx deny ip host <citrix> any
after the first permit statement
Just remember that if fedex.com changes their ip, you have some managment work. Maybe URL filtering via websense or some other n2h2 server would be advisable.

Jan
 
would need 8 access lists or can i specify all ip's in one access list (i have never seen it done thats why i ask)

if so could you give me an example?

tia

b-
 
Well, if you mean do you have to create 8 lines in the same acl then yes. You can't have more than one acl on each interface, so creating 8 acl's that wouldn't be of any use.

Jan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top