how to find VM by IP address
Unfortunately there isn't. You could get that information directly from the DB using the following SQL query,
select * from vm_instance where id in (select instance_id from nics where removed is null and ip4_address='<IP_ADDRESS>');
Hope that helps.
Somesh Naidu
CITRIX EMPLOYEES
Comment actions