tr1pl3x:
There are two approaches to the solution, and are enlisted below:
Solution 1
On each windows machines, point hmij.edu.ph to 192.168.0.1 by putting an entry in the %systemroot%/systemm32/drivers/etc/hosts file, e.g.
Code:
192.168.0.1 hmij.edu.ph
The problem with this approach is that you'll have to make this entry on each client you want this feature. Also if that the IP of the server, you need to update the client configuration on each machine to reflect the new settings.
Solution 2
If you've configured dhcp and caching/local dns server on your server machine that your clients would be using, you can add an entry to your bind configuration for hmij.edu.ph, and point it to 192.168.0.1 in the zone file. So when the clients query the dns server (i.e your machine), it will return 192.168.0.1 as the query reply. The problem with this approach is that you'll have to configure bind for this and take some while. Also that it'll always return the private IP despite that there might be some other IP for that name.
Hope this helps you.