vote up 2 vote down star
1

I have a VMWARE ESX server. I have Redhat VMs running on that server. I need a way of programatically testing if I'm running in a VM. Ideally, I'd like to know how to do this from Perl.

flag

79% accept rate

5 Answers

vote up 6 vote down check

See the answer to Detect virtualized OS from an application?.

link|flag
vote up 3 vote down

You shouldn't 100% depend on any method, as they are undocumented features/bugs - they work on some host OSes and some virtualization solutions, but there is no guarantee that they will continue working; indeed, the whole point of virtualization is to be as undistinguishable from real metal as possible. With this in mind, the blue pill red pill (which is mentioned in the accepted answer to this similar question) seems to work ... for now.

link|flag
vote up 2 vote down

VMWare has a couple of SDK's, including an SDK for Perl.

link|flag
vote up 1 vote down

I think (depending on the version of esx) you can inspect at the MAC address of the NIC. VMs running in VMWare NIC will have a manufacturer string assigned to VMWare, no the physical NIC MAC. (We were trying to spoof the MAC to VM a license server and newer versions won't let you do it.) Also, this won't guarantee you aren't running on a physical box with a NIC spoofed to look like VMWare, but that would be an odd thing to do in most circumstances anyway.

link|flag
Virtualbox lets you enter any MAC you want – Martin Beckett Feb 12 at 15:45
@mgb fair enough, but OP was asking about VMware ESX.. – sascha Feb 12 at 22:21
I would assume that you can change it in ESX. It's a very useful feature if you are trying to run licenced apps in a VM – Martin Beckett Feb 17 at 18:31
vote up 1 vote down

Try the Red Pill.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.