Networking Forums

Networking Forums > Computer Networking > Linux Networking > how to browse router's MAC addresses

Reply
Thread Tools Display Modes

how to browse router's MAC addresses

 
 
deepakpresent@gmail.com
Guest
Posts: n/a

 
      10-18-2007, 06:40 AM
Hi,
is it possible to programatically get the list of a router's all LAN
and WLAN mac addresses. if u know any windows API / library / any
code/ Link... anything... that would help me a lot!

Secondly, i want to get any unique thing in the router. it should be
unique in the world. probably serial no, or anything else...
( programatically. )

i thought of getting UPnp device # of router, and in case of bonjour
routers, get Bonjour device#. But older routers won't support any of
these. That's what i think, please correct me if i'm wrong.

Thanks a lot.. any help is appreciated.
Deepak

 
Reply With Quote
 
 
 
 
david
Guest
Posts: n/a

 
      10-18-2007, 09:46 AM
On Wed, 17 Oct 2007 23:40:20 -0700, deepakpresent rearranged some
electrons to say:

> Hi,
> is it possible to programatically get the list of a router's all LAN
> and WLAN mac addresses. if u know any windows API / library / any code/
> Link... anything... that would help me a lot!
>
> Secondly, i want to get any unique thing in the router. it should be
> unique in the world. probably serial no, or anything else... (
> programatically. )


The MAC address should be unique.

>
> i thought of getting UPnp device # of router, and in case of bonjour
> routers, get Bonjour device#. But older routers won't support any of
> these. That's what i think, please correct me if i'm wrong.
>
> Thanks a lot.. any help is appreciated. Deepak


 
Reply With Quote
 
Jack \(MVP-Networking\).
Guest
Posts: n/a

 
      10-18-2007, 04:33 PM
Hi
Router is a general word, which type and level of performance you are
talking about.
Depending on the Router, it usually has one core IP and one MAC address.
Entry Level combination units (like Wireless Cable/DSL Router) might be
associated with more than one IP and MAC.
If you are talking about MAC and IP of work station that are connected to
the Router. Each Router has it own system to provide it, and what
programming you would like to do have to fit the specific category of
Routers.
http://www.ezlan.net/faq#

<(E-Mail Removed)> wrote in message
news:(E-Mail Removed) ups.com...
> Hi,
> is it possible to programatically get the list of a router's all LAN
> and WLAN mac addresses. if u know any windows API / library / any
> code/ Link... anything... that would help me a lot!
>
> Secondly, i want to get any unique thing in the router. it should be
> unique in the world. probably serial no, or anything else...
> ( programatically. )
>
> i thought of getting UPnp device # of router, and in case of bonjour
> routers, get Bonjour device#. But older routers won't support any of
> these. That's what i think, please correct me if i'm wrong.
>
> Thanks a lot.. any help is appreciated.
> Deepak
>


 
Reply With Quote
 
Jeff Liebermann
Guest
Posts: n/a

 
      10-18-2007, 04:59 PM
(E-Mail Removed) hath wroth:

>is it possible to programatically get the list of a router's all LAN
>and WLAN mac addresses.


Sure. If your router is running a real operating system, just run:
arp -a

For example:
dellbert (192.168.1.11) at 00:02:B3:1E:39:ED [ether] on br0
xxxxxx (63.249.85.1) at 00:10:67:000:9B [ether] on vlan1
micron (192.168.1.113) at 00:0F:66:14:E5:4B [ether] on br0
dellinquent (192.168.1.50) at 00:40:05:C7:1C:44 [ether] on br0
dellicious (192.168.1.51) at 00:C0:A8:7F:FE:92 [ether] on br0

Hmmm... it doesn't list the LAN side IP address of the router
(192.168.1.1) but that's already known because you can't get the arp
information out of the router without first knowing the router's IP
address.

I guess we have to use ifconfig, which results in something like this:

br0 Link encap:Ethernet HWaddr 00:14:BF:B9:10:13
inet addr:192.168.1.1 Bcast:192.168.1.255
Mask:255.255.255.0

br0:0 Link encap:Ethernet HWaddr 00:14:BF:B9:10:13
inet addr:169.254.255.1 Bcast:169.254.255.255
Mask:255.255.0.0

eth0 Link encap:Ethernet HWaddr 00:14:BF:B9:10:13

eth1 Link encap:Ethernet HWaddr 00:14:BF:B9:10:15

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0

vlan0 Link encap:Ethernet HWaddr 00:14:BF:B9:10:13

vlan1 Link encap:Ethernet HWaddr 00:14:BF:B9:10:14
inet addr:63.249.85.127 Bcast:63.249.85.255
Mask:255.255.255.0

>if u know any windows API / library / any
>code/ Link... anything... that would help me a lot!


Sorry. I are not a programmist and don't know anything about
programming.

> Secondly, i want to get any unique thing in the router. it should be
>unique in the world. probably serial no, or anything else...
>( programatically. )


The MAC address of the router is unique.

>i thought of getting UPnp device # of router, and in case of bonjour
>routers, get Bonjour device#. But older routers won't support any of
>these. That's what i think, please correct me if i'm wrong.


If this is some kind of copy protection scheme, methinks you will need
something more sophisticated. MAC addresses can be spoofed, forged,
or cloned.

--
Jeff Liebermann (E-Mail Removed)
150 Felker St #D http://www.LearnByDestroying.com
Santa Cruz CA 95060 http://802.11junk.com
Skype: JeffLiebermann AE6KS 831-336-2558
 
Reply With Quote
 
karthikbalaguru
Guest
Posts: n/a

 
      10-19-2007, 09:32 AM
On Oct 18, 11:40 am, deepakpres...@gmail.com wrote:
> Hi,
> is it possible to programatically get the list of a router's all LAN
> and WLAN mac addresses. if u know any windows API / library / any
> code/ Link... anything... that would help me a lot!


arp -a

>
> Secondly, i want to get any unique thing in the router. it should be
> unique in the world. probably serial no, or anything else...
> ( programatically. )


Here, MAC address will help u.

Karthik Balaguru

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to browse router's MAC addresses deepakpresent@gmail.com Wireless Internet 4 10-19-2007 09:32 AM
Which should issue the DHCP I.P. addresses? (modem-router/wireless router) Siegen Network Routers 5 03-01-2007 11:06 AM
Ip addresses in new router Jeff Wireless Networks 2 10-06-2006 06:42 PM
Static Ip's and BT - I have just recieved A BT router with 5 static IP Addresses. However, I want 5 computers in the office to use only one of the addresses. ery Difficult Question Nattasian Broadband 3 07-13-2004 08:55 AM
RH9 + D-link 704P router can't browse google Chris Linux Networking 0 08-13-2003 06:09 AM



1 2 3 4 5 6 7 8 9 10 11