Creating a server using WAMP Server, no-ip.com and D-Link
I used XAMPP a couple of years and I had many problems with it. So, after searching on Google, I came across WAMP Server, a friendly web environment. I began working on it and since then I didn’t have any problems with it.
Recently, I wanted to create a browser game and host it on my computer. So, I began searching for a website that could offer me a stable DNS and found no-ip.com. After registering an account, I created a free subdomain on their website.
The next step was to set my router to create a link between the subdomain and my computer. At first, I set the router’s DHCP to offer me a static IP every time from Home > DHCP > Static DHCP. Then I created a link between the Internet and the local network by accessing Advanced > Virtual Server and setting the following options:
Private IP: 192.168.0.23 (the static IP that the router gives me)
Protocol type: TCP
Private port: 8088 (the port used by WAMP Server)
Public port: 80 (the port on which the subdomain runs; it’s usually 80)
After that, I made the connection with no-ip.com from Advanced > DDNS, so the router would change the DNS each time I turn on my computer.
Finally, I made the connection between WAMP Server and no-ip.com. I accessed WAMP Server > Apache > httpd.conf and modified the following lines:
Listen: 8088 (the port used by WAMP Server, it’s modification is optional)
ServerName: subdomain.no-ip.info
We restart the router, WAMP Server and our server is ready to use.
