Hi Guys. How are you?
I have a specific External Network in my vCD environment, and I am try to retrieve a list of Organizations or VDC that are using IP Addresses of this External Network as you can see bellow:
I could retrieve all IP Address that are in use through the command bellow in PowerCLI:
$myExNetwork = Get-ExternalNetwork -Name INTERNET02
$myExNetView = $myExNetwork.ExtensionData
$myExNetView.Configuration.IpScopes.IpScope.AllocatedIPAddresses.IpAddress
But I would like to retrieve a list that shows to me both the IP Address and the name of organization or vdc that is using this IP. For example:
Org Name | IPAddress |
Customer01 | 192.168.5.10 |
Customer02 | 192.168.5.11 |
Customer03 | 192.168.5.12 |
Someone can help me saying if this is possible and, if yes, how can I do it?
Thank you very much.