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!

Xbox Live port(s)

Status
Not open for further replies.

Glitchen

MIS
Jun 6, 2003
48
0
0
US
I have a pix 501 and have been banging my head against the wall. I need to open ports
• UDP 88
• UDP 3074
• TCP 3074
for xbox live.

My outside interface is dhcp and my xbox ip is 10.6.1.12

How do I nat 10.6.1.12 and create and access list for those ports?

Much help is appreciated
 
Build Access List to allow the traffic in -
access-list outside_access_in permit udp any host interface outside eq 88
access-list outside_access_in permit udp any host interface outside eq 3074
access-list outside_access_in permit tcp any host interface outside eq 3074

Apply the ACL to the outside interface -
access-group outside_access_in in interface outside

Map incoming port to an IP and port on the inside (one line for each port)-
static (inside,outside) tcp interface 3074 10.6.1.12 3074 netmask 255.255.255.255
static (inside,outside) udp interface 3074 10.6.1.12 3074 netmask 255.255.255.255
static (inside,outside) udp interface 88 10.6.1.12 88 netmask 255.255.255.255





Brent
Systems Engineer / Consultant
CCNP, CCSP
 
Sorry change the ACL (take out the host)
access-list outside_access_in permit udp any interface outside eq 88
access-list outside_access_in permit udp any interface outside eq 3074
access-list outside_access_in permit tcp any interface outside eq 3074


Brent
Systems Engineer / Consultant
CCNP, CCSP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top