Hi Azure masters,
I've created a cloud service named "myService.cloudApp.net". And I've 9 machines inside this cloud service.
Out of these 9 machines 8 are linux based and one of them is Windows 2012 server. On the windows server I've hosted the DNS server. I've created 8 entries for these 8 machines and same entries I've maintained in the /etc/hosts of the linux machines.
Here are the entries from my Windows Server (C:\Windows\System32\drivers\etc\hosts file)
11.128.1.1 myDNS
11.128.2.1 machine01
11.128.2.2 machine02
11.128.2.3 machine03
11.128.2.4 machine04
11.128.2.5 machine05
11.128.2.6 machine06
11.128.2.7 machine07
11.128.2.8 machine08
In the windows server I've added the following entries in the forward look-up primary zone with a name "dummyApp.website.fr" and added the new hosts under the lookup zone, with names machine01,machine02,etc with fqdn names like (machine1.dummyApp.website.fr), and given corresponding IP addresses. Also added the corresponding reverse lookup zone with name : 128.11.in-addr.arpa.
Following are the entries from all 8 machines's /etc/hosts.
11.128.1.1 myDNS.dummyApp.website.fr myDNS11.128.2.1 machine01.dummyApp.website.fr machine01
11.128.2.2 machine02.dummyApp.website.fr machine02
11.128.2.3 machine03.dummyApp.website.fr machine03
11.128.2.4 machine04.dummyApp.website.fr machine04
11.128.2.5 machine03.dummyApp.website.fr machine05
11.128.2.6 machine06.dummyApp.website.fr machine06
11.128.2.7 machine07.dummyApp.website.fr machine07
11.128.2.8 machine08.dummyApp.website.fr machine08
I've deployed the application with registering FQDNs like machine01.dummyApp.website.fr, etc.
From the application when I am trying to hit the services running on machine01, it opens the page machine01.dummyApp.website.fr:9000 but browser throws the message saying : Page you requested is not available.
But if I hit the URL myService.cloudApp.net:9000 I see the required page.
Can any one help with setting up the things correctly so that when URL is hit to machine01.dummyApp.website.fr it shows the correct page myService.cloudApp.net ?
Many thanks.
Regards,
-A