Go Back   RunUO - Ultima Online Emulation > RunUO > Server Support on Windows

Server Support on Windows Get (and give) support on general questions related to the RunUO server itself.

Reply
 
Thread Tools Display Modes
Old 02-16-2004, 01:47 AM   #1 (permalink)
 
Join Date: Feb 2004
Age: 27
Posts: 66
Send a message via ICQ to deathofangel6969 Send a message via AIM to deathofangel6969 Send a message via MSN to deathofangel6969
Default Little Problem

I can log into my server but noone else can. I dont know if this is in the FAQ forum but if it is could you please answer it here?
deathofangel6969 is offline   Reply With Quote
Old 02-16-2004, 01:55 AM   #2 (permalink)
 
Join Date: Dec 2003
Posts: 182
Send a message via ICQ to doe90
Default

post your serverlist.cs
you can find at scripts/misc/serverlist.cs
doe90 is offline   Reply With Quote
Old 02-16-2004, 01:56 AM   #3 (permalink)
 
Join Date: Feb 2004
Age: 27
Posts: 66
Send a message via ICQ to deathofangel6969 Send a message via AIM to deathofangel6969 Send a message via MSN to deathofangel6969
Default

using System;
using System.Net;
using System.Net.Sockets;
using Server;
using Server.Network;

namespace Server.Misc
{
public class ServerList
{
/* Address
*
* The default setting, a value of 'null', will attempt to detect your IP address automatically
* private const string Address = null;
*
* 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 = "12.34.56.78";
*
* If you need to resolve a DNS host name, you can do that too
* private const string Address = "shard.host.com";
*/

public const string Address = "127.0.0.1"; <---i have my real ip there

public const string ServerName = "Random Rp/Pvp";

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 )
{
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;
}

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.Resolve( Dns.GetHostName() );

for ( int i = 0; !contains && i < iphe.AddressList.Length; ++i )
contains = theirAddress.Equals( iphe.AddressList[i] );

return contains;
}
}
}
deathofangel6969 is offline   Reply With Quote
Old 02-16-2004, 01:58 AM   #4 (permalink)
Master of the Internet
 
Quantos's Avatar
 
Join Date: Apr 2003
Location: Edmonton, AB
Age: 41
Posts: 6,867
Send a message via ICQ to Quantos Send a message via AIM to Quantos Send a message via MSN to Quantos Send a message via Yahoo to Quantos
Default

Are you behind a router and/or firewall?
__________________
Paranoia is what happens when you finally have all of the facts.
Quantos is offline   Reply With Quote
Old 02-16-2004, 01:59 AM   #5 (permalink)
 
Join Date: Feb 2004
Age: 27
Posts: 66
Send a message via ICQ to deathofangel6969 Send a message via AIM to deathofangel6969 Send a message via MSN to deathofangel6969
Default

no
deathofangel6969 is offline   Reply With Quote
Old 02-16-2004, 02:00 AM   #6 (permalink)
 
Join Date: Dec 2003
Posts: 182
Send a message via ICQ to doe90
Default

What OS do you have?
doe90 is offline   Reply With Quote
Old 02-16-2004, 02:01 AM   #7 (permalink)
Master of the Internet
 
Quantos's Avatar
 
Join Date: Apr 2003
Location: Edmonton, AB
Age: 41
Posts: 6,867
Send a message via ICQ to Quantos Send a message via AIM to Quantos Send a message via MSN to Quantos Send a message via Yahoo to Quantos
Default

Is that your correct IP?
__________________
Paranoia is what happens when you finally have all of the facts.
Quantos is offline   Reply With Quote
Old 02-16-2004, 02:01 AM   #8 (permalink)
 
Join Date: Feb 2004
Age: 27
Posts: 66
Send a message via ICQ to deathofangel6969 Send a message via AIM to deathofangel6969 Send a message via MSN to deathofangel6969
Default

win xp and yes...i already turned off the built in firewall off
deathofangel6969 is offline   Reply With Quote
Old 02-16-2004, 02:05 AM   #9 (permalink)
 
Join Date: Dec 2003
Posts: 182
Send a message via ICQ to doe90
Default

is there any errors on the console
doe90 is offline   Reply With Quote
Old 02-16-2004, 02:09 AM   #10 (permalink)
 
Join Date: Dec 2003
Posts: 182
Send a message via ICQ to doe90
Default

Quote:
Originally Posted by Quantos
Is that your correct IP?
:?: :?:
doe90 is offline   Reply With Quote
Old 02-16-2004, 02:11 AM   #11 (permalink)
 
Join Date: Feb 2004
Age: 27
Posts: 66
Send a message via ICQ to deathofangel6969 Send a message via AIM to deathofangel6969 Send a message via MSN to deathofangel6969
Default

no errors and yes its my real ip.
deathofangel6969 is offline   Reply With Quote
Old 02-16-2004, 02:11 AM   #12 (permalink)
Master of the Internet
 
Quantos's Avatar
 
Join Date: Apr 2003
Location: Edmonton, AB
Age: 41
Posts: 6,867
Send a message via ICQ to Quantos Send a message via AIM to Quantos Send a message via MSN to Quantos Send a message via Yahoo to Quantos
Default

I was just logged into the shard. I would assume that it's something the players are doing wrong then. They should use UOGateway to connect, have it remove encryption, and use a fully patched client.
__________________
Paranoia is what happens when you finally have all of the facts.
Quantos is offline   Reply With Quote
Old 02-16-2004, 02:12 AM   #13 (permalink)
 
Join Date: Feb 2004
Age: 27
Posts: 66
Send a message via ICQ to deathofangel6969 Send a message via AIM to deathofangel6969 Send a message via MSN to deathofangel6969
Default

i saw you
deathofangel6969 is offline   Reply With Quote
Old 02-16-2004, 02:12 AM   #14 (permalink)
I R TEH POSTING!!1!eleven
 
Join Date: Jan 2004
Posts: 1,617
Default

Quote:
Originally Posted by deathofangel6969
public const string Address = "127.0.0.1"; <---i have my real ip there
Uh, NO.

http://www.showmyip.com/
__________________
Get your C# documentation today!

Quote:
Originally Posted by Thorax
WOW! that is EXACTLY how i feel, to the T. There is nothing more powerfull than a well worded ass kicking.
badger badger badger badger badger badger badger badger badger badger badger badger...mushroom MUSHROOM
abralka@doramail.com
Ignacio Vazquez-Abrams is offline   Reply With Quote
Old 02-16-2004, 02:12 AM   #15 (permalink)
 
Join Date: Dec 2003
Posts: 182
Send a message via ICQ to doe90
Default

try i DNS name just for the time

zzZZzzZZz
doe90 is offline   Reply With Quote
Old 02-16-2004, 02:13 AM   #16 (permalink)
Master of the Internet
 
Quantos's Avatar
 
Join Date: Apr 2003
Location: Edmonton, AB
Age: 41
Posts: 6,867
Send a message via ICQ to Quantos Send a message via AIM to Quantos Send a message via MSN to Quantos Send a message via Yahoo to Quantos
Default

Quote:
Originally Posted by Ignacio Vazquez-Abrams
Quote:
Originally Posted by deathofangel6969
public const string Address = "127.0.0.1"; <---i have my real ip there
Uh, NO.

http://www.showmyip.com/
He just edited that, the IP posted there was correct as it allowed me to make a test connection and log in.
__________________
Paranoia is what happens when you finally have all of the facts.
Quantos is offline   Reply With Quote
Old 02-16-2004, 02:19 AM   #17 (permalink)
 
Join Date: Feb 2004
Age: 27
Posts: 66
Send a message via ICQ to deathofangel6969 Send a message via AIM to deathofangel6969 Send a message via MSN to deathofangel6969
Default

i have my real ip there. i just took it out for hacker reasons..
deathofangel6969 is offline   Reply With Quote
Old 02-16-2004, 02:24 AM   #18 (permalink)
Master of the Internet
 
Quantos's Avatar
 
Join Date: Apr 2003
Location: Edmonton, AB
Age: 41
Posts: 6,867
Send a message via ICQ to Quantos Send a message via AIM to Quantos Send a message via MSN to Quantos Send a message via Yahoo to Quantos
Default

Actually the IP is not all that big of a deal, if your concerned about hackers I would recomend getting a good firewall. Norton Internet Security is good. Then I would suggest that learn how to administer it.
__________________
Paranoia is what happens when you finally have all of the facts.
Quantos is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5