This is not exactly a perl question... but here is one answer.

Simple MAC queries depend upon the operating system used:
Operating systemMethod
Windows 95 and newerwinipcfg
Windows NT and neweripconfig /all
Linux and some Unixifconfig -a
Macintosh with Open TransportTCP/IP Control Panel - Info or User Mode/Advanced
Macintosh with MacTCPTCP/IP Control Panel - Ethernet icon

In addition, you can also find the MAC of all computers on your network. If using linux, the arp utility (/sbin/arp) will display cached arp requests on your machine:

$ ./arp -a ? (192.168.1.1) at 00:06:25:E7:E8:09 [ether] on eth1 ? (192.168.1.101) at 00:06:25:2F:69:6F [ether] on eth1

You may have to ping the machine first to ensure the information is contained in the cache.

Manufacturer Information

On a side note, the first 24 bits of the MAC identifies the device manufacturer via the Organizationally Unique Identifiers (OUI). A simple perl script can probe the IEEE database of OUI to determine the related hardware per MAC address.

CPAN

You may also want to look at SNMP::BridgeQuery


SciDude
The first dog barks... all other dogs bark at the first dog.

In reply to Re: getting mac address by SciDude
in thread getting mac address by rhymejerky

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.