Skip to content

Instantly share code, notes, and snippets.

Created November 11, 2009 14:05
Show Gist options
  • Save anonymous/231968 to your computer and use it in GitHub Desktop.
Save anonymous/231968 to your computer and use it in GitHub Desktop.
35c35,39
< print Data::Dumper->Dump([$entity_view]);
---
> my $guest=$entity_view->guest if $entity_view->guest;
> my $net=$guest->net if $guest->net;
> foreach my $nic (@{ $net }){
> print $nic->macAddress."\n" if $nic->macAddress;
> }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment