public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: "pierre.gronlier" <ticapix@gmail.com>
To: linux-media@vger.kernel.org
Subject: Re: Determining MAC address or Serial Number
Date: Fri, 30 Oct 2009 12:09:16 +0100	[thread overview]
Message-ID: <hcehh0$u72$1@ger.gmane.org> (raw)
In-Reply-To: <4AEAB4A6.6050502@tripleplay-services.com>

Lou Otway wrote, On 10/30/2009 10:40 AM:
> Hi,
> 
> I'm trying to find a way to be able to uniquely identify each device in
> a PC and was hoping to use either serial or MAC for this purpose.
> 
> I've looked at the documentation but can't find a generic way to read
> back serial numbers or MAC addresses from V4L devices? Does such a
> function exist?


Hi Lou,

I'm using the mac address to identify each device and to do so I created
this script which use dvbnet to create network interface from the dvb card.

a=<your adapter>
n=<your net device>
for ex. /dev/dvb/adapter1/net0 => a=1, n=0


# get mac address
iface=$(sudo /usr/bin/dvbnet -a $a -n $n -p 0 | awk '/device/ {print $3}')
sleep 1
mac_address=$(/sbin/ifconfig $iface | awk '/HWaddr/ {print $5}' | tr -d
':' | tr A-Z a-z)
num=$(sudo /usr/bin/dvbnet -a $a -n $n -l | grep 'Found device ' | awk
'{print $3}' | tr -d ':')
sleep 1
sudo /usr/bin/dvbnet -a $a -n $n -d $num 1> /dev/null



AFAIK, mac address are known only from the kernel and are not directly
exposed to the userland. I you manage to do something "cleaner", let me
know :)


Regards

pierre gr.

> 
> Thanks,
> 
> Lou



  reply	other threads:[~2009-10-30 11:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-30  9:40 Determining MAC address or Serial Number Lou Otway
2009-10-30 11:09 ` pierre.gronlier [this message]
2009-10-30 13:59   ` Lou Otway

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='hcehh0$u72$1@ger.gmane.org' \
    --to=ticapix@gmail.com \
    --cc=linux-media@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox