Trace a particular MAC address

Hi
I run an apple network and I have a device somewhere on my network with the same IP address as my router! I know the MAC address (00:1e:52:7e:c2:31) of the rogue device, which I know is an Apple product - how can I find out what it is?
Please help if you can.
Thanks

95% of the clients are Apple machines. The server is a PowerPC G5 running Tiger. We use a wireless system from a company called Meru. Currently, this wireless network is not password protected, but it could be. DHCP is used to dish out IP addresses. All traffic goes through a Proxy Server (Squid) and it is this box that is reporting a conflict of IP addresses- something with the same IP as the router! I have the MAC address of the rougue, but it would be helpful to know what I am looking for - iPhone, iMac, iPod touch.....
Hope this helps.
Anthony

Similar Messages

  • Device in the data base getting PXE aborted --unable to find machine using Mac address /resouce iD

    hi
    when I deploy osd to my unknown collection iam getting PXE aborted  ..earlier we used to delete machines from sccm
    by searching query based on Mac address .and clear last pxe advertisement option , but iam finding certain machines getting PXE aborted  shows device in data base when we search these machines using mac address /resouce iD unable to find in sccm or
    sccm data base . I have found some blogs where unknown collection parameters are changed to decommissioned value from "o" to "1"
    but unable to build new unknown collection , its very difficult to delete machines from SCCM console every time when pxe aborted . machines are getting pxe aborted some way its known to SCCM ,its difficult to import machines every time before machines are
    image .is there any permanent solution to override pxe aborted ,even systems are known to SCCM ,we are in sccm 2012 infrastructure
    hoping a positive replay from all technical leads
    thanks in advance
    ankith

    Hi,
    "is there any permanent solution to override pxe aborted ,even systems are known to SCCM ,we are in sccm 2012 infrastructure"
    I think there is not a permanent solution.  
    It could help if you first run the configuration manager report to locate a particular MAC address.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Blocking MAC-Address on Cisco Router

    Can anyone tell me how to block a particular mac-address on cisco router 2900 series? There are few pc's in the network which i dont want to get them into the network anyhow. Can anyone help me out with this?
    Regards,
    Abhishek

    With your problem-description
    There are few pc's in the network which i dont want to get them into the network anyhow
    the strategy of using the router to block them is the wrong way because the PCs are already on the network and the blocking has to be done at the entry-points which are the switches.
    But if you want to stop them leaving your network on the router by filtering the MAC, you could also use modified QoS-mechanisms:
    class-map match-any UNWANTED-PCs
      match source-address mac AAAA.BBBB.CCCC
      match source-address mac DDDD.EEEE.FFFF
    policy-map IN-POLICY
      class UNWANTED-PCs
       drop
    int GigabitEthernet0/0
      description LAN-Interface
      service-policy input IN-POLICY
    Don't stop after you've improved your network! Improve the world by lending money to the working poor:
    http://www.kiva.org/invitedby/karsteni

  • Obtain IP address from Mac address

    Hi all,
    Is ARD capable of obtaining IP addresses from mac addresses?
    Please advise.

    ARD's System Overview can display IP addresses and MAC addresses for computers it manages. If you're asking whether ARD can scan a network for a particular MAC address and return the IP address for a computer that's not in ARD's list of managed computers, then no, it can't (at least not by any method I know of). ARD is really not a network scanning/management application; it's for managing Mac workstations.
    Message was edited by: Dave Sawyer

  • How to trace MAC  Address Of a Machine with PL/SQL

    As MAC Address Of a Machine is Unique, for security, how to use trace the MAC Address of a machine on a WAN/LAN and record it in the database.Please note that it is important part of Audit Trail

    MAC ADDRESS is unique, whereas IP Address is variable. Experienced user can very easily change (fake) MAC address.
    Maybe you will be surprised it is trivial as changing of IP.
    You may be able to build a component that is external to the database that can determine a MACOn linux (for example) you could use "arping" command or retrive MAC adressess from arp cache using "arp" command. arp cache stores MAC adresess of all computers which are or was connected to machine. These commands can run only privileged user (root) but you could give execute privilege for specific user (oracle) via "sudo". You can execute this commands using external procedure or call it from Java stored procedure.
    It think tracking of IP will be enough beause IP must be unique on network (or in specific subnet).
    So MAC tracking is waste of time (IMHO).

  • How to get mac address in macbook pro

    Go to System Preference -> Network -> Advanced -> Hardware

    It's also available in System Information, under the Network section.
    Hold down option and select System Information from the Apple menu.
    Select Network, then the particular service type: Airport, Ethernet, Firewire
    Scroll down till you see MAC Address:
    You can also reveal it in the Terminal with ifconfig. en0 is usually ethernet, en1 is Airport, but that depends on your configuration.

  • How to trace a particular database user  ?

    Everyone knows that there is an Oracle username "SCOTT" in all the database installation.
    How to enable tracing for the SCOTT user, so I can can get all the tracing info of the user SQL's
    Note: I know I can get the sid,serial# info and trace a particular session id, but here i wanted to trace the entire user SCOTT, no matter how many Sessions he opens.
    Help me with this !!!!

    Phil,
    The one what you listed tracing by service name is interesting, correct me if I understood it wrong way.
    Lets say:
    Database Host name: ABC_HOST
    Database Instance & DB: ABC
    Port 1521
    Now I have 3 computers connecting to this database using the following TNSnames.ora
    ====================================
    ABC =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp.world)
    (PROTOCOL = TCP)
    (Host = abc_host)
    (Port = 1521)
    (CONNECT_DATA = (SID = ABC)
    ======================================
    Now based on your suggestion you are saying that one computer from which I wanted to trace
    the database sessions, I can create a new entry in the tnsnames.ora as follows:
    ====================================
    ABCTRACE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp.world)
    (PROTOCOL = TCP)
    (Host = abc_host)
    (Port = 1521)
    (CONNECT_DATA = (SID = ABC)
    ======================================
    Now using the DBMS monitor package i can do this to start tracing DBMS_MONITOR.serv_mod_act_trace_enable('ABCTRACE') )
    Correct me if I am wrong

  • Getting the MAC address of local computer

    Hello developers! Can you to tell me how I can to get a MAC address of local computer in Java, JDK 1.4.0????
    Thank you!

    Hi,
    There isn't a particular method you can call. However check out this thread.
    http://forum.java.sun.com/thread.jsp?forum=4&thread=239391
    This has sample code to get the MAC address on Windows.
    Regards,
    Roopasri Vittal
    Developer Technical Support
    Sun Microsystems
    http://sun.com/developers/support

  • How to see mac address in IPS 4240 ???

    Hi all,
    How to see mac-address of inline-vlan-pair ?  and how to see mac-address of management interface in IPS ?
    Regards,
    Kiran

    Hello Kiran,
    The inline-vlan-pair itself is tied to a particular interface. So you're really asking for the MAC address of the interface associated with the inline-vlan-pair.
    The MAC address of sensing ports will be added to a "show interfaces" via CSCse84414. You can currently view the MAC address of sensing interfaces by doing an "ifconfig -a" from the service account.
    Thank you,
    Blayne Dreier
    Cisco TAC IDS Team
    **Please check out our Podcast**
    TAC Security Show: http://www.cisco.com/go/tacsecuritypodcast

  • How to get MAC Address of a stolen laptop by using Serial number?

    Hi my Lenovo G560 laptop was stolen on 17/04/13. I have the serial number. In order to trace the laptop, I need the MAC address. Unfortunately I don't know the MAC address of my stolen laptop. My question is, is it possible to get the MAC address by using serial number? 
    Serial Number: xxxxxxxxxx
    Moderator Note; s/n edited for member's own protection

    hi Subrahmanya,
    Sorry to hear about your trouble. Unfortunately, the only way to get the MAC address is to run a query on the unit (physically or or remotely). Using the serial number to query information on the system will list the devices that are included on the unit (this doesn't include the MAC address).
    Regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • How to get MAC ADDRESS in mais.asc using FMS

    Hello,
    i need to get the Mac Address of every machine connected to my fms, is that possible with FMS?
    THX

    It's also available in System Information, under the Network section.
    Hold down option and select System Information from the Apple menu.
    Select Network, then the particular service type: Airport, Ethernet, Firewire
    Scroll down till you see MAC Address:
    You can also reveal it in the Terminal with ifconfig. en0 is usually ethernet, en1 is Airport, but that depends on your configuration.

  • SCOM Network Discovery - Duplicate nodes with different Device Keys (MAC address)

    Hi There,
    We have deplyed SCOM 2012 SP1 for server and network monitoring. In the "Network Devices" view, there are few duplicate node entries for the same device. When i look at the details of each entry, the device keys (MAC address) are
    different. for example, if there are 3 entires for the same device, only one will have the correct MAC address and remaining 2 are incorrect.
    Have anyone came across such issue? Any solution to avoid the duplicates?
    Thanks.
    Venu.
    Best regards, Venu.

    Last Thursday (9/25/14), Microsoft provided me with an updated version of a file that is used as part of the discovery process.  At first, it appeared to only resolve the issue for some devices which was disappointing.  On Saturday, I decided
    to remove all managed devices and rediscover everything from scratch.  We have 237 devices to monitor.  Since Saturday, I had one ICMP only device duplicate itself, but after I removed the duplicate, I have not had any other duplicates created and
    there have been many rediscoveries ru nsince then.  So far so good.  I've asked Microsoft to keep the case open until next Monday.  This weekend, I have a full discovery scheduled to run on a schedule.  I'll feel good after that if there
    are still no duplicates.
    The file replaced is "ic-iftable.asl" which is located on each management server in the path ""\[ SCOM install directory]\Server\NetworkMonitoring\rules\discovery".  I'm not sure if I'm allowed to share the updated version of
    the file.  I have not received an explanation from the support technician yet as to the root cause.  They took at least 5 sets of trace logs during the discovery and subsequent rediscovery process before giving me this updated file.  I'll let
    you know.

  • Tools to find a mac address on a port in my network

    I would like to find a tool to help me to easily locate a mac address on the network.
    At the moment I use the following comands :
    On the central switch : sh mac-address-table
    then sh cdp neighbors to locate the witch on with the mac address is connected
    and sh mac-address-table again .

    Hi
    With Ciscoworks Campus Manager you can easily find any MAC connected to your network. But you need to buy the LMS suite, and it's not for free :-)
    An other way is to use a Layer 2 trace, but all devices in between have to support that feature, don't ask me which platforms/software releases, do it or not.
    Simon

  • Facing issues on binding VFC to a MAC-Address on Nexus 5010

    Hello,
    After creating a VFC interface, I am binding it to Ethernet MAC-Address of the CNA. On the wireshark trace it is observed that the initiator is sending a VLAN request but there is no response from the switch hence no FLOGI is seen.
    Although when I bind the VFC to the ethernet interface, everything works well and the initiator logs into the switch. Is there a extra config that needs to be done while a VFC is bound to a MAC?
    Thanks,
    Somayajulu

    No other special configuration.. Just make sure the MAC address is correct one. If this interface connects to a single CNA/Server, you could just bind it to physical ethernet interface. Binding to a MAC address is needed only if you have multiple servers connected on the interface through a FIP snooping device.

  • Mac Address Tracing - CatOS

    I have noticed a lot of bad traffic coming from one particular computer on the network. Normally not a big deal, I found the MAC Address in my DHCP Table, logged into a switch, did a 'sh mac-address-table address <mac address>', found what port it was connected to (it was another switch), I then did a 'sh cdp neighbor detail' got the ip address, telneted to that switch, rinsed and repeated... until I hit a switch that had CatOS.
    My question is how do I do this same type of thing on CatOS? I know how to get everything else except which port it is on like the 'sh mac-address-table address <mac address>' command gives me.

    just type show cam it will clearly tell where the mac-address is residing.
    eg. lets say that 6509--->2950---->(my pc)
    in 6509 type show cam
    it show some thing like this...
    Cat6509> (enable) sh cam 00:02:B3:87:EA:10
    * = Static Entry. + = Permanent Entry. # = System Entry. R = Router Entry.
    X = Port Security Entry $ = Dot1x Security Entry
    VLAN Dest MAC/Route Des [CoS] Destination Ports or VCs / [Protocol Type]
    194 00-02-b3-87-ea-10 4/7 [ALL]
    on 4/7 2950 is connected, in that again you type the pc mac address.
    2950#sh mac-address-table address 00-02-b3-87-ea-10
    Mac Address Table
    Vlan Mac Address Type Ports
    194 0002.b387.ea10 DYNAMIC Fa0/2
    Total Mac Addresses for this criterion: 1
    which means the pc is connected on fasethernet 0/2 port.
    hope this helps,
    rate this post.

Maybe you are looking for

  • CProjects and DMS

    Hi, We're in the BBP phase and wondering if we are going to use DMS for structuring documents in relation to cProject. However as I can read this is more or less an object link. Is there possibilities to automatically copy the cProjects structure int

  • How to add a new option to ADF dropdown

    Hi, I got a title field (#{bindings.title.inputValue}) which is pulled from AD, and 'titlesList' from a database. The problem is that if the title doesn't exist on the selection, I will get a blank option. When it is saved, it becomes empty. <af:sele

  • I've lost quicktime

    Hi everyone! I am running a G5 on 10.5.8. My quicktime has been deleted (thanks friends) and i have downloaded quicktime 769. so i installed and restarted my computer but i still cant open it. i'll search quicktime but it only comes up with the insta

  • I have ipod touch Trilogy, i'm not able to install any game in it.is my ipod supports to game?

    i have ipod touch Trilogy, i'm not able to install any game in it.is my ipod supports to game?

  • Centered in IE9 Browser?

    Hello, I am trying to get my Captivate output to be centered (located toward the top of the browser and centered horizontally) in the IE browser. When I click Yes to view the output after publishing, the project appears as intended, but when I post t