When you connecting your XBOX 360 to XBOX Live through a CISCO router you are likely to get told that your NAT type is strict. This is because the CISCO routers do not support UPnP like most home routers.
In order to resolve this issue you will need to configure your router to allow certain ports through and create some static NAT entries. Whilst a lot of games will work quite happily with NAT type strict you will notice finding other players for multiplayer matches is very slow. Gears of War 2 however will simply never find any other players if you have NAT type strict.
There are 3 important ports needed for XBOX Live and they are TCP 3074 (used to connect to XBOX live and transfer data i.e. marketplace downloads, new content etc...) UDP 3074 which is used for delay sensitive traffic (multiplayer game sessions use this port) and UDP 88 (which is used for Kerberos. This is how you authenticate to the Microsoft XBOX Live servers)
The first thing you need to do is to create a static NAT entry which maps your XBOX's IP address (which you will need to statically configure) to each of the ports on your external IP.
ip nat inside source static tcp 192.168.3.10 3074 interface Dialer1 3074
In order to resolve this issue you will need to configure your router to allow certain ports through and create some static NAT entries. Whilst a lot of games will work quite happily with NAT type strict you will notice finding other players for multiplayer matches is very slow. Gears of War 2 however will simply never find any other players if you have NAT type strict.
There are 3 important ports needed for XBOX Live and they are TCP 3074 (used to connect to XBOX live and transfer data i.e. marketplace downloads, new content etc...) UDP 3074 which is used for delay sensitive traffic (multiplayer game sessions use this port) and UDP 88 (which is used for Kerberos. This is how you authenticate to the Microsoft XBOX Live servers)
The first thing you need to do is to create a static NAT entry which maps your XBOX's IP address (which you will need to statically configure) to each of the ports on your external IP.
ip nat inside source static tcp 192.168.3.10 3074 interface Dialer1 3074
ip nat inside source static udp 192.168.3.10 3074 interface Dialer1 3074
ip nat inside source static udp 192.168.3.10 88 interface Dialer1 88
You would think that this would be enough to improve the NAT type but it appears that you also need allow these specific ports on your external ACL like so...
ip access-list extended INTERNET_IN
permit tcp any host x.x.x.x eq 3074
permit udp any host x.x.x.x eq 3074
permit udp any host x.x.x.x eq 88
(Where x.x.x.x is your external IP)
Once you have this configuration in place your XBOX Live will now show a NAT type of moderate. This will allow all games to work with XBOX Live. Most importantly Gears of War 2 will now work so you can get your multiplayer horde fix.
Comments
Post a Comment