enegue
31-03-09, 09:27 AM
There are alot of ports that you have to open for a WOW server. If you are using windows firewall, this can be a real pain. From what I have encountered windows firewall does not allow adding port ranges, so you have to open each port manually. Below I have a windows batch file to open all the ports needed and labels each one.
Create a file named OPENPORTS.BAT
Copy and paste the code into the file.
Run the batch file!
@echo off
Echo Attemping to open needed ports....Please wait....
FOR /L %%R IN (6881,1,6999) DO netsh firewall add portopening TCP %%R "WOW Patches "%%R
netsh firewall add portopening TCP 3724 "WOWRealm List 3724"
netsh firewall add portopening TCP 80 "WOW Apache Web 80"
netsh firewall add portopening TCP 3306 "Wow Mysql 3306"
netsh firewall add portopening TCP 8129 "Wow Realm One 8129"
netsh firewall add portopening TCP 8130 "Wow Realm Two 8130"
netsh firewall add portopening TCP 8093 "Wow Server port 8093"
netsh firewall add portopening TCP 6112 "WOW Patches 6112"
netsh firewall add portopening TCP 3036 "Wow Arcemu 3036"
netsh firewall add portopening TCP 8050 "Wow World Server 8050"
Echo -------------------------------------------------------
Echo As long as you had no errors listed above, then all
Echo the ports have been opened in the windows firewall.
Echo -------------------------------------------------------
Pause
Credits
erobins of *******
Disclaimer: If this does not work for you, please leave a message here and I will try and help you out. If I really cannot, please do not flame me. I promised Avidgamer that I would help him find a way to port forward.
If this thread offends you, by all means ignore this thread and move on or delete it.
Create a file named OPENPORTS.BAT
Copy and paste the code into the file.
Run the batch file!
@echo off
Echo Attemping to open needed ports....Please wait....
FOR /L %%R IN (6881,1,6999) DO netsh firewall add portopening TCP %%R "WOW Patches "%%R
netsh firewall add portopening TCP 3724 "WOWRealm List 3724"
netsh firewall add portopening TCP 80 "WOW Apache Web 80"
netsh firewall add portopening TCP 3306 "Wow Mysql 3306"
netsh firewall add portopening TCP 8129 "Wow Realm One 8129"
netsh firewall add portopening TCP 8130 "Wow Realm Two 8130"
netsh firewall add portopening TCP 8093 "Wow Server port 8093"
netsh firewall add portopening TCP 6112 "WOW Patches 6112"
netsh firewall add portopening TCP 3036 "Wow Arcemu 3036"
netsh firewall add portopening TCP 8050 "Wow World Server 8050"
Echo -------------------------------------------------------
Echo As long as you had no errors listed above, then all
Echo the ports have been opened in the windows firewall.
Echo -------------------------------------------------------
Pause
Credits
erobins of *******
Disclaimer: If this does not work for you, please leave a message here and I will try and help you out. If I really cannot, please do not flame me. I promised Avidgamer that I would help him find a way to port forward.
If this thread offends you, by all means ignore this thread and move on or delete it.