- HOW CAN I FIND THE HOST ID FOR MAC HOW TO
- HOW CAN I FIND THE HOST ID FOR MAC UPDATE
- HOW CAN I FIND THE HOST ID FOR MAC SOFTWARE
- HOW CAN I FIND THE HOST ID FOR MAC CODE
- HOW CAN I FIND THE HOST ID FOR MAC MAC
Need to find how, but that's not a perl issue now :)
HOW CAN I FIND THE HOST ID FOR MAC HOW TO
I think my problem is more how to use SNMP to get what Perl script which would quickly gather all the informations There's many switchs and routers, so I wanted to have a little The switch it is plugged, I know where in the building theĬomputer is.
HOW CAN I FIND THE HOST ID FOR MAC MAC
With the MAC address, it's easy to locate on which port ofĪ switch it is plugged. Most of the time, it's a DHCP IP address, so there is many The only information I have at first, is the IP address (and Sometimes I need to locate quickly a computer in the buidling and MAC address to uniquely identify users or something like that MAC (or any type of network address) Why do you need the remote box's MAC address? If you're trying to use The boxes MAC address is part of its IPv6 address by default (this can easily If the entire path from you to the remote host is IPv6 and not IPv4,.You can SNMP poll it to get its mac address If the remote box is running SNMP and you know its community string.I can think of a few ways, but they're kind of out there
HOW CAN I FIND THE HOST ID FOR MAC UPDATE
Update 2: Working from riffraff's Re: Re: Re: How can I find a MAC address from aremote IP ? post above, I found that (code) MAC n' IP cheese can work for remote segments just by replacing the "Querying ARP table." section with
HOW CAN I FIND THE HOST ID FOR MAC CODE
If you are indeed looking for the MAC address of a local-to-your-LAN-segment device, (code) MAC n' IP cheese includes code of OWTDI.Īs lhoward points out, IPv6 is substantially different. Token-Ring and FDDI devices also have MAC addresses but, IIRC, you get into (big|little)-endian stuff there.Īrcnet and Appletalk used their own funkomatic hardware addressing schemes.
There is no way that you can find MAC addresses outside Total non Perl reply, but just a reply to try and help you:
HOW CAN I FIND THE HOST ID FOR MAC SOFTWARE
I found some software that hunts down all the MAC addresses on my subnet, but no further.
But I can't find this offending device by the MAC address. The result is the bootp program filling the syslog with error messages about a bad address from this MAC address. Somewhere on our network there is a RAS that's bugging my SCO UNIX box every few seconds. I hope that is what you are looking for, coz it wont If you are looking at a remote IP the only source MACĪddress you will find on that packet is the one of the I don`t know how deep Perl can go under the IP stack Quality Perl Programming and Unix Support Oops ! You're right arp will only work with local IP addresses. Re: Re: Re: How can I find a MAC address from aremote IP ? Re: (tye)Re: How can I find a MAC address from aremote IP ? So I would assume that the original question was asking for a MAC address of an Ethernet (and non-PPP) adapter that was not local to the computer but that was in the local broadcast domain - nothing else makes much sense. A MAC address is an Ethernet thing and you don't run PPP over Ethernet. Nothing is going to tell you the MAC address of something that is not within your local broadcast domain! You'd have to get some code to run in the local broadcast domain of the remote IP address and have it forward you the information.Īnd PPP links don't have MAC addresses. (tye)Re: How can I find a MAC address from aremote IP ?
Plus, I don't think you get a valid MAC address from a PPP link either. You sure arp works on a distant remote IP? Re: Re: How can I find a MAC address from aremote IP ? " Only Bad Coders Badly Code In Perl" (OBC2IP) To refresh the arp table in the case the entry is not present) (It may be useful to ping the host before using arp Or using `arp -a` and a regex (dirty but works on unix and windows.) NetPacket::ARP should be able to do the job. Re: How can I find a MAC address from aremote IP ?