Hey everyone.
I've noticed that people seems to be obsessed with making their IP Address static. I know that in some cases (such as my case), a router might reject a static address because of the internet service provider's forced settings on the network.
A month ago, Cox Communications (my ISP) forced my router to DELETE the option of having a static address. I hate using Hamachi, so I come up with this solution:
All you have to do is get a No-IP host and load that instead of the IP Address. Have the client connect to the host and it's good to go. I tested it and I use it for Burning Skies's test server. I can use this to launch my server from any location as well.
Hope this helps someone.
Sincerely,
Spirited Fang
I've noticed that people seems to be obsessed with making their IP Address static. I know that in some cases (such as my case), a router might reject a static address because of the internet service provider's forced settings on the network.
A month ago, Cox Communications (my ISP) forced my router to DELETE the option of having a static address. I hate using Hamachi, so I come up with this solution:
Code:
if (server.NoIpHost != String.Empty)
{
IPHostEntry ip = Dns.GetHostEntry(server.NoIpHost);
server.IPAddress = ip.AddressList[0].ToString();
}
Hope this helps someone.
Sincerely,
Spirited Fang