View device IP/MAC information connected to a specific port?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2015 10:59 AM
Hi,
How can I view the devices (IP Address/MAC address) connected to each port on the switch? I've seen a demo of thsibefore, but can't recall where to to go to view the information.
Thanks!
- Labels:
-
Small Business Switches
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2015 11:26 AM
To view all the IP addresses connected to the switch
1) go to Priviledge mode by the command "enable"
2) now type the command
hostname#show ip interface brief
To view the MAC address of the devices type the command
hostname#show mac-address-table
This will show you all the ip addresses and mac addresses of the devices connected to the ports respectively.
Regards,
Faizan Ahmed
Spooster IT services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2015 11:41 AM
Hope this answers the question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2015 05:43 PM
In addition to this a L2 switch with a L2 port will not show the IP address based on its port, but on its SVI at most:
castle-sw1#sh mac address-table | i Fa0/5
8 00c0.b799.f1a1 DYNAMIC Fa0/5
castle-sw1#sh ip arp | i 00c0.b799.f1a1
Internet 10.1.1.1 7 00c0.b799.f1a1 ARPA Vlan8
to me finding the MAC and IP on a port has always been a 2 step process. Still +3 though ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2019 09:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2020 06:38 AM
HOSTNAME #show ip interface brief
Interface IP-Address OK? Method Status Protocol
Vlan1 unassigned YES NVRAM administratively down down
Vlan99 10.165.128.42 YES NVRAM up up
FastEthernet0 unassigned YES NVRAM administratively down down
GigabitEthernet1/0/1 unassigned YES unset down down
GigabitEthernet1/0/2 unassigned YES unset up up
GigabitEthernet1/0/3 unassigned YES unset up up
GigabitEthernet1/0/4 unassigned YES unset up up
GigabitEthernet1/0/5 unassigned YES unset up up
GigabitEthernet1/0/6 unassigned YES unset up up
GigabitEthernet1/0/7 unassigned YES unset up up
GigabitEthernet1/0/8 unassigned YES unset administratively down down
GigabitEthernet1/0/9 unassigned YES unset up up
GigabitEthernet1/0/10 unassigned YES unset up up
GigabitEthernet1/0/11 unassigned YES unset up up
GigabitEthernet1/0/12 unassigned YES unset down down
GigabitEthernet1/0/13 unassigned YES unset up up
GigabitEthernet1/0/14 unassigned YES unset up up
GigabitEthernet1/0/15 unassigned YES unset down down
GigabitEthernet1/0/16 unassigned YES unset down down
GigabitEthernet1/0/17 unassigned YES unset down down
GigabitEthernet1/0/18 unassigned YES unset down down
Why am I getting unassigned . I know there are assigned IP's on those ports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2015 10:32 AM
hi Kevin
this possibility of collecting both MAC and IP info depends on role of your switch. Normally switch is L2 device working with MAC addresses and without care of L3 (IP addresses) layer. But in case you are running your device in L3 mode, you can collect IP addresses as well. All this MAC/IP collection has to be created from two databases:
- MAC addresses from MAC address table (show mac-address inteface XXX)
- IP addresses from ARP table (it contains both MAC and IP, but without info about physical interface) of switch (show arp)(again, only in case we talking about L3-mode of switch where switch stands like default gateway for all connected devices).
now you can relate both tables with matching MAC address records in both of them.
for automate collection you can use two options:
- SNMP protocol and querying ARP and MAC address MIB tables, or
- using script which connects to switch via telnet/ssh and using commands above collects from output desired information
I can tell you the first option (SNMP) is much more easier as you are just doing queries similar to database queries.
If your switch is in L2 mode, then another option could be:
- collect MAC addresses same way like with L3 switch, and
- collect IP addresses either:
- from DHCP server leased file which assigns IPs to connected devices, or
- from your router/gateway device
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2022 03:22 AM
inside switch i used the command "show cdp neighbor" it show devices id/name connected in their respectives switchport. (display information about neighbors).
then access the device you want and get his ip/mac.
