This is probably something dumb I missed but I can't figure it out.
I'm going through the
getting started pages and am at the part when I'm trying to query the service through the DNS API and it's not working.
Running a console in admin mode, I started a consul server with consul agent -dev -config-dir Configuration
The consul server starts up and finds the Web service. I can also see the DNS port is 8600
In a second consul in admin mode, I start nslookup, changed the server with server 127.0.0.1 and set the port with set port=8600.
I can see the server changed to 127.0.0.1 and I can see the port changed with the set all command
Then, I attempt a query with Web.service.consul but always get back *** localhost can't find service.Web.consul: No response from server.
I've looked at my firewall settings and I can see consul set there. I'm not sure what to look for at this point.
I've also tried telnet . 8600 but could not open a connection on that port, though I'm not sure if that would actually work.
Any ideas on what I am missing?
.Mark