--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/hashicorp/consul/issues
IRC: #consul on Freenode
---
You received this message because you are subscribed to the Google Groups "Consul" group.
To unsubscribe from this group and stop receiving emails from it, send an email to consul-tool+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/consul-tool/6410a28a-d0cf-4fe0-a11d-92ceb9788e63%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
That sounds fantastic. I'll work on that today.BTW, I think you get the hat-tip for the net=host recommendation that I mentioned. Are you still running that way and recommend it?
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/hashicorp/consul/issues
IRC: #consul on Freenode
---
You received this message because you are subscribed to the Google Groups "Consul" group.
To unsubscribe from this group and stop receiving emails from it, send an email to consul-tool+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/consul-tool/b5c7eee8-699f-4b42-83c4-ca555afcaa5d%40googlegroups.com.
That's only if you're running Consul in a container, which we do not -- I don't really see the point, as it's a single static binary.
On Thu, Aug 4, 2016 at 8:27 AM, Chris Stevens <chris....@traxo.com> wrote:
That sounds fantastic. I'll work on that today.BTW, I think you get the hat-tip for the net=host recommendation that I mentioned. Are you still running that way and recommend it?
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/hashicorp/consul/issues
IRC: #consul on Freenode
---
You received this message because you are subscribed to the Google Groups "Consul" group.
To unsubscribe from this group and stop receiving emails from it, send an email to consul-tool...@googlegroups.com.
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/hashicorp/consul/issues
IRC: #consul on Freenode
---
You received this message because you are subscribed to the Google Groups "Consul" group.
To unsubscribe from this group and stop receiving emails from it, send an email to consul-tool+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/consul-tool/267ce643-7665-4e47-b2d5-7a502ee7a301%40googlegroups.com.
"client_addr": "0.0.0.0",
"bind_addr": "0.0.0.0",
"addresses" : {
"dns": "0.0.0.0",
"http": "0.0.0.0",
"https": "0.0.0.0",
"rpc": "0.0.0.0"
},
"advertise_addr": "127.0.0.1",
2) Configure dnsmasq* My dnsmasq config only enabled "interface=lo".* Enabling "interface=dummy0" didn't work.* I found that I could ping from a container to 169.254.1.1, but the request would hang for dns requests to that address.* Watching the dnsmasq query logs, I removed the interface restrictions and saw the docker0 interface was making the requests.* I configured dnsmasq to listen on "interface=docker0" and was able to get lookups to the host.