- I have a website that running on
localhost:8069address. - And I have network in network each and every system is
Ubuntu 12.04 64bit - Actually what can I do is
- My website that running on
localhost:8069is open in each and every system using192.168.199.25:8069link through - But I dont want to gives any ones to my IP i am just gives you
helpdeskthen what can i do - when any one who is in the network is hit on the
helpdesk:8069just open my website - please help me,i have so many things are search but i don't understand what can i do.
Asked
Active
Viewed 862 times
1
swift
- 3,291
Virbhadrasinh
- 171
1 Answers
2
helpdesk would be a DNS name in this case. In order for other users on your network to resolve that DNS name to your IP, there are several choices:
Using /etc/hosts
If you have few users on your network, and your IP never changes, you can add the following line to each machine's /etc/hosts file:
192.168.199.25 helpdesk
Using a DNS server
If you are running a local DNS server, you could add an entry there to resolve the helpdesk name to your IP. For explanations on how to do that, have a look here.