|
||
|
|||||||
| New Join Forum So your new to RunUO and looking to work with people that are new, this is the place. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Newbie
Join Date: Mar 2008
Age: 24
Posts: 11
|
using Server;
using Server.Network; namespace Server.Misc { public class ServerList { /* Address:76.226.114.251 * * The default setting, a value of 'null', will attempt to detect your IP address automatically: * private const string Address = "76.226.114.251"; * * This detection, however, does not work for servers behind routers. If you're running behind a router, put in your IP: * private const string Address = "76.226.114.251"; * * If you need to resolve a DNS hot name, you can do that too: * private const string Address = "exodus.zapto.org; */ public static readonly string Address = "76.226.114.251"; public const string ServerName = "Exodus"; public static void Initialize() { Listener.Port = 2593; EventSink.ServerList += new ServerListEventHandler( EventSink_ServerList ); } public static void EventSink_ServerList( ServerListEventArgs e ) { try { IPAddress ipAddr; if ( Resolve( Address != null && !IsLocalMachine( e.State ) ? Address : Dns.GetHostName(), out ipAddr ) ) e.AddServer( ServerName, new IPEndPoint( ipAddr, Listener.Port ) ); else e.Rejected = true; } catch { e.Rejected = true; } } public static bool Resolve( string addr, out IPAddress outValue ) { if ( IPAddress.TryParse( addr, out outValue ) ) return true; try { IPHostEntry iphe = Dns.GetHostEntry( addr ); if ( iphe.AddressList.Length > 0 ) { outValue = iphe.AddressList[iphe.AddressList.Length - 1]; return true; } } catch { } outValue = IPAddress.None; return false; } private static bool IsLocalMachine( NetState state ) { Socket sock = state.Socket; IPAddress theirAddress = ((IPEndPoint)sock.RemoteEndPoint).Address; if ( IPAddress.IsLoopback( theirAddress ) ) return true; bool contains = false; IPHostEntry iphe = Dns.GetHostEntry( Dns.GetHostName() ); for ( int i = 0; !contains && i < iphe.AddressList.Length; ++i ) contains = theirAddress.Equals( iphe.AddressList[i] ); return contains; } } } this is what i have typed in can some 1 post the correct answer ip provided |
|
|
|
|
|
#2 (permalink) |
|
Newbie
Join Date: Mar 2008
Age: 24
Posts: 11
|
// ================================================== ================================================
// ServerList.cs // ================================================== ================================================ // 1.0 RunUO Beta 36 Initial version // 1.1 Mr Fixit Now automaticly detects if you are connecting localy and uses the // servers local ip in the client serverlist. // 1.2 Mr Fixit Internet IP autodetection using What Is My IP Address? - IP Address Lookup, Info, Speed Test, and more. // 1.3 Mr Fixit If script fails to find the internet ip, keep the old one and try // again in # minutes. // 1.4 Mr Fixit You can now add AutoIP mirrors. Added whatismyip.com and myip.com. // 1.5 Mr Fixit Adjusted the AutoIP mirror engine so it supports more mirrors. // Added findmyip.com and ipaddy.com. // 1.6 Mr Fixit IP is now trimmed (Just in case). Added simflex.com, edpsciences.com, // ipid.shat.net and checkip.dyndns.org. // 1.7 Mr Fixit Removed What Is My IP Address? - IP Address Lookup, Info, Speed Test, and more is it seems to be out of buisness. // ================================================== ================================================ using System; using System.Net; using System.Net.Sockets; using Server; using Server.Network; namespace Server.Misc { public class ServerList { // ================================================== ================================ // YOUR SERVERS NAME // ================================================== ================================ public const string ServerName = "RunUO Test Center"; // ================================================== ================================ // YOUR INTERNET IP OR DNS NAME // Here you can select to autodetect your internet ip, or manualy specify // Examples: // public static string Address = "12.34.56.78"; // public static string Address = "shard.host.com"; // ================================================== ================================ public const bool InternetIPAutodetect = true; public const int MinutesBetweenIPAutodetect = 30; public static string Address = "exodus.zapto.org"; // ================================================== ================================ // Here are some values stored // ================================================== ================================ private static LocalLanIPRange[] LocalLanIPRanges = new LocalLanIPRange[10]; private static UInt32 LocalLanIPRangesCount; private static AutoIPMirror[] AutoIPMirrors = new AutoIPMirror[10]; private static UInt32 AutoIPMirrorsCount; private static DateTime InternetIPAutodetectLast; // ================================================== ================================ // Initialization // ================================================== ================================ public static void Initialize() { // ---------------------------------------------------- // Select what port to use // ---------------------------------------------------- Listener.Port = 2593; // ---------------------------------------------------- // Load the local LAN ip ranges // ---------------------------------------------------- AddLocalLANIPRange("10.0.0.0", "10.255.255.255"); AddLocalLANIPRange("192.168.0.0", "192.168.255.255"); AddLocalLANIPRange("172.16.0.0", "172.32.255.255"); AddLocalLANIPRange("169.254.0.0", "169.254.255.255"); // ---------------------------------------------------- // Load the Auto IP mirros // ---------------------------------------------------- AddAutoIPMirror("http://www.myip.com/", "<html>Your ip is ", "<p></html>"); AddAutoIPMirror("http://www.findmyip.com/", "Your IP address is:<br>", "</FONT>"); AddAutoIPMirror("http://www.ipaddy.com/", "Your IP address is: ", "<br>"); AddAutoIPMirror("http://checkip.dyndns.org/", "Current IP Address: ", "</body>"); AddAutoIPMirror("http://ipid.shat.net/iponly/", "<title>", "</title>"); AddAutoIPMirror("http://www.edpsciences.com/htbin/ipaddress", "Your IP address is <B> ", " </B>"); AddAutoIPMirror("http://www2.simflex.com/ip.shtml", "Your IP address is <BR>", "<BR>"); // ---------------------------------------------------- // Create the event // ---------------------------------------------------- EventSink.ServerList += new ServerListEventHandler( EventSink_ServerList ); } // ================================================== ================================ // Add a range of local lan ips // ================================================== ================================ private static void AddLocalLANIPRange(string RangeFrom, string RangeTo) { LocalLanIPRanges[LocalLanIPRangesCount] = new LocalLanIPRange(); LocalLanIPRanges[LocalLanIPRangesCount].RangeFrom = StringIPToUInt32IP(RangeFrom); LocalLanIPRanges[LocalLanIPRangesCount].RangeTo = StringIPToUInt32IP(RangeTo); LocalLanIPRangesCount = LocalLanIPRangesCount + 1; } // ================================================== ================================ // Convert a ip string to a binary unsigned int // ================================================== ================================ private static UInt32 StringIPToUInt32IP(string addr) { byte[] byteArray1 = IPAddress.Parse(addr).GetAddressBytes(); byte[] byteArray2 = IPAddress.Parse(addr).GetAddressBytes(); byteArray1[0] = byteArray2[3]; byteArray1[1] = byteArray2[2]; byteArray1[2] = byteArray2[1]; byteArray1[3] = byteArray2[0]; return BitConverter.ToUInt32( byteArray1, 0); } // ================================================== ================================ // Used to store the local lan ip ranges // ================================================== ================================ private class LocalLanIPRange { public UInt32 RangeFrom; public UInt32 RangeTo; } // ================================================== ================================ // Add a AutoIP mirror // ================================================== ================================ private static void AddAutoIPMirror(string sURL, string sStart, string sEnd) { AutoIPMirrors[AutoIPMirrorsCount] = new AutoIPMirror(); AutoIPMirrors[AutoIPMirrorsCount].sURL = sURL; AutoIPMirrors[AutoIPMirrorsCount].sStart = sStart; AutoIPMirrors[AutoIPMirrorsCount].sEnd = sEnd; AutoIPMirrorsCount = AutoIPMirrorsCount + 1; } // ================================================== ================================ // Used to store the Auto IP mirrors // ================================================== ================================ private class AutoIPMirror { public string sURL; public string sStart; public string sEnd; public UInt32 iFailures; } // ================================================== ================================ // The serverlist event // ================================================== ================================ public static void EventSink_ServerList( ServerListEventArgs e ) { try { // ---------------------------------------------------- // Autodetect the Internet IP every 30 minutes // ---------------------------------------------------- if (InternetIPAutodetect) { DateTime UpdateTime = InternetIPAutodetectLast; UpdateTime = UpdateTime.AddMinutes(MinutesBetweenIPAutodetect); if (UpdateTime<DateTime.Now) { string NewAddress = null; NewAddress = FindInternetIP(); InternetIPAutodetectLast = DateTime.Now; if (NewAddress!=null) { Address = NewAddress; } } } // ---------------------------------------------------- // Find the server ip to use for this user // ---------------------------------------------------- IPAddress ipAddr = FindMachineIP(e); // ---------------------------------------------------- // Send serverlist // ---------------------------------------------------- if (ipAddr != null) { e.AddServer( ServerName, new IPEndPoint( ipAddr, Listener.Port ) ); } else { e.Rejected = true; } } catch { e.Rejected = true; } } // ================================================== ================================ // Connects to a webserver that gives you your internet ip // ================================================== ================================ public static string FindInternetIP( ) { // ---------------------------------------------------- // Pick a random mirror // ---------------------------------------------------- Random rnd = new Random(); int UseMirror = (int)( rnd.NextDouble() * AutoIPMirrorsCount); string MyIP = ""; // ---------------------------------------------------- // Catch if the mirror is down // ---------------------------------------------------- try { // ---------------------------------------------------- // Get the webpage // ---------------------------------------------------- WebClient client = new WebClient(); byte[] pageData = client.DownloadData(AutoIPMirrors[UseMirror].sURL); MyIP = System.Text.Encoding.ASCII.GetString(pageData); // ---------------------------------------------------- // Find the string // ---------------------------------------------------- int iStart = MyIP.LastIndexOf(AutoIPMirrors[UseMirror].sStart); int iEnd = MyIP.IndexOf(AutoIPMirrors[UseMirror].sEnd, iStart+AutoIPMirrors[UseMirror].sStart.Length); MyIP = MyIP.Substring(iStart+AutoIPMirrors[UseMirror].sStart.Length, iEnd-iStart-AutoIPMirrors[UseMirror].sStart.Length ); MyIP = MyIP.Trim(); // ---------------------------------------------------- // Return value // ---------------------------------------------------- Console.WriteLine("Internet IP: {0} ({1})", MyIP, AutoIPMirrors[UseMirror].sURL); return MyIP; } catch { Console.WriteLine("Unable to autoupdate the Internet IP from {0}!", AutoIPMirrors[UseMirror].sURL); Console.WriteLine("----------------------------------------------------------------------"); Console.WriteLine(MyIP); Console.WriteLine("----------------------------------------------------------------------"); return null; } } // ================================================== ================================ // Calculates what server IP to use // ================================================== ================================ public static IPAddress FindMachineIP( ServerListEventArgs e ) { // ---------------------------------------------------- // Find the IP of the connecting user // ---------------------------------------------------- Socket sock = e.State.Socket; IPAddress theirAddress = ((IPEndPoint)sock.RemoteEndPoint).Address; IPAddress serverAddress; // ---------------------------------------------------- // Is it Loopback? // ---------------------------------------------------- if ( IPAddress.IsLoopback( theirAddress ) ) { return IPAddress.Parse( "127.0.0.1" ); } // ---------------------------------------------------- // Local // ---------------------------------------------------- UInt32 uint32Address = StringIPToUInt32IP(theirAddress.ToString()); for (UInt32 LocalLanIPRangesLoop = 0 ; LocalLanIPRangesLoop < LocalLanIPRangesCount; LocalLanIPRangesLoop++) { if ( (LocalLanIPRanges[LocalLanIPRangesLoop].RangeFrom <= uint32Address) && (LocalLanIPRanges[LocalLanIPRangesLoop].RangeTo >= uint32Address) ) { Resolve(Dns.GetHostName(), out serverAddress); return serverAddress; } } // ---------------------------------------------------- // Internet addresses // ---------------------------------------------------- if (Address!=null) { Resolve(Address, out serverAddress); } else { Resolve(Dns.GetHostName(), out serverAddress); } return serverAddress; } // ================================================== ================================ // Resolves dns names // ================================================== ================================ public static bool Resolve( string addr, out IPAddress outValue ) { try { outValue = IPAddress.Parse( addr ); return true; } catch { try { IPHostEntry iphe = Dns.Resolve( addr ); if ( iphe.AddressList.Length > 0 ) { outValue = iphe.AddressList[iphe.AddressList.Length - 1]; return true; } } catch { } } outValue = IPAddress.None; return false; } } } then i went to canuseeme.org it gave me ip 76.226.xxx.xxx i have already forwarded ports 2593-2594 2543-2544 and 5001-5002. Error: I could not see your service on 76.226.114.251 on port (2593) (2594) (2543) (2544) and (5001). Reason: Connection refused. is the error i get. But port (5002) on the other hand worked and had no errors the 1st time after that its Error: I could not see your service on 76.226.114.251 on port (5002) Reason: Connection timed out. should i try to switch my serverlist to port (5002)? what would be my login ip 76.226.114.251? please help |
|
|
|
|
|
#3 (permalink) |
|
Newbie
Join Date: Mar 2008
Age: 24
Posts: 11
|
// ================================================== ================================================
// ServerList.cs // ================================================== ================================================ // 1.0 RunUO Beta 36 Initial version // 1.1 Mr Fixit Now automaticly detects if you are connecting localy and uses the // servers local ip in the client serverlist. // 1.2 Mr Fixit Internet IP autodetection using What Is My IP Address? - IP Address Lookup, Info, Speed Test, and more. // 1.3 Mr Fixit If script fails to find the internet ip, keep the old one and try // again in # minutes. // 1.4 Mr Fixit You can now add AutoIP mirrors. Added whatismyip.com and myip.com. // 1.5 Mr Fixit Adjusted the AutoIP mirror engine so it supports more mirrors. // Added findmyip.com and ipaddy.com. // 1.6 Mr Fixit IP is now trimmed (Just in case). Added simflex.com, edpsciences.com, // ipid.shat.net and checkip.dyndns.org. // 1.7 Mr Fixit Removed What Is My IP Address? - IP Address Lookup, Info, Speed Test, and more is it seems to be out of buisness. // ================================================== ================================================ using System; using System.Net; using System.Net.Sockets; using Server; using Server.Network; namespace Server.Misc { public class ServerList { // ================================================== ================================ // YOUR SERVERS NAME // ================================================== ================================ public const string ServerName = "RunUO Test Center"; // ================================================== ================================ // YOUR INTERNET IP OR DNS NAME // Here you can select to autodetect your internet ip, or manualy specify // Examples: // public static string Address = "12.34.56.78"; // public static string Address = "shard.host.com"; // ================================================== ================================ public const bool InternetIPAutodetect = true; public const int MinutesBetweenIPAutodetect = 30; public static string Address = "exodus.zapto.org"; // ================================================== ================================ // Here are some values stored // ================================================== ================================ private static LocalLanIPRange[] LocalLanIPRanges = new LocalLanIPRange[10]; private static UInt32 LocalLanIPRangesCount; private static AutoIPMirror[] AutoIPMirrors = new AutoIPMirror[10]; private static UInt32 AutoIPMirrorsCount; private static DateTime InternetIPAutodetectLast; // ================================================== ================================ // Initialization // ================================================== ================================ public static void Initialize() { // ---------------------------------------------------- // Select what port to use // ---------------------------------------------------- Listener.Port = 2593; // ---------------------------------------------------- // Load the local LAN ip ranges // ---------------------------------------------------- AddLocalLANIPRange("10.0.0.0", "10.255.255.255"); AddLocalLANIPRange("192.168.0.0", "192.168.255.255"); AddLocalLANIPRange("172.16.0.0", "172.32.255.255"); AddLocalLANIPRange("169.254.0.0", "169.254.255.255"); // ---------------------------------------------------- // Load the Auto IP mirros // ---------------------------------------------------- AddAutoIPMirror("http://www.myip.com/", "<html>Your ip is ", "<p></html>"); AddAutoIPMirror("http://www.findmyip.com/", "Your IP address is:<br>", "</FONT>"); AddAutoIPMirror("http://www.ipaddy.com/", "Your IP address is: ", "<br>"); AddAutoIPMirror("http://checkip.dyndns.org/", "Current IP Address: ", "</body>"); AddAutoIPMirror("http://ipid.shat.net/iponly/", "<title>", "</title>"); AddAutoIPMirror("http://www.edpsciences.com/htbin/ipaddress", "Your IP address is <B> ", " </B>"); AddAutoIPMirror("http://www2.simflex.com/ip.shtml", "Your IP address is <BR>", "<BR>"); // ---------------------------------------------------- // Create the event // ---------------------------------------------------- EventSink.ServerList += new ServerListEventHandler( EventSink_ServerList ); } // ================================================== ================================ // Add a range of local lan ips // ================================================== ================================ private static void AddLocalLANIPRange(string RangeFrom, string RangeTo) { LocalLanIPRanges[LocalLanIPRangesCount] = new LocalLanIPRange(); LocalLanIPRanges[LocalLanIPRangesCount].RangeFrom = StringIPToUInt32IP(RangeFrom); LocalLanIPRanges[LocalLanIPRangesCount].RangeTo = StringIPToUInt32IP(RangeTo); LocalLanIPRangesCount = LocalLanIPRangesCount + 1; } // ================================================== ================================ // Convert a ip string to a binary unsigned int // ================================================== ================================ private static UInt32 StringIPToUInt32IP(string addr) { byte[] byteArray1 = IPAddress.Parse(addr).GetAddressBytes(); byte[] byteArray2 = IPAddress.Parse(addr).GetAddressBytes(); byteArray1[0] = byteArray2[3]; byteArray1[1] = byteArray2[2]; byteArray1[2] = byteArray2[1]; byteArray1[3] = byteArray2[0]; return BitConverter.ToUInt32( byteArray1, 0); } // ================================================== ================================ // Used to store the local lan ip ranges // ================================================== ================================ private class LocalLanIPRange { public UInt32 RangeFrom; public UInt32 RangeTo; } // ================================================== ================================ // Add a AutoIP mirror // ================================================== ================================ private static void AddAutoIPMirror(string sURL, string sStart, string sEnd) { AutoIPMirrors[AutoIPMirrorsCount] = new AutoIPMirror(); AutoIPMirrors[AutoIPMirrorsCount].sURL = sURL; AutoIPMirrors[AutoIPMirrorsCount].sStart = sStart; AutoIPMirrors[AutoIPMirrorsCount].sEnd = sEnd; AutoIPMirrorsCount = AutoIPMirrorsCount + 1; } // ================================================== ================================ // Used to store the Auto IP mirrors // ================================================== ================================ private class AutoIPMirror { public string sURL; public string sStart; public string sEnd; public UInt32 iFailures; } // ================================================== ================================ // The serverlist event // ================================================== ================================ public static void EventSink_ServerList( ServerListEventArgs e ) { try { // ---------------------------------------------------- // Autodetect the Internet IP every 30 minutes // ---------------------------------------------------- if (InternetIPAutodetect) { DateTime UpdateTime = InternetIPAutodetectLast; UpdateTime = UpdateTime.AddMinutes(MinutesBetweenIPAutodetect); if (UpdateTime<DateTime.Now) { string NewAddress = null; NewAddress = FindInternetIP(); InternetIPAutodetectLast = DateTime.Now; if (NewAddress!=null) { Address = NewAddress; } } } // ---------------------------------------------------- // Find the server ip to use for this user // ---------------------------------------------------- IPAddress ipAddr = FindMachineIP(e); // ---------------------------------------------------- // Send serverlist // ---------------------------------------------------- if (ipAddr != null) { e.AddServer( ServerName, new IPEndPoint( ipAddr, Listener.Port ) ); } else { e.Rejected = true; } } catch { e.Rejected = true; } } // ================================================== ================================ // Connects to a webserver that gives you your internet ip // ================================================== ================================ public static string FindInternetIP( ) { // ---------------------------------------------------- // Pick a random mirror // ---------------------------------------------------- Random rnd = new Random(); int UseMirror = (int)( rnd.NextDouble() * AutoIPMirrorsCount); string MyIP = ""; // ---------------------------------------------------- // Catch if the mirror is down // ---------------------------------------------------- try { // ---------------------------------------------------- // Get the webpage // ---------------------------------------------------- WebClient client = new WebClient(); byte[] pageData = client.DownloadData(AutoIPMirrors[UseMirror].sURL); MyIP = System.Text.Encoding.ASCII.GetString(pageData); // ---------------------------------------------------- // Find the string // ---------------------------------------------------- int iStart = MyIP.LastIndexOf(AutoIPMirrors[UseMirror].sStart); int iEnd = MyIP.IndexOf(AutoIPMirrors[UseMirror].sEnd, iStart+AutoIPMirrors[UseMirror].sStart.Length); MyIP = MyIP.Substring(iStart+AutoIPMirrors[UseMirror].sStart.Length, iEnd-iStart-AutoIPMirrors[UseMirror].sStart.Length ); MyIP = MyIP.Trim(); // ---------------------------------------------------- // Return value // ---------------------------------------------------- Console.WriteLine("Internet IP: {0} ({1})", MyIP, AutoIPMirrors[UseMirror].sURL); return MyIP; } catch { Console.WriteLine("Unable to autoupdate the Internet IP from {0}!", AutoIPMirrors[UseMirror].sURL); Console.WriteLine("----------------------------------------------------------------------"); Console.WriteLine(MyIP); Console.WriteLine("----------------------------------------------------------------------"); return null; } } // ================================================== ================================ // Calculates what server IP to use // ================================================== ================================ public static IPAddress FindMachineIP( ServerListEventArgs e ) { // ---------------------------------------------------- // Find the IP of the connecting user // ---------------------------------------------------- Socket sock = e.State.Socket; IPAddress theirAddress = ((IPEndPoint)sock.RemoteEndPoint).Address; IPAddress serverAddress; // ---------------------------------------------------- // Is it Loopback? // ---------------------------------------------------- if ( IPAddress.IsLoopback( theirAddress ) ) { return IPAddress.Parse( "127.0.0.1" ); } // ---------------------------------------------------- // Local // ---------------------------------------------------- UInt32 uint32Address = StringIPToUInt32IP(theirAddress.ToString()); for (UInt32 LocalLanIPRangesLoop = 0 ; LocalLanIPRangesLoop < LocalLanIPRangesCount; LocalLanIPRangesLoop++) { if ( (LocalLanIPRanges[LocalLanIPRangesLoop].RangeFrom <= uint32Address) && (LocalLanIPRanges[LocalLanIPRangesLoop].RangeTo >= uint32Address) ) { Resolve(Dns.GetHostName(), out serverAddress); return serverAddress; } } // ---------------------------------------------------- // Internet addresses // ---------------------------------------------------- if (Address!=null) { Resolve(Address, out serverAddress); } else { Resolve(Dns.GetHostName(), out serverAddress); } return serverAddress; } // ================================================== ================================ // Resolves dns names // ================================================== ================================ public static bool Resolve( string addr, out IPAddress outValue ) { try { outValue = IPAddress.Parse( addr ); return true; } catch { try { IPHostEntry iphe = Dns.Resolve( addr ); if ( iphe.AddressList.Length > 0 ) { outValue = iphe.AddressList[iphe.AddressList.Length - 1]; return true; } } catch { } } outValue = IPAddress.None; return false; } } } then i went to canuseeme.org it gave me ip 76.226.xxx.xxx i have already forwarded ports 2593-2594 2543-2544 and 5001-5002. Error: I could not see your service on 76.226.114.251 on port (2593) (2594) (2543) (2544) and (5001). Reason: Connection refused. is the error i get. But port (5002) on the other hand worked and had no errors the 1st time after that its Error: I could not see your service on 76.226.114.251 on port (5002) Reason: Connection timed out. should i try to switch my serverlist to port (5002)? what would be my login ip 76.226.114.251? also i didnt set up a static ip do i need 2? |
|
|
|
|
|
#4 (permalink) |
|
Master of the Internet
Join Date: Feb 2004
Location: NC/NC State Univ
Age: 23
Posts: 16,424
|
Bro:
CODE TAGS ARE YOUR FRIEND. Please use them >_<. If you're doing this just for yourself, try connecting on 127.0.0.1. It won't work for anyone else, just you. If that works, then there's something wrong with your port forwarding.
__________________
Goodbye, folks. |
|
|
|
|
|
#7 (permalink) |
|
Newbie
Join Date: Mar 2008
Age: 24
Posts: 11
|
All the fire walls are turned off thats the 1st step i did also i set my computer in the dmz zone wich is outside the router and gets all ports so nothing should be stopping the ports. Right now i have my serverlist set to my ip 76.xxx.xxx.xxx should i change it to my no ip exodus.zapto.org? what i ever i use in the public string line is whats used by individuals to log on the server? also would my service provider be blocking all ports? cause i scanned every last 1 and it said connection times out with some settings and connection refused by otheres? please respond and thanks for your patience.
Last edited by Bred203; 03-17-2008 at 07:09 PM. |
|
|
|
|
|
#8 (permalink) | ||
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
Quote:
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
||
|
|
|
|
|
#10 (permalink) |
|
Master of the Internet
Join Date: Feb 2004
Location: NC/NC State Univ
Age: 23
Posts: 16,424
|
I can see both IPs 244 and 245, but connecting to 2593 on either of them yields no result.
Sure you have the domain routed to the correct IP...?
__________________
Goodbye, folks. |
|
|
|
|
|
#11 (permalink) |
|
Newbie
Join Date: Mar 2008
Age: 24
Posts: 11
|
Thanks to every one that helped. I had a router and a router/modem so i had to get the settings just right to get it to work. 1st i put router in the dmz zone from the modem wich is the dematerialized zone. This set my router outside my modem and it gets a new ip. From there i port forwarded port 2593 to my computer. Just some advice to people trying to connect. Dont forget to have your runuo up and connected while scanning for a open port lol.
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|