ACII have a JSON list of APIC FQDNs:[ "apic1.fabric1.somewhere.net", "apic2.fabric1.somewhere.net", "apic3.fabric1.somewhere.net", "apic1.fabric2.somewhere.net", ...] I can step through that list and login to each APIC and get the list of A...
I can build a picture of each "cluster as seen by node" as I iterate through the list of APIC FQDNs. However, it would be easier/faster to follow this logic: // apicList = [ that list of APICs in the first post ]// clusterList = []// for each APIC i...
API requests can be sent to any node in the cluster. As I said in the first post, I only have a list of APIC fully qualified domain names to iterate through. There is no guarantee that those FQDNs match the APIC nodes' node names. And since I am u...
Ah, so there's the rub! I have no way of knowing which APIC in the cluster (and therefore the node ID) I am connected to. That's why I am looking for some API call to essentially ask, "Hey you that is servicing this API call: what's your node ID/S...