How to get ip

2014-10-15 Thread saurabh
Hi All, I was wondering how do i get the ip of a running instance of a charm using hooks. I need the IP to bind the services of the charm against this IP. So when I deploy my charm I would like to get the IP of the instance and then change the configuration of the charm to use this IP to

Re: How to get ip

2014-10-15 Thread José Antonio Rey
The commands you are looking for are `unit-get private-address` for the private IP address, and `unit-get public-address` for the public IP address. If you will be using this value only inside your service, I would recommend getting the private address for the machine. -- José Antonio Rey On Oct

Re: How to get ip

2014-10-15 Thread saurabh
Hi José, Thanks for the prompt reply. The idea is to expose services of this node to another node using that IP. So what do you suggest?? On Wednesday 15 October 2014 07:07 PM, José Antonio Rey wrote: The commands you are looking for are `unit-get private-address` for the private IP

Re: How to get ip

2014-10-15 Thread José Antonio Rey
If both nodes are intended to be in the same cloud, then use the private address. -- José Antonio Rey On Oct 15, 2014 8:45 AM, saurabh saurabh.ku...@techblue.co.uk wrote: Hi José, Thanks for the prompt reply. The idea is to expose services of this node to another node using that IP. So what