[wpdev-commits] xmlscripts/documentation/webroot FAQ.html,1.2,1.3
Brought to you by:
rip,
thiagocorrea
From: Richard M. <dr...@us...> - 2004-07-04 19:27:24
|
Update of /cvsroot/wpdev/xmlscripts/documentation/webroot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17037/webroot Modified Files: FAQ.html Log Message: Connecting HowTo stuff. Index: FAQ.html =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/documentation/webroot/FAQ.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FAQ.html 29 Jun 2004 15:09:37 -0000 1.2 --- FAQ.html 4 Jul 2004 19:23:30 -0000 1.3 *************** *** 1,3 **** ! <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> --- 1,3 ---- ! <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> *************** *** 172,175 **** --- 172,179 ---- <li><a href="#12">I wrote some scripts that were missing! What can I do with it?</a></li> <li><a href="#13">Where can I find the latest CVS Snapshots?</a></li> + <li><a href="#14">How do I connect to Wolfpack?</a></li> + <li><a href="#15">Help! I can't login?!</a></li> + <li><a href="#16">What ports should I have open?</a></li> + <li><a href="#17">How can I route to my server behind a router?</a></li> </ul> </div> *************** *** 431,434 **** --- 435,522 ---- <a href="http://wpdev.sourceforge.net/snapshots/">http://wpdev.sourceforge.net/snapshots/</a> </div> + <a href="#top" style="font-size:9pt;">Return To Questions</a><br /><br /> + </li> + <!-- Answer 14 --> + <li><a name="14" class="question">How do I connect to Wolfpack?</a><br /> + <div class="answer"> + The easiest way is to make sure your server settings and client settings are correctly configured.<br /> + Please check your login.cfg in your Ultima Online installation directory so that it resembles this.<br /> + <div class="bash"> + ;Loginservers for Ultima Online<br /> + ;Do not edit this file or patching will fail! Always save a backup.<br /> + ;LoginServer=login.owo.com,7775<br /> + ;LoginServer=login.owo.com,7775<br /> + ;LoginServer=login.owo.com,7776<br /> + ;LoginServer=login.owo.com,7776<br /> + ;PLEASE NOTE THAT 192.168.1.100 IS AN EXAMPLE OF YOUR IP!<br /> + LoginServer=192.168.1.100,2593 + </div> + Now, after you've checked your Client's login configuration, please check your + wolfpack.xml file in your Wolfpack director so that it resembles this.<br /> + <div class="bash"> +   <group name="LoginServer" ><br /> +     <option key="Shard 1" value="My World=192.168.1.100,2592" /><br /> +   </group><br /> +   <group name="Network" ><br /> +     <option key="Allow Stat Request" value="true" /><br /> +     <option key="Allow Unencrypted Clients" value="true" /><br /> +     <option key="Enable Gameserver" value="true" /><br /> +     <option key="Enable Loginserver" value="true" /><br /> +     <option key="Gameserver Port" value="2592" /><br /> +     <option key="Loginserver Port" value="2593" /><br /> +   </group> + </div> + We support the encryption for the latest clients, so using programs like UOGateway, Ignition, UORice, etc. + is completely optional and not required. + </div> + <a href="#top" style="font-size:9pt;">Return To Questions</a><br /><br /> + </li> + <!-- Answer 15 --> + <li><a name="15" class="question">Help! I can't login?!</a><br /> + <div class="answer"> + First of all, please check out "<a href="#14">How do I connect to Wolfpack?</a>" to see if that + resolves your problem.<br /><br /> + If not, then this problem usually occurs when players try to connect to Wolfpack using an + outdated client. Due to many packet changes over the years, it has become hard to continue + supporting clients below the 4.0.0 value. The Age of Shadows Client is the one we continue + to support, and the UO:R client may also work as well. So, if you have this problem, please + try running uopatch.exe that is in your Ultima Online Installation to upgrade.<br /> + If this fails, you can try finding the free <a href="http://www.google.com/search?q=Download+%22Ultima+Online%22+%22Age+of+Shadows%22+Trial&btnG=Search&hl=en&lr=&ie=UTF-8&safe=off">Age of Shadows Demo Using Google</a>. + </div> + <a href="#top" style="font-size:9pt;">Return To Questions</a><br /><br /> + </li> + <!-- Answer 16 --> + <li><a name="16" class="question">What ports should I have open?</a><br /> + <div class="answer"> + By default, Wolfpack uses TCP ports 2592 and 2593.<br /> + Optionally you can enable TCP port 2594 which is for the remote admin page.<br /> + </div> + <a href="#top" style="font-size:9pt;">Return To Questions</a><br /><br /> + </li> + <!-- Answer 17 --> + <li><a name="17" class="question">How can I route to my server behind a router?</a><br /> + <div class="answer"> + Please Note the following: + <div class="bash"> + 2592 == Default Game Server Port<br /> + 2593 == Default Login Server Port<br /> + 192.168.1.101 == Your Server's Internal Network IP + </div> + <br /> + To route to a server that's on an internal network, you need to have TCP ports 2592 and 2593 + forwarded to the machines internal IP address.<br /> + For example, say your server has the Internal address of 192.168.1.101.<br /> + Login to your router (most home bought routers can be logged into) and find your forwarding/NAT + configuration. Once you do that, you want to configure so that:<br /> + <div class="bash"> + TCP PORT 2592 TO 192.168.1.101<br /> + TCP PORT 2593 TO 192.168.1.101 + </div> + <br /> + For a *nix router using IPTables, you can use something like this:<br /> + <div class="bash"> + iptables -t nat -I PREROUTING -p tcp --dport 2592:2593 -j DNAT --to 192.168.1.101 + </div> + </div> <a href="#top" style="font-size:9pt;">Return To Questions</a><br /> <a href="index.html" style="font-size:9pt;">Return To Overview</a><br /><br /> |