Codebase list python-pyric / 6fafeb9
New upstream version 0.1.6+git20191210 Sophie Brun 4 years ago
42 changed file(s) with 1870 addition(s) and 6203 deletion(s). Raw diff Collapse all Expand all
1818 #FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1919 #
2020 #DEALINGS IN THE SOFTWARE.
21
2122
2223 # Byte-compiled / optimized / DLL files
2324 __pycache__/
162162
163163 v 0.1.6 Continue with STA functionality
164164 o Issue #21 resolved. openconnect (renamed to connect) now works. (had to fix
165 how the ssid was being passed. as a string with a affixed null byte, it would
165 how the ssid was being passed. as a string with an affixed null byte, it would
166166 fail but as unspec, it succeeded)
167167 - issue 1: wpa_supplicant must be turned off
168168 - issue 2: caller/user must configure dhcp request or inet themselves
180180 under the following conditions a) the type is not managed or b) there is no
181181 other device currently associated with the new card's phy. Have also determined
182182 that integrated cards are also suspect to this bug?
183 o made pyric error messages less ambiguous
183 o made pyric error messages less ambiguous
184 o changed template and stub so that all pyw functions can now use named parameters
185 if desired
186 - i.e. pyw.freqset(card=<Card>,rf=2412,nlsock=<nlsocket>) or
187 pyw.freqset(<Card>,2412,None,<nlsocket>)
188 o renamed the following functions:
189 - inetget to ifaddrget
190 - inetset to ifaddrset
191 - ip4set to inetset
192 - netmaskset to maskset
193 - broadcastset to bcastset
194 o adddres related functions mac and ifaddr return True on success, False otherwise
195 o commented out constants in sockios_h that are not being used
196 - no significant change but will reduce bytecode size
197 o fixed error in iswireless (referenced in wifiphisher #329)
198 o fixed phylist failure for OpenWRT as pointed out by sarom5
199 o Corrected README.md (Issue #27)
200 o Added scripts directory
201 - added ouiupdate.py to scripts directory
3838 activities, or otherwise in violation of any applicable law, regulation or legal
3939 agreement.
4040
41 See <http://www.gnu.org/licenses/> for a copy of the GNU General Public License.
41 See <http://www.gnu.org/licenses/> for a copy of the GNU General Public License.
33 # Include subdirectories
44 # note to self: even including recursive-include here, have to follow up by
55 # ensuring data (non .py) files are also referenced in setup.py
6 recursive-include examples
6 #recursive-include examples
77 recursive-include examples *.py
88 recursive-include docs *.pdf
99 recursive-include pyric/utils/data *.txt
0 # PyRIC 0.1.6: Python Radio Interface Controller
0 # PyRIC 0.1.6.4: Python Radio Interface Controller
11 ## Linux wireless library for the Python Wireless Developer and Pentester
22 ![](docs/logo.png?raw=true)
33
55 [![PyPI Version](https://img.shields.io/pypi/v/PyRIC.svg)](https://pypi.python.org/pypi/PyRIC)
66 ![Supported Python Versions](https://img.shields.io/pypi/pyversions/PyRIC.svg)
77 ![Software status](https://img.shields.io/pypi/status/PyRIC.svg)
8 [![Documentation Status](https://readthedocs.org/projects/pyric/badge/?version=latest)](http://pyric.readthedocs.io/en/latest/?badge=latest)
98
109 ## 1 DESCRIPTION:
1110 PyRIC (is a Linux only) library providing wireless developers and pentesters the
3433 udevadm, airmon-ng and macchanger in your hands (or your program).
3534
3635 ### a. Additions to iw
37 Several "extensions" have been added to iw:
36 Several "extensions" have been added to iw (See docs/PyRIC.pdf for more
37 information):
3838 * Persistent sockets: pyw provides the caller with functions & ability to pass
3939 their own netlink (or ioctl socket) to pyw functions;
4040 * One-time request for the nl80211 family id: pyw stores the family id in a
186186 ... #handle the error
187187 ```
188188
189 Work is ongoing to help clarify some of the error messages returned by default
190 by os.strerror for example.
191
192189 Read the user guide, or type dir(pyw) in your console to get a full listing
193190 of all pyw functions.
191
192 The examples below can also be run with named arguments.
194193
195194 ### a. System/Wireless Core Functionality
196195 These functions do not work with a specific device rather with the system.
206205 ['wlan0']
207206 >>> pyw.isinterface('eth0') # check eth0 for wireless
208207 False
209 >>> pyw.iswinterface('wlan0')
208 >>> pyw.iswireless('wlan0')
210209 True
211210 >>> pyw.phylist() # list all current phys (Note device ASW phy1)
212211 [(1,'phy1), (0, 'phy0')]
865864 * \_\_init\_\_.py initialize nlhelp subpackage
866865 * nsearch.py nl80211 search
867866 * commands.help nl80211 commands help data
868 * attributes.help nl80211 attributes help data
867 * attributes.help nl80211 attributes help data
868 + scripts script subpackage
869 * ouiupdate fetch oui.txt & update oui dict
0 8) Two commands that would add information of minor value
1 o ethtool. uses ioctl but does not follow same pattern as ifconfig seems
2 to use
3 - ethtool -i <dev> gives driver information including firmware-version
4 and udevadm (does what hardware.py does)
50 11) tried NL80211_CMD_GET_WIPHY, setting _WIPHY_TX_POWER_LEVEL but did
61 not return the current power level - currently cannot find anything in nl80211.h
72 that could be used to get tx power
2520 31) add VHT processing to sta_info bitrate
2621 39) parsing wiphy_bands (should we add the below?)
2722 o _HT_MCS_SET: a 16-bit attr containing the MCS set as defined in 802.11n
28 o _HT_CAPA: as in the HT information IE
23 o _HT_CAPA: as in the HT information IE
24 40) add IEEE update (should we modify to use pickle or keep as?)
25 41) add command line versions as scripts? i.e. up, down, macchanger etc
26
0 # PyRIC root Distribution directory
0 # PyRIC v 1.6 root Distribution directory
11 # Do not import from this directory i.e from PyRIC import foobar
22 # To install
33 # use pip ('sudo pip install PyRIC')
Binary diff not shown
1818 %
1919 % __name__ = 'User Guide'
2020 %__license__ = 'GPLv3'
21 %__version__ = '0.0.6'
22 %__date__ = 'August 2016'
21 %__version__ = '0.0.7'
22 %__date__ = 'December 2016'
2323 %__author__ = 'Dale Patterson'
2424 %__maintainer__ = 'Dale Patterson'
2525 %__email__ = '[email protected]'
7272 basicstyle=\footnotesize
7373 }
7474
75 \title{\includegraphics[scale=1]{logo}\\ PyRIC v0.1.6: User Manual}
75 \title{\includegraphics[scale=1]{logo}\\ PyRIC v0.1.6.4: User Manual}
7676 \author{Dale V. Patterson\\ [email protected]}
7777
7878 \begin{document}
416416 \begin{lstlisting}[caption={A Basic Netlink Function Template},
417417 label={lst:template},
418418 language=Python]
419 def fcttemplate(arg0,arg1,..,argn,*argv):
419 def fcttemplate(arg0,arg1,..,argn,nlsock=None):
420420 # put parameter validation (if any) here
421 try:
422 nlsock = argv[0]
423 except IndexError:
424 return _nlstub_(fcttemplate,arg0,arg1,...,argn)
425
421 if nlsock is None: _nlstub_(fcttemplate,arg0,arg1,...,argn)
422
426423 # command execution
427424 ...
428425 return results
429426 \end{lstlisting}
430427
431 The template function in Listing \ref{lst:template} checks if argv has a netlink
432 socket\footnote{ioctl calls operate in the same manner} at index 0. If so, it
433 proceeds to execution. If there is no socket, the stub is executed which creates
434 one. If something other than a netlink socket is at argv[0], an error will be
435 raised during execution. \\
428 The template function in Listing \ref{lst:template} checks if nlsock is instantiatd
429 \footnote{ioctl calls operate in the same manner}. If so, it proceeds to execution.
430 If there is no socket, the stub is executed which creates one. If something other
431 than a netlink socket is at argv[0], an error will be raised during execution. \\
436432
437433 \begin{lstlisting}[caption={Function \_nlstub\_},
438434 label={lst:stub},
441437 nlsock = None
442438 try:
443439 nlsock = nlsock = nl.nl_socket_alloc()
444 argv = list(argv) + [nlsock]
440 argv = list(argv) + nlsock=None
445441 return fct(*argv)
446442 except pyric.error:
447443 raise # catch & release
715711
716712 \subsection{Functions}
717713 \begin{itemize}
718 \item interfaces(): (ifconfig), type: filesystem, returns list of all network dev
719 \item isinterface(dev): (ifconfig <dev>) type: filesystem, check dev is an interface
720 \item winterfaces([iosock]): (iwconfig), type: ioctl, list wireless interfaces
721 \item iswireless(dev,[iosock]): (iwconfig <dev>), type: ioctl, check dev is a
714 \item interfaces(): (ifconfig), type: filesystem, returns list of all network
715 device names
716 \item isinterface(dev): (ifconfig <dev>) type: filesystem, checks that dev is a
717 device name
718 \item winterfaces(iosock=None): (iwconfig), type: ioctl, list wireless device
719 names
720 \item iswireless(dev,iosock=None): (iwconfig <dev>), type: ioctl, check dev is a
722721 wireless interface
723722 \item phylist(): (iw phy | grep wiphy) type: N/A, list phy indexes and phy names
724723 present on system
725 \item regget([nlsock]: (iw reg get), type: netlink, get regulatory domain
726 \item regset(rd,[nlsock]): (iw reg set <rd>), type: netlink, set regulatory domain
724 \item regget(nlsock=None: (iw reg get), type: netlink, get regulatory domain
725 \item regset(rd,nlsock=None): (iw reg set <rd>), type: netlink, set regulatory domain
727726 to rd
728 \item getcard(dev,[nlsock]) (N/A), type: hybrid netlink and ioctl: get a Card
727 \item getcard(dev,nlsock=None) (N/A), type: hybrid netlink and ioctl: get a Card
729728 object for dev
730 \item validcard(card,[nlsock]): (N/A), type: (hyrbrid netlink and ioctl), verify
729 \item validcard(card,nlsock=None): (N/A), type: (hyrbrid netlink and ioctl), verify
731730 card is still valid
732 \item macget(card,[iosock]): (ifconfig), type: ioctl, determine if card is up
731 \item macget(card,iosock=None): (ifconfig), type: ioctl, determine if card is up
733732 or down
734 \item macset(card,mac,[iosock]): (ifconfig card.<dev> hw ether <mac>), type:
733 \item macset(card,mac,iosock=None): (ifconfig card.<dev> hw ether <mac>), type:
735734 ioctl, set card's hw address to mac
736 \item isup(card,[iosock]): (ifconfig card.<dev>)
737 \item up(card,[iosock]) (ifconfig card.<dev> up), type: ioctl, bring card up
738 \item down(card,[iosock]): (ifconfig card.<dev> down), type: ioctl, bring card
735 \item isup(card,iosock=None): (ifconfig card.<dev>)
736 \item up(card,iosock=None) (ifconfig card.<dev> up), type: ioctl, bring card up
737 \item down(card,iosock=None): (ifconfig card.<dev> down), type: ioctl, bring card
739738 down
740739 \item isblocked(card): (rfkill list <rfkill\_idx>): type N/A returns tuple
741740 (Soft Block State, Hard Block State)
742741 \item block(card): (rfkill block <rfkill\_idx>) type: N/A, soft blocks card
743742 \item unblock(card): (rfkill unblock <rfkill\_idx>) type: N/A, removes the soft
744743 block on card
745 \item pwrsaveget(card,[nlsock]) (iw dev card.<dev> get power\_save) type: netlink
744 \item pwrsaveget(card,nlsock=None) (iw dev card.<dev> get power\_save) type: netlink
746745 get card's power save state True = on, False = off
747 \item pwrsaveset(card,on,[nlsock]) (iw dev card.<dev> set power\_save <on>) type:
748 netlink set card's power save state True = on, False = off
749 \item covclassget(card,[nlsock]) (iw phy card.<phy> get coverage <cc>) type:
746 \item pwrsaveset(card,on,nlsock=None) (iw dev card.<dev> set power\_save <on>) type:
747 netlink, set card's power save state True = on, False = off
748 \item covclassget(card,nlsock=None) (iw phy card.<phy> get coverage <cc>) type:
750749 netlink get card's coverage class
751 \item covclassset(card,cc,[nlsock]) (iw phy card.<phy> set coverage <cc>) type:
750 \item covclassset(card,cc,nlsock=None) (iw phy card.<phy> set coverage <cc>) type:
752751 netlink set card's coverage class
753 \item retryshortget(card,[nlsock]) (iw phy card.<phy> info | grep 'retry short')
752 \item retryshortget(card,nlsock=None) (iw phy card.<phy> info | grep 'retry short')
754753 type:netlink get card's retry short limit
755 \item retryshortset(card,lim,[nlsock]) (iw phy card.<phy> set retry short <lim>)
754 \item retryshortset(card,lim,nlsock=None) (iw phy card.<phy> set retry short <lim>)
756755 type:netlink set card's retry short limit. NOTE: although 255 is specified as the
757756 max limit for this and the long retry, kernel v4 will not allow it.
758 \item retrylongget(card,[nlsock]) (iw phy card.<phy> info | grep 'retry long')
757 \item retrylongget(card,nlsock=None) (iw phy card.<phy> info | grep 'retry long')
759758 type:netlink get card's retry long limit
760 \item retrylongset(card,lim,[nlsock]) (iw phy card.<phy> set retry long <lim>)
759 \item retrylongset(card,lim,nlsock=None) (iw phy card.<phy> set retry long <lim>)
761760 type:netlink set card's retry long limit
762 \item rtsthreshget(card,[nlsock]) (iw phy card.<phy> info | grep rts) type:
761 \item rtsthreshget(card,nlsock=None) (iw phy card.<phy> info | grep rts) type:
763762 netlink set card's RTS threshold
764 \item rtsthreshset(card,thresh,[nlsock]) (iw phy card.<phy> set rts <thresh>) type:
763 \item rtsthreshset(card,thresh,nlsock=None) (iw phy card.<phy> set rts <thresh>) type:
765764 netlink set card's RTS threshold
766 \item fragthreshget(card,[nlsock]) (iw phy card.<phy> info | grep frag) type:
765 \item fragthreshget(card,nlsock=None) (iw phy card.<phy> info | grep frag) type:
767766 netlink get card's fragmentation threshold
768 \item fragthreshset(card,thresh,[nlsock]) (iw phy card.<phy> set frag <thresh>) type:
767 \item fragthreshset(card,thresh,nlsock=None) (iw phy card.<phy> set frag <thresh>) type:
769768 netlink set card's fragmentation threshold
770 \item inetget(card,[iosock]): (ifconfig card.<dev>), type: ioctl, get ip4 address,
769 \item ifaddrget(card,iosock=None): (ifconfig card.<dev>), type: ioctl, get ip4 address,
771770 netmask and broadcast address of card
772 \item inetset(card,ipaddr,netmask,broadcast,[iosock]): (ifconfig card/<dev> <ipaddr>
773 netmask <netmask> broadcast <broadcast>), type: ioctl, set the interface addresses
774 of the card
775 \item ip4set(card,ipaddr,[iosock]): (ifconfig card.<dev> <ipaddr>), type: ioctl,
771 \item ifaddrset(card,ipaddr,netmask,broadcast,iosock=None): (ifconfig card/<dev>
772 <ipaddr> netmask <netmask> broadcast <broadcast>), type: ioctl, set the interface
773 addresses of the card
774 \item inetset(card,ipaddr,iosock=None): (ifconfig card.<dev> <ipaddr>), type: ioctl,
776775 set the card's ip4 address
777 \item netmaskset(card,netmask,[iosock]): (ifconfig card.<dev> netmask <netmask>),
776 \item maskset(card,netmask,iosock=None): (ifconfig card.<dev> netmask <netmask>),
778777 type: ioctl, set the card's netmask
779 \item broadcastset(card,broadcast,[iosock]): (ifconfig card.<dev> broadcast
778 \item bcastset(card,broadcast,iosock=None): (ifconfig card.<dev> broadcast
780779 <broadcast>), type: ioctl, set the card's broadcast address
781 \item devfreqs(card,[nlsock]): (iw phy card.phy info), type: netlink, get card's
780 \item devfreqs(card,nlsock=None): (iw phy card.phy info), type: netlink, get card's
782781 supported frequencies
783 \item devchs(card,[nlsock]): (iw phy card.phy info), type: netlink, get card's
782 \item devchs(card,nlsock=None): (iw phy card.phy info), type: netlink, get card's
784783 supported channels
785 \item devstds(card,[nlsock]): (iwconfig card.<dev> | grep IEEE), type: nlsock,
784 \item devstds(card,nlsock=None): (iwconfig card.<dev> | grep IEEE), type: nlsock,
786785 returns a list of card's 802.11 supported standards by letter designator
787 \item devmodes(card,[nlsock]): (iw phy card.phy info | grep interface), type:
786 \item devmodes(card,nlsock=None): (iw phy card.phy info | grep interface), type:
788787 netlink, get card's supported modes
789 \item devcmds(card,[nlsock]): (iw phy card.phy info | grep commands), type:
788 \item devcmds(card,nlsock=None): (iw phy card.phy info | grep commands), type:
790789 netlink, get card's supported commands
791 \item ifinfo(card,[iosock]): (ifconfig card.<dev>), type: ioctl, get hardware
790 \item ifinfo(card,iosock=None): (ifconfig card.<dev>), type: ioctl, get hardware
792791 related info for card
793 \item devinfo(card,[nlsock]): (iw dev card.<dev> info), type: netlink, get info
792 \item devinfo(card,nlsock=None): (iw dev card.<dev> info), type: netlink, get info
794793 for dev
795 \item phyinfo(card,[nlsock]): (iw phy card.<phy> info), type: netlink, get info
794 \item phyinfo(card,nlsock=None): (iw phy card.<phy> info), type: netlink, get info
796795 for phy
797 \item ifaces(card,[nlsock]): (APX iw card.dev | grep phy\#), type: netlink, get all
796 \item ifaces(card,nlsock=None): (APX iw card.dev | grep phy\#), type: netlink, get all
798797 cards (w/ modes) of interfaces sharing the same phy as card
799 \item txset(card,pwr,lvl,[nlsock]) (iw phy phy0 set txpower <lvl> <pwr>), type:
798 \item txset(card,pwr,lvl,nlsock=None) (iw phy phy0 set txpower <lvl> <pwr>), type:
800799 netlink,sets the tx power to pwr (in dBm) with level setting lvl
801 \item txget(card,[iosock]): (iwconfig card.<dev> | grep Tx-Power card), type:
800 \item txget(card,iosock=None): (iwconfig card.<dev> | grep Tx-Power card), type:
802801 ioctl, get card's transmission power
803 \item chget(card,[nlsock]): (iw dev <card.dev> info | grep channel), type:
802 \item chget(card,nlsock=None): (iw dev <card.dev> info | grep channel), type:
804803 netlink, get card's current channel
805 \item chset(card,ch,chw,[nlsock]): iw phy <card.phy> set channel <ch> <chw>),
804 \item chset(card,ch,chw=None,nlsock=None): iw phy <card.phy> set channel <ch> <chw>),
806805 type: netlink, set card's current channel to ch with width chw
807 \item freqget(card,[nlsock]): (iw dev <card.dev> info | grep channel), type:
806 \item freqget(card,nlsock=None): (iw dev <card.dev> info | grep channel), type:
808807 netlink, get card's current frequency
809 \item freqset(card,rf,chw,[nlsock]): iw phy <card.phy> set freq <rf> <chw>),
808 \item freqset(card,rf,chw=None,nlsock=None): iw phy <card.phy> set freq <rf> <chw>),
810809 type: netlink, set card's current frequency to rf with width chw
811 \item devmodes(card,[iosock]): (iw phy card.<phy>), type: netlink, get modes
810 \item devmodes(card,iosock=None): (iw phy card.<phy>), type: netlink, get modes
812811 supported by card
813 \item modeset(card,mode,[flags],[nlsock]): (iw dev card.<dev> set type <mode>
812 \item modeset(card,mode,flags=None,nlsock=None): (iw dev card.<dev> set type <mode>
814813 [flags]), type: netlink, set card's mode to mode with flags (if mode is monitor)
815 \item modeget(card[nlsock]): (iw dev card.<dev> info | grep mode), type: netlink,
814 \item modeget(card,nlsock=None): (iw dev card.<dev> info | grep mode), type: netlink,
816815 get card's mode
817 \item devset(card,ndev,[nlsock]): (N/A) sets the dev (name) of card to ndev
818 \item phyadd(phy,vnic,mode,[flags],[nlsock]): (iw phy <phy> interface add <vnic>
816 \item devset(card,ndev,nlsock=None): (N/A) sets the dev (name) of card to ndev
817 \item phyadd(phy,vnic,mode,flags=None,nlsock=None): (iw phy <phy> interface add <vnic>
819818 type <mode> flags <flags>)\footnote{There is a bug in some kernel v4.4.0-x
820819 where the given dev name is ignored and a system chosen one is used instead. See
821820 https://wraithwireless.wordpress.com. Whenever possible, use devadd to create
822821 interfaces instead.}, type: netlink, creates a new virtual interface with dev vdev,
823822 in mode and using flags. Note: flags are only supported when creating a monitor mode
824 \item devadd(card (or ifindex),vnic,mode,[flags],[nlsock]): (iw phy card.<dev>
823 \item devadd(card (or ifindex),vnic,mode,[flags],nlsock=None): (iw phy card.<dev>
825824 interface add <vnic> type <mode> flags <flags>), type: netlink, creates a new virtual
826825 interface with dev vdev, in mode and using flags. Note: flags are only supported
827826 when creating a monitor mode. This function accepts either a Card object or a
828827 ifindex.
829 \item devdel(card,[nlsock]): (iw card.<dev> del), type: netlink, deletes card
830 \begin{itemize}
831 \item isconnected(card, [nlsock]): (iw dev card.<dev> info | grep channel), type:
828 \item devdel(card,nlsock=None): (iw card.<dev> del), type: netlink, deletes card
829 \begin{itemize}
830 \item isconnected(card,nlsock=None): (iw dev card.<dev> info | grep channel), type:
832831 netlink, determines if card is connected
833 \item connect(card, ssid, bssid, rf, [nlsock]): (iw dev card.<dev> connect <ssid>
832 \item connect(card,ssid,bssid=None,rf=None,nlsock=None): (iw dev card.<dev> connect <ssid>
834833 <rf> <bssid>) connects to AP SSID with BSSID
835 \item disconnect(card, [nlsock]): (iw dev card.<dev> disconnect), type: netlink,
834 \item disconnect(card, nlsock=None): (iw dev card.<dev> disconnect), type: netlink,
836835 disconnects card from AP
837 \item link(card, [nlsock]): (iw dev card.<dev> link), type: netlink, displays
836 \item link(card, nlsock=None): (iw dev card.<dev> link), type: netlink, displays
838837 link specific details, i.e. AP details that card is connected to
839 \item stainfo(card, mac, [nlsock]): (iw dev card.<dev> link) type: netlink, displays
838 \item stainfo(card, mac, nlsock=None): (iw dev card.<dev> link) type: netlink, displays
840839 tx, rx metrics of the AP that card is connected to
841840 \item \_hex2mac\_(v): returns a ':' separated mac address from byte stream v
842841 \item \_mac2hex\_(v): returns a hex string corresponding to mac address v
848847 \item \_unsetf\_(flags,flag): set flag in flags to off
849848 \item \_familyid\_(nlsock): returns and sets the Netlink family id for nl80211,
850849 only called once per module import
851 \item \_ifindex\_(dev,[iosock]): returns dev's ifindex
852 \item \_flagsget\_(dev,[iosock]): get's the dev's interface flags
853 \item \_flagsset\_(dev,flags,[iosock]): set's the dev's interface flags
850 \item \_ifindex\_(dev,iosock=None): returns dev's ifindex
851 \item \_flagsget\_(dev,iosock=None): get's the dev's interface flags
852 \item \_flagsset\_(dev,flags,iosock=None): set's the dev's interface flags
854853 \item \_iftypes\_(i): returns the mode corresponding to i
855854 \item \_bands\_(band): futher parses band attribute returns dict of bands
856855 containting rf information and rate information
11211120 \end{enumerate}
11221121
11231122 \section{Copyright and License}\label{sec:copy}
1124 PYRIC: Python Radio Interface Controller v0.1.6\\
1123 PYRIC: Python Radio Interface Controller v0.1.6.4\\
11251124
11261125 Copyright (C) 2016 Dale V. Patterson ([email protected])\\
11271126
00 #!/usr/bin/env python
11 """ info.py
2 Copyright (C) 2016 Dale V. Patterson ([email protected])
3
4 This program is free software: you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free Software
6 Foundation, either version 3 of the License, or (at your option) any later
7 version.
8
9 Redistribution and use in source and binary forms, with or without
10 modifications, are permitted provided that the following conditions are met:
11 o Redistributions of source code must retain the above copyright notice, this
12 list of conditions and the following disclaimer.
13 o Redistributions in binary form must reproduce the above copyright notice,
14 this list of conditions and the following disclaimer in the documentation
15 and/or other materials provided with the distribution.
16 o Neither the name of the orginal author Dale V. Patterson nor the names of
17 any contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
219
320 Example for displaying device details
421
00 #!/usr/bin/env python
11 """ pentest.py
2
3 Copyright (C) 2016 Dale V. Patterson ([email protected])
4
5 This program is free software: you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free Software
7 Foundation, either version 3 of the License, or (at your option) any later
8 version.
9
10 Redistribution and use in source and binary forms, with or without
11 modifications, are permitted provided that the following conditions are met:
12 o Redistributions of source code must retain the above copyright notice, this
13 list of conditions and the following disclaimer.
14 o Redistributions in binary form must reproduce the above copyright notice,
15 this list of conditions and the following disclaimer in the documentation
16 and/or other materials provided with the distribution.
17 o Neither the name of the orginal author Dale V. Patterson nor the names of
18 any contributors may be used to endorse or promote products derived from
19 this software without specific prior written permission.
220
321 Example for setting up a wireless environment - must be done as root
422
3838
3939 __name__ = 'pyric'
4040 __license__ = 'GPLv3'
41 __version__ = '0.1.6'
42 __date__ = 'August 2016'
41 __version__ = '0.1.6.4'
42 __date__ = 'January 2017'
4343 __author__ = 'Dale Patterson'
4444 __maintainer__ = 'Dale Patterson'
4545 __email__ = '[email protected]'
6262 EnvironmentError.__init__(self,errno,errmsg)
6363
6464 def strerror(errno):
65 """
66 :param errno: error code
67 :returns: error message
68 """
6569 import os
6670 if errno < 0: return "Undefined error"
6771 elif errno == EPERM: return "Superuser privileges required"
7983
8084 # define long description
8185 long_desc = """
82 # PyRIC 0.1.6: Python Radio Interface Controller
86 # PyRIC 0.1.6.4: Python Radio Interface Controller
8387 ## Linux wireless library for the Python Wireless Developer and Pentester
8488
8589 ## DESCRIPTION:
8791 ability to identify, enumerate and manipulate their system's wireless cards
8892 programmatically in Python. Pentesting applications and scripts written in Python
8993 have increased dramatically in recent years. However, these tools still rely on
90 Linux command lines tools to setup and prepare and restore the system for use.
91 Until now. Why use subprocess.Popen, regular expressions and str.find to interact
92 with your wireless cards? PyRIC is:
94 Linux command lines tools for setup/preparation and restoration of the system for
95 use. Until now. Why use subprocess.Popen, regular expressions and str.find to
96 interact with your wireless cards? PyRIC is:
9397
9498 1. Pythonic: no ctypes, SWIG etc. PyRIC redefines C header files as Python and
9599 uses sockets to communicate with the kernel.
2222
2323 lib 0.0.2
2424 desc: lib subpackage
25 includes: libnl 0.1.0 libio 0.0.1
25 includes: libnl 0.1.1 libio 0.0.1
2626 changes:
2727 o added libio
2828 o updated libnl
1818 contributors may be used to endorse or promote products derived from this
1919 software without specific prior written permission.
2020
21 Basic wrappers providing functionality for socket creation/deletion and send/recv
22 w.r.t ioctl calls
21 Basic wrappers providing functionality for socket creation/deletion and transfer
22 i.e. send/recv w.r.t ioctl calls
2323
2424 """
2525
181181 tx = tx or BUFSZ
182182 if tx < 128 or tx > _maxbufsz_(): raise error(errno.EINVAL,"Invalid tx size")
183183
184 # create the socket and rturn it
184 # create the socket and return it
185185 try:
186186 s = socket.socket(socket.AF_NETLINK,socket.SOCK_RAW,nlh.NETLINK_GENERIC)
187187 s.setsockopt(socket.SOL_SOCKET,socket.SO_SNDBUF,tx)
695695 elif d == nlh.NLA_U32: attr = struct.pack("I",v)
696696 elif d == nlh.NLA_U64: attr = struct.pack("Q",v)
697697 elif d == nlh.NLA_STRING:
698 if _PY3_: v = bytes(v,'ascii')
698 if _PY3_:
699 # noinspection PyArgumentList
700 v = bytes(v,'ascii')
699701 attr = struct.pack("{0}sx".format(len(v)),v)
700702 elif d == nlh.NLA_FLAG: attr = '' # a 0 sized attribute
701703 elif d == nlh.NLA_MSECS: attr = struct.pack("Q",v)
3131 o changed policies from list to dict
3232 o removed nle_error related as we use python errno
3333 o added ip4 to sockaddr and set ip4 to ifreq
34 o commented out sockios flags that are not currently being used
3435
3536 """
3637
4343 import struct
4444
4545 GENL_NAMSIZ = 16 # length of family name
46
4746 GENL_MIN_ID = 0x10 # hardcoded from netlink_h
4847 GENL_MAX_ID = 1023
4948
241241 IFIFINDEXLEN = struct.calcsize(ifr_ifindex)
242242 IWNAMELEN = struct.calcsize(ifr_iwname)
243243 IWTXPWRLEN = struct.calcsize(ifr_iwtxpwr)
244
245 # noinspection PyArgumentList
244246 def ifreq(ifrn,ifru=None,param=None):
245247 """
246248 creates a 'packed' struct cooresponding loosely to the ifreq struct. Padded
7474 MAX_LINKS = 32
7575
7676 """
77 struct sockaddr_nl {
78 __kernel_sa_family_t nl_family; /* AF_NETLINK */
79 unsigned short nl_pad; /* zero */
80 __u32 nl_pid; /* port ID */
81 __u32 nl_groups; /* multicast groups mask */
82 };
83 """
84
85 """
8677 struct nlmsghdr {
8778 __u32 nlmsg_len; /* Length of message including header */
8879 __u16 nlmsg_type; /* Message content */
151142 def NLMSG_LENGTH(l): return l+NLMSGHDRLEN
152143 def NLMSG_SPACE(l): return NLMSG_ALIGN(NLMSG_LENGTH(l))
153144 def NLMSG_ALIGNBY(l): return NLMSG_ALIGN(l) - l
154 # still working the below out
155 #NLMSG_DATA(nlh) ((void*)(((char*)nlh) + NLMSGHDRLEN))
156 #NLMSG_NEXT(hl,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
157 # (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
158 #NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \
159 # (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
160 # (nlh)->nlmsg_len <= (len))
161 #NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len)))
162145
163146 NLMSG_NOOP = 0x1 # Nothing.
164147 NLMSG_ERROR = 0x2 # Error
199182 NETLINK_RX_RING = 6
200183 NETLINK_TX_RING = 7
201184
202 """
203 struct nl_pktinfo {
204 __u32 group;
205 };
206 """
207
208 """
209 struct nl_mmap_req {
210 unsigned int nm_block_size;
211 unsigned int nm_block_nr;
212 unsigned int nm_frame_size;
213 unsigned int nm_frame_nr;
214 };
215 """
216
217 """
218 struct nl_mmap_hdr {
219 unsigned int nm_status;
220 unsigned int nm_len;
221 __u32 nm_group;
222 /* credentials */
223 __u32 nm_pid;
224 __u32 nm_uid;
225 __u32 nm_gid;
226 };
227 """
228
229185 # nume nl_nmap_status
230186 NL_MMAP_STATUS_UNUSED = 0
231187 NL_MMAP_STATUS_RESERVED = 1
233189 NL_MMAP_STATUS_COPY = 3
234190 NL_MMAP_STATUS_SKIP = 4
235191
236 #NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
237 #NL_MMAP_MSG_ALIGN(sz) __ALIGN_KERNEL(sz, NL_MMAP_MSG_ALIGNMENT)
238 #NL_MMAP_HDRLEN NL_MMAP_MSG_ALIGN(sizeof(struct nl_mmap_hdr))
239
240192 NET_MAJOR = 36 # Major 36 is reserved for networking
241193
242194 NETLINK_UNCONNECTED = 0
262214 */
263215 """
264216
265 # Attribute Datatypes
266217 """
267218 I add two datatypes to the netlink definition:
268219 NLA_ERROR: designates an attribute that failed during unpacking
321272 NLA_F_NET_BYTEORDER = (1 << 14)
322273 NLA_TYPE_MASK = ~(NLA_F_NESTED | NLA_F_NET_BYTEORDER)
323274
324 #NLA_ALIGNTO = 4
325 #NLA_ALIGN(len) = (((len) + NLA_ALIGNTO - 1) & ~(NLA_ALIGNTO - 1))
326 #NLA_HDRLEN = ((int) NLA_ALIGN(sizeof(struct nlattr)))
327
328275 # defined error codes
329276 # only use success and failure -> using errno for other error numbers
330277 NLE_SUCCESS = 0
7979 genlh.CTRL_ATTR_MCAST_GRP_NAME:nlh.NLA_STRING,
8080 genlh.CTRL_ATTR_MCAST_GRP_ID:nlh.NLA_U32}
8181
82 nla_dts['nl80211_attr'] = nl80211c.nl80211_policy
83
84 # ATT we do include the below as defined in nl80211_c
85 #nla_dts['nl80211_key'] = nl80211c.nl80211_key_policy
86 #nla_dts['nl80211_wowlan_trig'] = nl80211_wowlan_trig_policy
87 #nla_dts['nl80211_wowlan_tcp'] = nl80211_wowlan_tcp_policy
88 #nla_dts['nl80211_coalesce'] = nl80211_coalesce_policy
89 #nla_dts['nl80211_rekey'] = nl80211_rekey_policy
90 #nla_dts['nl80211_match'] = nl80211_match_policy
91 #nla_dts['nl80211_plan'] = nl80211_plan_policy
82 nla_dts['nl80211_attr'] = nl80211c.nl80211_policy
6666
6767 # Socket configuration controls
6868 SIOCGIFNAME = 0x8910 # get iface name
69 SIOCSIFLINK = 0x8911 # set iface channel
70 SIOCGIFCONF = 0x8912 # get iface list
69 #SIOCSIFLINK = 0x8911 # set iface channel
70 #SIOCGIFCONF = 0x8912 # get iface list
7171 SIOCGIFFLAGS = 0x8913 # get flags
7272 SIOCSIFFLAGS = 0x8914 # set flags
7373 SIOCGIFADDR = 0x8915 # get PA address
7474 SIOCSIFADDR = 0x8916 # set PA address
75 SIOCGIFDSTADDR = 0x8917 # get remote PA address
76 SIOCSIFDSTADDR = 0x8918 # set remote PA address
75 #SIOCGIFDSTADDR = 0x8917 # get remote PA address
76 #SIOCSIFDSTADDR = 0x8918 # set remote PA address
7777 SIOCGIFBRDADDR = 0x8919 # get broadcast PA address
7878 SIOCSIFBRDADDR = 0x891a # set broadcast PA address
7979 SIOCGIFNETMASK = 0x891b # get network PA mask
8080 SIOCSIFNETMASK = 0x891c # set network PA mask
81 SIOCGIFMETRIC = 0x891d # get metric
82 SIOCSIFMETRIC = 0x891e # set metric
83 SIOCGIFMEM = 0x891f # get memory address (BSD)
84 SIOCSIFMEM = 0x8920 # set memory address (BSD)
85 SIOCGIFMTU = 0x8921 # get MTU size
86 SIOCSIFMTU = 0x8922 # set MTU size
87 SIOCSIFNAME = 0x8923 # set interface name
81 #SIOCGIFMETRIC = 0x891d # get metric
82 #SIOCSIFMETRIC = 0x891e # set metric
83 #SIOCGIFMEM = 0x891f # get memory address (BSD)
84 #SIOCSIFMEM = 0x8920 # set memory address (BSD)
85 #SIOCGIFMTU = 0x8921 # get MTU size
86 #SIOCSIFMTU = 0x8922 # set MTU size
87 #SIOCSIFNAME = 0x8923 # set interface name
8888 SIOCSIFHWADDR = 0x8924 # set hardware address
89 SIOCGIFENCAP = 0x8925 # get/set encapsulations
90 SIOCSIFENCAP = 0x8926
89 #SIOCGIFENCAP = 0x8925 # get/set encapsulations
90 #SIOCSIFENCAP = 0x8926
9191 SIOCGIFHWADDR = 0x8927 # Get hardware address
92 SIOCGIFSLAVE = 0x8929 # Driver slaving support
93 SIOCSIFSLAVE = 0x8930
94 SIOCADDMULTI = 0x8931 # Multicast address lists
95 SIOCDELMULTI = 0x8932
92 #SIOCGIFSLAVE = 0x8929 # Driver slaving support
93 #SIOCSIFSLAVE = 0x8930
94 #SIOCADDMULTI = 0x8931 # Multicast address lists
95 #SIOCDELMULTI = 0x8932
9696 SIOCGIFINDEX = 0x8933 # name -> if_index mapping
9797 SIOGIFINDEX = SIOCGIFINDEX # misprint compatibility :-)
98 SIOCSIFPFLAGS = 0x8934 # set/get extended flags set
99 SIOCGIFPFLAGS = 0x8935
100 SIOCDIFADDR = 0x8936 # delete PA address
98 #SIOCSIFPFLAGS = 0x8934 # set/get extended flags set
99 #SIOCGIFPFLAGS = 0x8935
100 #SIOCDIFADDR = 0x8936 # delete PA address
101101 SIOCSIFHWBROADCAST = 0x8937 # set hardware broadcast addr
102 SIOCGIFCOUNT = 0x8938 # get number of devices
103 SIOCGIFBR = 0x8940 # Bridging support
104 SIOCSIFBR = 0x8941 # Set bridging options
105 SIOCGIFTXQLEN = 0x8942 # Get the tx queue length
106 SIOCSIFTXQLEN = 0x8943 # Set the tx queue length
107 SIOCETHTOOL = 0x8946 # Ethtool interface
108 SIOCGMIIPHY = 0x8947 # Get address of MII PHY in use
109 SIOCGMIIREG = 0x8948 # Read MII PHY register.
110 SIOCSMIIREG = 0x8949 # Write MII PHY register.
111 SIOCWANDEV = 0x894A # get/set netdev parameters
112 SIOCOUTQNSD = 0x894B # output queue size (not sent only)
102 #SIOCGIFCOUNT = 0x8938 # get number of devices
103 #SIOCGIFBR = 0x8940 # Bridging support
104 #SIOCSIFBR = 0x8941 # Set bridging options
105 #SIOCGIFTXQLEN = 0x8942 # Get the tx queue length
106 #SIOCSIFTXQLEN = 0x8943 # Set the tx queue length
107 #SIOCETHTOOL = 0x8946 # Ethtool interface
108 #SIOCGMIIPHY = 0x8947 # Get address of MII PHY in use
109 #SIOCGMIIREG = 0x8948 # Read MII PHY register.
110 #SIOCSMIIREG = 0x8949 # Write MII PHY register.
111 #SIOCWANDEV = 0x894A # get/set netdev parameters
112 #SIOCOUTQNSD = 0x894B # output queue size (not sent only)
113113
114114 # ARP cache control calls
115 SIOCDARP = 0x8953 # delete ARP table entry
116 SIOCGARP = 0x8954 # get ARP table entry
117 SIOCSARP = 0x8955 # set ARP table entry
115 #SIOCDARP = 0x8953 # delete ARP table entry
116 #SIOCGARP = 0x8954 # get ARP table entry
117 #SIOCSARP = 0x8955 # set ARP table entry
118118
119119 # RARP cache control calls
120 SIOCDRARP = 0x8960 # delete RARP table entry
121 SIOCGRARP = 0x8961 # get RARP table entry
122 SIOCSRARP = 0x8962 # set RARP table entry
120 #SIOCDRARP = 0x8960 # delete RARP table entry
121 #SIOCGRARP = 0x8961 # get RARP table entry
122 #SIOCSRARP = 0x8962 # set RARP table entry
123123
124124 # Driver configuration calls
125 SIOCGIFMAP = 0x8970 # Get device parameters
126 SIOCSIFMAP = 0x8971 # Set device parameters
125 #SIOCGIFMAP = 0x8970 # Get device parameters
126 #SIOCSIFMAP = 0x8971 # Set device parameters
127127
128128 # DLCI configuration calls
129 SIOCADDDLCI = 0x8980 # Create new DLCI device
130 SIOCDELDLCI = 0x8981 # Delete DLCI device
129 #SIOCADDDLCI = 0x8980 # Create new DLCI device
130 #SIOCDELDLCI = 0x8981 # Delete DLCI device
131131
132 SIOCGIFVLAN = 0x8982 # 802.1Q VLAN support
133 SIOCSIFVLAN = 0x8983 # Set 802.1Q VLAN options
132 #SIOCGIFVLAN = 0x8982 # 802.1Q VLAN support
133 #SIOCSIFVLAN = 0x8983 # Set 802.1Q VLAN options
134134
135135 # bonding calls
136 SIOCBONDENSLAVE = 0x8990 # enslave a device to the bond
137 SIOCBONDRELEASE = 0x8991 # release a slave from the bond
138 SIOCBONDSETHWADDR = 0x8992 # set the hw addr of the bond
139 SIOCBONDSLAVEINFOQUERY = 0x8993 # rtn info about slave state
140 SIOCBONDINFOQUERY = 0x8994 # rtn info about bond state
141 SIOCBONDCHANGEACTIVE = 0x8995 # update to a new active slave
136 #SIOCBONDENSLAVE = 0x8990 # enslave a device to the bond
137 #SIOCBONDRELEASE = 0x8991 # release a slave from the bond
138 #SIOCBONDSETHWADDR = 0x8992 # set the hw addr of the bond
139 #SIOCBONDSLAVEINFOQUERY = 0x8993 # rtn info about slave state
140 #SIOCBONDINFOQUERY = 0x8994 # rtn info about bond state
141 #SIOCBONDCHANGEACTIVE = 0x8995 # update to a new active slave
142142
143143 # bridge calls
144 SIOCBRADDBR = 0x89a0 # create new bridge device
145 SIOCBRDELBR = 0x89a1 # remove bridge device
146 SIOCBRADDIF = 0x89a2 # add interface to bridge
147 SIOCBRDELIF = 0x89a3 # remove interface from bridge
144 #SIOCBRADDBR = 0x89a0 # create new bridge device
145 #SIOCBRDELBR = 0x89a1 # remove bridge device
146 #SIOCBRADDIF = 0x89a2 # add interface to bridge
147 #SIOCBRDELIF = 0x89a3 # remove interface from bridge
148148
149149 # hardware time stamping: parameters in linux/net_tstamp.h
150 SIOCSHWTSTAMP = 0x89b0 # set and get config
151 SIOCGHWTSTAMP = 0x89b1 # get config
150 #SIOCSHWTSTAMP = 0x89b0 # set and get config
151 #SIOCGHWTSTAMP = 0x89b1 # get config
2323 changes:
2424 o added nl80211_c to handle attribute policies
2525 - added nl80211_parse_freqs to parse out supported frequencies
26
2627 """
2728
2829 __name__ = 'wireless'
7373 nl80211h.NL80211_ATTR_STA_SUPPORTED_RATES:nlh.NLA_UNSPEC,
7474 nl80211h.NL80211_ATTR_STA_PLINK_ACTION:nlh.NLA_U8,
7575 nl80211h.NL80211_ATTR_STA_VLAN:nlh.NLA_U32,
76 #nl80211h.NL80211_ATTR_MNTR_FLAGS:nlh.NLA_NESTED,
7776 nl80211h.NL80211_ATTR_MNTR_FLAGS:nlh.NLA_U32, # it seems to work by adding this attribute for each flag
7877 nl80211h.NL80211_ATTR_MESH_ID:nlh.NLA_UNSPEC,
7978 nl80211h.NL80211_ATTR_MPATH_NEXT_HOP:nlh.NLA_U32,
38683868 NL80211_CRIT_PROTO_DHCP = 1
38693869 NL80211_CRIT_PROTO_EAPOL = 2
38703870 NL80211_CRIT_PROTO_APIPA = 3
3871 # add other protocols before this one
38723871 NUM_NL80211_CRIT_PROTO = 4
38733872
38743873 # maximum duration for critical protocol measures
4646 - this may be due to bug in ubuntu and not present in other distros
4747 o rfkill does not do sanity checks on the index, rfkill.py will through error
4848 if the index does not exist
49
4950 """
5051
5152 __name__ = 'rfkill_h'
2121 Definition of constants et al found in IEEE Std 802.11-2012
2222
2323 Std will refer to IEEE Std 802.11-2012
24
2524 """
2625
2726 __name__ = 'wlan'
2525 includes: attributes.help commands.help nlsearch 0.0.1
2626 changes:
2727 o name changes
28
2829 """
2930
3031 __name__ = 'nlhelp'
0 # attributes.help (stored in json format)
0 # attributes.help for nlsearch.py (stored in json format)
11 # Automatically generated 2016-04-17T11:06:58.35097 from nl80211.h
22 # Additions for kernel version 4 added 2016-06-25T15:18:00.0
33
0 # commands.help (stored in json format)
0 # commands.help for nlsearch.py (stored in json format)
11 # Automatically generated 2016-04-17T11:06:57.694132 from nl80211.h
22 # Additions for kernel version 4 added 2016-06-29T03:50:00.0
33
3838 import pyric
3939 import pyric.net.wireless.nl80211_h as nl80211h
4040
41 # where are we?
41 # get current working directory
4242 fpath = os.path.dirname(os.path.realpath(__file__))
4343
4444 # read in the files here
2020 this software without specific prior written permission.
2121
2222 Provides a python version of a subset of the iw command & additionally, a
23 smaller subset of ifconfig/iwconfig.
23 smaller subset of ifconfig, rfkill and macchanger.
2424
2525 Each command/function (excluding interfaces & isinterface which do not rely on
2626 ioctl/netlink sockets) comes in two flavors - one-time & persistent.
3838 use a persistent netlink/ioctl socket. Socket creation & deletion are
3939 relatively fast however, if a program is repeatedly using pyw function(s)
4040 (such as a scanner that is changing channels mulitple times per second) it
41 makes sense for the caller to create a socket one time only & use the same
42 socket. However, if the caller is only using pyw periodically and/or does not
43 want to bothered with socket maintenance, the one-time flavor would be better.
41 makes sense for the caller to create one socket and use it throughout execution.
42 However, if the caller is only using pyw periodically and/or does not
43 want to bother with socket maintenance, the one-time flavor would be better.
4444
4545 for one-time execution, for example use
4646
5151 regset('US',nlsocket)
5252
5353 where nlsocket is created with libnl.nl_socket_alloc()
54
55 to create/delete sockets use the libraries alloc functions:
56 o ioctl: libio.io_socket_alloc() and libio.io_socket_free()
57 o netlink: libnl.nl_socket_alloc() and libnl.nl_socket_free()
5458
5559 NOTE:
5660 1) All functions (excluding wireless core related) will use a Card object which
6266 devadd which will accept a Card or a phy
6367 2) All functions allow pyric errors to pass through. Callers must catch these
6468 if they desire
69
6570 """
6671
6772 __name__ = 'pyw'
6873 __license__ = 'GPLv3'
69 __version__ = '0.1.9'
70 __date__ = 'August 2016'
74 __version__ = '0.2.1'
75 __date__ = 'December 2016'
7176 __author__ = 'Dale Patterson'
7277 __maintainer__ = 'Dale Patterson'
7378 __email__ = '[email protected]'
8994 import pyric.net.sockios_h as sioch # sockios constants
9095 import pyric.net.if_h as ifh # ifreq structure
9196 import pyric.lib.libio as io # ioctl (library) functions
97 import os
9298
9399 _FAM80211ID_ = None
94100
103109
104110 def interfaces():
105111 """
106 retrieves all network interfaces (APX ifconfig)
107 :returns: a list of device names of current network interfaces cards
112 Retrieves all network interfaces (APX ifconfig)
113
114 :returns: a list of device names of current network interfaces cards
108115 """
109116 fin = None
110117 try:
122129
123130 def isinterface(dev):
124131 """
125 determines if device name belongs to a network card (APX ifconfig <dev>)
126 :param dev: device name
127 :returns: {True if dev is a device|False otherwise}
132 Determines if device name belongs to a network card (APX ifconfig <dev>)
133
134 :param dev: device name
135 :returns: {True if dev is a device|False otherwise}
128136 """
129137 return dev in interfaces()
130138
131 def winterfaces(*argv):
132 """
133 retrieve all wireless interfaces (APX iwconfig)
134 :param argv: ioctl socket at argv[0] (or empty)
135 :returns: list of device names of current wireless NICs
136 """
137 try:
138 iosock = argv[0]
139 except IndexError:
140 return _iostub_(winterfaces)
139 def winterfaces(iosock=None):
140 """
141 Retrieve all wireless interfaces (APX iwconfig)
142
143 :param iosock: ioctl socket
144 :returns: list of device names of current wireless NICs
145 """
146 if iosock is None: return _iostub_(winterfaces)
141147
142148 wifaces = []
143149 for dev in interfaces():
144 # no errors are caught here - but allowed to pass
145150 if iswireless(dev, iosock): wifaces.append(dev)
146151 return wifaces
147152
148 def iswireless(dev, *argv):
149 """
150 determines if given device is wireless (APX iwconfig <dev>)
151 :param dev: device name
152 :param argv: ioctl socket at argv[0] (or empty)
153 :returns: {True:device is wireless|False:device is not wireless/not present}
154 """
155 try:
156 iosock = argv[0]
157 except IndexError:
158 return _iostub_(iswireless, dev)
153 def iswireless(dev, iosock=None):
154 """
155 Determines if given device is wireless (APX iwconfig <dev>)
156
157 :param dev: device name
158 :param iosock: ioctl socket
159 :returns: {True:device is wireless|False:device is not wireless/not present}
160 """
161 if iosock is None: return _iostub_(iswireless, dev)
159162
160163 try:
161164 # if the call succeeds, dev is found to be wireless
163166 return True
164167 except AttributeError as e:
165168 raise pyric.error(pyric.EINVAL, e)
166 except io.error as e:
167 # ENODEV or ENOTSUPP means not wireless, reraise any others
168 if e.errno == pyric.ENODEV or e.errno == pyric.EOPNOTSUPP: return False
169 else: raise pyric.error(e.errno)
169 except io.error:
170 return False
170171
171172 def phylist():
172 """ :returns: a list of tuples t = (physical indexe, physical name) """
173 # we could walk the directory /sys/class/ieee80211 as well but we'll
174 # let rfkill do it (just in case the above path differs across distros or
175 # in future upgrades)
173 """
174 Use rfkill to return all phys of wireless devices
175
176 :returns: a list of tuples t = (physical index, physical name)
177 """
178 # these are stroed in /sys/class/ieee80211 but we let rfkill do it (just in
179 # case the above path differs across distros or in future upgrades). However,
180 # in some cases like OpenWRT which does not support rfkill we have to walk the
181 # directory
176182 phys = []
177 rfdevs = rfkill.rfkill_list()
178 for rfk in rfdevs:
179 if rfdevs[rfk]['type'] == 'wlan':
180 phys.append((int(rfk.split('phy')[1]),rfk))
183 try:
184 rfdevs = rfkill.rfkill_list()
185 for rfk in rfdevs:
186 if rfdevs[rfk]['type'] == 'wlan':
187 phys.append((int(rfk.split('phy')[1]),rfk))
188 except IOError as e:
189 #catch 'No such file or directory' errors when rfkill is not supported
190 if e.errno == pyric.ENOENT:
191 try:
192 rfdevs = os.listdir(rfkill.ipath)
193 except OSError:
194 emsg = "{} is not a directory & rfkill is not supported".format(rfkill.ipath)
195 raise pyric.error(pyric.ENOTDIR,emsg)
196 else:
197 for rfk in rfdevs: phys.append((int(rfk.split('phy')[1]),rfk))
198 else:
199 raise pyric.error(pyric.EUNDEF,
200 "PHY listing failed: {}-{}".format(e.errno,e.strerror))
181201 return phys
182202
183 def regget(*argv):
184 """
185 gets the current regulatory domain (iw reg get)
186 :param argv: netlink socket at argv[0] (or empty)
187 :returns: the two charactor regulatory domain
188 """
189 try:
190 nlsock = argv[0]
191 except IndexError:
192 return _nlstub_(regget)
203 def regget(nlsock=None):
204 """
205 Get the current regulatory domain (iw reg get)
206
207 :param nlsock: netlink socket
208 :returns: the two charactor regulatory domain
209 """
210 if nlsock is None: return _nlstub_(regget)
193211
194212 try:
195213 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
201219 raise pyric.error(e.errno, e.strerror)
202220 return nl.nla_find(rmsg, nl80211h.NL80211_ATTR_REG_ALPHA2)
203221
204 def regset(rd, *argv):
205 """
206 REQUIRES ROOT PRIVILEGES
207 sets the current regulatory domain (iw reg set <rd>)
208 :param rd: regulatory domain code
209 :param argv: netlink socket at argv[0] (or empty)
222 def regset(rd, nlsock=None):
223 """
224 Sets the current regulatory domain (iw reg set <rd>)
225
226 :param rd: regulatory domain code
227 :param nlsock: netlink socket
228 .. warning:: Requires root privileges
210229 """
211230 if len(rd) != 2: raise pyric.error(pyric.EINVAL, "Invalid reg. domain")
212
213 try:
214 nlsock = argv[0]
215 except IndexError:
216 return _nlstub_(regset, rd)
231 if nlsock is None: return _nlstub_(regset, rd)
217232
218233 try:
219234 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
231246
232247 class Card(tuple):
233248 """
234 A wireless network interface controller - Wrapper around a tuple
235 t = (physical index,device name, interface index)
236 Exposes the following properties: (callable by '.'):
237 phy: physical index
238 dev: device name
239 idx: interface index (ifindex)
240 """
249 A wireless network interface controller - Wrapper around a tuple
250 t = (physical index,device name, interface index)
251 Exposes the following properties: (callable by '.'):
252 phy: physical index
253 dev: device name
254 idx: interface index (ifindex)
255 """
256 # noinspection PyInitNewSignature
241257 def __new__(cls, p, d, i):
242258 return super(Card, cls).__new__(cls, tuple((p, d, i)))
243259 def __repr__(self):
249265 @property
250266 def idx(self): return self[2]
251267
252 def getcard(dev, *argv):
253 """
254 get the Card object from device name
255 :param dev: device name
256 :param argv: netlink socket at argv[0] or empty
257 :returns: a Card with device name dev
258 """
259 try:
260 nlsock = argv[0]
261 except IndexError:
262 return _nlstub_(getcard, dev)
263
268 def getcard(dev, nlsock=None):
269 """
270 Get the Card object from device name
271
272 :param dev: device name
273 :param nlsock: netlink socket
274 :returns: a Card with device name dev
275 """
276 if nlsock is None: return _nlstub_(getcard, dev)
264277 return devinfo(dev, nlsock)['card']
265278
266 def validcard(card, *argv):
267 """
268 determines if card is still valid i.e. another program has not changed it
269 :param card: Card object
270 :param argv: netlink socket at argv[0] (or empty)
271 :returns: True if card is still valid, False otherwise
272 """
273 try:
274 nlsock = argv[0]
275 except IndexError:
276 return _nlstub_(validcard, card)
279 def validcard(card, nlsock=None):
280 """
281 Determines if card is still valid i.e. another program has not changed it
282
283 :param card: Card object
284 :param nlsock: netlink socket
285 :returns: True if card is still valid, False otherwise
286 """
287 if nlsock is None: return _nlstub_(validcard, card)
277288
278289 try:
279290 return card == devinfo(card.dev, nlsock)['card']
285296 #### ADDRESS RELATED ####
286297 ################################################################################
287298
288 def macget(card, *argv):
289 """
290 gets the interface's hw address (APX ifconfig <card.dev> | grep HWaddr)
291 :param card: Card object
292 :param argv: ioctl socket at argv[0] (or empty)
293 :returns: device mac after operation
294 """
295 try:
296 iosock = argv[0]
297 except IndexError:
298 return _iostub_(macget, card)
299 def macget(card, iosock=None):
300 """
301 Gets the interface's hw address (APX ifconfig <card.dev> | grep HWaddr)
302
303 :param card: Card object
304 :param iosock: ioctl socket
305 :returns: device mac after operation
306 """
307 if iosock is None: return _iostub_(macget, card)
299308
300309 try:
301310 flag = sioch.SIOCGIFHWADDR
312321 except io.error as e:
313322 raise pyric.error(e.errno, e.strerror)
314323
315 def macset(card, mac, *argv):
316 """
317 REQUIRES ROOT PRIVILEGES/CARD DOWN
318 set nic's hwaddr (ifconfig <card.dev> hw ether <mac>)
319 :param card: Card object
320 :param mac: macaddr to set
321 :param argv: ioctl socket at argv[0] (or empty)
322 :returns: mac address after operation
324 def macset(card, mac, iosock=None):
325 """
326 Set nic's hwaddr (ifconfig <card.dev> hw ether <mac>)
327
328 :param card: Card object
329 :param mac: macaddr to set
330 :param iosock: ioctl socket
331 :returns True on success, False otherwise
332 .. warning:: Requires root privileges
323333 """
324334 if not _validmac_(mac): raise pyric.error(pyric.EINVAL, "Invalid mac address")
325
326 try:
327 iosock = argv[0]
328 except IndexError:
329 return _iostub_(macset, card, mac)
335 if iosock is None: return _iostub_(macset, card, mac)
330336
331337 try:
332338 flag = sioch.SIOCSIFHWADDR
333339 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag, [mac]))
334340 fam = struct.unpack_from(ifh.sa_addr, ret, ifh.IFNAMELEN)[0]
335341 if fam in [ifh.ARPHRD_ETHER, ifh.AF_UNSPEC, ifh.ARPHRD_IEEE80211_RADIOTAP]:
336 return _hex2mac_(ret[18:24])
342 return _hex2mac_(ret[18:24]) == mac
337343 else:
338344 raise pyric.error(pyric.EAFNOSUPPORT, "Invalid return hwaddr family")
339345 except AttributeError as e:
343349 except io.error as e:
344350 raise pyric.error(e.errno, e.strerror)
345351
346 def inetget(card, *argv):
347 """
348 get nic's ip, netmask and broadcast addresses
349 :param card: Card object
350 :param argv: ioctl socket at argv[0] (or empty)
351 :returns: the tuple t = (ip4,netmask,broadcast)
352 """
353 try:
354 iosock = argv[0]
355 except IndexError:
356 return _iostub_(inetget, card)
352 def ifaddrget(card, iosock=None):
353 """
354 Get nic's ip, netmask and broadcast addresses
355
356 :param card: Card object
357 :param iosock: ioctl socket
358 :returns: the tuple t = (inet,mask,bcast)
359 """
360 if iosock is None: return _iostub_(ifaddrget, card)
357361
358362 try:
359363 # ip
361365 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag))
362366 fam = struct.unpack_from(ifh.sa_addr, ret, ifh.IFNAMELEN)[0]
363367 if fam == ifh.AF_INET:
364 ip4 = _hex2ip4_(ret[20:24])
368 inet = _hex2ip4_(ret[20:24])
365369 else:
366370 raise pyric.error(pyric.EAFNOSUPPORT, "Invalid return ip family")
367371
370374 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag))
371375 fam = struct.unpack_from(ifh.sa_addr, ret, ifh.IFNAMELEN)[0]
372376 if fam == ifh.AF_INET:
373 netmask = _hex2ip4_(ret[20:24])
377 mask = _hex2ip4_(ret[20:24])
374378 else:
375379 raise pyric.error(pyric.EAFNOSUPPORT, "Invalid return netmask family")
376380
379383 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag))
380384 fam = struct.unpack_from(ifh.sa_addr, ret, ifh.IFNAMELEN)[0]
381385 if fam == ifh.AF_INET:
382 brdaddr = _hex2ip4_(ret[20:24])
386 bcast = _hex2ip4_(ret[20:24])
383387 else:
384388 raise pyric.error(pyric.EAFNOSUPPORT, "Invalid return broadcast family")
385389 except AttributeError as e:
392396 if e.errno == pyric.EADDRNOTAVAIL: return None, None, None
393397 raise pyric.error(e.errno, e.strerror)
394398
395 return ip4, netmask, brdaddr
396
397 def inetset(card, ipaddr, netmask, broadcast, *argv):
398 """
399 REQUIRES ROOT PRIVILEGES
400 set nic's ip4 addr, netmask and/or broadcast
401 (ifconfig <card.dev> <ipaddr> netmask <netmask> broadcast <broadcast>)
399 return inet, mask, bcast
400
401 def ifaddrset(card, inet=None, mask=None, bcast=None, iosock=None):
402 """
403 Set nic's ip4 addr, netmask and/or broadcast
404 (ifconfig <card.dev> <inet> netmask <mask> broadcast <bcast>)
402405 can set ipaddr,netmask and/or broadcast to None but one or more of ipaddr,
403406 netmask, broadcast must be set
404 :param card: Card object
405 :param ipaddr: ip address to set
406 :param netmask: netmask to set
407 :param broadcast: broadcast to set
408 :param argv: ioctl socket at argv[0] (or empty)
409 NOTE:
410 1) throws error if setting netmask or broadcast and card does not have
411 an ip assigned
412 2) if setting only the ip address, netmask and broadcast will be set
413 accordingly by the kernel.
414 3) If setting multiple or setting the netmask and/or broadcast after the ip
415 is assigned, one can set them to erroneous values i.e. ip = 192.168.1.2
416 and broadcast = 10.0.0.31.
407
408 :param card: Card object
409 :param inet: ip address to set
410 :param mask: netmask to set
411 :param bcast: broadcast to set
412 :param iosock: ioctl socket
413 :returns: True on success, False otherwise
414 .. note:
415 1) throws error if setting netmask or broadcast and card does not have
416 an ip assigned
417 2) if setting only the ip address, netmask and broadcast will be set
418 accordingly by the kernel.
419 3) If setting multiple or setting the netmask and/or broadcast after the ip
420 is assigned, one can set them to erroneous values i.e. ip = 192.168.1.2
421 and broadcast = 10.0.0.31.
422 .. warning:: Requires root privileges
417423 """
418424 # ensure one of params is set & that all set params are valid ip address
419 if not ipaddr and not netmask and not broadcast:
425 if not inet and not mask and not bcast:
420426 raise pyric.error(pyric.EINVAL, "No parameters specified")
421 if ipaddr and not _validip4_(ipaddr):
422 raise pyric.error(pyric.EINVAL, "Invalid ip4 address")
423 if netmask and not _validip4_(netmask):
427 if inet and not _validip4_(inet):
428 raise pyric.error(pyric.EINVAL, "Invalid IP address")
429 if mask and not _validip4_(mask):
424430 raise pyric.error(pyric.EINVAL, "Invalid netmask")
425 if broadcast and not _validip4_(broadcast):
431 if bcast and not _validip4_(bcast):
426432 raise pyric.error(pyric.EINVAL, "Invalid broadcast")
427
428 try:
429 iosock = argv[0]
430 except IndexError:
431 return _iostub_(inetset, card, ipaddr, netmask, broadcast)
432
433 # we have to do one at a time
434 try:
435 # ip address first
436 if ipaddr: ip4set(card, ipaddr, iosock)
437 if netmask: netmaskset(card, netmask, iosock)
438 if broadcast: broadcastset(card, broadcast, iosock)
433 if iosock is None: return _iostub_(ifaddrset, card, inet, mask, bcast)
434
435 try:
436 success = True
437 # we have to do one at a time
438 if inet: success &= inetset(card, inet, iosock)
439 if mask: success &= maskset(card, mask, iosock)
440 if bcast: success &= bcastset(card, bcast, iosock)
441 return success
439442 except pyric.error as e:
440443 # an ambiguous error is thrown if attempting to set netmask or broadcast
441444 # without an ip address already set on the card
442 if not ipaddr and e.errno == pyric.EADDRNOTAVAIL:
445 if e.errno == pyric.EADDRNOTAVAIL and inet is None:
443446 raise pyric.error(pyric.EINVAL, "Set ip4 addr first")
444447 else:
445448 raise
448451 except struct.error as e:
449452 raise pyric.error(pyric.EUNDEF, "Error parsing results: {0}".format(e))
450453
451 def ip4set(card, ipaddr, *argv):
452 """
453 REQUIRES ROOT PRIVILEGES
454 set nic's ip4 addr (ifconfig <card.dev> <ipaddr>
455 :param card: Card object
456 :param ipaddr: ip address to set
457 :param argv: ioctl socket at argv[0] (or empty)
458 :returns: the new ip address
459 NOTE: setting the ip will set netmask and broadcast accordingly
460 """
461 if not _validip4_(ipaddr): raise pyric.error(pyric.EINVAL, "Invalid ipaddr")
462
463 try:
464 iosock = argv[0]
465 except IndexError:
466 return _iostub_(ip4set, card, ipaddr)
454 def inetset(card, inet, iosock=None):
455 """
456 Set nic's ip4 addr (ifconfig <card.dev> <inet>
457
458 :param card: Card object
459 :param inet: ip address to set
460 :param iosock: ioctl socket
461 :returns: True on success, False otherwise
462 .. note: setting the ip will set netmask and broadcast accordingly
463 .. warning:: Requires root privileges
464 """
465 if not _validip4_(inet): raise pyric.error(pyric.EINVAL, "Invalid IP")
466 if iosock is None: return _iostub_(inetset, card, inet)
467467
468468 try:
469469 flag = sioch.SIOCSIFADDR
470 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag, [ipaddr]))
470 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag, [inet]))
471471 fam = struct.unpack_from(ifh.sa_addr, ret, ifh.IFNAMELEN)[0]
472472 if fam == ifh.AF_INET:
473 return _hex2ip4_(ipaddr)
473 return _hex2ip4_(ret[20:24]) == inet
474474 else:
475475 raise pyric.error(pyric.EAFNOSUPPORT, "Invalid return ip family")
476476 except AttributeError as e:
480480 except io.error as e:
481481 raise pyric.error(e.errno, e.strerror)
482482
483 def netmaskset(card, netmask, *argv):
484 """
485 REQUIRES ROOT PRIVILEGES
486 set nic's ip4 netmask (ifconfig <card.dev> netmask <netmask>
487 :param card: Card object
488 :param netmask: netmask to set
489 :param argv: ioctl socket at argv[0] (or empty)
490 :returns: the new netmask
491 NOTE:
492 1) throws error if netmask is set and card does not have an ip assigned
493 """
494 if not _validip4_(netmask): raise pyric.error(pyric.EINVAL, "Invalid netmask")
495 try:
496 iosock = argv[0]
497 except IndexError:
498 return _iostub_(netmaskset, card, netmask)
499
500 try:
501 flag = sioch.SIOCGIFNETMASK
502 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag))
483 def maskset(card, mask, iosock=None):
484 """
485 Set nic's ip4 netmask (ifconfig <card.dev> netmask <netmask>
486
487 :param card: Card object
488 :param mask: netmask to set
489 :param iosock: ioctl socket
490 :returns: True on success, False otherwise
491 .. note:
492 throws error if netmask is set and card does not have an ip assigned
493 .. warning:: Requires root privileges
494 """
495 if not _validip4_(mask): raise pyric.error(pyric.EINVAL, "Invalid netmask")
496 if iosock is None: return _iostub_(maskset, card, mask)
497 try:
498 flag = sioch.SIOCSIFNETMASK
499 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag, [mask]))
503500 fam = struct.unpack_from(ifh.sa_addr, ret, ifh.IFNAMELEN)[0]
504501 if fam == ifh.AF_INET:
505 return _hex2ip4_(ret[20:24])
502 return _hex2ip4_(ret[20:24]) == mask
506503 else:
507504 raise pyric.error(pyric.EAFNOSUPPORT, "Invalid return netmask family")
508505 except AttributeError as e:
517514 else:
518515 raise pyric.error(e, e.strerror)
519516
520 def broadcastset(card, broadcast, *argv):
521 """
522 REQUIRES ROOT PRIVILEGES
523 set nic's ip4 netmask (ifconfig <card.dev> broadcast <broadcast>
524 :param card: Card object
525 :param broadcast: netmask to set
526 :param argv: ioctl socket at argv[0] (or empty)
527 :returns: the new broadcast address
528 NOTE:
529 1) throws error if netmask is set and card does not have an ip assigned
530 2) can set broadcast to erroneous values i.e. ipaddr = 192.168.1.2 and
531 broadcast = 10.0.0.31.
532 """
533 if not _validip4_(broadcast): raise pyric.error(pyric.EINVAL, "Invalid bcast")
534
535 try:
536 iosock = argv[0]
537 except IndexError:
538 return _iostub_(broadcastset, card, broadcast)
517 def bcastset(card, bcast, iosock=None):
518 """
519 Set nic's ip4 netmask (ifconfig <card.dev> broadcast <broadcast>
520
521 :param card: Card object
522 :param bcast: netmask to set
523 :param iosock: ioctl socket
524 :returns: True on success, False otherwise
525 .. note:
526 1) throws error if netmask is set and card does not have an ip assigned
527 2) can set broadcast to erroneous values i.e. ipaddr = 192.168.1.2 and
528 broadcast = 10.0.0.31.
529 .. warning:: Requires root privileges
530 """
531 if not _validip4_(bcast): raise pyric.error(pyric.EINVAL, "Invalid bcast")
532 if iosock is None: return _iostub_(bcastset, card, bcast)
539533
540534 # we have to do one at a time
541535 try:
542 flag = sioch.SIOCGIFBRDADDR
543 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag))
536 flag = sioch.SIOCSIFBRDADDR
537 ret = io.io_transfer(iosock, flag, ifh.ifreq(card.dev, flag, [bcast]))
544538 fam = struct.unpack_from(ifh.sa_addr, ret, ifh.IFNAMELEN)[0]
545539 if fam == ifh.AF_INET:
546 return _hex2ip4_(ret[20:24])
540 return _hex2ip4_(ret[20:24]) == bcast
547541 else:
548542 raise pyric.error(pyric.EAFNOSUPPORT, "Invalid return broadcast family")
549543 except pyric.error as e:
569563 #### HARDWARE ON/OFF ####
570564 ################################################################################
571565
572 def isup(card, *argv):
573 """
574 determine on/off state of card
575 :param card: Card object
576 :param argv: ioctl socet at argv[0] (or empty)
577 :returns: True if card is up, False otherwise
578 """
579 try:
580 iosock = argv[0]
581 except IndexError:
582 return _iostub_(isup, card)
566 def isup(card, iosock=None):
567 """
568 Determine on/off state of card
569 :param card: Card object
570 :param iosock: ioctl socket
571 :returns: True if card is up, False otherwise
572 """
573 if iosock is None: return _iostub_(isup, card)
583574
584575 try:
585576 return _issetf_(_flagsget_(card.dev, iosock), ifh.IFF_UP)
586577 except AttributeError:
587578 raise pyric.error(pyric.EINVAL, "Invalid Card")
588579
589 def up(card, *argv):
590 """
591 REQUIRES ROOT PRIVILEGES
592 turns dev on (ifconfig <card.dev> up)
593 :param card: Card object
594 :param argv: ioctl socket at argv[0] (or empty)
595 """
596 try:
597 iosock = argv[0]
598 except IndexError:
599 return _iostub_(up, card)
580 def up(card, iosock=None):
581 """
582 Turns dev on (ifconfig <card.dev> up)
583
584 :param card: Card object
585 :param iosock: ioctl socket
586 .. warning:: Requires root privileges
587 """
588 if iosock is None: return _iostub_(up, card)
600589
601590 try:
602591 flags = _flagsget_(card.dev, iosock)
605594 except AttributeError:
606595 raise pyric.error(pyric.EINVAL, "Invalid Card")
607596
608 def down(card, *argv):
609 """
610 REQUIRES ROOT PRIVILEGES
611 turns def off (ifconfig <card.dev> down)
612 :param card: Card object
613 :param argv: ioctl socket at argv[0] (or empty)
614 """
615 try:
616 iosock = argv[0]
617 except IndexError:
618 return _iostub_(down, card)
597 def down(card, iosock=None):
598 """
599 Turns def off (ifconfig <card.dev> down)
600
601 :param card: Card object
602 :param iosock: ioctl socket
603 .. warning:: Requires root privileges
604 """
605 if iosock is None: return _iostub_(down, card)
619606
620607 try:
621608 flags = _flagsget_(card.dev, iosock)
626613
627614 def isblocked(card):
628615 """
629 determines blocked state of Card
630 :param card: Card object
631 :returns: tuple (Soft={True if soft blocked|False otherwise},
632 Hard={True if hard blocked|False otherwise})
616 Determines blocked state of Card
617
618 :param card: Card object
619 :returns: tuple (Soft={True if soft blocked|False otherwise},
620 Hard={True if hard blocked|False otherwise})
633621 """
634622 try:
635623 idx = rfkill.getidx(card.phy)
639627
640628 def block(card):
641629 """
642 soft blocks card
643 :param card: Card object
630 Soft blocks card
631
632 :param card: Card object
644633 """
645634 try:
646635 idx = rfkill.getidx(card.phy)
650639
651640 def unblock(card):
652641 """
653 turns off soft block
654 :param card:
642 Turns off soft block
643
644 :param card:
655645 """
656646 try:
657647 idx = rfkill.getidx(card.phy)
663653 #### RADIO PROPERTIES ####
664654 ################################################################################
665655
666 def pwrsaveget(card, *argv):
667 """
668 returns card's power save state
669 :param card: Card object
670 :param argv: netlink socket at argv[0] (or empty)
671 :returns: True if power save is on, False otherwise
672 """
673 try:
674 nlsock = argv[0]
675 except IndexError:
676 return _nlstub_(pwrsaveget, card)
656 def pwrsaveget(card, nlsock=None):
657 """
658 Returns card's power save state
659
660 :param card: Card object
661 :param nlsock: netlink socket
662 :returns: True if power save is on, False otherwise
663 """
664 if nlsock is None: return _nlstub_(pwrsaveget, card)
677665
678666 try:
679667 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
689677
690678 return nl.nla_find(rmsg, nl80211h.NL80211_ATTR_PS_STATE) == 1
691679
692 def pwrsaveset(card, on, *argv):
693 """
694 REQUIRES ROOT PRIVILEGES
695 sets card's power save state
696 :param card: Card object
697 :param on: {True = on|False = off}
698 :param argv: netlink socket at argv[0] (or empty)
699 sets card's power save
700 """
701 try:
702 nlsock = argv[0]
703 except IndexError:
704 return _nlstub_(pwrsaveset, card, on)
680 def pwrsaveset(card, on, nlsock=None):
681 """
682 Sets card's power save state
683
684 :param card: Card object
685 :param on: {True = on|False = off}
686 :param nlsock: netlink socket
687 .. warning:: Requires root privileges
688 """
689 if nlsock is None: return _nlstub_(pwrsaveset, card, on)
705690
706691 try:
707692 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
718703 except nl.error as e:
719704 raise pyric.error(e.errno, e.strerror)
720705
721 def covclassget(card, *argv):
722 """
723 gets the coverage class value
724 :param card: Card object
725 :param argv: netlink socket at argv[0] (or empty)
726 :returns: coverage class value
727 """
728 try:
729 nlsock = argv[0]
730 except IndexError:
731 return _nlstub_(covclassget, card)
732
706 def covclassget(card, nlsock=None):
707 """
708 Gets the coverage class value
709
710 :param card: Card object
711 :param nlsock: netlink socket
712 :returns: coverage class value
713 """
714 if nlsock is None: return _nlstub_(covclassget, card)
733715 return phyinfo(card, nlsock)['cov_class']
734716
735 def covclassset(card, cc, *argv):
736 """
737 REQUIRES ROOT PRIVILEGES/DOES NOT WORK ON ALL SYSTEMS
738 sets the coverage class. The coverage class IAW IEEE Std 802.11-2012 is
739 defined as the Air propagation time & together with max tx power control
740 the BSS diamter
741 :param card: Card object
742 :param cc: coverage class 0 to 31 IAW IEEE Std 802.11-2012 Table 8-56
743 :param argv: netlink socket at argv[0] (or empty)
744 sets card's coverage class
717 def covclassset(card, cc, nlsock=None):
718 """
719 Sets the coverage class. The coverage class IAW IEEE Std 802.11-2012 is
720 defined as the Air propagation time & together with max tx power control
721 the BSS diamter
722
723 :param card: Card object
724 :param cc: coverage class 0 to 31 IAW IEEE Std 802.11-2012 Table 8-56
725 :param nlsock: netlink socket
726 .. warning:: Requires root privileges. Also this might not work on all
727 systems.
745728 """
746729 if cc < wlan.COV_CLASS_MIN or cc > wlan.COV_CLASS_MAX:
747730 # this can work 'incorrectly' on non-int values but these will
749732 emsg = "Cov class must be integer {0}-{1}".format(wlan.COV_CLASS_MIN,
750733 wlan.COV_CLASS_MAX)
751734 raise pyric.error(pyric.EINVAL, emsg)
752
753 try:
754 nlsock = argv[0]
755 except IndexError:
756 return _nlstub_(covclassset, card, cc)
735 if nlsock is None: return _nlstub_(covclassset, card, cc)
757736
758737 try:
759738 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
770749 except nl.error as e:
771750 raise pyric.error(e.errno, e.strerror)
772751
773 def retryshortget(card, *argv):
774 """
775 gets the short retry limit.
776 :param card: Card object
777 :param argv: netlink socket at argv[0] (or empty)
778 gets card's short retry
779 """
780 try:
781 nlsock = argv[0]
782 except IndexError:
783 return _nlstub_(retryshortget, card)
784
752 def retryshortget(card, nlsock=None):
753 """
754 Gets the short retry limit.
755
756 :param card: Card object
757 :param nlsock: netlink socket
758 """
759 if nlsock is None: return _nlstub_(retryshortget, card)
785760 return phyinfo(card, nlsock)['retry_short']
786761
787 def retryshortset(card, lim, *argv):
788 """
789 REQUIRES ROOT PRIVILEGES
790 sets the short retry limit.
791 :param card: Card object
792 :param lim: max # of short retries 1 - 255
793 :param argv: netlink socket at argv[0] (or empty)
794 NOTE: after moving to kernel 4, the kernel does not allow setting up to
795 the max
762 def retryshortset(card, lim, nlsock=None):
763 """
764 Sets the short retry limit.
765 :param card: Card object
766 :param lim: max # of short retries 1 - 255
767 :param nlsock: netlink socket
768 .. note: with kernel 4, the kernel does not allow setting up to the max
769 .. warning:: Requires root privileges
796770 """
797771 if lim < wlan.RETRY_MIN or lim > wlan.RETRY_MAX:
798772 # this can work 'incorrectly' on non-int values but these will
800774 emsg = "Retry short must be integer {0}-{1}".format(wlan.RETRY_MIN,
801775 wlan.RETRY_MAX)
802776 raise pyric.error(pyric.EINVAL, emsg)
803
804 try:
805 nlsock = argv[0]
806 except IndexError:
807 return _nlstub_(retryshortset, card, lim)
777 if nlsock is None: return _nlstub_(retryshortset, card, lim)
808778
809779 try:
810780 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
821791 except nl.error as e:
822792 raise pyric.error(e.errno, e.strerror)
823793
824 def retrylongget(card, *argv):
825 """
826 gets the long retry limit.
827 :param card: Card object
828 :param argv: netlink socket at argv[0] (or empty)
829 gets card's long retry
830 """
831 try:
832 nlsock = argv[0]
833 except IndexError:
834 return _nlstub_(retrylongget, card)
835
794 def retrylongget(card, nlsock=None):
795 """
796 Gets the long retry limit.
797
798 :param card: Card object
799 :param nlsock: netlink socket
800 :returns: card's long retry
801 """
802 if nlsock is None: return _nlstub_(retrylongget, card)
836803 return phyinfo(card, nlsock)['retry_long']
837804
838 def retrylongset(card, lim, *argv):
839 """
840 REQUIRES ROOT PRIVILEGES
841 sets the long retry limit.
842 :param card: Card object
843 :param lim: max # of short retries 1 - 255
844 :param argv: netlink socket at argv[0] (or empty)
845 NOTE: after moving to kernel 4, the kernel does not allow setting up to
846 the max
805 def retrylongset(card, lim, nlsock=None):
806 """
807 Sets the long retry limit.
808 :param card: Card object
809 :param lim: max # of short retries 1 - 255
810 :param nlsock: netlink socket
811 .. note: after moving to kernel 4, the kernel does not allow setting up to
812 the max
813 .. warning:: Requires root privileges
847814 """
848815 if lim < wlan.RETRY_MIN or lim > wlan.RETRY_MAX:
849816 # this can work 'incorrectly' on non-int values but these will
851818 emsg = "Retry long must be integer {0}-{1}".format(wlan.RETRY_MIN,
852819 wlan.RETRY_MAX)
853820 raise pyric.error(pyric.EINVAL, emsg)
854
855 try:
856 nlsock = argv[0]
857 except IndexError:
858 return _nlstub_(retrylongset, card, lim)
821 if nlsock is None: return _nlstub_(retrylongset, card, lim)
859822
860823 try:
861824 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
872835 except nl.error as e:
873836 raise pyric.error(e.errno, e.strerror)
874837
875 def rtsthreshget(card, *argv):
876 """
877 gets RTS Threshold
878 :param card: Card Object
879 :param argv: netlink socket at argv[0] (or empty)
880 :returns: RTS threshold
881 """
882 try:
883 nlsock = argv[0]
884 except IndexError:
885 return _nlstub_(rtsthreshget, card)
886
838 def rtsthreshget(card, nlsock=None):
839 """
840 Gets RTS Threshold
841
842 :param card: Card Object
843 :param nlsock: netlink socket
844 :returns: RTS threshold
845 """
846 if nlsock is None: return _nlstub_(rtsthreshget, card)
887847 return phyinfo(card, nlsock)['rts_thresh']
888848
889 def rtsthreshset(card, thresh, *argv):
890 """
891 REQUIRES ROOT PRIVILEGES
892 sets the RTS threshold. If off, RTS is disabled. If an integer, sets the
893 smallest packet for which card will send an RTS prior to each transmission
894 :param card: Card object
895 :param thresh: rts threshold limit
896 :param argv: netlink socket at argv[0] (or empty)
897 sets the card's RTS threshold
849 def rtsthreshset(card, thresh, nlsock=None):
850 """
851 Sets the RTS threshold. If off, RTS is disabled. If an integer, sets the
852 smallest packet for which card will send an RTS prior to each transmission
853
854 :param card: Card object
855 :param thresh: rts threshold limit
856 :param nlsock: netlink socket
857 .. warning:: Requires root privileges
898858 """
899859 if thresh == 'off': thresh = wlan.RTS_THRESH_OFF
900860 elif thresh == wlan.RTS_THRESH_OFF: pass
902862 emsg = "Thresh must be 'off' or integer {0}-{1}".format(wlan.RTS_THRESH_MIN,
903863 wlan.RTS_THRESH_MAX)
904864 raise pyric.error(pyric.EINVAL, emsg)
905
906 try:
907 nlsock = argv[0]
908 except IndexError:
909 return _nlstub_(rtsthreshset, card, thresh)
865 if nlsock is None: return _nlstub_(rtsthreshset, card, thresh)
910866
911867 try:
912868 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
923879 except nl.error as e:
924880 raise pyric.error(e.errno, e.strerror)
925881
926 def fragthreshget(card, *argv):
927 """
928 gets Fragmentation Threshold
929 :param card: Card Object
930 :param argv: netlink socket at argv[0] (or empty)
931 :returns: RTS threshold
932 """
933 try:
934 nlsock = argv[0]
935 except IndexError:
936 return _nlstub_(fragthreshget, card)
937
882 def fragthreshget(card, nlsock=None):
883 """
884 Gets Fragmentation Threshold
885
886 :param card: Card Object
887 :param nlsock: netlink socket
888 :returns: RTS threshold
889 """
890 if nlsock is None: return _nlstub_(fragthreshget, card)
938891 return phyinfo(card, nlsock)['frag_thresh']
939892
940 def fragthreshset(card, thresh, *argv):
941 """
942 REQUIRES ROOT PRIVILEGES
943 sets the Frag threshold. If off, fragmentation is disabled. If an integer,
944 sets the largest packet before the card will enable fragmentation
945 :param card: Card object
946 :param thresh: frag threshold limit in octets
947 :param argv: netlink socket at argv[0] (or empty)
948 sets the card's Fragmentation THRESH
893 def fragthreshset(card, thresh, nlsock=None):
894 """
895 Sets the Frag threshold. If off, fragmentation is disabled. If an integer,
896 sets the largest packet before the card will enable fragmentation
897
898 :param card: Card object
899 :param thresh: frag threshold limit in octets
900 :param nlsock: netlink socket
901 .. warning:: Requires root privileges
949902 """
950903 if thresh == 'off': thresh = wlan.FRAG_THRESH_OFF
951904 elif thresh == wlan.FRAG_THRESH_OFF: pass
953906 emsg = "Thresh must be 'off' or integer {0}-{1}".format(wlan.FRAG_THRESH_MIN,
954907 wlan.FRAG_THRESH_MAX)
955908 raise pyric.error(pyric.EINVAL, emsg)
956
957 try:
958 nlsock = argv[0]
959 except IndexError:
960 return _nlstub_(fragthreshset, card, thresh)
909 if nlsock is None: return _nlstub_(fragthreshset, card, thresh)
961910
962911 try:
963912 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
976925 #### INFO RELATED ####
977926 ################################################################################
978927
979 def devfreqs(card, *argv):
980 """
981 returns card's supported frequencies
982 :param card: Card object
983 :param argv: netlink socket at argv[0] (or empty)
984 :returns: list of supported frequencies
985 """
986 try:
987 nlsock = argv[0]
988 except IndexError:
989 return _nlstub_(devfreqs, card)
928 def devfreqs(card, nlsock=None):
929 """
930 Returns card's supported frequencies
931
932 :param card: Card object
933 :param nlsock: netlink socket
934 :returns: list of supported frequencies
935 """
936 if nlsock is None: return _nlstub_(devfreqs, card)
990937
991938 rfs = []
992939 pinfo = phyinfo(card, nlsock)
995942 rfs = sorted(rfs)
996943 return rfs
997944
998 def devchs(card, *argv):
999 """
1000 returns card's supported channels
1001 :param card: Card object
1002 :param argv: netlink socket at argv[0] (or empty)
1003 :returns: list of supported channels
1004 """
1005 try:
1006 nlsock = argv[0]
1007 except IndexError:
1008 return _nlstub_(devchs, card)
1009
945 def devchs(card, nlsock=None):
946 """
947 Returns card's supported channels
948
949 :param card: Card object
950 :param nlsock: netlink socket
951 :returns: list of supported channels
952 """
953 if nlsock is None: return _nlstub_(devchs, card)
1010954 return [channels.rf2ch(rf) for rf in devfreqs(card,nlsock)]
1011955
1012 def devstds(card, *argv):
1013 """
1014 gets card's wireless standards (iwconfig <card.dev> | grep IEEE
1015 :param card: Card object
1016 :param argv: netlink socket at argv[0] (or empty)
1017 :returns: list of standards (letter designators)
1018 """
1019 try:
1020 nlsock = argv[0]
1021 except IndexError:
1022 return _nlstub_(devstds, card)
956 def devstds(card, nlsock=None):
957 """
958 Gets card's wireless standards (iwconfig <card.dev> | grep IEEE
959
960 :param card: Card object
961 :param nlsock: netlink socket
962 :returns: list of standards (letter designators)
963 """
964 if nlsock is None: return _nlstub_(devstds, card)
1023965
1024966 stds = []
1025967 bands = phyinfo(card,nlsock)['bands']
1033975 if VHT: stds.append('ac')
1034976 return stds
1035977
1036 def devmodes(card, *argv):
1037 """
1038 gets supported modes card can operate in
1039 :param card: Card object
1040 :param argv: netlink socket at argv[0] (or empty)
1041 :returns: list of card's supported modes
1042 """
1043 try:
1044 nlsock = argv[0]
1045 except IndexError:
1046 return _nlstub_(devmodes, card)
1047
978 def devmodes(card, nlsock=None):
979 """
980 Gets supported modes card can operate in
981
982 :param card: Card object
983 :param nlsock: netlink socket
984 :returns: list of card's supported modes
985 """
986 if nlsock is None: return _nlstub_(devmodes, card)
1048987 return phyinfo(card, nlsock)['modes']
1049988
1050 def devcmds(card, *argv):
1051 """
1052 get supported commands card can execute
1053 :param card: Card object
1054 :param argv: netlink socket at argv[0] (or empty)
1055 :returns: supported commands
1056 """
1057 try:
1058 nlsock = argv[0]
1059 except IndexError:
1060 return _nlstub_(devcmds, card)
1061
989 def devcmds(card, nlsock=None):
990 """
991 Get supported commands card can execute
992
993 :param card: Card object
994 :param nlsock: netlink socket
995 :returns: supported commands
996 """
997 if nlsock is None: return _nlstub_(devcmds, card)
1062998 return phyinfo(card, nlsock)['commands']
1063999
1064 def ifinfo(card, *argv):
1065 """
1066 get info for interface (ifconfig <dev>)
1067 :param card: Card object
1068 :param argv: ioctl socket at argv[0] (or empty)
1069 :returns: dict with the following key:value pairs
1070 driver -> card's driver
1071 chipset -> card's chipset
1072 manufacturer -> card's manufacturer
1073 hwaddr -> card's mac address
1074 inet -> card's inet address
1075 bcast -> card's broadcast address
1076 mask -> card's netmask address
1077 """
1078 try:
1079 iosock = argv[0]
1080 except IndexError:
1081 return _iostub_(ifinfo, card)
1000 def ifinfo(card, iosock=None):
1001 """
1002 Get info for interface (ifconfig <dev>)
1003
1004 :param card: Card object
1005 :param iosock: ioctl socket
1006 :returns: dict with the following key:value pairs
1007 driver -> card's driver
1008 chipset -> card's chipset
1009 manufacturer -> card's manufacturer
1010 hwaddr -> card's mac address
1011 inet -> card's inet address
1012 bcast -> card's broadcast address
1013 mask -> card's netmask address
1014 """
1015 if iosock is None: return _iostub_(ifinfo, card)
10821016
10831017 # get oui dict
10841018 ouis = {}
10901024 try:
10911025 drvr, chips = hw.ifcard(card.dev)
10921026 mac = macget(card, iosock)
1093 ip4, nmask, bcast = inetget(card, iosock)
1027 ip4, nmask, bcast = ifaddrget(card, iosock)
10941028 info = {'driver':drvr, 'chipset':chips, 'hwaddr':mac,
10951029 'manufacturer':hw.manufacturer(ouis,mac),
10961030 'inet':ip4, 'bcast':bcast, 'mask':nmask}
10991033
11001034 return info
11011035
1102 def devinfo(card, *argv):
1103 """
1104 get info for device (iw dev <dev> info)
1105 :param card: Card object or dev
1106 :param argv: netlink socket at argv[0] (or empty)
1107 :returns: dict with the following key:value pairs
1108 card -> Card(phy,dev,ifindex)
1109 mode -> i.e. monitor or managed
1110 wdev -> wireless device id
1111 mac -> hw address
1112 RF (if associated) -> frequency
1113 CF (if assoicate) -> center frequency
1114 CHW -> channel width i.e. NOHT,HT40- etc
1115 """
1116 try:
1117 nlsock = argv[0]
1118 except IndexError:
1119 return _nlstub_(devinfo, card)
1036 def devinfo(card, nlsock=None):
1037 """
1038 Get info for device (iw dev <dev> info)
1039
1040 :param card: Card object or dev
1041 :param nlsock: netlink socket
1042 :returns: dict with the following key:value pairs
1043 card -> Card(phy,dev,ifindex)
1044 mode -> i.e. monitor or managed
1045 wdev -> wireless device id
1046 mac -> hw address
1047 RF (if associated) -> frequency
1048 CF (if assoicate) -> center frequency
1049 CHW -> channel width i.e. NOHT,HT40- etc
1050 """
1051 if nlsock is None: return _nlstub_(devinfo, card)
11201052
11211053 dev = None # appease pycharm
11221054 try:
11681100 info['CHW'] = None
11691101 return info
11701102
1171 def phyinfo(card, *argv):
1172 """
1173 get info for phy (iw phy <phy> info)
1174 :param card: Card
1175 :param argv: netlink socket at argv[0] (or empty)
1176 :returns: dict with the following key:value pairs
1177 generation -> wiphy generation
1178 modes -> list of supported modes
1179 bands -> dict of supported bands of the form
1180 bandid -> {'rates': list of supported rates,
1103 def phyinfo(card, nlsock=None):
1104 """
1105 Get info for phy (iw phy <phy> info)
1106
1107 :param card: Card
1108 :param nlsock: netlink socket
1109 :returns: dict with the following key:value pairs
1110 generation -> wiphy generation
1111 modes -> list of supported modes
1112 bands -> dict of supported bands of the form
1113 bandid -> {'rates': list of supported rates,
11811114 'rfs': list of supported freqs,
11821115 'rd-data': list of data corresponding to rfs,
11831116 'HT': 802.11n HT supported,
11841117 'VHT': 802.11ac VHT supported}
1185 scan_ssids -> max number of scan SSIDS
1186 retry_short -> retry short limit
1187 retry_long -> retry long limit
1188 frag_thresh -> frag threshold
1189 rts_thresh -> rts threshold
1190 cov_class -> coverage class
1191 swmodes -> supported software modes
1192 commands -> supported commands
1193 ciphers -> supported ciphers
1194 """
1195 try:
1196 nlsock = argv[0]
1197 except IndexError:
1198 return _nlstub_(phyinfo, card)
1118 scan_ssids -> max number of scan SSIDS
1119 retry_short -> retry short limit
1120 retry_long -> retry long limit
1121 frag_thresh -> frag threshold
1122 rts_thresh -> rts threshold
1123 cov_class -> coverage class
1124 swmodes -> supported software modes
1125 commands -> supported commands
1126 ciphers -> supported ciphers
1127 """
1128 if nlsock is None: return _nlstub_(phyinfo, card)
11991129
12001130 # iw sends @NL80211_ATTR_SPLIT_WIPHY_DUMP, we don't & get full return at once
12011131 try:
12561186 #### TX/RX RELATED ####
12571187 ################################################################################
12581188
1259 def txset(card, setting, lvl, *argv):
1260 """
1261 ROOT Required
1262 sets cards tx power (iw phy card.<phy> <lvl> <pwr> * 100)
1263 :param card: Card object
1264 :param setting: power level setting oneof {'auto' = automatically determine
1265 transmit power|'limit' = limit power by <pwr>|'fixed' = set to <pwr>}
1266 :param lvl: desired tx power in dBm or None. NOTE: ignored if lvl is 'auto'
1267 :param argv: netlink socket at argv[0] (or empty)
1268 :returns: True on success
1269 NOTE: this does not work on my card(s) (nor does the corresponding iw
1270 command)
1189 def txset(card, setting, lvl, nlsock=None):
1190 """
1191 Sets cards tx power (iw phy card.<phy> <lvl> <pwr> * 100)
1192
1193 :param card: Card object
1194 :param setting: power level setting oneof {'auto' = automatically determine
1195 transmit power|'limit' = limit power by <pwr>|'fixed' = set to <pwr>}
1196 :param lvl: desired tx power in dBm or None. NOTE: ignored if lvl is 'auto'
1197 :param nlsock: netlink socket
1198 :returns: True on success
1199 .. note: this does not work on my card(s) (nor does the corresponding iw
1200 command)
1201 .. warning:: Requires root privileges
12711202 """
12721203 # sanity check on power setting and power level
12731204 if not setting in TXPWRSETTINGS:
12741205 raise pyric.error(pyric.EINVAL, "Invalid power setting {0}".format(setting))
1275 if setting != 'auto':
1276 if lvl is None:
1277 raise pyric.error(pyric.EINVAL, "Power level must be specified")
1278
1279 try:
1280 nlsock = argv[0]
1281 except IndexError:
1282 return _nlstub_(txset, card, setting, lvl)
1206 if setting != 'auto' and lvl is None:
1207 raise pyric.error(pyric.EINVAL, "Power level must be specified")
1208 if nlsock is None: return _nlstub_(txset, card, setting, lvl)
12831209
12841210 try:
12851211 setting = TXPWRSETTINGS.index(setting)
13021228 except nl.error as e:
13031229 raise pyric.error(e.errno, e.strerror)
13041230
1305 def txget(card, *argv):
1306 """
1307 gets card's transmission power (iwconfig <card.dev> | grep Tx-Power)
1308 :param card: Card object
1309 :param argv: ioctl socket at argv[0] (or empty)
1310 :returns: transmission power in dBm
1311 info can be found by cat /sys/kernel/debug/ieee80211/phy<#>/power but
1312 how valid is it?
1313 """
1314 try:
1315 iosock = argv[0]
1316 except IndexError:
1317 return _iostub_(txget, card)
1231 def txget(card, iosock=None):
1232 """
1233 Gets card's transmission power (iwconfig <card.dev> | grep Tx-Power)
1234
1235 :param card: Card object
1236 :param iosock: ioctl socket
1237 :returns: transmission power in dBm
1238 .. note: info can be found by cat /sys/kernel/debug/ieee80211/phy<#>/power but
1239 how valid is it?
1240 """
1241 if iosock is None: return _iostub_(txget, card)
13181242
13191243 try:
13201244 flag = sioch.SIOCGIWTXPOW
13291253 except io.error as e:
13301254 raise pyric.error(e.errno, e.strerror)
13311255
1332 def chget(card, *argv):
1333 """
1334 gets the current channel for device (iw dev <card.dev> info | grep channel)
1335 :param card: Card object
1336 :param argv: netlink socket at argv[0] (or empty)
1337 NOTE: will only work if dev is associated w/ AP or device is in monitor mode
1338 and has had chset previously
1339 """
1340 try:
1341 nlsock = argv[0]
1342 except IndexError:
1343 return _nlstub_(chget, card)
1344
1345 # rf2ch will return None if Card is not on a channel
1256 def chget(card, nlsock=None):
1257 """
1258 Gets the current channel for device (iw dev <card.dev> info | grep channel)
1259
1260 :param card: Card object
1261 :param nlsock: netlink socket
1262 .. note: will only work if dev is associated w/ AP or device is in monitor mode
1263 and has had chset previously
1264 """
1265 if nlsock is None: return _nlstub_(chget, card)
13461266 return channels.rf2ch(devinfo(card, nlsock)['RF'])
13471267
1348 def chset(card, ch, chw=None, *argv):
1349 """
1350 REQUIRES ROOT PRIVILEGES
1351 sets current channel on device (iw phy <card.phy> set channel <ch> <chw>)
1352 :param card: Card object
1353 :param ch: channel number
1354 :param chw: channel width oneof {[None|'HT20'|'HT40-'|'HT40+'}
1355 :param argv: netlink socket at argv[0] (or empty)
1356 NOTE:
1268 def chset(card, ch, chw=None, nlsock=None):
1269 """
1270 Sets current channel on device (iw phy <card.phy> set channel <ch> <chw>)
1271
1272 :param card: Card object
1273 :param ch: channel number
1274 :param chw: channel width oneof {[None|'HT20'|'HT40-'|'HT40+'}
1275 :param nlsock: netlink socket
1276 .. note:
13571277 Can throw a device busy for several reason. 1) Card is down, 2) Another
13581278 device is sharing the phy and wpa_supplicant/Network Manage is using it
1359 """
1360 try:
1361 nlsock = argv[0]
1362 except IndexError:
1363 return _nlstub_(chset, card, ch, chw)
1364
1279 .. warning:: Requires root privileges
1280 """
1281 if nlsock is None: return _nlstub_(chset, card, ch, chw)
13651282 return freqset(card, channels.ch2rf(ch), chw, nlsock)
13661283
1367 def freqget(card, *argv):
1368 """
1369 gets the current frequency for device (iw dev <card.dev> info | grep channel)
1370 :param card: Card object
1371 :param argv: netlink socket at argv[0] (or empty)
1372 NOTE: will only work if dev is associated w/ AP or device is in monitor mode
1373 and has had [ch|freq]set previously
1374 """
1375 try:
1376 nlsock = argv[0]
1377 except IndexError:
1378 return _nlstub_(chget, card)
1379
1284 def freqget(card, nlsock=None):
1285 """
1286 Gets the current frequency for device (iw dev <card.dev> info | grep channel)
1287
1288 :param card: Card object
1289 :param nlsock: netlink socket
1290 .. note: will only work if dev is associated w/ AP or device is in monitor mode
1291 and has had [ch|freq]set previously
1292 """
1293 if nlsock is None: return _nlstub_(chget, card)
13801294 return devinfo(card, nlsock)['RF']
13811295
1382 def freqset(card, rf, chw=None, *argv):
1383 """
1384 REQUIRES ROOT PRIVILEGES
1385 set the frequency and width
1386 :param card: Card object
1387 :param rf: frequency
1388 :param chw: channel width oneof {[None|'HT20'|'HT40-'|'HT40+'}
1389 :param argv: netlink socket at argv[0] (or empty)
1390 NOTE:
1391 Can throw a device busy for several reason. 1) Card is down, 2) Another
1392 device is sharing the phy and wpa_supplicant/Network Manage is using it
1393 """
1394 try:
1395 nlsock = argv[0]
1396 except IndexError:
1397 return _nlstub_(freqset, card, rf, chw)
1296 def freqset(card, rf, chw=None, nlsock = None):
1297 """
1298 Set the frequency and width
1299
1300 :param card: Card object
1301 :param rf: frequency
1302 :param chw: channel width oneof {[None|'HT20'|'HT40-'|'HT40+'}
1303 :param nlsock: netlink socket
1304 .. note:
1305 Can throw a device busy for several reason. 1) Card is down, 2) Another
1306 device is sharing the phy and wpa_supplicant/Network Manage is using it
1307 .. warning:: Requires root privileges
1308 """
1309 if nlsock is None: return _nlstub_(freqset, card, rf, chw)
13981310
13991311 try:
14001312 chw = channels.CHTYPES.index(chw)
14161328
14171329 #### INTERFACE & MODE RELATED ####
14181330
1419 def modeget(card, *argv):
1420 """
1421 get current mode of card
1422 :param card: Card object
1423 :param argv: netlink socket at argv[0] (or empty)
1424 :return:
1425 """
1426 try:
1427 nlsock = argv[0]
1428 except IndexError:
1429 return _nlstub_(modeget, card)
1430
1331 def modeget(card, nlsock=None):
1332 """
1333 Get current mode of card
1334
1335 :param card: Card object
1336 :param nlsock: netlink socket
1337 :return:
1338 """
1339 if nlsock is None: return _nlstub_(modeget, card)
14311340 return devinfo(card, nlsock)['mode']
14321341
1433 def modeset(card, mode, flags=None, *argv):
1434 """
1435 REQUIRES ROOT PRIVILEGES/CARD DOWN
1436 sets card to mode (with optional flags if mode is monitor)
1437 (APX iw dev <card.dev> set type <mode> [flags])
1438 NOTE: as far
1439 :param card: Card object
1440 :param mode: 'name' of mode to operate in (must be one of in {'unspecified'|
1441 'ibss'|'managed'|'AP'|'AP VLAN'|'wds'|'monitor'|'mesh'|'p2p'}
1442 :param flags: list of monitor flags (can only be used if card is being set
1443 to monitor mode) neof {'invalid'|'fcsfail'|'plcpfail'|'control'|'other bss'
1342 def modeset(card, mode, flags=None, nlsock=None):
1343 """
1344 Sets card to mode (with optional flags if mode is monitor)
1345 (APX iw dev <card.dev> set type <mode> [flags])
1346
1347 :param card: Card object
1348 :param mode: 'name' of mode to operate in (must be one of in {'unspecified'|
1349 'ibss'|'managed'|'AP'|'AP VLAN'|'wds'|'monitor'|'mesh'|'p2p'}
1350 :param flags: list of monitor flags (can only be used if card is being set
1351 to monitor mode) neof {'invalid'|'fcsfail'|'plcpfail'|'control'|'other bss'
14441352 |'cook'|'active'}
1445 :param argv: netlink socket at argv[0] (or empty)
1353 :param nlsock: netlink socket
1354 .. note: as far
14461355 """
14471356 if mode not in IFTYPES: raise pyric.error(pyric.EINVAL, 'Invalid mode')
1357 if flags and mode != 'monitor':
1358 raise pyric.error(pyric.EINVAL, 'Can only set flags in monitor mode')
14481359 if flags:
1449 if mode != 'monitor':
1450 raise pyric.error(pyric.EINVAL, 'Can only set flags in monitor mode')
14511360 for flag in flags:
14521361 if flag not in MNTRFLAGS:
14531362 raise pyric.error(pyric.EINVAL, 'Invalid flag: {0}'.format(flag))
14541363 else: flags = []
1455
1456 try:
1457 nlsock = argv[0]
1458 except IndexError:
1459 return _nlstub_(modeset, card, mode, flags)
1364 if nlsock is None: return _nlstub_(modeset, card, mode, flags)
14601365
14611366 try:
14621367 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
14751380 except nl.error as e:
14761381 raise pyric.error(e.errno, e.strerror)
14771382
1478 def ifaces(card, *argv):
1479 """
1480 returns all interfaces sharing the same phy as card (APX iw dev | grep phy#)
1481 :param card: Card object
1482 :param argv: netlink socket at argv[0] (or empty)
1483 :returns: a list of tuples t = (Card,mode) for each device having the same
1484 phyiscal index as that of card
1485 """
1486 try:
1487 nlsock = argv[0]
1488 except IndexError:
1489 return _nlstub_(ifaces, card)
1383 def ifaces(card, nlsock=None):
1384 """
1385 Returns all interfaces sharing the same phy as card (APX iw dev | grep phy#)
1386
1387 :param card: Card object
1388 :param nlsock: netlink socket
1389 :returns: a list of tuples t = (Card,mode) for each device having the same
1390 phyiscal index as that of card
1391 """
1392 if nlsock is None: return _nlstub_(ifaces, card)
14901393
14911394 ifs = []
14921395 for dev in winterfaces():
15001403 raise pyric.error(e.errno, e.strerror)
15011404 return ifs
15021405
1503 def devset(card, ndev, *argv):
1504 """
1505 REQUIRES ROOT PRIVILEGES
1506 changes card's dev to ndev
1507 :param card: Card object
1508 :param ndev: new dev name
1509 :param argv: netlink socket at argv[0] (or empty)
1510 :returns: the new card object
1511 #NOTE:
1512 o via netlink one can set a new physical name but we want the ability to
1513 set a new dev.
1514 o this is not a true set name: it adds a new card with ndev as the dev then
1515 deletes the current card, returning the new card
1516 - in effect, it will appear as if the card has a new name but, it will also
1517 have a new ifindex
1518 """
1519 try:
1520 nlsock = argv[0]
1521 except IndexError:
1522 return _nlstub_(devset, card, ndev)
1406 def devset(card, ndev, nlsock=None):
1407 """
1408 Change card's dev to ndev
1409 :param card: Card object
1410 :param ndev: new dev name
1411 :param nlsock: netlink socket
1412 :returns: the new card object
1413 .. note:
1414 - via netlink one can set a new physical name but we want the ability to
1415 set a new dev.
1416 - this is not a true set name: it adds a new card with ndev as the dev then
1417 deletes the current card, returning the new card
1418 - in effect, it will appear as if the card has a new name but, it will also
1419 have a new ifindex
1420 .. warning:: Requires root privileges
1421 """
1422 if nlsock is None: return _nlstub_(devset, card, ndev)
15231423
15241424 new = None # appease PyCharm
15251425 try:
1526 new = devadd(card, ndev, modeget(card, nlsock), None, nlsock)
1426 mode = modeget(card, nlsock)
1427 phy = card.phy
15271428 devdel(card, nlsock)
1429 new = phyadd(phy, ndev, mode, None, nlsock)
15281430 except pyric.error:
15291431 # try and restore the system i.e. delete new if possible
15301432 if new:
15321434 devdel(new, nlsock)
15331435 except pyric.error:
15341436 pass
1437 if not validcard(card):
1438 try:
1439 pass
1440 except pyric.error:
1441 pass
15351442 raise
15361443 return new
15371444
1538 def devadd(card, vdev, mode, flags=None, *argv):
1539 """
1540 REQUIRES ROOT PRIVILEGES
1541 adds a virtual interface on device having type mode (iw dev <card.dev>
1542 interface add <vnic> type <mode>
1543 :param card: Card object or ifindex
1544 :param vdev: device name of new interface
1545 :param mode: 'name' of mode to operate in (must be one of in {'unspecified'|
1546 'ibss'|'managed'|'AP'|'AP VLAN'|'wds'|'monitor'|'mesh'|'p2p'}
1547 :param flags: list of monitor flags (can only be used if creating monitor
1548 mode) oneof {'invalid'|'fcsfail'|'plcpfail'|'control'|'other bss'
1549 |'cook'|'active'}
1550 :param argv: netlink socket at argv[0] (or empty)
1551 :returns: the new Card
1552 NOTE: the new Card will be 'down'
1445 def devadd(card, vdev, mode, flags=None, nlsock=None):
1446 """
1447 Adds a virtual interface on device having type mode (iw dev <card.dev>
1448 interface add <vnic> type <mode>
1449 :param card: Card object or ifindex
1450 :param vdev: device name of new interface
1451 :param mode: 'name' of mode to operate in (must be one of in {'unspecified'|
1452 'ibss'|'managed'|'AP'|'AP VLAN'|'wds'|'monitor'|'mesh'|'p2p'}
1453 :param flags: list of monitor flags (can only be used if creating monitor
1454 mode) oneof {'invalid'|'fcsfail'|'plcpfail'|'control'|'other bss'
1455 |'cook'|'active'}
1456 :param nlsock: netlink socket
1457 :returns: the new Card
1458 .. note: the new Card will be 'down'
1459 .. warning:: Requires root privileges
15531460 """
15541461 if iswireless(vdev): raise pyric.error(pyric.ENOTUNIQ,"{0} already exists".format(vdev))
15551462 if mode not in IFTYPES: raise pyric.error(pyric.EINVAL, 'Invalid mode')
1463 if flags and mode != 'monitor':
1464 raise pyric.error(pyric.EINVAL, 'Can only set flags in monitor mode')
15561465 if flags:
1557 if mode != 'monitor':
1558 raise pyric.error(pyric.EINVAL, 'Can only set flags in monitor mode')
15591466 for flag in flags:
15601467 if flag not in MNTRFLAGS:
15611468 raise pyric.error(pyric.EINVAL, 'Invalid flag: {0}'.format(flag))
15621469 else: flags = []
1563
1564 try:
1565 nlsock = argv[0]
1566 except IndexError:
1567 return _nlstub_(devadd, card, vdev, mode, flags)
1470 if nlsock is None: return _nlstub_(devadd, card, vdev, mode, flags)
15681471
15691472 # if we have a Card, pull out ifindex
15701473 try:
15951498 nl.nla_find(rmsg, nl80211h.NL80211_ATTR_IFNAME),
15961499 nl.nla_find(rmsg, nl80211h.NL80211_ATTR_IFINDEX))
15971500
1598 def devdel(card, *argv):
1501 def devdel(card, nlsock=None):
15991502 """
16001503 REQUIRES ROOT PRIVILEGES
16011504 deletes the device (dev <card.dev> del
16021505 :param card: Card object
1603 :param argv: netlink socket at argv[0] (or empty)
1506 :param nlsock: netlink socket
16041507 NOTE: the original card is no longer valid (i.e. the phy will still be present
16051508 but the device name and ifindex are no longer 'present' in the system
16061509 """
1607 try:
1608 nlsock = argv[0]
1609 except IndexError:
1610 return _nlstub_(devdel, card)
1510 if nlsock is None: return _nlstub_(devdel, card)
16111511
16121512 try:
16131513 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
16211521 except nl.error as e:
16221522 raise pyric.error(e.errno, e.strerror)
16231523
1624 def phyadd(card, vdev, mode, flags=None, *argv):
1524 def phyadd(card, vdev, mode, flags=None, nlsock=None):
16251525 """
16261526 REQUIRES ROOT PRIVILEGES
16271527 adds a virtual interface on device having type mode (iw phy <card.phy>
16331533 :param flags: list of monitor flags (can only be used if creating monitor
16341534 mode) oneof {'invalid'|'fcsfail'|'plcpfail'|'control'|'other bss'
16351535 |'cook'|'active'}
1636 :param argv: netlink socket at argv[0] (or empty)
1536 :param nlsock: netlink socket
16371537 :returns: the new Card
16381538 NOTE: the new Card will be 'down'
16391539 """
16451545 if flag not in MNTRFLAGS:
16461546 raise pyric.error(pyric.EINVAL, 'Invalid flag: {0}'.format(flag))
16471547 else: flags = []
1648
1649 try:
1650 nlsock = argv[0]
1651 except IndexError:
1652 return _nlstub_(phyadd, card, vdev, mode, flags)
1548 if nlsock is None: return _nlstub_(phyadd, card, vdev, mode, flags)
16531549
16541550 # if we have a Card, pull out phy
16551551 try:
16841580 #### STA FUNCTIONS ####
16851581 ################################################################################
16861582
1687 def isconnected(card, *argv):
1583 def isconnected(card, nlsock=None):
16881584 """
16891585 disconnect the card from an AP
16901586 :param card: Card object
1691 :param argv: netlink socket at argv[0] (or empty)
1692 """
1693 try:
1694 nlsock = argv[0]
1695 except IndexError:
1696 return _nlstub_(isconnected, card)
1697
1698 # dirty hack - using the precence of an RF to determine connected-ness
1587 :param nlsock: netlink socket
1588 """
1589 if nlsock is None: return _nlstub_(isconnected, card)
16991590 return devinfo(card, nlsock)['RF'] is not None
17001591
1701 def connect(card, ssid, bssid=None, rf=None, *argv):
1592 def connect(card, ssid, bssid=None, rf=None, nlsock=None):
17021593 """
17031594 REQUIRES ROOT PRIVILEGES & WPA_SUPPLICANT MUST BE DISABLED
17041595 connects to (Open) AP
17061597 :param ssid: the SSID, network name
17071598 :param bssid: the AP's BSSID
17081599 :param rf: the frequency of the AP
1709 :param argv: netlink socket at argv[0] (or empty)
1600 :param nlsock: netlink socket
17101601 :returns: True on successful connect, False otherwise
1711 NOTE: although connected, traffic will not be route, card will not have
1602 NOTE: although connected, traffic will not be routed, card will not have
17121603 an IP assigned
17131604 """
1714 try:
1715 nlsock = argv[0]
1716 except IndexError:
1717 return _nlstub_(connect, card, ssid, bssid, rf)
1605 if nlsock is None: return _nlstub_(connect, card, ssid, bssid, rf)
17181606
17191607 try:
17201608 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
17251613 nl.nla_put_unspec(msg, _mac2hex_(bssid), nl80211h.NL80211_ATTR_MAC)
17261614 nl.nl_sendmsg(nlsock, msg)
17271615 if not nl.nl_recvmsg(nlsock) == nlh.NLE_SUCCESS: return False
1728
17291616 except AttributeError:
17301617 raise pyric.error(pyric.EINVAL, "Invalid Card")
17311618 except nl.error as e:
17321619 raise pyric.error(e.errno, e.strerror)
17331620 return True
17341621
1735 def disconnect(card, *argv):
1622 def disconnect(card, nlsock=None):
17361623 """
17371624 REQUIRES ROOT PRIVILEGES
17381625 disconnect the card from an AP
17391626 :param card: Card object
1740 :param argv: netlink socket at argv[0] (or empty)
1627 :param nlsock: netlink socket
17411628 NOTE: does not return error if card is not connected. May not work if
17421629 wpa_supplicant is running
17431630 """
1744 try:
1745 nlsock = argv[0]
1746 except IndexError:
1747 return _nlstub_(disconnect, card)
1631 if nlsock is None: return _nlstub_(disconnect, card)
17481632
17491633 try:
17501634 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
17581642 except nl.error as e:
17591643 raise pyric.error(e.errno, e.strerror)
17601644
1761 def link(card, *argv):
1645 def link(card, nlsock=None):
17621646 """
17631647 returns info about link (iw dev card.<dev> link)
17641648 :param card: Card object
1765 :param argv: netlink socket at argv[0] (or empty)
1649 :param nlsock: netlink socket
17661650 :returns: link info as dict with the following key:value pairs
17671651 bssid -> AP mac/ net BSSID
17681652 ssid -> the ssid (Experimental)
17871671 NOTE: if the nested attribute was not parsed correctly will attempt to pull
17881672 out as much as possible
17891673 """
1790 try:
1791 nlsock = argv[0]
1792 except IndexError:
1793 return _nlstub_(link, card)
1674 if nlsock is None: return _nlstub_(link, card)
17941675
17951676 # if we're not connected GET_SCAN will dump scan results, we don't want that
17961677 if not isconnected(card, nlsock): return None
18791760
18801761 return info
18811762
1882 def stainfo(card, mac, *argv):
1763 def stainfo(card, mac, nlsock=None):
18831764 """
18841765 returns info about sta (AP) the card is associated with (iw dev card.<dev> link)
18851766 :param card: Card object
18861767 :param mac: mac address of STA
1887 :param argv: netlink socket at argv[0] (or empty)
1768 :param nlsock: netlink socket
18881769 :returns: sta info as dict with the following key:value pairs
18891770 rx-bytes: total received bytes (from STA)
18901771 tx-bytes: total sent bytes (to STA)
19031784 - given msc index, guard interval and channel width, one can calculate the
19041785 802.11n rate (see wraith->standards->mcs)
19051786 """
1906 try:
1907 nlsock = argv[0]
1908 except IndexError:
1909 return _nlstub_(stainfo, card, mac)
1787 if nlsock is None: return _nlstub_(stainfo, card, mac)
19101788
19111789 # if we're not connected GET_SCAN will dump scan results, we don't want that
19121790 if not isconnected(card, nlsock): return None
20481926 """
20491927 return flags & ~flag
20501928
2051 def _flagsget_(dev, *argv):
1929 def _flagsget_(dev, iosock=None):
20521930 """
20531931 gets the device's flags
20541932 :param dev: device name:
2055 :param argv: ioctl socket at argv[0] (or empty)
1933 :param iosock: ioctl socket
20561934 :returns: device flags
20571935 """
2058 try:
2059 iosock = argv[0]
2060 except IndexError:
2061 return _iostub_(_flagsget_, dev)
1936 if iosock is None: return _iostub_(_flagsget_, dev)
20621937
20631938 try:
20641939 flag = sioch.SIOCGIFFLAGS
20711946 except io.error as e:
20721947 raise pyric.error(e.errno, e.strerror)
20731948
2074 def _flagsset_(dev, flags, *argv):
1949 def _flagsset_(dev, flags, iosock=None):
20751950 """
20761951 gets the device's flags
20771952 :param dev: device name:
20781953 :param flags: flags to set
2079 :param argv: ioctl socket at argv[0] (or empty)
1954 :param iosock: ioctl socket
20801955 :returns: device flags after operation
20811956 """
2082 try:
2083 iosock = argv[0]
2084 except IndexError:
2085 return _iostub_(_flagsset_, dev, flags)
1957 if iosock is None: return _iostub_(_flagsset_, dev, flags)
20861958
20871959 try:
20881960 flag = sioch.SIOCSIFFLAGS
23242196
23252197 #### NETLINK/IOCTL PARAMETERS ####
23262198
2327 def _ifindex_(dev, *argv):
2199 def _ifindex_(dev, iosock=None):
23282200 """
23292201 gets the ifindex for device
23302202 :param dev: device name:
2331 :param argv: ioctl socket at argv[0] (or empty)
2203 :param iosock: ioctl socket
23322204 :returns: ifindex of device
23332205 NOTE: the ifindex can aslo be found in /sys/class/net/<nic>/ifindex
23342206 """
2335 try:
2336 iosock = argv[0]
2337 except IndexError:
2338 return _iostub_(_ifindex_, dev)
2207 if iosock is None: return _iostub_(_ifindex_, dev)
23392208
23402209 try:
23412210 flag = sioch.SIOCGIFINDEX
23882257 try:
23892258 argv = list(argv) + [iosock]
23902259 return fct(*argv)
2260 except io.error as e:
2261 raise pyric.error(e.errno, pyric.strerror(e.errno))
23912262 except pyric.error:
23922263 raise # catch and rethrow
23932264 finally:
24052276 nlsock = nl.nl_socket_alloc(timeout=2)
24062277 argv = list(argv) + [nlsock]
24072278 return fct(*argv)
2279 except nl.error as e:
2280 raise pyric.error(e.errno, pyric.strerror(e.errno))
24082281 except pyric.error:
24092282 raise
24102283 finally:
24122285
24132286 #### PENDING ####
24142287
2415 def _fut_chset(card, ch, chw, *argv):
2288 def _fut_chset(card, ch, chw, nlsock=None):
24162289 """
24172290 set current channel on device (iw phy <card.phy> set channel <ch> <chw>
24182291 :param card: Card object
24192292 :param ch: channel number
24202293 :param chw: channel width oneof {None|'HT20'|'HT40-'|'HT40+'}
2421 :param argv: netlink socket at argv[0] (or empty)
2294 :param nlsock: netlink socket
24222295 uses the newer NL80211_CMD_SET_CHANNEL vice iw's depecrated version which
24232296 uses *_SET_WIPHY however, ATT does not work raise Errno 22 Invalid Argument
24242297 NOTE: This only works for cards in monitor mode
24252298 """
24262299 if ch not in channels.channels(): raise pyric.error(pyric.EINVAL, "Invalid channel")
24272300 if chw not in channels.CHTYPES: raise pyric.error(pyric.EINVAL, "Invalid channel width")
2428 try:
2429 nlsock = argv[0]
2430 except IndexError:
2431 return _nlstub_(_fut_chset, card, ch, chw)
2432
2433 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
2434 cmd=nl80211h.NL80211_CMD_SET_CHANNEL,
2435 flags=nlh.NLM_F_REQUEST | nlh.NLM_F_ACK)
2436 nl.nla_put_u32(msg, card.idx, nl80211h.NL80211_ATTR_IFINDEX)
2437 nl.nla_put_u32(msg, channels.ch2rf(ch), nl80211h.NL80211_ATTR_WIPHY_FREQ)
2438 nl.nla_put_u32(msg, channels.CHTYPES.index(chw), nl80211h.NL80211_ATTR_WIPHY_CHANNEL_TYPE)
2439 nl.nl_sendmsg(nlsock, msg)
2440 _ = nl.nl_recvmsg(nlsock)
2301 if nlsock is None: return _nlstub_(_fut_chset, card, ch, chw)
2302
2303 try:
2304 msg = nl.nlmsg_new(nltype=_familyid_(nlsock),
2305 cmd=nl80211h.NL80211_CMD_SET_CHANNEL,
2306 flags=nlh.NLM_F_REQUEST | nlh.NLM_F_ACK)
2307 nl.nla_put_u32(msg, card.idx, nl80211h.NL80211_ATTR_IFINDEX)
2308 nl.nla_put_u32(msg, channels.ch2rf(ch), nl80211h.NL80211_ATTR_WIPHY_FREQ)
2309 nl.nla_put_u32(msg, channels.CHTYPES.index(chw), nl80211h.NL80211_ATTR_WIPHY_CHANNEL_TYPE)
2310 nl.nl_sendmsg(nlsock, msg)
2311 _ = nl.nl_recvmsg(nlsock)
2312 except AttributeError:
2313 raise pyric.error(pyric.EINVAL, "Invalid Card")
2314 except nl.error as e:
2315 raise pyric.error(e.errno, e.strerror)
0 #!/usr/bin/env python
1 """ scripts PyRIC scripts
2
3 Copyright (C) 2016 Dale V. Patterson ([email protected])
4
5 This program is free software: you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free Software
7 Foundation, either version 3 of the License, or (at your option) any later
8 version.
9
10 Redistribution and use in source and binary forms, with or without modifications,
11 are permitted provided that the following conditions are met:
12 o Redistributions of source code must retain the above copyright notice, this
13 list of conditions and the following disclaimer.
14 o Redistributions in binary form must reproduce the above copyright notice,
15 this list of conditions and the following disclaimer in the documentation
16 and/or other materials provided with the distribution.
17 o Neither the name of the orginal author Dale V. Patterson nor the names of any
18 contributors may be used to endorse or promote products derived from this
19 software without specific prior written permission.
20
21 scripts 0.0.1
22 desc: currently only holds ouiupdate for fetching oui file from IEEE and
23 updating PyRIC oui dict
24 includes: ouiupdate 0.1.1
25 changes:
26
27 """
28
29 __name__ = 'scripts'
30 __license__ = 'GPLv3'
31 __version__ = '0.0.1'
32 __date__ = 'January 2017'
33 __author__ = 'Dale Patterson'
34 __maintainer__ = 'Dale Patterson'
35 __email__ = '[email protected]'
36 __status__ = 'Production'
0 #!/usr/bin/env python
1
2 """ ouiupdate.py: get ouis data from IEEE
3
4 Copyright (C) 2016 Dale V. Patterson ([email protected])
5
6 This program is free software:you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free Software
8 Foundation,either version 3 of the License,or (at your option) any later
9 version.
10
11 Redistribution and use in source and binary forms,with or without modifications,
12 are permitted provided that the following conditions are met:
13 o Redistributions of source code must retain the above copyright notice,this
14 list of conditions and the following disclaimer.
15 o Redistributions in binary form must reproduce the above copyright notice,
16 this list of conditions and the following disclaimer in the documentation
17 and/or other materials provided with the distribution.
18 o Neither the name of the orginal author Dale V. Patterson nor the names of any
19 contributors may be used to endorse or promote products derived from this
20 software without specific prior written permission.
21
22 Fetchs and stores oui data from IEEE
23
24 """
25 from __future__ import print_function # python 2to3 compability
26
27 #__name__ = 'ouiupdate'
28 __license__ = 'GPLv3'
29 __version__ = '0.0.1'
30 __date__ = 'January 2017'
31 __author__ = 'Dale Patterson'
32 __maintainer__ = 'Dale Patterson'
33 __email__ = '[email protected]'
34 __status__ = 'Production'
35
36 import argparse as ap
37 import pyric.utils.ouifetch as ouifetch
38
39 if __name__ == '__main__':
40 # create arg parser and parse command line args
41 print("IEEE OUI Fetch")
42 argp = ap.ArgumentParser(description="IEEE OUI fetch and parse")
43 argp.add_argument('-p','--path',help="Path to write parsed file")
44 argp.add_argument('-v','--verbose',action='store_true',help="Display operations to stdout")
45 argp.add_argument('--version',action='version',version="OUI Fetch {0}".format(__version__))
46 args = argp.parse_args()
47 verbose = args.verbose
48 path = args.path
49
50 # execute
51 ouifetch.fetch(path,verbose)
2525 o added mac address related to hardware.py
2626 o randhw does not force an ouis dict, if not present, randomly generates the
2727 oui and the ulm
28
2829 """
2930
3031 __name__ = 'utils'
2727
2828 __name__ = 'channels'
2929 __license__ = 'GPLv3'
30 __version__ = '0.0.1'
31 __date__ = 'August 2014'
30 __version__ = '0.0.2'
31 __date__ = 'August 2016'
3232 __author__ = 'Dale Patterson'
3333 __maintainer__ = 'Dale Patterson'
3434 __email__ = '[email protected]'
0 2016-06-04T09:53:45.530902
0 2017-01-02T16:44:59.735072
11 E0:43:DB Shenzhen ViewAt Technology Co.,Ltd.
22 24:05:F5 Integrated Device Technology (Malaysia) Sdn. Bhd.
33 2C:30:33 NETGEAR
2222 34:8A:AE Sagemcom Broadband SAS
2323 BC:EC:23 SHENZHEN CHUANGWEI-RGB ELECTRONICS CO.,LTD
2424 8C:E7:48 Private
25 F0:9C:E9 Aerohive Networks Inc.
26 C4:13:E2 Aerohive Networks Inc.
2725 AC:06:C7 ServerNet S.r.l.
2826 CC:46:D6 Cisco Systems, Inc
2927 48:AD:08 HUAWEI TECHNOLOGIES CO.,LTD
150148 B4:15:13 HUAWEI TECHNOLOGIES CO.,LTD
151149 28:31:52 HUAWEI TECHNOLOGIES CO.,LTD
152150 DC:D2:FC HUAWEI TECHNOLOGIES CO.,LTD
153 F8:A4:5F Xiaomi Communications Co Ltd
154 8C:BE:BE Xiaomi Communications Co Ltd
155 64:09:80 Xiaomi Communications Co Ltd
156 98:FA:E3 Xiaomi Communications Co Ltd
157 18:59:36 Xiaomi Communications Co Ltd
158 9C:99:A0 Xiaomi Communications Co Ltd
159151 00:03:DD Comark Interactive Solutions
160152 00:10:7B Cisco Systems, Inc
161153 00:90:6D Cisco Systems, Inc
354346 F4:57:3E Fiberhome Telecommunication Technologies Co.,LTD
355347 08:3A:5C Junilab, Inc.
356348 4C:AE:31 ShengHai Electronics (Shenzhen) Ltd
357 C8:0E:14 AVM Audiovisuelles Marketing und Computersysteme GmbH
358349 F0:D6:57 ECHOSENS
359350 24:69:3E innodisk Corporation
360351 E4:8D:8C Routerboard.com
406397 E8:07:BF SHENZHEN BOOMTECH INDUSTRY CO.,LTD
407398 E8:16:2B IDEO Security Co., Ltd.
408399 70:9F:2D zte corporation
409 5C:6B:4F Private
410400 EC:E2:FD SKG Electric Group(Thailand) Co., Ltd.
411401 88:E6:03 Avotek corporation
412402 74:E2:8C Microsoft Corporation
493483 F4:28:53 Zioncom Electronics (Shenzhen) Ltd.
494484 3C:46:D8 TP-LINK TECHNOLOGIES CO.,LTD.
495485 6C:02:73 Shenzhen Jin Yun Video Equipment Co., Ltd.
496 2C:FA:A2 Alcatel-Lucent
497486 F0:76:1C COMPAL INFORMATION (KUNSHAN) CO., LTD.
498487 F4:28:33 MMPC Inc.
499488 24:4F:1D iRule LLC
500489 BC:9C:C5 Beijing Huafei Technology Co., Ltd.
501490 50:50:65 TAKT Corporation
502 D0:0A:AB Yokogawa Digital Computer Corporation
503491 A4:A4:D3 Bluebank Communication Technology Co.Ltd
504492 74:F4:13 Maxwell Forest
505493 34:F0:CA Shenzhen Linghangyuan Digital Technology Co.,Ltd.
532520 F8:66:01 Suzhou Chi-tek information technology Co., Ltd
533521 FC:4A:E9 Castlenet Technology Inc.
534522 34:E4:2A Automatic Bar Controls Inc.
535 B8:7C:F2 Aerohive Networks Inc.
536523 20:A7:87 Bointec Taiwan Corporation Limited
537524 6C:AA:B3 Ruckus Wireless
538525 A4:81:EE Nokia Corporation
598585 E0:C8:6A SHENZHEN TW-SCIE Co., Ltd
599586 80:BA:E6 Neets
600587 3C:18:A0 Luxshare Precision Industry Co.,Ltd.
601 4C:B8:1C SAM Electronics GmbH
602588 04:1A:04 WaveIP
603589 50:20:6B Emerson Climate Technologies Transportation Solutions
604590 C8:EE:75 Pishion International Co. Ltd
818804 1C:C3:16 MileSight Technology Co., Ltd.
819805 C4:E7:BE SCSpro Co.,Ltd
820806 10:5F:49 Cisco SPVTG
821 04:18:D6 Ubiquiti Networks
822807 44:95:FA Qingdao Santong Digital Technology Co.Ltd
823808 60:F2:EF VisionVera International Co., Ltd.
824809 B0:12:66 Futaba-Kikaku
986971 CC:C5:0A SHENZHEN DAJIAHAO TECHNOLOGY CO.,LTD
987972 D0:1A:A7 UniPrint
988973 B0:8E:1A URadio Systems Co., Ltd
989 40:60:5A Hawkeye Tech Co. Ltd
990974 E0:5D:A6 Detlef Fink Elektronik & Softwareentwicklung
991975 0C:75:23 BEIJING GEHUA CATV NETWORK CO.,LTD
992976 BC:2C:55 Bear Flag Design, Inc.
993977 04:F4:BC Xena Networks
994978 60:8C:2B Hanson Technology
995979 EC:11:20 FloDesign Wind Turbine Corporation
996 D0:F7:3B Helmut Mauell GmbH
997980 C4:95:A2 SHENZHEN WEIJIU INDUSTRY AND TRADE DEVELOPMENT CO., LTD
998981 0C:9E:91 Sankosha Corporation
999982 F4:87:71 Infoblox
10801063 24:E6:BA JSC Zavod im. Kozitsky
10811064 8C:8A:6E ESTUN AUTOMATION TECHNOLOY CO., LTD
10821065 E0:ED:1A vastriver Technology Co., Ltd
1083 C8:3B:45 JRI-Maxant
10841066 68:5E:6B PowerRay Co., Ltd.
10851067 4C:32:D9 M Rutty Holdings Pty. Ltd.
10861068 50:A7:33 Ruckus Wireless
11091091 38:26:CD ANDTEK
11101092 C4:36:DA Rusteletech Ltd.
11111093 00:FC:70 Intrepid Control Systems, Inc.
1112 A4:EE:57 SEIKO EPSON CORPORATION
11131094 D0:AF:B6 Linktop Technology Co., LTD
11141095 44:4F:5E Pan Studios Co.,Ltd.
11151096 0C:39:56 Observator instruments
11161097 A4:99:81 FuJian Elite Power Tech CO.,LTD.
11171098 B8:3A:7B Worldplay (Canada) Inc.
11181099 78:3F:15 EasySYNC Ltd.
1119 F4:B5:49 Yeastar Technology Co., Ltd.
11201100 88:B1:68 Delta Control GmbH
11211101 20:B3:99 Enterasys
11221102 18:B7:9E Invoxia
12491229 A8:B0:AE LEONI
12501230 60:89:3C Thermo Fisher Scientific P.O.A.
12511231 5C:17:D3 LGE
1252 34:78:77 O-NET Communications(Shenzhen) Limited
12531232 70:A1:91 Trendsetter Medical, LLC
1254 A4:9B:13 Burroughs Payment Systems, Inc.
12551233 58:BC:27 Cisco Systems, Inc
12561234 34:D2:C4 RENA GmbH Print Systeme
12571235 E0:A6:70 Nokia Corporation
13611339 7C:08:D9 Shanghai B-Star Technology Co
13621340 44:8E:81 VIG
13631341 20:46:F9 Advanced Network Devices (dba:AND)
1364 68:1F:D8 Advanced Telemetry
13651342 0C:82:30 SHENZHEN MAGNUS TECHNOLOGIES CO.,LTD
13661343 50:93:4F Gradual Tecnologia Ltda.
13671344 34:EF:8B NTT Communications Corporation
15671544 00:23:BC EQ-SYS GmbH
15681545 00:23:AA HFR, Inc.
15691546 00:23:A9 Beijing Detianquan Electromechanical Equipment Co., Ltd
1570 00:23:41 Siemens AB, Infrastructure & Cities, Building Technologies Division, IC BT SSP SP BA PR
15711547 00:23:3C Alflex
15721548 00:23:3B C-Matic Systems Ltd
15731549 00:23:35 Linkflex Co.,Ltd
17121688 00:1E:BA High Density Devices AS
17131689 00:1E:B3 Primex Wireless
17141690 00:1E:B4 UNIFAT TECHNOLOGY LTD.
1715 00:1E:AE Continental Automotive Systems
17161691 00:1E:A8 Datang Mobile Communications Equipment CO.,LTD
17171692 00:1E:9C Fidustron INC
17181693 00:1E:95 SIGMALINK
24882463 00:0E:64 Elphel, Inc
24892464 00:0E:5D Triple Play Technologies A/S
24902465 00:0E:5E Raisecom Technology
2491 00:0E:58 Sonos, Inc.
24922466 00:0B:E2 Lumenera Corporation
24932467 00:0B:E7 COMFLUX TECHNOLOGY INC.
24942468 00:0B:D6 Paxton Access Ltd
27022676 00:08:98 Gigabit Optics Corporation
27032677 00:08:9D UHD-Elektronik
27042678 00:08:90 AVILINKS SA
2705 00:08:89 Echostar Technologies Corp
27062679 00:08:84 Index Braille AB
27072680 00:08:77 Liebert-Hiross Spa
27082681 08:00:6B ACCEL TECHNOLOGIES INC.
28272800 00:06:55 Yipee, Inc.
28282801 00:D0:5F VALCOM, INC.
28292802 00:06:74 Spectrum Control, Inc.
2830 00:06:78 Marantz Brand Company
28312803 00:06:61 NIA Home Technologies Corp.
28322804 00:06:68 Vicon Industries Inc.
28332805 00:06:67 Tripp Lite
30633035 00:01:7D ThermoQuest
30643036 00:01:89 Refraction Technology, Inc.
30653037 00:30:8B Brix Networks
3066 00:01:4F ADTRAN INC
30673038 00:01:5A Digital Video Broadcasting
30683039 00:01:66 TC GROUP A/S
30693040 00:01:6D CarrierComm Inc.
30823053 00:01:18 EZ Digital Co., Ltd.
30833054 00:01:24 Acer Incorporated
30843055 00:01:01 Private
3085 00:01:0D CORECO, INC.
30863056 00:01:14 KANDA TSUSHIN KOGYO CO., LTD.
30873057 00:01:11 iDigm Inc.
30883058 00:01:05 Beckhoff Automation GmbH
31553125 00:D0:F0 CONVISION TECHNOLOGY GMBH
31563126 00:D0:0E PLURIS, INC.
31573127 00:D0:55 KATHREIN-WERKE KG
3158 00:D0:95 Alcatel-Lucent, Enterprise Business Group
31593128 00:D0:00 FERRAN SCIENTIFIC, INC.
31603129 00:D0:05 ZHS ZEITMANAGEMENTSYSTEME
31613130 00:D0:19 DAINIPPON SCREEN CORPORATE
33543323 00:60:E5 FUJI AUTOMATION CO., LTD.
33553324 00:60:10 NETWORK MACHINES, INC.
33563325 00:60:44 LITTON/POLY-SCIENTIFIC
3357 00:60:9B ASTRO-MED, INC.
33583326 00:60:BE WEBTRONICS
33593327 00:60:52 PERIPHERALS ENTERPRISE CO., Ltd.
33603328 00:E0:3F JATON CORPORATION
38073775 44:87:23 HOYA SERVICE CORPORATION
38083776 80:6C:1B Motorola Mobility LLC, a Lenovo Company
38093777 A4:70:D6 Motorola Mobility LLC, a Lenovo Company
3810 34:07:FB Ericsson AB
38113778 00:1B:21 Intel Corporate
38123779 00:1B:77 Intel Corporate
38133780 18:FF:0F Intel Corporate
38643831 00:A0:2F ADB Broadband Italia
38653832 64:87:D7 ADB Broadband Italia
38663833 00:E0:98 AboCom
3867 F0:A2:25 Private
38683834 00:00:B1 Alpha Micro
38693835 00:15:77 Allied Telesis, Inc.
38703836 AC:E0:10 Liteon Technology Corporation
40093975 1C:5F:2B D-Link International
40103976 D8:80:3C Anhui Huami Information Technology Company Limited
40113977 70:3C:03 RadiAnt Co.,Ltd
4012 F0:D2:F1 Amazon Technologies Inc.
40133978 58:32:77 Reliance Communications LLC
40143979 CC:D3:E2 Jiangsu Yinhe Electronics Co.,Ltd.
40153980 18:21:95 Samsung Electronics Co.,Ltd
41274092 FC:52:8D Technicolor CH USA Inc.
41284093 D8:4A:87 OI ELECTRIC CO.,LTD
41294094 BC:30:7D Wistron Neweb Corporation
4130 64:3A:B1 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
4131 D4:41:65 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
4132 64:5D:92 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
4133 80:48:A5 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
41344095 54:10:EC Microchip Technology Inc.
4135 00:26:2D Wistron Neweb Corporation
4136 5C:FF:35 Wistron Neweb Corporation
4137 00:0A:E4 Wistron Neweb Corporation
41384096 30:9B:AD BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
41394097 00:1B:B1 Wistron Neweb Corporation
41404098 00:0B:6B Wistron Neweb Corporation
41614119 90:A2:10 United Telecoms Ltd
41624120 E0:2A:82 Universal Global Scientific Industrial Co., Ltd.
41634121 00:16:41 Universal Global Scientific Industrial Co., Ltd.
4164 44:D9:E7 Ubiquiti Networks
4165 F0:9F:C2 Ubiquiti Networks
41664122 4C:33:4E HIGHTECH
41674123 60:E3:AC LG Electronics (Mobile Communications)
41684124 00:13:15 Sony Interactive Entertainment Inc.
42174173 20:F4:1B Shenzhen Bilian electronic CO.,LTD
42184174 30:92:F6 SHANGHAI SUNMON COMMUNICATION TECHNOGY CO.,LTD
42194175 7C:20:64 Alcatel-Lucent IPD
4220 48:F8:E1 Alcatel-Lucent Canada
4221 00:D0:F6 Alcatel-Lucent Canada
42224176 E4:A1:E6 Alcatel-Lucent Shanghai Bell Co., Ltd
42234177 00:0B:34 ShangHai Broadband Technologies CO.LTD
4224 B0:75:4D Alcatel-Lucent Canada
4225 BC:8D:0E Alcatel-Lucent Canada
4226 E4:81:84 Alcatel-Lucent Canada
4227 94:E9:8C Alcatel-Lucent Canada
4228 84:26:2B Alcatel-Lucent Canada
4229 98:B0:39 Alcatel-Lucent Canada
4230 A4:7B:2C Alcatel-Lucent Canada
4231 BC:6B:4D Alcatel-Lucent Canada
42324178 38:25:6B Microsoft Mobile Oy
42334179 20:3A:EF Sivantos GmbH
42344180 00:1E:40 Shanghai DareGlobal Technologies Co.,Ltd
42484194 00:19:E1 Nortel Networks
42494195 00:1A:8F Nortel Networks
42504196 E8:93:09 Samsung Electronics Co.,Ltd
4251 00:D0:B2 19514
42524197 00:19:88 Wi2Wi, Inc
42534198 4C:FA:CA Cambridge Industries(Group) Co.,Ltd.
42544199 2C:9D:1E HUAWEI TECHNOLOGIES CO.,LTD
43514296 E4:C1:F1 SHENZHEN SPOTMAU INFORMATION TECHNOLIGY CO., Ltd
43524297 24:0D:C2 TCT mobile ltd
43534298 14:DD:E5 MPMKVVCL
4354 68:EB:AE 5481
4355 60:A1:0A 5481
4356 A0:75:91 5481
4357 8C:71:F8 5481
4358 04:18:0F 5481
4359 CC:05:1B 5481
4360 94:63:D1 5481
4361 0C:DF:A4 5481
43624299 00:16:DB Samsung Electronics Co.,Ltd
4363 00:1F:CC 5481
4364 60:D0:A9 5481
43654300 5C:3C:27 Samsung Electronics Co.,Ltd
43664301 10:D5:42 Samsung Electronics Co.,Ltd
43674302 A0:82:1F Samsung Electronics Co.,Ltd
44314366 10:08:B1 Hon Hai Precision Ind. Co.,Ltd.
44324367 70:1D:C4 NorthStar Battery Company, LLC
44334368 80:18:44 Dell Inc.
4369 C8:0E:14 AVM Audiovisuelles Marketing und Computersysteme GmbH
4370 E0:68:6D Raybased AB
4371 A4:53:85 Weifang GoerTek Electronics Co., Ltd.
4372 98:B0:39 Nokia
4373 84:26:2B Nokia
4374 94:E9:8C Nokia
4375 E4:81:84 Nokia
4376 BC:8D:0E Nokia
4377 B0:75:4D Nokia
4378 BC:6B:4D Nokia
4379 A4:7B:2C Nokia
4380 00:D0:F6 Nokia
4381 48:F8:E1 Nokia
4382 00:23:41 Vanderbilt International (SWE) AB
4383 98:13:33 zte corporation
4384 8C:71:F8 Samsung Electronics Co.,Ltd
4385 04:18:0F Samsung Electronics Co.,Ltd
4386 94:63:D1 Samsung Electronics Co.,Ltd
4387 0C:DF:A4 Samsung Electronics Co.,Ltd
4388 CC:05:1B Samsung Electronics Co.,Ltd
4389 68:EB:AE Samsung Electronics Co.,Ltd
4390 60:D0:A9 Samsung Electronics Co.,Ltd
4391 60:A1:0A Samsung Electronics Co.,Ltd
4392 A0:75:91 Samsung Electronics Co.,Ltd
4393 D8:14:D6 SURE SYSTEM Co Ltd
4394 64:61:84 VELUX
4395 00:1F:CC Samsung Electronics Co.,Ltd
4396 EC:01:E2 FOXCONN INTERCONNECT TECHNOLOGY
4397 00:F2:2C Shanghai B-star Technology Co.,Ltd.
4398 D0:3D:C3 AQ Corporation
4399 FC:CA:C4 LifeHealth, LLC
4400 04:BA:36 Li Seng Technology Ltd
4401 DC:F0:90 Private
4402 44:09:B8 Salcomp (Shenzhen) CO., LTD.
4403 78:88:8A CDR Sp. z o.o. Sp. k.
4404 F0:98:38 HUAWEI TECHNOLOGIES CO.,LTD
4405 18:DE:D7 HUAWEI TECHNOLOGIES CO.,LTD
4406 EC:10:7B Samsung Electronics Co.,Ltd
4407 A0:10:81 Samsung Electronics Co.,Ltd
4408 00:1E:AE Continental Automotive Systems Inc.
4409 9C:F4:8E Apple, Inc.
4410 FC:D8:48 Apple, Inc.
4411 80:48:A5 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
4412 64:5D:92 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
4413 D4:41:65 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
4414 64:3A:B1 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
4415 AC:64:DD IEEE Registration Authority
4416 00:01:0D Teledyne DALSA Inc.
4417 F0:9F:C2 Ubiquiti Networks Inc.
4418 04:18:D6 Ubiquiti Networks Inc.
4419 44:D9:E7 Ubiquiti Networks Inc.
4420 48:DA:96 Eddy Smart Home Solutions Inc.
4421 50:3A:A0 SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD.
4422 C0:25:E9 TP-LINK TECHNOLOGIES CO.,LTD.
4423 50:B3:63 Digitron da Amazonia S/A
4424 94:B8:19 Nokia
4425 DC:0B:34 LG Electronics (Mobile Communications)
4426 A4:D9:A4 neXus ID Solutions AB
4427 48:4D:7E Dell Inc.
4428 F4:B5:49 Xiamen Yeastar Information Technology Co., Ltd.
4429 9C:3D:CF NETGEAR
4430 28:EE:D3 Shenzhen Super D Technology Co., Ltd
4431 18:F2:92 Shannon Systems
4432 3C:3F:51 2CRSI
4433 F4:F5:24 Motorola Mobility LLC, a Lenovo Company
4434 50:58:4F waytotec,Inc.
4435 00:A2:EE Cisco Systems, Inc
4436 98:E4:76 Zentan
4437 18:F7:6B Zhejiang Winsight Technology CO.,LTD
4438 00:60:9B AstroNova, Inc
4439 B8:7C:F2 Aerohive Networks Inc.
4440 C4:13:E2 Aerohive Networks Inc.
4441 F0:9C:E9 Aerohive Networks Inc.
4442 48:D3:43 ARRIS Group, Inc.
4443 CC:C5:EF Co-Comm Servicios Telecomunicaciones S.L.
4444 5C:6B:4F Hello Inc.
4445 C0:9C:04 Shaanxi GuoLian Digital TV Technology Co.,Ltd.
4446 D0:F7:3B Helmut Mauell GmbH Werk Weida
4447 D0:0A:AB Yokogawa Digital Computer Corporation
4448 AC:23:3F Shenzhen Minew Technologies Co., Ltd.
4449 00:0E:58 Sonos, Inc.
4450 2C:59:8A LG Electronics (Mobile Communications)
4451 E0:50:8B Zhejiang Dahua Technology Co., Ltd.
4452 2C:6F:C9 Hon Hai Precision Ind. Co.,Ltd.
4453 9C:99:A0 Xiaomi Communications Co Ltd
4454 18:59:36 Xiaomi Communications Co Ltd
4455 98:FA:E3 Xiaomi Communications Co Ltd
4456 64:09:80 Xiaomi Communications Co Ltd
4457 8C:BE:BE Xiaomi Communications Co Ltd
4458 F8:A4:5F Xiaomi Communications Co Ltd
4459 50:8A:0F SHENZHEN FISE TECHNOLOGY HOLDING CO.,LTD.
4460 E4:B0:05 Beijing IQIYI Science & Technology Co., Ltd.
4461 C8:3B:45 JRI
4462 1C:EE:C9 Elo touch solutions
4463 4C:B8:1C SAM Electronics GmbH
4464 F8:3F:51 Samsung Electronics Co.,Ltd
4465 6C:5C:14 GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
4466 2C:DC:AD Wistron Neweb Corporation
4467 70:4D:7B ASUSTek COMPUTER INC.
4468 7C:F9:5C U.I. Lapp GmbH
4469 74:3A:65 NEC Corporation
4470 C8:0C:C8 HUAWEI TECHNOLOGIES CO.,LTD
4471 04:25:C5 HUAWEI TECHNOLOGIES CO.,LTD
4472 A4:EE:57 Seiko Epson Corporation
4473 48:00:33 Technicolor CH USA Inc.
4474 14:B3:1F Dell Inc.
4475 BC:83:85 Microsoft Corporation
4476 A0:3D:6F Cisco Systems, Inc
4477 40:60:5A Hawkeye Tech Co. Ltd
4478 54:19:C8 vivo Mobile Communication Co., Ltd.
4479 C0:21:0D SHENZHEN RF-LINK TECHNOLOGY CO.,LTD.
4480 00:06:78 D&M Holdings Inc.
4481 88:6B:44 Sunnovo International Limited
4482 A4:08:F5 Sagemcom Broadband SAS
4483 54:FA:96 Nokia
4484 18:40:A4 Shenzhen Trylong Smart Science and Technology Co., Ltd.
4485 9C:50:EE Cambridge Industries(Group) Co.,Ltd.
4486 10:77:B0 Fiberhome Telecommunication Technologies Co.,LTD
4487 F0:15:B9 PlayFusion Limited
4488 70:70:0D Apple, Inc.
4489 E0:22:02 ARRIS Group, Inc.
4490 24:A7:DC BSkyB Ltd
4491 2C:D0:2D Cisco Systems, Inc
4492 34:78:D7 Gionee Communication Equipment Co.,Ltd.
4493 1C:EF:CE bebro electronic GmbH
4494 CC:B8:A8 AMPAK Technology, Inc.
4495 5C:FF:35 Wistron Corporation
4496 78:F2:9E PEGATRON CORPORATION
4497 00:D0:B2 Xiotech Corporation
4498 00:0A:E4 Wistron Corporation
4499 00:26:2D Wistron Corporation
4500 90:86:74 SICHUAN TIANYI COMHEART TELECOMCO., LTD
4501 F4:96:51 NAKAYO Inc
4502 68:1F:D8 Siemens Industry, Inc.
4503 C4:30:18 MCS Logic Inc.
4504 FC:B5:8A Wapice Ltd.
4505 DC:EF:CA Murata Manufacturing Co., Ltd.
4506 E8:65:D4 Tenda Technology Co.,Ltd.Dongguan branch
4507 28:52:61 Cisco Systems, Inc
4508 28:6F:7F Cisco Systems, Inc
4509 08:9E:08 Google, Inc.
4510 00:01:4F Adtran Inc
4511 D8:E0:E1 Samsung Electronics Co.,Ltd
4512 04:5D:4B Sony Corporation
4513 A8:0C:CA Shenzhen Sundray Technologies Company Limited
4514 94:65:2D OnePlus Technology (Shenzhen) Co., Ltd
4515 F8:A3:4F zte corporation
4516 84:5A:81 ffly4u
4517 34:78:77 O-Net Communications (Shenzhen) Limited
4518 F4:83:E1 Shanghai Clouder Semiconductor Co.,Ltd
4519 8C:C8:F4 IEEE Registration Authority
4520 08:CC:A7 Cisco Systems, Inc
4521 78:68:F7 YSTen Technology Co.,Ltd
4522 70:4F:57 TP-LINK TECHNOLOGIES CO.,LTD.
4523 34:07:FB Ericsson AB
4524 6C:B4:A7 Landauer, Inc.
4525 1C:39:8A Fiberhome Telecommunication Technologies Co.,LTD
4526 F8:A5:C5 Cisco Systems, Inc
4527 A4:9B:13 Digital Check
4528 54:2F:8A TELLESCOM INDUSTRIA E COMERCIO EM TELECOMUNICACAO
4529 60:49:C1 Avaya Inc
4530 DC:C6:4B HUAWEI TECHNOLOGIES CO.,LTD
4531 04:33:89 HUAWEI TECHNOLOGIES CO.,LTD
4532 A0:A3:3B HUAWEI TECHNOLOGIES CO.,LTD
4533 68:54:C1 ColorTokens, Inc.
4534 88:78:73 Intel Corporate
4535 6C:75:0D WiFiSONG
4536 E4:5D:51 SFR
4537 34:6E:9D Ericsson AB
4538 B8:16:DB CHANT SINCERE CO.,LTD
4539 D4:61:FE Hangzhou H3C Technologies Co., Limited
4540 54:E1:AD LCFC(HeFei) Electronics Technology co., ltd
4541 94:F5:51 Cadi Scientific Pte Ltd
4542 BC:45:2E Knowledge Development for POF S.L.
4543 E8:D1:1B ASKEY COMPUTER CORP
4544 44:03:2C Intel Corporate
4545 14:98:7D Technicolor CH USA Inc.
4546 D4:CF:37 Symbolic IO
4547 28:3F:69 Sony Mobile Communications AB
4548 F0:D2:F1 Amazon Technologies Inc.
4549 88:71:E5 Amazon Technologies Inc.
4550 7C:50:49 Apple, Inc.
4551 F0:A2:25 Private
4552 E0:48:AF Premietech Limited
4553 2C:33:11 Cisco Systems, Inc
4554 50:3A:7D AlphaTech PLC Int’l Co., Ltd.
4555 BC:02:4A HMD Global Oy
4556 9C:FC:D1 Aetheris Technology (Shanghai) Co., Ltd.
4557 94:99:01 Shenzhen YITOA Digital Appliance CO.,LTD
4558 E8:9E:0C Private
4559 D8:A1:05 Syslane, Co., Ltd.
4560 C4:B9:CD Cisco Systems, Inc
4561 10:95:4B Megabyte Ltd.
4562 90:06:28 Samsung Electronics Co.,Ltd
4563 C4:70:0B GUANGZHOU CHIP TECHNOLOGIES CO.,LTD
4564 D4:AE:05 Samsung Electronics Co.,Ltd
4565 3C:05:18 Samsung Electronics Co.,Ltd
4566 2C:1D:B8 ARRIS Group, Inc.
4567 04:94:6B TECNO MOBILE LIMITED
4568 A0:4C:5B Shenzhen TINNO Mobile Technology Corp.
4569 98:DD:EA Infinix mobility limited
4570 D4:61:9D Apple, Inc.
4571 B0:48:1A Apple, Inc.
4572 98:9E:63 Apple, Inc.
4573 DC:A9:04 Apple, Inc.
4574 48:A1:95 Apple, Inc.
4575 6C:AB:31 Apple, Inc.
4576 50:32:37 Apple, Inc.
4577 00:08:89 Echostar Technologies Corp
4578 2C:02:9F 3ALogics
4579 58:D9:D5 Tenda Technology Co.,Ltd.Dongguan branch
4580 60:E7:8A UNISEM
4581 6C:59:76 Shanghai Tricheer Technology Co.,Ltd.
4582 F4:A7:39 Juniper Networks
4583 2C:FA:A2 Alcatel-Lucent Enterprise
4584 00:D0:95 Alcatel-Lucent Enterprise
4585 40:95:BD NTmore.Co.,Ltd
4586 2C:AB:EB Cisco Systems, Inc
4587 BC:66:DE Shadow Creator Information Technology Co.,Ltd.
4588 A0:08:6F HUAWEI TECHNOLOGIES CO.,LTD
4589 C4:FF:1F HUAWEI TECHNOLOGIES CO.,LTD
4590 7C:7B:8B Control Concepts, Inc.
4591 C4:0B:CB Xiaomi Communications Co Ltd
4592 D8:C0:6A Hunantv.com Interactive Entertainment Media Co.,Ltd.
4593 9C:32:A9 SICHUAN TIANYI COMHEART TELECOMCO., LTD
44344594 0C:6F:9C Shaw Communications Inc.
44354595 18:01:E3 Bittium Wireless Ltd
44364596 C0:AC:54 Sagemcom Broadband SAS
44634623 AC:F1:DF D-Link International
44644624 FC:75:16 D-Link International
44654625 7C:18:CD E-TRON Co.,Ltd.
4466 C8:66:5D Aerohive Networks Inc.
44674626 38:97:D6 Hangzhou H3C Technologies Co., Limited
44684627 C8:47:8C Beken Corporation
44694628 E4:98:D6 Apple, Inc.
44704629 60:69:44 Apple, Inc.
4471 00:19:77 Aerohive Networks Inc.
4472 40:18:B1 Aerohive Networks Inc.
44734630 88:96:B6 Global Fire Equipment S.A.
44744631 18:87:96 HTC Corporation
44754632 AC:2A:0C CSR ZHUZHOU INSTITUTE CO.,LTD.
45764733 D4:EA:0E Avaya Inc
45774734 B4:47:5E Avaya Inc
45784735 90:FB:5B Avaya Inc
4579 14:F6:5A Xiaomi Communications Co Ltd
4580 0C:1D:AF Xiaomi Communications Co Ltd
4581 28:E3:1F Xiaomi Communications Co Ltd
4582 F0:B4:29 Xiaomi Communications Co Ltd
45834736 00:90:6F Cisco Systems, Inc
45844737 00:90:A6 Cisco Systems, Inc
45854738 00:90:AB Cisco Systems, Inc
47264879 54:26:96 Apple, Inc.
47274880 D8:D1:CB Apple, Inc.
47284881 4C:8E:CC SILKAN SA
4729 3C:EF:8C ZHEJIANG DAHUA TECHNOLOGY CO.,LTD.
47304882 98:F4:28 zte corporation
47314883 7C:5A:67 JNC Systems, Inc.
4732 5C:49:79 AVM Audiovisuelles Marketing und Computersysteme GmbH
47334884 C4:BB:EA Pakedge Device and Software Inc
47344885 84:10:0D Motorola Mobility LLC, a Lenovo Company
47354886 D8:8B:4C KingTing Tech.
47624913 B8:86:87 Liteon Technology Corporation
47634914 68:F9:56 Objetivos y Servicio de Valor Añadido
47644915 58:B6:33 Ruckus Wireless
4765 AC:60:B6 Ericsson AB
47664916 F4:E9:26 Tianjin Zanpu Technology Inc.
47674917 04:C2:3E HTC Corporation
47684918 2C:FC:E4 CTEK Sweden AB
48244974 70:01:36 FATEK Automation Corporation
48254975 E0:35:60 Challenger Supply Holdings, LLC
48264976 0C:B5:DE Alcatel Lucent
4827 04:C9:D9 EchoStar Technologies Corp
48284977 E4:CE:70 Health & Life co., Ltd.
48294978 EC:5A:86 Yulong Computer Telecommunication Scientific (Shenzhen) Co.,Ltd
48304979 F8:7A:EF Rosonix Technology, Inc.
48655014 40:A5:EF Shenzhen Four Seas Global Link Network Technology Co., Ltd.
48665015 7C:7A:53 Phytrex Technology Corp.
48675016 48:86:E8 Microsoft Corporation
4868 78:FC:14 B Communications Pty Ltd
48695017 88:E1:61 Art Beijing Science and Technology Development Co., Ltd.
48705018 B4:A9:FE GHIA Technology (Shenzhen) LTD
48715019 70:0F:C7 SHENZHEN IKINLOOP TECHNOLOGY CO.,LTD.
48855033 34:4D:EA zte corporation
48865034 90:8C:09 Total Phase
48875035 1C:7E:51 3bumen.com
4888 60:C7:98 Verifone, Inc.
48895036 38:0E:7B V.P.S. Thai Co., Ltd
48905037 38:F3:3F TATSUNO CORPORATION
48915038 28:A5:EE Shenzhen SDGI CATV Co., Ltd
49475094 30:33:35 Boosty
49485095 18:D5:B6 SMG Holdings LLC
49495096 C8:FF:77 Dyson Limited
4950 C0:3D:46 Shanghai Mochui Network Technology Co., Ltd
49515097 DC:F1:10 Nokia Corporation
49525098 54:DF:00 Ulterius Technologies, LLC
49535099 E0:1D:38 Beijing HuaqinWorld Technology Co.,Ltd
49935139 28:C8:25 DellKing Industrial Co., Ltd
49945140 64:E8:92 Morio Denki Co., Ltd.
49955141 08:6D:F2 Shenzhen MIMOWAVE Technology Co.,Ltd
4996 64:EB:8C Seiko Epson Corporation
49975142 48:D0:CF Universal Electronics, Inc.
49985143 DC:C7:93 Nokia Corporation
49995144 E0:3F:49 ASUSTek COMPUTER INC.
50075152 F8:5C:45 IC Nexus Co. Ltd.
50085153 04:DB:8A Suntech International Ltd.
50095154 08:3F:76 Intellian Technologies, Inc.
5010 0C:C4:7A Super Micro Computer, Inc.
50115155 D0:63:4D Meiko Maschinenbau GmbH &amp; Co. KG
5012 88:C6:26 Logitech - Ultimate Ears
50135156 88:9C:A6 BTB Korea INC
50145157 B0:DA:00 CERA ELECTRONIQUE
50155158 44:70:98 MING HONG TECHNOLOGY (SHEN ZHEN) LIMITED
50525195 54:93:59 SHENZHEN TWOWING TECHNOLOGIES CO.,LTD.
50535196 28:44:30 GenesisTechnical Systems (UK) Ltd
50545197 98:43:DA INTERTECH
5055 28:57:67 Echostar Technologies Corp
50565198 B0:79:08 Cummings Engineering
50575199 04:CB:1D Traka plc
50585200 B8:7A:C9 Siemens Ltd.
50875229 A8:CC:C5 Saab AB (publ)
50885230 98:8E:4A NOXUS(BEIJING) TECHNOLOGY CO.,LTD
50895231 1C:41:58 Gemalto M2M GmbH
5090 AC:D6:57 Shaanxi Guolian Digital TV Technology Co., Ltd.
50915232 54:1B:5D Techno-Innov
50925233 78:CB:33 DHC Software Co.,Ltd
50935234 50:76:91 Tekpea, Inc.
51475288 FC:22:9C Han Kyung I Net Co.,Ltd.
51485289 14:86:92 TP-LINK TECHNOLOGIES CO.,LTD.
51495290 18:32:A2 LAON TECHNOLOGY CO., LTD.
5150 68:54:ED Alcatel-Lucent - Nuage
51515291 98:5C:93 SBG Systems SAS
51525292 64:E5:99 EFM Networks
51535293 F4:99:AC WEBER Schraubautomaten GmbH
51595299 D4:22:3F Lenovo Mobile Communication Technology Ltd.
51605300 08:68:D0 Japan System Design
51615301 10:3D:EA HFC Technology (Beijing) Ltd. Co.
5162 E8:E8:75 iS5 Communications Inc.
51635302 2C:7B:5A Milper Ltd
51645303 18:5A:E8 Zenotech.Co.,Ltd
51655304 E0:AE:ED LOENK
53515490 24:10:64 Shenzhen Ecsino Tecnical Co. Ltd
53525491 10:D1:DC INSTAR Deutschland GmbH
53535492 D8:16:0A Nippon Electro-Sensory Devices
5354 58:69:6C Fujian Ruijie Networks co, ltd
53555493 F4:54:33 Rockwell Automation
53565494 EC:93:27 MEMMERT GmbH + Co. KG
53575495 1C:43:EC JAPAN CIRCUIT CO.,LTD
54925630 4C:5F:D2 Alcatel-Lucent
54935631 E8:78:A1 BEOVIEW INTERCOM DOO
54945632 30:57:AC IRLAB LTD.
5495 90:02:A9 ZHEJIANG DAHUA TECHNOLOGY CO.,LTD
54965633 28:AF:0A Sirius XM Radio Inc
54975634 24:86:F4 Ctek, Inc.
54985635 3C:E5:B4 KIDASEN INDUSTRIA E COMERCIO DE ANTENAS LTDA
56635800 80:14:40 Sunlit System Technology Corp
56645801 94:8D:50 Beamex Oy Ab
56655802 94:E2:26 D. ORtiz Consulting, LLC
5666 E8:E7:32 Alcatel-Lucent
56675803 38:6E:21 Wasion Group Ltd.
56685804 D8:C9:9D EA DISPLAY LIMITED
56695805 CC:FC:6D RIZ TRANSMITTERS
59716107 00:26:C1 ARTRAY CO., LTD.
59726108 00:26:B5 ICOMM Tele Ltd
59736109 00:26:AF Duelco A/S
5974 00:26:AB SEIKO EPSON CORPORATION
59756110 00:26:A5 MICROROBOT.CO.,LTD
59766111 00:26:9F Private
59776112 00:26:99 Cisco Systems, Inc
59916126 00:23:CB Shenzhen Full-join Technology Co.,Ltd
59926127 00:23:D2 Inhand Electronics, Inc.
59936128 00:24:B4 ESCATRONIC GmbH
5994 00:24:AF EchoStar Technologies
59956129 00:24:AD Adolf Thies Gmbh & Co. KG
59966130 00:24:9C Bimeng Comunication System Co. Ltd
59976131 00:25:26 Genuine Technologies Co., Ltd.
60206154 00:24:5E Hivision Co.,ltd
60216155 00:24:51 Cisco Systems, Inc
60226156 00:24:4C Solartron Metrology Ltd
6023 00:24:45 CommScope Canada Inc.
60246157 00:24:3F Storwize, Inc.
60256158 00:24:40 Halo Monitoring, Inc.
60266159 00:24:3B CSSI (S) Pte Ltd
60866219 00:23:70 Snell
60876220 00:23:5D Cisco Systems, Inc
60886221 00:23:56 Packet Forensics LLC
6089 00:23:4A Private
60906222 00:23:13 Qool Technologies Ltd.
60916223 00:23:0D Nortel Networks
60926224 00:23:01 Witron Technology Limited
65296661 00:16:62 Liyuh Technology Ltd.
65306662 00:16:5C Trackflow Ltd
65316663 00:16:55 FUHO TECHNOLOGY Co., LTD
6532 00:16:50 Herley General Microwave Israel.
65336664 00:15:E4 Zimmer Elektromedizin
65346665 00:15:DA IRITEL A.D.
65356666 00:15:DF Clivet S.p.A.
65806711 00:16:0F BADGER METER INC
65816712 00:16:0A SWEEX Europe BV
65826713 00:16:03 COOLKSKY Co., LTD
6583 00:15:FC Littelfuse Startco
65846714 00:15:F7 Wintecronics Ltd.
65856715 00:15:F0 EGO BV
65866716 00:15:EA Tellumat (Pty) Ltd
67606890 00:11:9B Telesynergy Research Inc.
67616891 00:11:8C Missouri Department of Transportation
67626892 00:11:91 CTS-Clima Temperatur Systeme GmbH
6763 00:11:8B Alcatel-Lucent, Enterprise Business Group
67646893 00:11:96 Actuality Systems, Inc.
6765 00:11:7E Progeny, A division of Midmark Corp
67666894 00:11:79 Singular Technology Co. Ltd.
67676895 00:11:72 COTRON CORPORATION
67686896 00:11:66 Taelim Electronics Co., Ltd.
68777005 00:0E:FC JTAG Technologies B.V.
68787006 00:0E:E9 WayTech Development, Inc.
68797007 00:0E:F0 Festo AG & Co. KG
6880 00:0F:4F Cadmus Technology Ltd
68817008 00:0F:35 Cisco Systems, Inc
68827009 00:0F:2E Megapower International Corp.
68837010 00:0F:29 Augmentix Corporation
73467473 00:04:48 Polaroid Corporation
73477474 00:04:3C SONOS Co., Ltd.
73487475 00:04:41 Half Dome Systems, Inc.
7349 00:04:35 Comptek International, Inc.
73507476 00:04:2F International Communications Products, Inc.
73517477 00:04:29 Pixord Corporation
7352 00:04:22 Gordon Kapes, Inc.
73537478 00:04:1C ipDialog, Inc.
73547479 00:04:1D Corega of America
73557480 00:04:16 Parks S/A Comunicacoes Digitais
74167541 00:03:51 Diebold, Inc.
74177542 00:03:11 Micro Technology Co., Ltd.
74187543 00:03:0A Argus Technologies
7419 00:03:02 Charles Industries, Ltd.
74207544 00:03:05 MSC Vertriebs GmbH
74217545 00:02:FE Viditec, Inc.
74227546 00:02:F2 eDevice, Inc.
74487572 00:04:A2 L.S.I. Japan Co., Ltd.
74497573 00:04:9B Cisco Systems, Inc
74507574 00:04:9C Surgient Networks, Inc.
7451 00:04:96 Extreme Networks
74527575 00:04:8F TD Systems Corporation
74537576 00:04:88 Eurotherm Controls
74547577 00:02:81 Madge Ltd.
78067929 00:E0:C1 MEMOREX TELEX JAPAN, LTD.
78077930 00:E0:AD EES TECHNOLOGY, LTD.
78087931 00:E0:25 dit Co., Ltd.
7809 00:E0:B1 Alcatel-Lucent, Enterprise Business Group
78107932 00:E0:E4 FANUC ROBOTICS NORTH AMERICA, Inc.
78117933 00:E0:31 HAGIWARA ELECTRIC CO., LTD.
78127934 00:E0:A5 ComCore Semiconductor, Inc.
78377959 08:BB:CC AK-NORD EDV VERTRIEBSGES. mbH
78387960 00:60:B2 PROCESS CONTROL CORP.
78397961 00:60:04 COMPUTADORES MODULARES SA
7840 00:60:D6 NovAtel Wireless Technologies Ltd.
78417962 00:60:00 XYCOM INC.
78427963 00:A0:19 NEBULA CONSULTANTS, INC.
78437964 00:A0:ED Brooks Automation, Inc.
78597980 00:A0:4A NISSHIN ELECTRIC CO., LTD.
78607981 00:A0:5B MARQUIP, INC.
78617982 00:A0:8D JACOMO CORPORATION
7862 00:A0:6F THE APPCON GROUP, INC.
78637983 00:A0:8E Check Point Software Technologies
78647984 00:E0:AA ELECTROSONIC LTD.
78657985 00:E0:85 GLOBAL MAINTECH, INC.
78667986 00:E0:5A GALEA NETWORK SECURITY
7867 00:E0:22 Analog Devices Inc.
78687987 00:E0:E7 RAYTHEON E-SYSTEMS, INC.
78697988 00:E0:0C MOTOROLA
78707989 00:E0:4A ZX Technologies, Inc
80878206 00:80:B7 STELLAR COMPUTER
80888207 00:80:02 SATELCOM (UK) LTD
80898208 00:80:5C AGILIS CORPORATION
8090 00:80:E7 LYNWOOD SCIENTIFIC DEV. LTD.
80918209 00:80:70 COMPUTADORAS MICRON
80928210 00:80:8F C. ITOH ELECTRONICS, INC.
80938211 00:00:91 ANRITSU CORPORATION
82458363 00:1E:C9 Dell Inc.
82468364 E0:98:61 Motorola Mobility LLC, a Lenovo Company
82478365 F4:F1:E1 Motorola Mobility LLC, a Lenovo Company
8248 74:C9:9A Ericsson AB
8249 3C:19:7D Ericsson AB
82508366 60:BE:B5 Motorola Mobility LLC, a Lenovo Company
82518367 78:45:C4 Dell Inc.
82528368 B4:E1:C4 Microsoft Mobile Oy
83048420 30:10:B3 Liteon Technology Corporation
83058421 00:18:02 Alpha Networks Inc.
83068422 EC:CD:6D Allied Telesis, Inc.
8307 74:C2:46 Amazon Technologies Inc.
8308 F0:27:2D Amazon Technologies Inc.
83098423 00:22:5F Liteon Technology Corporation
83108424 98:3B:16 AMPAK Technology, Inc.
83118425 40:2B:A1 Sony Mobile Communications AB
85308644 24:BF:74 Private
85318645 B8:E7:79 9Solutions Oy
85328646 24:0A:11 TCT mobile ltd
8533 78:B8:4B SICHUAN TIANYI COMHEART TELECOMCO.,LTD
85348647 C8:45:44 Asia Pacific CIS (Wuxi) Co, Ltd
85358648 E8:A7:F2 sTraffic
85368649 D8:20:9F Cubro Acronet GesmbH
85498662 08:C0:21 HUAWEI TECHNOLOGIES CO.,LTD
85508663 48:43:5A HUAWEI TECHNOLOGIES CO.,LTD
85518664 9C:E3:74 HUAWEI TECHNOLOGIES CO.,LTD
8552 40:F4:20 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
85538665 6C:0E:E6 Chengdu Xiyida Electronic Technology Co,.Ltd
85548666 78:FF:CA TECNO MOBILE LIMITED
85558667 F0:3E:BF GOGORO TAIWAN LIMITED
85748686 00:19:CB ZyXEL Communications Corporation
85758687 FC:F5:28 ZyXEL Communications Corporation
85768688 58:8B:F3 ZyXEL Communications Corporation
8577 EC:43:F6 5420
85788689 D8:B0:2E Guangzhou Zonerich Business Machine Co., LTD.
85798690 DC:1A:C5 vivo Mobile Communication Co., Ltd.
85808691 84:9D:64 SMC Corporation
85838694 08:95:2A Technicolor CH USA Inc.
85848695 C4:BB:4C Zebra Information Tech Co. Ltd
85858696 8C:04:FF Technicolor CH USA Inc.
8586 10:4F:A8 Sony Corporation
8587 6C:25:B9 BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
8588 48:6B:2C BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
8589 00:00:1F Telco Systems, Inc.
8590 00:16:D3 Wistron Neweb Corporation
8591 00:1F:16 Wistron Neweb Corporation
8592 BC:30:7E Wistron Neweb Corporation
8593 00:C0:AB Telco Systems, Inc.
8594 00:10:CA Telco Systems, Inc.
8595 0C:25:76 LONGCHEER TELECOMMUNICATION LIMITED
8596 00:07:A6 Leviton Manufacturing Co., Inc.
8597 20:87:56 SIEMENS AG
8598 B0:89:00 HUAWEI TECHNOLOGIES CO.,LTD
8599 A0:3E:6B IEEE Registration Authority
8600 DC:44:27 IEEE Registration Authority
8601 00:55:DA IEEE Registration Authority
8602 90:C6:82 IEEE Registration Authority
8603 98:6D:35 IEEE Registration Authority
8604 E0:B6:F5 IEEE Registration Authority
8605 C4:7C:8D IEEE Registration Authority
8606 00:1B:C5 IEEE Registration Authority
8607 64:0D:CE SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD.
8608 00:A0:85 Private
8609 AC:DE:48 Private
8610 10:07:23 IEEE Registration Authority
8611 60:63:F9 Ciholas, Inc.
8612 F0:42:1C Intel Corporate
8613 C0:E4:2D TP-LINK TECHNOLOGIES CO.,LTD.
8614 18:D6:C7 TP-LINK TECHNOLOGIES CO.,LTD.
8615 B8:BB:23 Guangdong Nufront CSC Co., Ltd
8616 EC:26:FB TECC CO.,LTD.
8617 10:68:3F LG Electronics (Mobile Communications)
8618 A0:39:F7 LG Electronics (Mobile Communications)
8619 64:BC:0C LG Electronics (Mobile Communications)
8620 00:90:CC PLANEX COMMUNICATIONS INC.
8621 E0:9D:B8 PLANEX COMMUNICATIONS INC.
8622 64:89:9A LG Electronics (Mobile Communications)
8623 58:A2:B5 LG Electronics (Mobile Communications)
8624 74:A7:22 LG Electronics (Mobile Communications)
8625 00:1F:6B LG Electronics (Mobile Communications)
8626 90:3A:E6 PARROT SA
8627 00:E0:0F Shanghai Baud Data Communication Co.,Ltd.
8628 3C:40:4F GUANGDONG PISEN ELECTRONICS CO.,LTD
8629 F0:AC:D7 IEEE Registration Authority
8630 1C:EA:1B Alcatel-Lucent Canada
8631 00:23:3E Alcatel-Lucent IPD
8632 6C:BE:E9 Alcatel-Lucent IPD
8633 4C:C9:4F Alcatel-Lucent Canada
8634 00:80:F7 Zenith Electronics Corporation
8635 00:C0:95 ZNYX Networks, Inc.
8636 60:EB:69 QUANTA COMPUTER INC.
8637 C8:0A:A9 QUANTA COMPUTER INC.
8638 00:23:8B QUANTA COMPUTER INC.
8639 00:07:BA UTStarcom Inc
8640 44:39:C4 Universal Global Scientific Industrial Co., Ltd.
8641 70:F3:95 Universal Global Scientific Industrial Co., Ltd.
8642 00:1E:37 Universal Global Scientific Industrial Co., Ltd.
8643 00:27:13 Universal Global Scientific Industrial Co., Ltd.
8644 00:21:86 Universal Global Scientific Industrial Co., Ltd.
8645 80:2A:A8 Ubiquiti Networks
8646 00:15:6D Ubiquiti Networks
8647 8C:FD:F0 Qualcomm Inc.
8648 00:00:31 QPSX COMMUNICATIONS, LTD.
8649 00:0E:7B Toshiba
8650 B8:6B:23 Toshiba
8651 00:0C:29 VMware, Inc.
8652 00:50:56 VMware, Inc.
8653 9C:61:21 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
8654 00:1C:4D Aplix IP Holdings Corporation
8655 D0:05:2A Arcadyan Corporation
8656 F4:85:C6 FDT Technologies
8657 BC:60:A7 Sony Interactive Entertainment Inc.
8658 08:D8:33 Shenzhen RF Technology Co., Ltd
8659 94:D4:69 Cisco Systems, Inc
8660 38:56:10 CANDY HOUSE, Inc.
8661 20:F5:43 Hui Zhou Gaoshengda Technology Co.,LTD
8662 68:53:88 P&S Technology
8663 48:F7:F1 Alcatel-Lucent Canada
8664 10:E8:78 Alcatel-Lucent Canada
8665 54:A6:19 Alcatel-Lucent Shanghai Bell Co., Ltd
8666 18:80:F5 Alcatel-Lucent Shanghai Bell Co., Ltd
8667 F0:25:B7 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8668 C8:BA:94 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8669 EC:1F:72 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8670 8C:0D:76 HUAWEI TECHNOLOGIES CO.,LTD
8671 00:5A:13 HUAWEI TECHNOLOGIES CO.,LTD
8672 24:DB:ED Samsung Electronics Co.,Ltd
8673 AC:36:13 Samsung Electronics Co.,Ltd
8674 14:49:E0 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8675 C0:BD:D1 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8676 E8:50:8B SAMSUNG ELECTRO-MECHANICS(THAILAND)
8677 1C:AF:05 Samsung Electronics Co.,Ltd
8678 E4:92:FB Samsung Electronics Co.,Ltd
8679 24:7F:20 Sagemcom Broadband SAS
8680 00:73:E0 Samsung Electronics Co.,Ltd
8681 BC:44:86 Samsung Electronics Co.,Ltd
8682 38:0B:40 Samsung Electronics Co.,Ltd
8683 98:52:B1 Samsung Electronics Co.,Ltd
8684 14:89:FD Samsung Electronics Co.,Ltd
8685 CC:FE:3C Samsung Electronics Co.,Ltd
8686 78:9E:D0 Samsung Electronics Co.,Ltd
8687 E4:40:E2 Samsung Electronics Co.,Ltd
8688 8C:77:12 5481
8689 00:07:AB 5481
8690 00:24:90 Samsung Electronics Co.,Ltd
8691 00:23:D7 Samsung Electronics Co.,Ltd
8692 FC:A1:3E Samsung Electronics Co.,Ltd
8693 A0:07:98 Samsung Electronics Co.,Ltd
8694 94:51:03 Samsung Electronics Co.,Ltd
8695 C8:19:F7 Samsung Electronics Co.,Ltd
8696 2C:44:01 Samsung Electronics Co.,Ltd
8697 84:E0:F4 IEEE Registration Authority
8698 08:C6:B3 QTECH LLC
8699 64:DA:A0 Robert Bosch Smart Home GmbH
8700 14:B8:37 Shenzhen YOUHUA Technology Co., Ltd
8701 60:4B:AA Private
8702 CC:73:14 HONG KONG WHEATEK TECHNOLOGY LIMITED
8703 64:74:F6 Shooter Detection Systems
8704 98:E7:F4 Hewlett Packard
8705 D4:2C:44 Cisco Systems, Inc
8706 D8:42:E2 Canary Connect, Inc.
87078697 00:19:72 Plexus (Xiamen) Co.,ltd.
87088698 64:88:FF Sichuan Changhong Electric Ltd.
87098699 00:59:79 Networked Energy Services
87688758 B0:F8:93 Shanghai MXCHIP Information Technology Co., Ltd.
87698759 00:C0:17 NetScout Systems, Inc.
87708760 D4:9B:5C Chongqing Miedu Technology Co., Ltd.
8761 C0:D3:91 IEEE Registration Authority
87718762 EC:8C:A2 Ruckus Wireless
8772 C0:D3:91 IEEE Registration Authority
87738763 C4:11:E0 Bull Group Co., Ltd
8764 90:84:2B LEGO System A/S
8765 84:C7:EA Sony Mobile Communications AB
8766 8C:61:02 Beijing Baofengmojing Technologies Co., Ltd
8767 10:05:B1 ARRIS Group, Inc.
8768 10:86:8C ARRIS Group, Inc.
8769 1C:1B:68 ARRIS Group, Inc.
8770 44:E1:37 ARRIS Group, Inc.
8771 E8:33:81 ARRIS Group, Inc.
87748772 84:61:A0 ARRIS Group, Inc.
87758773 0C:F8:93 ARRIS Group, Inc.
87768774 14:AB:F0 ARRIS Group, Inc.
87778775 AC:B3:13 ARRIS Group, Inc.
8778 30:60:23 ARRIS Group, Inc.
8779 00:1D:D6 ARRIS Group, Inc.
8780 90:84:2B LEGO System A/S
8781 84:C7:EA Sony Mobile Communications AB
8782 00:1D:D1 ARRIS Group, Inc.
8783 60:19:71 ARRIS Group, Inc.
8784 00:00:CA ARRIS Group, Inc.
8785 00:15:96 ARRIS Group, Inc.
8786 00:15:A2 ARRIS Group, Inc.
8787 00:13:11 ARRIS Group, Inc.
8788 8C:61:02 Beijing Baofengmojing Technologies Co., Ltd
8789 1C:1B:68 ARRIS Group, Inc.
8790 44:E1:37 ARRIS Group, Inc.
8791 E8:33:81 ARRIS Group, Inc.
8792 10:05:B1 ARRIS Group, Inc.
8793 10:86:8C ARRIS Group, Inc.
8794 00:1A:DB ARRIS Group, Inc.
8795 00:23:75 ARRIS Group, Inc.
8796 00:24:A1 ARRIS Group, Inc.
8797 A4:ED:4E ARRIS Group, Inc.
8798 00:26:42 ARRIS Group, Inc.
8799 00:24:95 ARRIS Group, Inc.
8800 2C:9E:5F ARRIS Group, Inc.
8801 C8:AA:21 ARRIS Group, Inc.
8802 34:1F:E4 ARRIS Group, Inc.
8803 40:0D:10 ARRIS Group, Inc.
88048776 00:26:D9 ARRIS Group, Inc.
88058777 28:C8:7A ARRIS Group, Inc.
88068778 54:E2:E0 ARRIS Group, Inc.
88078779 A0:55:DE ARRIS Group, Inc.
88088780 A0:C5:62 ARRIS Group, Inc.
88098781 FC:6F:B7 ARRIS Group, Inc.
8810 00:D0:37 ARRIS Group, Inc.
8782 00:1A:1B ARRIS Group, Inc.
8783 00:14:9A ARRIS Group, Inc.
8784 00:13:71 ARRIS Group, Inc.
8785 00:1D:BE ARRIS Group, Inc.
8786 00:1E:5A ARRIS Group, Inc.
8787 00:1D:6B ARRIS Group, Inc.
8788 00:1C:C1 ARRIS Group, Inc.
8789 00:1C:11 ARRIS Group, Inc.
8790 00:1F:7E ARRIS Group, Inc.
8791 00:24:95 ARRIS Group, Inc.
8792 2C:9E:5F ARRIS Group, Inc.
8793 C8:AA:21 ARRIS Group, Inc.
8794 34:1F:E4 ARRIS Group, Inc.
8795 40:0D:10 ARRIS Group, Inc.
8796 00:15:96 ARRIS Group, Inc.
8797 00:15:A2 ARRIS Group, Inc.
8798 00:13:11 ARRIS Group, Inc.
8799 00:15:CE ARRIS Group, Inc.
8800 00:20:40 ARRIS Group, Inc.
8801 00:11:AE ARRIS Group, Inc.
8802 00:0F:9F ARRIS Group, Inc.
8803 30:60:23 ARRIS Group, Inc.
8804 00:1D:D6 ARRIS Group, Inc.
8805 00:1D:D1 ARRIS Group, Inc.
8806 60:19:71 ARRIS Group, Inc.
8807 00:00:CA ARRIS Group, Inc.
8808 00:1A:DB ARRIS Group, Inc.
8809 00:23:75 ARRIS Group, Inc.
8810 00:24:A1 ARRIS Group, Inc.
8811 A4:ED:4E ARRIS Group, Inc.
8812 00:26:42 ARRIS Group, Inc.
8813 00:0B:06 ARRIS Group, Inc.
88118814 00:15:2F ARRIS Group, Inc.
88128815 00:11:1A ARRIS Group, Inc.
88138816 00:16:26 ARRIS Group, Inc.
88148817 00:18:A4 ARRIS Group, Inc.
8815 00:1A:1B ARRIS Group, Inc.
8816 00:14:9A ARRIS Group, Inc.
8817 00:15:CE ARRIS Group, Inc.
8818 00:20:40 ARRIS Group, Inc.
8819 00:11:AE ARRIS Group, Inc.
8820 00:0F:9F ARRIS Group, Inc.
8821 00:0B:06 ARRIS Group, Inc.
8822 00:1D:6B ARRIS Group, Inc.
8823 00:1C:C1 ARRIS Group, Inc.
8824 00:1C:11 ARRIS Group, Inc.
8825 00:1F:7E ARRIS Group, Inc.
8826 00:13:71 ARRIS Group, Inc.
8827 00:1D:BE ARRIS Group, Inc.
8828 00:1E:5A ARRIS Group, Inc.
8818 00:D0:37 ARRIS Group, Inc.
88298819 FC:91:14 Technicolor CH USA Inc.
88308820 1C:25:E1 China Mobile IOT Company Limited
88318821 C0:F6:36 Hangzhou Kuaiyue Technologies, Ltd.
8832 74:23:44 Xiaomi Communications Co Ltd
88338822 F0:03:8C AzureWave Technology Inc.
88348823 B4:5D:50 Aruba Networks
88358824 00:1E:7D Samsung Electronics Co.,Ltd
8836 00:21:D2 5481
8837 BC:47:60 5481
8838 20:13:E0 5481
8839 D0:17:6A 5481
8840 78:D6:F0 SAMSUNG ELECTRO MECHANICS CO., LTD.
8841 B4:07:F9 SAMSUNG ELECTRO MECHANICS CO., LTD.
88428825 3C:62:00 Samsung Electronics Co.,Ltd
88438826 00:24:E9 Samsung Electronics Co.,Ltd
88448827 00:23:99 Samsung Electronics Co.,Ltd
88458828 E4:E0:C5 Samsung Electronics Co.,Ltd
88468829 E8:03:9A Samsung Electronics Co.,Ltd
88478830 C4:73:1E Samsung Electronics Co.,Ltd
8831 78:D6:F0 SAMSUNG ELECTRO MECHANICS CO., LTD.
8832 B4:07:F9 SAMSUNG ELECTRO MECHANICS CO., LTD.
8833 40:B8:9A Hon Hai Precision Ind. Co.,Ltd.
8834 A8:A7:95 Hon Hai Precision Ind. Co.,Ltd.
8835 80:96:CA Hon Hai Precision Ind. Co.,Ltd.
8836 9C:D2:1E Hon Hai Precision Ind. Co.,Ltd.
88488837 D8:79:88 Hon Hai Precision Ind. Co.,Ltd.
88498838 00:24:2B Hon Hai Precision Ind. Co.,Ltd.
88508839 00:24:2C Hon Hai Precision Ind. Co.,Ltd.
88518840 94:53:30 Hon Hai Precision Ind. Co.,Ltd.
8841 EC:0E:C4 Hon Hai Precision Ind. Co.,Ltd.
8842 74:29:AF Hon Hai Precision Ind. Co.,Ltd.
8843 34:68:95 Hon Hai Precision Ind. Co.,Ltd.
88528844 A8:6B:AD Hon Hai Precision Ind. Co.,Ltd.
88538845 D8:0F:99 Hon Hai Precision Ind. Co.,Ltd.
8846 78:DD:08 Hon Hai Precision Ind. Co.,Ltd.
8847 00:19:7E Hon Hai Precision Ind. Co.,Ltd.
8848 A0:AB:1B D-Link International
8849 5C:49:79 AVM Audiovisuelles Marketing und Computersysteme GmbH
8850 08:6A:0A ASKEY COMPUTER CORP
8851 10:12:50 Integrated Device Technology (Malaysia) Sdn. Bhd.
8852 8C:77:12 Samsung Electronics Co.,Ltd
8853 20:13:E0 Samsung Electronics Co.,Ltd
8854 00:07:AB Samsung Electronics Co.,Ltd
8855 00:21:D2 Samsung Electronics Co.,Ltd
8856 BC:47:60 Samsung Electronics Co.,Ltd
8857 D0:17:6A Samsung Electronics Co.,Ltd
8858 F0:D9:B2 EXO S.A.
8859 2C:BA:BA Samsung Electronics Co.,Ltd
8860 24:92:0E Samsung Electronics Co.,Ltd
8861 40:D3:AE Samsung Electronics Co.,Ltd
8862 80:2A:A8 Ubiquiti Networks Inc.
8863 00:15:6D Ubiquiti Networks Inc.
8864 78:7D:48 ITEL MOBILE LIMITED
8865 D4:6E:0E TP-LINK TECHNOLOGIES CO.,LTD.
8866 04:97:90 Lartech telecom LLC
8867 8C:EA:1B Edgecore Networks Corporation
8868 00:16:50 Kratos EPD
8869 9C:FB:D5 vivo Mobile Communication Co., Ltd.
8870 58:31:12 DRUST
8871 7C:26:34 ARRIS Group, Inc.
8872 58:69:6C Ruijie Networks Co.,LTD
8873 A0:B8:F8 Amgen U.S.A. Inc.
8874 14:A5:1A HUAWEI TECHNOLOGIES CO.,LTD
8875 C8:16:A5 Masimo Corporation
8876 90:02:A9 Zhejiang Dahua Technology Co., Ltd.
8877 AC:D6:57 Shaanxi GuoLian Digital TV Technology Co.,Ltd.
8878 24:4E:7B IEEE Registration Authority
8879 E8:09:45 Integrated Device Technology (Malaysia) Sdn. Bhd.
8880 98:FD:74 ACT.CO.LTD
8881 60:C7:98 Verifone
8882 A4:60:11 Verifone
8883 2C:21:31 Juniper Networks
8884 0C:C4:7A Super Micro Computer, Inc.
8885 60:42:7F SHENZHEN CHUANGWEI-RGB ELECTRONICS CO.,LTD
8886 F8:46:1C Sony Interactive Entertainment Inc.
8887 50:0B:91 IEEE Registration Authority
8888 40:B9:3C Hewlett Packard Enterprise
8889 4C:74:87 Leader Phone Communication Technology Co., Ltd.
8890 F4:8C:50 Intel Corporate
8891 E8:E8:75 iS5 Communications Inc.
8892 00:04:22 Studio Technologies, Inc
8893 AC:C6:62 MitraStar Technology Corp.
8894 B8:EC:A3 ZyXEL Communications Corporation
8895 F0:1D:BC Microsoft Corporation
8896 40:4D:7F Apple, Inc.
8897 7C:04:D0 Apple, Inc.
8898 BC:9F:EF Apple, Inc.
8899 88:66:A5 Apple, Inc.
8900 AC:DC:E5 Procter & Gamble Company
8901 78:4F:43 Apple, Inc.
8902 98:D2:93 Google, Inc.
8903 5C:CC:A0 Gridwiz Inc.
8904 10:4F:A8 Sony Corporation
8905 6C:25:B9 BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
8906 48:6B:2C BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
8907 00:00:1F Telco Systems, Inc.
8908 BC:30:7E Wistron Neweb Corporation
8909 00:C0:AB Telco Systems, Inc.
8910 00:10:CA Telco Systems, Inc.
8911 0C:25:76 LONGCHEER TELECOMMUNICATION LIMITED
8912 00:07:A6 Leviton Manufacturing Co., Inc.
8913 20:87:56 SIEMENS AG
8914 B0:89:00 HUAWEI TECHNOLOGIES CO.,LTD
8915 A0:3E:6B IEEE Registration Authority
8916 DC:44:27 IEEE Registration Authority
8917 00:55:DA IEEE Registration Authority
8918 90:C6:82 IEEE Registration Authority
8919 98:6D:35 IEEE Registration Authority
8920 E0:B6:F5 IEEE Registration Authority
8921 C4:7C:8D IEEE Registration Authority
8922 00:1B:C5 IEEE Registration Authority
8923 64:0D:CE SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD.
8924 00:A0:85 Private
8925 AC:DE:48 Private
8926 10:07:23 IEEE Registration Authority
8927 60:63:F9 Ciholas, Inc.
8928 F0:42:1C Intel Corporate
8929 C0:E4:2D TP-LINK TECHNOLOGIES CO.,LTD.
8930 18:D6:C7 TP-LINK TECHNOLOGIES CO.,LTD.
8931 B8:BB:23 Guangdong Nufront CSC Co., Ltd
8932 EC:26:FB TECC CO.,LTD.
8933 10:68:3F LG Electronics (Mobile Communications)
8934 A0:39:F7 LG Electronics (Mobile Communications)
8935 64:BC:0C LG Electronics (Mobile Communications)
8936 00:90:CC PLANEX COMMUNICATIONS INC.
8937 E0:9D:B8 PLANEX COMMUNICATIONS INC.
8938 64:89:9A LG Electronics (Mobile Communications)
8939 58:A2:B5 LG Electronics (Mobile Communications)
8940 74:A7:22 LG Electronics (Mobile Communications)
8941 00:1F:6B LG Electronics (Mobile Communications)
8942 90:3A:E6 PARROT SA
8943 00:E0:0F Shanghai Baud Data Communication Co.,Ltd.
8944 3C:40:4F GUANGDONG PISEN ELECTRONICS CO.,LTD
8945 F0:AC:D7 IEEE Registration Authority
8946 00:23:3E Alcatel-Lucent IPD
8947 6C:BE:E9 Alcatel-Lucent IPD
8948 00:80:F7 Zenith Electronics Corporation
8949 00:C0:95 ZNYX Networks, Inc.
8950 60:EB:69 QUANTA COMPUTER INC.
8951 C8:0A:A9 QUANTA COMPUTER INC.
8952 00:23:8B QUANTA COMPUTER INC.
8953 00:07:BA UTStarcom Inc
8954 44:39:C4 Universal Global Scientific Industrial Co., Ltd.
8955 70:F3:95 Universal Global Scientific Industrial Co., Ltd.
8956 00:1E:37 Universal Global Scientific Industrial Co., Ltd.
8957 00:27:13 Universal Global Scientific Industrial Co., Ltd.
8958 00:21:86 Universal Global Scientific Industrial Co., Ltd.
8959 8C:FD:F0 Qualcomm Inc.
8960 00:00:31 QPSX COMMUNICATIONS, LTD.
8961 00:0E:7B Toshiba
8962 B8:6B:23 Toshiba
8963 00:0C:29 VMware, Inc.
8964 00:50:56 VMware, Inc.
8965 00:1C:4D Aplix IP Holdings Corporation
8966 D0:05:2A Arcadyan Corporation
8967 F4:85:C6 FDT Technologies
8968 BC:60:A7 Sony Interactive Entertainment Inc.
8969 08:D8:33 Shenzhen RF Technology Co., Ltd
8970 94:D4:69 Cisco Systems, Inc
8971 38:56:10 CANDY HOUSE, Inc.
8972 20:F5:43 Hui Zhou Gaoshengda Technology Co.,LTD
8973 68:53:88 P&S Technology
8974 54:A6:19 Alcatel-Lucent Shanghai Bell Co., Ltd
8975 18:80:F5 Alcatel-Lucent Shanghai Bell Co., Ltd
8976 24:DB:ED Samsung Electronics Co.,Ltd
8977 AC:36:13 Samsung Electronics Co.,Ltd
8978 14:49:E0 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8979 C0:BD:D1 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8980 E8:50:8B SAMSUNG ELECTRO-MECHANICS(THAILAND)
8981 F0:25:B7 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8982 C8:BA:94 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8983 EC:1F:72 SAMSUNG ELECTRO-MECHANICS(THAILAND)
8984 98:52:B1 Samsung Electronics Co.,Ltd
8985 14:89:FD Samsung Electronics Co.,Ltd
8986 CC:FE:3C Samsung Electronics Co.,Ltd
8987 78:9E:D0 Samsung Electronics Co.,Ltd
8988 E4:40:E2 Samsung Electronics Co.,Ltd
8989 1C:AF:05 Samsung Electronics Co.,Ltd
8990 E4:92:FB Samsung Electronics Co.,Ltd
8991 24:7F:20 Sagemcom Broadband SAS
8992 00:73:E0 Samsung Electronics Co.,Ltd
8993 BC:44:86 Samsung Electronics Co.,Ltd
8994 38:0B:40 Samsung Electronics Co.,Ltd
8995 8C:0D:76 HUAWEI TECHNOLOGIES CO.,LTD
8996 00:5A:13 HUAWEI TECHNOLOGIES CO.,LTD
8997 00:24:90 Samsung Electronics Co.,Ltd
8998 00:23:D7 Samsung Electronics Co.,Ltd
8999 FC:A1:3E Samsung Electronics Co.,Ltd
9000 A0:07:98 Samsung Electronics Co.,Ltd
9001 94:51:03 Samsung Electronics Co.,Ltd
9002 C8:19:F7 Samsung Electronics Co.,Ltd
9003 2C:44:01 Samsung Electronics Co.,Ltd
9004 84:E0:F4 IEEE Registration Authority
9005 08:C6:B3 QTECH LLC
9006 64:DA:A0 Robert Bosch Smart Home GmbH
9007 14:B8:37 Shenzhen YOUHUA Technology Co., Ltd
88549008 80:56:F2 Hon Hai Precision Ind. Co.,Ltd.
88559009 70:18:8B Hon Hai Precision Ind. Co.,Ltd.
88569010 3C:77:E6 Hon Hai Precision Ind. Co.,Ltd.
88629016 C0:14:3D Hon Hai Precision Ind. Co.,Ltd.
88639017 64:27:37 Hon Hai Precision Ind. Co.,Ltd.
88649018 60:D8:19 Hon Hai Precision Ind. Co.,Ltd.
8865 40:B8:9A Hon Hai Precision Ind. Co.,Ltd.
8866 A8:A7:95 Hon Hai Precision Ind. Co.,Ltd.
8867 80:96:CA Hon Hai Precision Ind. Co.,Ltd.
8868 9C:D2:1E Hon Hai Precision Ind. Co.,Ltd.
8869 EC:0E:C4 Hon Hai Precision Ind. Co.,Ltd.
8870 74:29:AF Hon Hai Precision Ind. Co.,Ltd.
8871 34:68:95 Hon Hai Precision Ind. Co.,Ltd.
8872 78:DD:08 Hon Hai Precision Ind. Co.,Ltd.
8873 00:19:7E Hon Hai Precision Ind. Co.,Ltd.
9019 64:74:F6 Shooter Detection Systems
9020 60:4B:AA Private
9021 CC:73:14 HONG KONG WHEATEK TECHNOLOGY LIMITED
88749022 C0:CB:38 Hon Hai Precision Ind. Co.,Ltd.
8875 C0:F9:45 Toshiba Toko meter systems co., LTD.
8876 A0:AB:1B D-Link International
8877 08:6A:0A ASKEY COMPUTER CORP
9023 98:E7:F4 Hewlett Packard
9024 D4:2C:44 Cisco Systems, Inc
9025 D8:42:E2 Canary Connect, Inc.
9026 50:09:59 Technicolor CH USA Inc.
9027 14:33:65 TEM Mobile Limited
9028 20:5D:47 vivo Mobile Communication Co., Ltd.
9029 C0:F9:45 Toshiba Toko Meter Systems Co., LTD.
9030 AC:AB:2E Beijing LasNubes Technology Co., Ltd.
9031 10:E8:78 Nokia
9032 48:F7:F1 Nokia
9033 4C:C9:4F Nokia
9034 1C:EA:1B Nokia
9035 B4:F8:1E Kinova
9036 28:CA:09 ThyssenKrupp Elevators (Shanghai) Co.,Ltd
9037 E0:B9:4D SHENZHEN BILIAN ELECTRONIC CO.,LTD
9038 D8:38:0D SHENZHEN IP-COM Network Co.,Ltd
9039 A4:C6:4F HUAWEI TECHNOLOGIES CO.,LTD
9040 C8:3D:D4 CyberTAN Technology Inc.
9041 48:7B:6B HUAWEI TECHNOLOGIES CO.,LTD
9042 30:87:D9 Ruckus Wireless
9043 A8:E7:05 Fiberhome Telecommunication Technologies Co.,LTD
9044 9C:62:AB Sumavision Technologies Co.,Ltd
9045 48:7A:55 ALE International
9046 00:04:35 InfiNet LLC
9047 BC:39:D9 Z-TEC
9048 88:E8:7F Apple, Inc.
9049 B8:53:AC Apple, Inc.
9050 B0:4B:BF PT HAN SUNG ELECTORONICS INDONESIA
9051 00:60:D6 NovAtel Inc.
9052 2C:33:61 Apple, Inc.
9053 78:B8:4B SICHUAN TIANYI COMHEART TELECOMCO.,LTD
9054 40:F4:20 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
9055 9C:61:21 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
9056 8C:8A:BB Beijing Orient View Technology Co., Ltd.
9057 88:36:6C EFM Networks
9058 F0:74:E4 Thundercomm Technology Co., Ltd
9059 A0:72:2C HUMAX Co., Ltd.
9060 FC:EC:DA Ubiquiti Networks Inc.
9061 E0:7C:13 zte corporation
9062 58:E1:6C Ying Hua Information Technology (Shanghai)Co., LTD
9063 24:C1:BD CRRC DALIAN R&D CO.,LTD.
9064 A8:1E:84 QUANTA COMPUTER INC.
9065 C8:21:58 Intel Corporate
9066 24:20:C7 Sagemcom Broadband SAS
9067 70:3D:15 Hangzhou H3C Technologies Co., Limited
9068 40:18:B1 Aerohive Networks Inc.
9069 00:19:77 Aerohive Networks Inc.
9070 C8:66:5D Aerohive Networks Inc.
9071 48:65:EE IEEE Registration Authority
9072 3C:EF:8C Zhejiang Dahua Technology Co., Ltd.
9073 A0:CC:2B Murata Manufacturing Co., Ltd.
9074 00:23:4A Private
9075 88:C6:26 Logitech, Inc
9076 28:E3:1F Xiaomi Communications Co Ltd
9077 0C:1D:AF Xiaomi Communications Co Ltd
9078 14:F6:5A Xiaomi Communications Co Ltd
9079 74:23:44 Xiaomi Communications Co Ltd
9080 F0:B4:29 Xiaomi Communications Co Ltd
9081 94:E9:79 Liteon Technology Corporation
9082 AC:1F:6B Super Micro Computer, Inc.
9083 80:D4:A5 HUAWEI TECHNOLOGIES CO.,LTD
9084 38:BC:01 HUAWEI TECHNOLOGIES CO.,LTD
9085 04:B0:E7 HUAWEI TECHNOLOGIES CO.,LTD
9086 44:6A:2E HUAWEI TECHNOLOGIES CO.,LTD
9087 00:26:AB Seiko Epson Corporation
9088 64:EB:8C Seiko Epson Corporation
9089 A0:6F:AA LG Innotek
9090 00:15:FC Littelfuse Startco
9091 50:4B:5B CONTROLtronic GmbH
9092 A0:E0:AF Cisco Systems, Inc
9093 60:3E:7B Gafachi, Inc.
9094 98:F1:99 NEC Platforms, Ltd.
9095 78:FC:14 Family Zone Cyber Safety Ltd
9096 10:62:EB D-Link International
9097 1C:48:CE GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
9098 E0:A7:00 Verkada Inc
9099 90:17:11 Hagenuk Marinekommunikation GmbH
9100 D8:25:B0 Rockeetech Systems Co.,Ltd.
9101 74:61:4B Chongqing Huijiatong Information Technology Co., Ltd.
9102 C0:D9:F7 ShanDong Domor Intelligent S&T CO.,Ltd
9103 94:FB:29 Zebra Technologies Inc.
9104 64:DB:A0 Select Comfort
9105 58:00:E3 Liteon Technology Corporation
9106 64:77:7D Hitron Technologies. Inc
9107 04:95:E6 Tenda Technology Co.,Ltd.Dongguan branch
9108 00:16:D3 Wistron Corporation
9109 00:1F:16 Wistron Corporation
9110 4C:4E:03 TCT mobile ltd
9111 50:E6:66 Shenzhen Techtion Electronics Co., Ltd.
9112 68:31:FE Teladin Co.,Ltd.
9113 EC:43:F6 ZyXEL Communications Corporation
9114 D4:B1:69 Le Shi Zhi Xin Electronic Technology (Tianjin) Limited
9115 0C:3C:CD Universal Global Scientific Industrial Co., Ltd.
9116 B0:40:89 Senient Systems LTD
9117 68:27:37 Samsung Electronics Co.,Ltd
9118 00:24:45 Adtran Inc
9119 68:9F:F0 zte corporation
9120 7C:C6:C4 Kolff Computer Supplies b.v.
9121 14:B7:F8 Technicolor CH USA Inc.
9122 F0:6E:32 MICROTEL INNOVATION S.R.L.
9123 00:E0:22 Analog Devices, Inc.
9124 7C:67:A2 Intel Corporate
9125 00:03:02 Charles Industries, Ltd.
9126 08:96:AD Cisco Systems, Inc
9127 8C:F5:A3 SAMSUNG ELECTRO-MECHANICS(THAILAND)
9128 B8:EA:AA ICG NETWORKS CO.,ltd
9129 B8:F8:83 TP-LINK TECHNOLOGIES CO.,LTD.
9130 DC:FE:18 TP-LINK TECHNOLOGIES CO.,LTD.
9131 AC:60:B6 Ericsson AB
9132 3C:19:7D Ericsson AB
9133 74:C9:9A Ericsson AB
9134 00:0F:4F PCS Systemtechnik GmbH
9135 7C:5A:1C Sophos Ltd
9136 00:E4:00 Sichuan Changhong Electric Ltd.
9137 00:11:7E Midmark Corp
9138 70:3A:CB Google, Inc.
9139 10:5A:F7 ADB Italia
9140 2C:55:D3 HUAWEI TECHNOLOGIES CO.,LTD
9141 F4:4C:7F HUAWEI TECHNOLOGIES CO.,LTD
9142 14:30:04 HUAWEI TECHNOLOGIES CO.,LTD
9143 D4:81:D7 Dell Inc.
9144 7C:46:85 Motorola (Wuhan) Mobility Technologies Communication Co., Ltd.
9145 E0:51:63 Arcadyan Corporation
9146 00:A0:6F Color Sentinel Systems, LLC
9147 0C:5F:35 Niagara Video Corporation
9148 7C:38:66 Texas Instruments
9149 50:F1:4A Texas Instruments
9150 9C:1D:58 Texas Instruments
9151 B8:50:01 Extreme Networks
9152 00:04:96 Extreme Networks
9153 50:0F:F5 Tenda Technology Co.,Ltd.Dongguan branch
9154 1C:1E:E3 Hui Zhou Gaoshengda Technology Co.,LTD
9155 F0:27:2D Amazon Technologies Inc.
9156 74:C2:46 Amazon Technologies Inc.
9157 08:B2:58 Juniper Networks
9158 F4:C4:D6 Shenzhen Xinfa Electronic Co.,ltd
9159 C0:3D:46 Shanghai Sango Network Technology Co.,Ltd
9160 E8:9F:EC CHENGDU KT ELECTRONIC HI-TECH CO.,LTD
9161 D4:7D:FC TECNO MOBILE LIMITED
9162 BC:A0:42 SHANGHAI FLYCO ELECTRICAL APPLIANCE CO.,LTD
9163 14:56:8E Samsung Electronics Co.,Ltd
9164 68:37:E9 Amazon Technologies Inc.
9165 80:58:F8 Motorola Mobility LLC, a Lenovo Company
9166 44:37:08 MRV Comunications
9167 F0:D7:AA Motorola Mobility LLC, a Lenovo Company
9168 28:FF:3E zte corporation
9169 70:F0:87 Apple, Inc.
9170 88:6B:6E Apple, Inc.
9171 4C:74:BF Apple, Inc.
9172 28:57:67 Echostar Technologies Corp
9173 00:24:AF Echostar Technologies Corp
9174 04:C9:D9 Echostar Technologies Corp
9175 C4:9D:ED Microsoft Corporation
9176 98:A4:0E Snap, Inc.
9177 D0:49:8B ZOOM SERVER
9178 AC:74:09 Hangzhou H3C Technologies Co., Limited
9179 2C:5A:0F Cisco Systems, Inc
9180 00:80:E7 DRS Technologies UK Limited
9181 4C:81:20 Taicang T&W Electronics
9182 E8:E7:32 Alcatel-Lucent Enterprise
9183 00:11:8B Alcatel-Lucent Enterprise
9184 00:E0:B1 Alcatel-Lucent Enterprise
9185 E0:37:BF Wistron Neweb Corporation
9186 68:54:ED Alcatel-Lucent
9187 E8:DE:8E Integrated Device Technology (Malaysia) Sdn. Bhd.
9188 B4:2A:0E Technicolor CH USA Inc.
9189 40:C8:CB AM Telecom co., Ltd.
9190 14:A0:F8 HUAWEI TECHNOLOGIES CO.,LTD
9191 28:B4:48 HUAWEI TECHNOLOGIES CO.,LTD
9192 E4:42:A6 Intel Corporate
9193 60:45:CB ASUSTek COMPUTER INC.
9194 74:C9:A3 Fiberhome Telecommunication Technologies Co.,LTD
9195 84:AF:EC BUFFALO.INC
88789196 58:46:E1 Baxter International Inc
88799197 00:D0:BD Lattice Semiconductor Corp. (LPA)
88809198 F0:82:61 Sagemcom Broadband SAS
88819199 D0:84:B0 Sagemcom Broadband SAS
88829200 00:FE:C8 Cisco Systems, Inc
8883 00:30:C5 CADENCE DESIGN SYSTEMS, INC.
88849201 EC:22:80 D-Link International
88859202 04:78:63 Shanghai MXCHIP Information Technology Co., Ltd.
88869203 24:BA:13 RISO KAGAKU CORPORATION
89089225 78:E3:B5 Hewlett Packard
89099226 98:4B:E1 Hewlett Packard
89109227 68:B5:99 Hewlett Packard
8911 0C:47:C9 Amazon Technologies Inc.
89129228 14:D6:4D D-Link International
89139229 C8:BE:19 D-Link International
89149230 BC:F6:85 D-Link International
89269242 18:68:6A zte corporation
89279243 0C:05:35 Juniper Systems
89289244 8C:F2:28 SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD.
8929 08:EA:44 Aerohive Networks Inc.
89309245 78:F8:82 LG Electronics (Mobile Communications)
89319246 88:51:FB Hewlett Packard
89329247 AC:16:2D Hewlett Packard
89839298 E4:22:A5 PLANTRONICS, INC.
89849299 1C:99:4C Murata Manufacturing Co., Ltd.
89859300 F0:27:65 Murata Manufacturing Co., Ltd.
8986 D4:97:0B Xiaomi Communications Co Ltd
8987 F4:8B:32 Xiaomi Communications Co Ltd
89889301 20:A7:83 miControl GmbH
89899302 00:50:53 Cisco Systems, Inc
89909303 00:50:0F Cisco Systems, Inc
91839496 C0:2D:EE Cuff
91849497 54:A3:FA BQT Solutions (Australia)Pty Ltd
91859498 90:23:EC Availink, Inc.
9186 74:67:F7 Zebra Technologoes
91879499 38:91:D5 Hangzhou H3C Technologies Co., Limited
91889500 90:DF:FB HOMERIDER SYSTEMS
91899501 3C:83:1E CKD Corporation
91969508 B8:B2:EB Googol Technology (HK) Limited
91979509 C4:00:49 Kamama
91989510 50:A9:DE Smartcom - Bulgaria AD
9199 88:09:AF Masimo Corp.
92009511 E8:DE:D6 Intrising Networks, Inc.
92019512 B8:44:D9 Apple, Inc.
92029513 DC:2B:2A Apple, Inc.
92039514 8C:10:D4 Sagemcom Broadband SAS
9204 B8:3A:9D FIVE INTERACTIVE, LLC
92059515 08:9B:4B iKuai Networks
92069516 3C:78:73 Airsonics
92079517 BC:5F:F6 SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD.
92729582 20:E4:07 Spark srl
92739583 88:73:84 Toshiba
92749584 58:47:04 Shenzhen Webridge Technology Co.,Ltd
9275 1C:14:B3 Pinyon Technologies
9276 74:9C:E3 Art2Wave Canada Inc.
92779585 B8:56:BD ITT LLC
92789586 10:78:73 Shenzhen Jinkeyi Communication Co., Ltd.
92799587 D4:55:56 Fiber Mountain Inc.
93299637 C4:56:FE Lava International Ltd.
93309638 B8:9B:E4 ABB Power Systems Power Generation
93319639 C0:EE:FB OnePlus Tech (Shenzhen) Ltd
9332 E0:0D:B9 Private
93339640 10:8A:1B RAONIX Inc.
93349641 8C:F8:13 ORANGE POLSKA
93359642 B8:F3:17 iSun Smasher Communications Private Limited
93669673 A4:4A:D3 ST Electronics(Shanghai) Co.,Ltd
93679674 24:97:ED Techvision Intelligent Technology Limited
93689675 10:4E:07 Shanghai Genvision Industries Co.,Ltd
9369 4C:11:BF ZHEJIANG DAHUA TECHNOLOGY CO.,LTD.
93709676 FC:D5:D9 Shenzhen SDMC Technology Co., Ltd.
93719677 00:75:32 INID BV
9372 A0:02:DC Amazon Technologies Inc.
93739678 90:7E:BA UTEK TECHNOLOGY (SHENZHEN) CO.,LTD
93749679 48:82:44 Life Fitness / Div. of Brunswick
93759680 A8:F7:E0 PLANET Technology Corporation
94129717 A4:9F:85 Lyve Minds, Inc
94139718 7C:D3:0A INVENTEC Corporation
94149719 34:81:C4 AVM GmbH
9415 88:5B:DD Aerohive Networks Inc.
94169720 08:57:00 TP-LINK TECHNOLOGIES CO.,LTD.
94179721 88:89:14 All Components Incorporated
94189722 D8:15:0D TP-LINK TECHNOLOGIES CO.,LTD.
94659769 94:FB:B2 Shenzhen Gongjin Electronics Co.,Ltd
94669770 4C:E1:BB Zhuhai HiFocus Technology Co., Ltd.
94679771 8C:DE:99 Comlab Inc.
9468 2C:9A:A4 NGI SpA
94699772 B4:66:98 Zealabs srl
94709773 28:3B:96 Cool Control LTD
94719774 80:D4:33 LzLabs GmbH
95989901 68:DB:67 Nantong Coship Electronics Co., Ltd
95999902 BC:26:1D HONG KONG TECON TECHNOLOGY
96009903 88:89:64 GSI Electronics Inc.
9601 4C:82:CF Echostar Technologies
96029904 9C:A5:77 Osorno Enterprises Inc.
96039905 C0:C3:B6 Automatic Systems
96049906 A8:29:4C Precision Optical Transceivers, Inc.
96869988 B8:5A:F7 Ouya, Inc
96879989 E0:D9:A2 Hippih aps
96889990 F0:F6:69 Motion Analysis Corporation
9689 F0:21:9D Cal-Comp Electronics & Communications Company Ltd.
96909991 F8:D7:BF REV Ritter GmbH
96919992 00:B5:6D David Electronics Co., LTD.
96929993 B4:61:FF Lumigon A/S
983710138 C8:56:45 Intermas France
983810139 8C:60:4F Cisco Systems, Inc
983910140 74:FF:7D Wren Sound Systems, LLC
9840 2C:C2:60 Ravello Systems
984110141 30:B2:16 Hytec Geraetebau GmbH
984210142 34:FC:6F ALCEA
984310143 C0:B3:57 Yoshiki Electronics Industry Ltd.
992310223 3C:26:D5 Sotera Wireless
992410224 FC:2E:2D Lorom Industrial Co.LTD.
992510225 E8:4E:06 EDUP INTERNATIONAL (HK) CO., LTD
9926 B4:C7:99 Zebra Technologies Inc
992710226 70:B9:21 Fiberhome Telecommunication Technologies Co.,LTD
9928 94:8F:EE Hughes Telematics, Inc.
992910227 E8:C3:20 Austco Communication Systems Pty Ltd
993010228 D8:97:3B Artesyn Embedded Technologies
993110229 00:8D:4E CJSC NII STT
1013010428 7C:05:1E RAFAEL LTD.
1013110429 58:57:0D Danfoss Solar Inverters
1013210430 0C:82:6A Wuhan Huagong Genuine Optics Technology Co., Ltd
10133 5C:0E:8B Zebra Technologies Inc
1013410431 38:C7:BA CS Services Co.,Ltd.
1013510432 70:D5:7E Scalar Corporation
1013610433 78:66:AE ZTEC Instruments, Inc.
1023110528 1C:12:9D IEEE PES PSRC/SUB
1023210529 B4:08:32 TC Communications
1023310530 00:27:20 NEW-SOL COM
10234 00:27:1C MERCURY CORPORATION
1023510531 00:27:12 MaxVision LLC
1023610532 00:27:0F Envisionnovation Inc
1023710533 00:26:D7 KM Electornic Technology Co., Ltd.
1035010646 00:25:D9 DataFab Systems Inc.
1035110647 00:24:10 NUETEQ Technology,Inc.
1035210648 00:24:09 The Toro Company
10353 00:23:F7 Private
1035410649 00:23:FD AFT Atlas Fahrzeugtechnik GmbH
1035510650 00:23:F6 Softwell Technology Co., Ltd.
1035610651 00:23:EC Algorithmix GmbH
1037310668 00:24:98 Cisco Systems, Inc
1037410669 00:24:85 ConteXtream Ltd
1037510670 00:24:80 Meteocontrol GmbH
10376 00:24:48 SpiderCloud Wireless, Inc
1037710671 00:24:4A Voyant International
1037810672 00:24:49 Shen Zhen Lite Star Electronics Technology Co., Ltd
1037910673 00:24:43 Nortel Networks
1050310797 00:21:90 Goliath Solutions
1050410798 00:21:89 AppTech, Inc.
1050510799 00:21:84 POWERSOFT SRL
10506 00:21:83 VATECH HYDRO
1050710800 00:21:7D PYXIS S.R.L.
1050810801 00:21:77 W. L. Gore & Associates
1050910802 00:21:76 YMax Telecom Ltd.
1083411127 00:17:AC O'Neil Product Development Inc.
1083511128 00:17:A5 Ralink Technology Corp
1083611129 00:17:A0 RoboTech srl
10837 00:17:9B Chant Sincere CO., LTD.
1083811130 00:17:0F Cisco Systems, Inc
1083911131 00:17:05 Methode Electronics
1084011132 00:17:0A INEW DIGITAL COMPANY
1129611588 00:0C:92 WolfVision Gmbh
1129711589 00:0D:32 DispenseSource, Inc.
1129811590 00:0D:31 Compellent Technologies, Inc.
11299 00:0D:2C Patapsco Designs Ltd
1130011591 00:0D:25 SANDEN CORPORATION
1130111592 00:0D:1F AV Digital
1130211593 00:0D:19 ROBE Show lighting
1139511686 00:0B:AA Aiphone co.,Ltd
1139611687 00:0B:9E Yasing Technology Corp.
1139711688 00:0B:27 Scion Corporation
11398 00:0B:2E Cal-Comp Electronics (Thailand) Public Company Limited Taipe
1139911689 00:0B:1B Systronix, Inc.
1140011690 00:0B:20 Hirata corporation
1140111691 00:0B:22 Environmental Systems and Services
1147211762 00:09:46 Cluster Labs GmbH
1147311763 00:09:40 AGFEO GmbH & Co. KG
1147411764 00:09:3F Double-Win Enterpirse CO., LTD
11475 00:09:3A Molex Fiber Optics
1147611765 00:09:33 Ophit Co.Ltd.
1147711766 00:0A:5C Carel s.p.a.
1147811767 00:0A:50 REMOTEK CORPORATION
1150111790 00:09:F9 ART JAPAN CO., LTD.
1150211791 00:09:FC IPFLEX Inc.
1150311792 00:0A:03 ENDESA SERVICIOS, S.L.
11504 00:06:F4 Prime Electronics & Satellitics Inc.
1150511793 00:07:05 Endress & Hauser GmbH & Co
1150611794 00:06:F8 The Boeing Company
1150711795 00:06:FF Sheba Systems Co., Ltd.
1156011848 00:07:16 J & S Marine Ltd.
1156111849 00:07:1B CDVI Americas Ltd
1156211850 00:07:22 The Nielsen Company
11563 00:07:1C AT&T Fixed Wireless Services
1156411851 00:07:0A Unicom Automation Co., Ltd.
1156511852 00:07:0F Fujant, Inc.
1156611853 00:07:09 Westerstrand Urfabrik AB
1163011917 00:CB:BD Cambridge Broadband Networks Ltd.
1163111918 00:06:03 Baker Hughes Inc.
1163211919 A0:6A:00 Verilink Corporation
11633 00:05:EE Siemens AB, Infrastructure & Cities, Building Technologies Division, IC BT SSP SP BA PR
1163411920 00:05:F5 Geospace Technologies
1163511921 00:06:01 Otanikeiki Co., Ltd.
1163611922 00:05:E8 TurboWave, Inc.
1183512121 00:B0:AC SIAE-Microelettronica S.p.A.
1183612122 00:B0:17 InfoGear Technology Corp.
1183712123 00:30:F0 Uniform Industrial Corp.
11838 00:B0:CE TECHNOLOGY RESCUE
1183912124 00:B0:80 Mannesmann Ipulsys B.V.
1184012125 00:B0:9A Morrow Technologies Corp.
1184112126 00:B0:91 Transmeta Corp.
1200112286 00:50:6C Beijer Electronics Products AB
1200212287 00:50:A5 CAPITOL BUSINESS SYSTEMS, LTD.
1200312288 00:50:00 NEXO COMMUNICATIONS, INC.
12004 00:D0:71 ECHELON CORP.
1200512289 00:D0:66 WINTRISS ENGINEERING CORP.
1200612290 00:D0:6F KMC CONTROLS
1200712291 00:D0:4B LA CIE GROUP S.A.
1213912423 00:E0:35 Artesyn Embedded Technologies
1214012424 00:E0:60 SHERWOOD
1214112425 00:E0:A2 MICROSLATE INC.
12142 00:E0:6C Ultra Electronics Limited (AEP Networks)
1214312426 00:E0:CE ARN
1214412427 00:E0:5F e-Net, Inc.
12145 00:E0:2B EXTREME NETWORKS
1214612428 00:E0:C7 EUROTECH SRL
1214712429 00:E0:C4 HORNER ELECTRIC, INC.
1214812430 00:E0:4D INTERNET INITIATIVE JAPAN, INC
1215112433 00:60:91 FIRST PACIFIC NETWORKS, INC.
1215212434 00:60:02 SCREEN SUBTITLING SYSTEMS, LTD
1215312435 00:60:61 WHISTLE COMMUNICATIONS CORP.
12154 00:60:BD HUBBELL-PULSECOM
1215512436 00:E0:A1 HIMA PAUL HILDEBRANDT GmbH Co. KG
1215612437 00:E0:28 APTIX CORPORATION
1215712438 00:E0:F2 ARLOTTO COMNET, INC.
1247112752 00:00:43 MICRO TECHNOLOGY
1247212753 00:00:E7 Star Gate Technologies
1247312754 00:00:F3 GANDALF DATA LIMITED
12474 00:00:64 Yokogawa Electric Corporation
1247512755 00:00:2C AUTOTOTE LIMITED
1247612756 00:00:2A TRW - SEDD/INP
1247712757 00:00:F1 MAGNA COMPUTER CORPORATION
1249312773 00:00:8E SOLBOURNE COMPUTER, INC.
1249412774 00:00:DC HAYES MICROCOMPUTER PRODUCTS
1249512775 00:00:24 CONNECT AS
12496 00:00:48 SEIKO EPSON CORPORATION
1249712776 00:80:30 NEXUS ELECTRONICS
1249812777 00:80:22 SCAN-OPTICS
1249912778 00:00:41 ICE CORPORATION
1252012799 08:00:3D CADNETIX CORPORATIONS
1252112800 08:00:39 SPIDER SYSTEMS LIMITED
1252212801 08:00:30 NETWORK RESEARCH CORPORATION
12523 08:00:27 Cadmus Computer Systems
1252412802 00:00:9B INFORMATION INTERNATIONAL, INC
1252512803 00:DD:0F UNGERMANN-BASS INC.
1252612804 00:00:01 XEROX CORPORATION
1257812856 9C:D9:17 Motorola Mobility LLC, a Lenovo Company
1257912857 90:68:C3 Motorola Mobility LLC, a Lenovo Company
1258012858 40:88:05 Motorola Mobility LLC, a Lenovo Company
12581 A4:A1:C2 Ericsson AB
12582 34:84:46 Ericsson AB
1258312859 AC:2B:6E Intel Corporate
1258412860 F8:F1:B6 Motorola Mobility LLC, a Lenovo Company
1258512861 00:21:6A Intel Corporate
1263012906 90:97:D5 Espressif Inc.
1263112907 18:FE:34 Espressif Inc.
1263212908 54:F6:C5 FUJIAN STAR-NET COMMUNICATION CO.,LTD
12633 28:EF:01 Private
1263412909 5C:33:8E Alpha Networks Inc.
1263512910 00:1A:EB Allied Telesis R&D Center K.K.
12636 74:75:48 Amazon Technologies Inc.
1263712911 A4:31:11 ZIV
1263812912 5C:93:A2 Liteon Technology Corporation
1263912913 E8:C7:4F Liteon Technology Corporation
1278613060 B8:32:41 Wuhan Tianyu Information Industry Co., Ltd.
1278713061 98:97:D1 MitraStar Technology Corp.
1278813062 94:C9:60 Zhongshan B&T technology.co.,ltd
12789 E0:4F:BD SICHUAN TIANYI COMHEART TELECOMCO.,LTD
1279013063 00:14:79 NEC Magnus Communications,Ltd.
1279113064 9C:4F:DA Apple, Inc.
1279213065 1C:5C:F2 Apple, Inc.
1283013103 14:D1:1F HUAWEI TECHNOLOGIES CO.,LTD
1283113104 54:51:1B HUAWEI TECHNOLOGIES CO.,LTD
1283213105 68:53:6C SPnS Co.,Ltd
12833 64:CC:2E Xiaomi Communications Co Ltd
1283413106 00:5B:A1 shanghai huayuan chuangxin software CO., LTD.
1283513107 B0:7E:70 Zadara Storage Ltd.
1283613108 40:5E:E1 Shenzhen H&T Intelligent Control Co.,Ltd.
1295413226 F8:F0:82 NAG LLC
1295513227 40:F4:13 Rubezh
1295613228 2C:09:4D Raptor Engineering, LLC
12957 AC:E7:7B SICHUAN TIANYI COMHEART TELECOMCO.,LTD
12958 B0:E2:35 Xiaomi Communications Co Ltd
1295913229 88:79:7E Motorola Mobility LLC, a Lenovo Company
1296013230 40:C7:29 Sagemcom Broadband SAS
1296113231 AC:04:0B Peloton Interactive, Inc
1298713257 08:9E:01 QUANTA COMPUTER INC.
1298813258 00:19:9D Vizio, Inc
1298913259 6C:0B:84 Universal Global Scientific Industrial Co., Ltd.
12990 24:A4:3C Ubiquiti Networks
1299113260 E4:50:9A HW Communications Ltd
1299213261 70:29:00 Shenzhen ChipTrip Technology Co,Ltd
1299313262 20:4C:03 Aruba Networks
1303913308 00:14:78 TP-LINK TECHNOLOGIES CO.,LTD.
1304013309 00:16:7A Skyworth Overseas Development Ltd.
1304113310 28:BE:03 TCT mobile ltd
13042 D4:E3:3F Alcatel-Lucent Canada
13043 14:3E:60 Alcatel-Lucent Canada
13044 84:DB:FC Alcatel-Lucent Canada
13045 38:52:1A Alcatel-Lucent Canada
1304613311 F4:C6:13 Alcatel-Lucent Shanghai Bell Co., Ltd
1304713312 D8:26:B9 Guangdong Coagent Electronics S&amp;T Co.,Ltd.
1304813313 FC:B0:C4 Shanghai DareGlobal Technologies Co.,Ltd
1307213337 00:10:87 XSTREAMIS PLC
1307313338 7C:06:23 Ultra Electronics Sonar System Division
1307413339 00:25:55 Visonic Technologies 1993 Ltd.
13075 00:90:58 Ultra Electronics Limited (AEP Networks)
1307613340 48:FD:8E HUAWEI TECHNOLOGIES CO.,LTD
1307713341 24:44:27 HUAWEI TECHNOLOGIES CO.,LTD
1307813342 B4:A9:84 Symantec Corporation
1319113455 34:BE:00 Samsung Electronics Co.,Ltd
1319213456 78:52:1A Samsung Electronics Co.,Ltd
1319313457 18:D2:76 HUAWEI TECHNOLOGIES CO.,LTD
13194 00:23:3A 5481
13195 C8:7E:75 5481
1319613458 78:25:AD Samsung Electronics Co.,Ltd
1319713459 F4:D9:FB Samsung Electronics Co.,Ltd
1319813460 00:17:C9 Samsung Electronics Co.,Ltd
1320813470 20:D5:BF Samsung Electronics Co.,Ltd
1320913471 30:CD:A7 Samsung Electronics Co.,Ltd
1321013472 5C:0A:5B SAMSUNG ELECTRO MECHANICS CO., LTD.
13211 00:74:9C RUIJIE NETWORKS CO., LTD.
1321213473 54:35:30 Hon Hai Precision Ind. Co.,Ltd.
1321313474 30:0E:D5 Hon Hai Precision Ind. Co.,Ltd.
1321413475 D0:27:88 Hon Hai Precision Ind. Co.,Ltd.
1323613497 50:3F:98 CMITECH
1323713498 B0:72:BF Murata Manufacturing Co., Ltd.
1323813499 60:0B:03 Hangzhou H3C Technologies Co., Limited
13500 C0:9F:05 GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
13501 A4:14:37 Hangzhou Hikvision Digital Technology Co.,Ltd.
13502 88:4C:CF Pulzze Systems, Inc
13503 38:52:1A Nokia
13504 84:DB:FC Nokia
13505 14:3E:60 Nokia
13506 D4:E3:3F Nokia
13507 54:54:CF PROBEDIGITAL CO.,LTD
13508 F0:D5:BF Intel Corporate
13509 C8:7E:75 Samsung Electronics Co.,Ltd
13510 00:23:3A Samsung Electronics Co.,Ltd
13511 1C:9D:3E Integrated Device Technology (Malaysia) Sdn. Bhd.
13512 74:8A:69 Korea Image Technology Co., Ltd
13513 30:B6:4F Juniper Networks
13514 DC:0D:30 Shenzhen Feasycom Technology Co., Ltd.
13515 00:87:31 Cisco Systems, Inc
13516 B4:EF:FA Lemobile Information Technology (Beijing) Co., Ltd.
13517 94:95:A0 Google, Inc.
13518 00:05:EE Vanderbilt International (SWE) AB
13519 38:D5:47 ASUSTek COMPUTER INC.
13520 38:3A:21 IEEE Registration Authority
13521 4C:F9:5D HUAWEI TECHNOLOGIES CO.,LTD
13522 84:21:F1 HUAWEI TECHNOLOGIES CO.,LTD
13523 70:79:90 HUAWEI TECHNOLOGIES CO.,LTD
13524 CC:FD:17 TCT mobile ltd
13525 3C:8B:CD Alcatel-Lucent Shanghai Bell Co., Ltd
13526 E4:3E:D7 Arcadyan Corporation
13527 24:88:94 shenzhen lensun Communication Technology LTD
13528 60:A4:D0 Samsung Electronics Co.,Ltd
13529 00:B0:CE Viveris Technologies
13530 E0:0D:B9 Cree, Inc.
13531 40:FE:0D MAXIO
13532 60:9A:C1 Apple, Inc.
13533 F0:79:60 Apple, Inc.
13534 9C:8B:A0 Apple, Inc.
13535 98:40:BB Dell Inc.
13536 CC:2D:83 GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
13537 E0:4F:BD SICHUAN TIANYI COMHEART TELECOMCO.,LTD
13538 00:B0:E1 Cisco Systems, Inc
13539 4C:32:75 Apple, Inc.
13540 00:06:F4 Prime Electronics & Satellitics Inc.
13541 AC:E7:7B SICHUAN TIANYI COMHEART TELECOMCO.,LTD
13542 24:A4:3C Ubiquiti Networks Inc.
13543 D4:E9:0B CVT CO.,LTD
13544 78:8A:20 Ubiquiti Networks Inc.
13545 28:EE:52 TP-LINK TECHNOLOGIES CO.,LTD.
13546 90:5C:44 Compal Broadband Networks, Inc.
13547 FC:37:2B SICHUAN TIANYI COMHEART TELECOMCO.,LTD
13548 0C:D8:6C SHENZHEN FAST TECHNOLOGIES CO.,LTD
13549 4C:E1:73 IEEE Registration Authority
13550 8C:60:E7 MPGIO CO.,LTD
13551 2C:0E:3D SAMSUNG ELECTRO-MECHANICS(THAILAND)
13552 24:C4:4A zte corporation
13553 B8:3A:9D Alarm.com
13554 00:BB:C1 CANON INC.
13555 1C:14:B3 Airwire Technologies
13556 2C:C2:60 Oracle Corporation
13557 40:71:83 Juniper Networks
13558 00:59:DC Cisco Systems, Inc
13559 14:61:2F Avaya Inc
13560 AC:F8:5C Private
13561 1C:C0:E1 IEEE Registration Authority
13562 00:74:9C Ruijie Networks Co.,LTD
13563 00:27:1C MERCURY CORPORATION
13564 E0:D9:E3 Eltex Enterprise Ltd.
13565 50:98:F3 Rheem Australia Pty Ltd
13566 70:1C:E7 Intel Corporate
13567 CC:94:70 Kinestral Technologies, Inc.
13568 44:6A:B7 ARRIS Group, Inc.
13569 F0:21:9D Cal-Comp Electronics & Communications Company Ltd.
13570 00:0B:2E Cal-Comp Electronics & Communications Company Ltd.
13571 88:5B:DD Aerohive Networks Inc.
13572 08:EA:44 Aerohive Networks Inc.
13573 50:6B:8D Nutanix
13574 00:38:DF Cisco Systems, Inc
13575 2C:99:24 ARRIS Group, Inc.
13576 00:6B:F1 Cisco Systems, Inc
13577 CC:81:DA SHANGHAI PHICOMM COMMUNICATION CO.,LTD
13578 20:D2:5F SmartCap Technologies
13579 3C:FA:43 HUAWEI TECHNOLOGIES CO.,LTD
13580 14:5F:94 HUAWEI TECHNOLOGIES CO.,LTD
13581 4C:11:BF Zhejiang Dahua Technology Co., Ltd.
13582 EC:0D:9A Mellanox Technologies, Inc.
13583 00:00:64 Yokogawa Digital Computer Corporation
13584 00:23:F7 Private
13585 90:D7:BE Wavelab Global Inc.
13586 68:69:75 Angler Labs Inc
13587 00:24:48 SpiderCloud Wireless, Inc
13588 7C:03:C9 Shenzhen YOUHUA Technology Co., Ltd
13589 64:DB:43 Motorola (Wuhan) Mobility Technologies Communication Co., Ltd.
13590 D0:58:A8 zte corporation
13591 D0:71:C4 zte corporation
13592 48:F0:7B ALPS ELECTRIC CO.,LTD.
13593 3C:80:AA Ransnet Singapore Pte Ltd
13594 7C:EB:AE Ridgeline Instruments
13595 E8:9E:B4 Hon Hai Precision Ind. Co.,Ltd.
13596 D4:97:0B Xiaomi Communications Co Ltd
13597 64:CC:2E Xiaomi Communications Co Ltd
13598 B0:E2:35 Xiaomi Communications Co Ltd
13599 38:A4:ED Xiaomi Communications Co Ltd
13600 F4:8B:32 Xiaomi Communications Co Ltd
13601 00:60:BD Enginuity Communications
13602 AC:83:F3 AMPAK Technology, Inc.
13603 70:7C:69 Avaya Inc
13604 18:DB:F2 Dell Inc.
13605 00:00:48 Seiko Epson Corporation
13606 C0:BF:C0 HUAWEI TECHNOLOGIES CO.,LTD
13607 A0:8C:F8 HUAWEI TECHNOLOGIES CO.,LTD
13608 54:B5:6C Xi'an NovaStar Tech Co., Ltd
13609 FC:3C:E9 Tsingtong Technologies Co, Ltd.
13610 04:B6:48 ZENNER
13611 FC:10:C6 Taicang T&W Electronics
13612 34:4C:C8 Echodyne Corp
13613 94:8F:EE Verizon Telematics
13614 5C:4A:1F SICHUAN TIANYI COMHEART TELECOMCO., LTD
13615 0C:8D:DB Cisco Meraki
13616 B0:F9:63 Hangzhou H3C Technologies Co., Limited
13617 E4:E4:AB Apple, Inc.
13618 58:40:4E Apple, Inc.
13619 DC:0C:5C Apple, Inc.
13620 2C:20:0B Apple, Inc.
13621 98:B6:E9 Nintendo Co.,Ltd
13622 88:09:AF Masimo Corporation
13623 00:E0:6C Ultra Electronics Command & Control Systems
13624 00:90:58 Ultra Electronics Command & Control Systems
13625 F8:98:3A Leeman International (HongKong) Limited
13626 4C:EC:EF Soraa, Inc.
13627 70:2D:84 i4C Innovations
13628 CC:9F:7A Chiun Mai Communication Systems, Inc
13629 44:62:46 Comat AG
13630 C8:AA:55 Hunan Comtom Electronic Incorporated Co.,Ltd
13631 14:2F:FD LT SECURITY INC
13632 00:0D:2C Net2Edge Limited
13633 EC:E1:54 Beijing Unisound Information Technology Co.,Ltd.
13634 60:C6:58 PHYTRONIX Co.,Ltd.
13635 38:45:4C Light Labs, Inc.
13636 C8:94:BB HUAWEI TECHNOLOGIES CO.,LTD
13637 D0:FF:98 HUAWEI TECHNOLOGIES CO.,LTD
13638 50:04:B8 HUAWEI TECHNOLOGIES CO.,LTD
13639 10:B1:F8 HUAWEI TECHNOLOGIES CO.,LTD
13640 14:AB:C5 Intel Corporate
13641 A4:62:DF DS Global. Co., LTD
13642 50:D2:13 CviLux Corporation
13643 44:D4:37 Inteno Broadband Technology AB
13644 78:AF:58 GIMASI SA
13645 00:07:1C AT&T
13646 2C:9A:A4 Eolo SpA
13647 00:21:83 ANDRITZ HYDRO GmbH
13648 84:04:D2 Kirale Technologies SL
13649 08:3E:5D Sagemcom Broadband SAS
13650 74:9C:E3 KodaCloud Canada, Inc
13651 CC:2D:21 Tenda Technology Co.,Ltd.Dongguan branch
13652 8C:78:D7 SHENZHEN FAST TECHNOLOGIES CO.,LTD
13653 3C:BD:3E Beijing Xiaomi Electronics Co., Ltd.
13654 2C:4D:54 ASUSTek COMPUTER INC.
13655 34:96:72 TP-LINK TECHNOLOGIES CO.,LTD.
13656 00:17:9B CHANT SINCERE CO.,LTD
13657 08:00:27 PCS Systemtechnik GmbH
13658 34:84:46 Ericsson AB
13659 A4:A1:C2 Ericsson AB
13660 B0:F1:EC AMPAK Technology, Inc.
13661 B0:C4:6C Senseit
13662 10:56:11 ARRIS Group, Inc.
13663 14:89:51 LCFC(HeFei) Electronics Technology co., ltd
13664 F8:75:88 HUAWEI TECHNOLOGIES CO.,LTD
13665 BC:3F:8F HUAWEI TECHNOLOGIES CO.,LTD
13666 E4:A7:49 Palo Alto Networks
13667 04:DE:F2 Shenzhen ECOM Technology Co. Ltd
13668 00:D0:71 ECHELON CORP.
13669 00:30:C5 CADENCE DESIGN SYSTEMS, INC.
13670 50:40:61 Nokia
13671 74:67:F7 Extreme Networks
13672 B4:C7:99 Extreme Networks
13673 54:E3:F6 Alcatel-Lucent
13674 5C:0E:8B Extreme Networks
13675 00:E0:2B Extreme Networks
13676 B0:C2:05 BIONIME
13677 0C:61:CF Texas Instruments
13678 7C:26:64 Sagemcom Broadband SAS
13679 38:29:5A GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
13680 28:39:5E Samsung Electronics Co.,Ltd
13681 E4:7D:EB Shanghai Notion Information Technology CO.,LTD.
13682 A0:02:DC Amazon Technologies Inc.
13683 0C:47:C9 Amazon Technologies Inc.
13684 28:EF:01 Private
13685 74:75:48 Amazon Technologies Inc.
13686 AC:63:BE Amazon Technologies Inc.
13687 DC:A4:CA Apple, Inc.
13688 8C:8F:E9 Apple, Inc.
13689 40:FA:7F Preh Car Connect GmbH
13690 F8:AB:05 Sagemcom Broadband SAS
13691 C0:02:8D WINSTAR Display CO.,Ltd
13692 D8:32:14 Tenda Technology Co.,Ltd.Dongguan branch
13693 7C:78:7E Samsung Electronics Co.,Ltd
13694 C0:D3:C0 Samsung Electronics Co.,Ltd
13695 F0:97:E5 TAMIO, INC
13696 F4:E4:AD zte corporation
13697 4C:1A:3D GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
13698 F8:59:71 Intel Corporate
13699 98:10:E8 Apple, Inc.
13700 B4:9C:DF Apple, Inc.
13701 4C:82:CF Echostar Technologies Corp
13702 F4:96:34 Intel Corporate
13703 F4:70:AB vivo Mobile Communication Co., Ltd.
13704 34:1A:35 Fiberhome Telecommunication Technologies Co.,LTD
13705 14:4F:D7 IEEE Registration Authority
13706 6C:4B:90 LiteON
13707 08:02:8E NETGEAR
13708 F8:FF:0B Electronic Technology Inc.
13709 38:F1:35 SensorTec-Canada
13710 90:F3:05 HUMAX Co., Ltd.
13711 00:09:3A Molex
13712 98:AA:FC IEEE Registration Authority
13713 B8:D5:0B Sunitec Enterprise Co.,Ltd
13714 28:A6:DB HUAWEI TECHNOLOGIES CO.,LTD
13715 C8:F8:6D Alcatel-Lucent Shanghai Bell Co., Ltd
13716 D4:5F:25 Shenzhen YOUHUA Technology Co., Ltd
13717 9C:E9:51 Shenzhen Sang Fei Consumer Communications Ltd., Co.
13718 DC:08:56 Alcatel-Lucent Enterprise
13719 E8:FD:E8 CeLa Link Corporation
13720 08:ED:02 IEEE Registration Authority
1323913721 D8:6C:E9 Sagemcom Broadband SAS
1324013722 3C:81:D8 Sagemcom Broadband SAS
1324113723 2C:E4:12 Sagemcom Broadband SAS
1326713749 44:19:B6 Hangzhou Hikvision Digital Technology Co.,Ltd.
1326813750 C0:56:E3 Hangzhou Hikvision Digital Technology Co.,Ltd.
1326913751 C8:E7:D8 SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD.
13270 E0:1C:41 Aerohive Networks Inc.
13271 D8:54:A2 Aerohive Networks Inc.
1327213752 9C:EF:D5 Panda Wireless, Inc.
1327313753 C0:2C:7A Shenzhen Horn Audio Co.,Ltd.
1327413754 88:B8:D0 Dongguan Koppo Electronic Co.,Ltd
1328713767 00:01:E6 Hewlett Packard
1328813768 C4:40:44 RackTop Systems Inc.
1328913769 38:98:D8 MERITECH CO.,LTD
13290 C8:67:5E Aerohive Networks Inc.
1329113770 00:0C:F1 Intel Corporation
1329213771 00:0E:0C Intel Corporation
1329313772 BC:0F:64 Intel Corporate
1330013779 18:A9:05 Hewlett Packard
1330113780 00:23:7D Hewlett Packard
1330213781 00:26:55 Hewlett Packard
13303 00:14:38 Hewlett Packard
1330413782 00:15:60 Hewlett Packard
1330513783 28:80:23 Hewlett Packard
1330613784 64:51:06 Hewlett Packard
1333913817 20:F3:A3 HUAWEI TECHNOLOGIES CO.,LTD
1334013818 AC:E8:7B HUAWEI TECHNOLOGIES CO.,LTD
1334113819 68:8F:84 HUAWEI TECHNOLOGIES CO.,LTD
13342 AC:F7:F3 Xiaomi Communications Co Ltd
1334313820 88:94:71 Brocade Communications Systems, Inc.
1334413821 CC:4E:24 Brocade Communications Systems, Inc.
1334513822 50:EB:1A Brocade Communications Systems, Inc.
1340613883 EC:BD:1D Cisco Systems, Inc
1340713884 DC:CE:C1 Cisco Systems, Inc
1340813885 84:B2:61 Cisco Systems, Inc
13409 00:9E:C8 Xiaomi Communications Co Ltd
13410 7C:1D:D9 Xiaomi Communications Co Ltd
13411 A0:86:C6 Xiaomi Communications Co Ltd
13412 58:44:98 Xiaomi Communications Co Ltd
1341313886 70:E4:22 Cisco Systems, Inc
1341413887 00:50:BD Cisco Systems, Inc
1341513888 00:90:86 Cisco Systems, Inc
1359014063 B4:B2:65 DAEHO I&T
1359114064 08:1F:EB BinCube
1359214065 78:5F:4C Argox Information Co., Ltd.
13593 E8:66:C4 Datawise Systems
1359414066 58:70:C6 Shanghai Xiaoyi Technology Co., Ltd.
1359514067 80:3B:2A ABB Xiamen Low Voltage Equipment Co.,Ltd.
1359614068 A0:A6:5C Supercomputing Systems AG
1361014082 5C:EB:68 Cheerstar Technology Co., Ltd
1361114083 F4:6A:92 SHENZHEN FAST TECHNOLOGIES CO.,LTD
1361214084 14:AE:DB VTech Telecommunications Ltd.
13613 EC:4F:82 Calix Inc.
1361414085 B8:C3:BF Henan Chengshi NetWork Technology Co.,Ltd
1361514086 C0:EE:40 Laird Technologies
1361614087 F0:18:2B LG Chem
1365414125 AC:9E:17 ASUSTek COMPUTER INC.
1365514126 AC:C7:3F VITSMO CO., LTD.
1365614127 18:BD:AD L-TECH CORPORATION
13657 44:D2:44 Seiko Epson Corporation
1365814128 10:C0:7C Blu-ray Disc Association
1365914129 B8:78:79 Roche Diagnostics GmbH
1366014130 44:80:EB Motorola Mobility LLC, a Lenovo Company
1387114341 EC:2A:F0 Ypsomed AG
1387214342 04:4F:8B Adapteva, Inc.
1387314343 9C:E7:BD Winduskorea co., Ltd
13874 38:42:A6 Ingenieurbuero Stahlkopf
1387514344 A0:BF:50 S.C. ADD-PRODUCTION S.R.L.
1387614345 7C:B7:33 ASKEY COMPUTER CORP
1387714346 70:59:57 Medallion Instrumentation Systems
1398914458 10:28:31 Morion Inc.
1399014459 D8:1E:DE B&W Group Ltd
1399114460 68:97:E8 Society of Motion Picture &amp; Television Engineers
13992 24:EA:40 Systeme Helmholz GmbH
1399314461 FC:58:FA Shen Zhen Shi Xin Zhong Xin Technology Co.,Ltd.
1399414462 60:60:1F SZ DJI TECHNOLOGY CO.,LTD
1399514463 E0:C6:B3 MilDef AB
1429314761 94:3A:F0 Nokia Corporation
1429414762 B8:26:D4 Furukawa Industrial S.A. Produtos Elétricos
1429514763 14:E4:EC mLogic LLC
14296 FC:0A:81 Zebra Technologies Inc
1429714764 AC:0D:FE Ekon GmbH - myGEKKO
1429814765 00:5C:B1 Gospell DIGITAL TECHNOLOGY CO., LTD
1429914766 18:67:51 KOMEG Industrielle Messtechnik GmbH
1467115138 AC:83:17 Shenzhen Furtunetel Communication Co., Ltd
1467215139 E8:0B:13 Akib Systems Taiwan, INC
1467315140 44:C9:A2 Greenwald Industries
14674 9C:B2:06 PROCENTEC
1467515141 64:6E:6C Radio Datacom LLC
1467615142 E4:75:1E Getinge Sterilization AB
1467715143 F8:81:1A OVERKIZ
1487015336 00:22:F1 Private
1487115337 00:23:9E Jiangsu Lemote Technology Corporation Limited
1487215338 00:23:98 Vutlan sro
14873 00:23:8A Ciena Corporation
1487415339 00:23:84 GGH Engineering s.r.l.
1487515340 00:23:42 Coffee Equipment Company
1487615341 00:23:36 METEL s.r.o.
1497815443 00:22:13 PCI CORPORATION
1497915444 00:22:0D Cisco Systems, Inc
1498015445 00:22:0C Cisco Systems, Inc
14981 00:22:07 Inteno Broadband Technology AB
1498215446 00:22:02 Excito Elektronik i Skåne AB
1498315447 00:21:F9 WIRECOM Technologies
1498415448 00:1F:40 Speakercraft Inc.
1524715711 00:1A:40 A-FOUR TECH CO., LTD.
1524815712 00:1A:2D The Navvo Group
1524915713 00:1A:32 ACTIVA MULTIMEDIA
15250 00:1A:39 Merten GmbH&CoKG
1525115714 00:1A:28 ASWT Co., LTD. Taiwan Branch H.K.
1525215715 00:1A:1C GT&T Engineering Pte Ltd
1525315716 00:1A:23 Ice Qube, Inc
1535515818 00:16:3A YVES TECHNOLOGY CO., LTD.
1535615819 00:16:34 Mathtech, Inc.
1535715820 00:16:2D STNet Co., Ltd.
15358 00:16:28 Ultra Electronics Manufacturing and Card Systems
1535915821 00:16:21 Colorado Vnet
1536015822 00:16:1A Dametric AB
1536115823 00:16:15 Nittan Company, Limited
1539215854 00:16:04 Sigpro
1539315855 00:15:FE SCHILLING ROBOTICS LLC
1539415856 00:15:FD Complete Media Systems
15395 00:15:FF Novatel Wireless, Inc.
1539615857 00:15:F8 Kingtronics Industrial Co. Ltd.
1539715858 00:15:EC Boca Devices LLC
1539815859 00:15:F1 KYLINK Communications Corp.
1542515886 00:14:AE Wizlogics Co., Ltd.
1542615887 00:14:B3 CoreStar International Corp
1542715888 00:14:9B Nokota Communications, LLC
15428 00:14:3F Hotway Technology Corporation
1542915889 00:14:31 PDL Electronics Ltd
1543015890 00:14:33 Empower Technologies(Canada) Inc.
1543115891 00:14:32 Tarallax Wireless, Inc.
1559916059 00:11:29 Paradise Datacom Ltd.
1560016060 00:11:2E CEICOM
1560116061 00:11:28 Streamit
15602 00:11:1B Targa Systems Div L-3 Communications Canada
1560316062 00:11:22 CIMSYS Inc
1560416063 00:11:71 DEXTER Communications, Inc.
1560516064 00:11:6A Domo Ltd
1569916158 00:0F:8D FAST TV-Server AG
1570016159 00:0F:80 Trinity Security Systems,Inc.
1570116160 00:0F:7F UBSTORAGE Co.,Ltd.
15702 00:0F:C2 Uniwell Corporation
1570316161 00:0F:C9 Allnet GmbH
1570416162 00:0F:BC Onkey Technologies, Inc.
1570516163 00:0F:BB Nokia Siemens Networks GmbH & Co. KG.
1585916317 00:0B:65 Sy.A.C. srl
1586016318 00:0B:57 Silicon Laboratories
1586116319 00:0B:5C Newtech Co.,Ltd
15862 00:0B:4F Verifone, INC.
1586316320 00:0B:43 Microscan Systems, Inc.
1586416321 00:0B:48 sofrel
1586516322 00:0B:4A Visimetrics (UK) Ltd
1586816325 00:0B:3C Cygnal Integrated Products, Inc.
1586916326 00:0B:29 LS(LG) Industrial Systems co.,Ltd
1587016327 00:0B:30 Beijing Gongye Science & Technology Co.,Ltd
15871 00:0B:A1 SYSCOM Ltd.
1587216328 00:0B:A8 HANBACK ELECTRONICS CO., LTD.
1587316329 00:0B:92 Ascom Danmark A/S
1587416330 00:0B:97 Matsushita Electric Industrial Co.,Ltd.
1608916545 00:06:EA ELZET80 Mikrocomputer GmbH&Co. KG
1609016546 00:06:E9 Intime Corp.
1609116547 00:05:EB Blue Ridge Networks, Inc.
16092 00:05:F7 Analog Devices, Inc.
1609316548 00:05:E4 Red Lion Controls Inc.
1609416549 00:05:F1 Vrcom, Inc.
1609516550 00:05:FD PacketLight Networks Ltd.
1613916594 00:05:00 Cisco Systems, Inc
1614016595 00:06:41 ITCN
1614116596 00:06:3D Microwave Data Systems Inc.
16142 00:06:31 Calix
1614316597 00:06:30 Adtranz Sweden
1614416598 00:06:37 Toptrend-Meta Information (ShenZhen) Inc.
1614516599 00:06:20 Serial System Ltd.
1628716741 00:30:1B SHUTTLE, INC.
1628816742 00:30:28 FASE Saldatura srl
1628916743 00:30:FB AZS Technology AG
16290 00:30:48 Supermicro Computer, Inc.
1629116744 00:01:DA WINCOMM Corporation
16292 00:01:E1 Kinpo Electronics, Inc.
1629316745 00:01:DD Avail Networks
1629416746 00:01:CE Custom Micro Products, Ltd.
1629516747 00:01:CA Geocast Network Systems, Inc.
1651716969 00:50:51 IWATSU ELECTRIC CO., LTD.
1651816970 00:50:BE FAST MULTIMEDIA AG
1651916971 00:50:AD CommUnique Wireless Corp.
16520 00:50:16 SST/WOODHEAD INDUSTRIES
1652116972 00:50:03 Xrite Inc
1652216973 00:50:23 PG DESIGN ELECTRONICS, INC.
1652316974 00:50:39 MARINER NETWORKS
1656817019 00:10:72 GVN TECHNOLOGIES, INC.
1656917020 00:E0:19 ING. GIORDANO ELETTRONICA
1657017021 00:E0:D7 SUNSHINE ELECTRONICS, INC.
16571 00:E0:DA Alcatel North America ESD
1657217022 00:E0:68 MERRIMAC SYSTEMS INC.
1657317023 00:E0:1D WebTV NETWORKS, INC.
1657417024 00:E0:1F AVIDIA Systems, Inc.
1659417044 00:10:1D WINBOND ELECTRONICS CORP.
1659517045 00:10:5F ZODIAC DATA SYSTEMS
1659617046 00:10:CB FACIT K.K.
16597 00:10:8C FUJITSU TELECOMMUNICATIONS EUROPE, LTD.
1659817047 00:10:75 Segate Technology LLC
1659917048 00:10:58 ArrowPoint Communications
1660017049 00:10:A8 RELIANCE COMPUTER CORP.
1661817067 00:60:B5 KEBA GmbH
1661917068 00:60:27 Superior Modular Products
1662017069 00:60:C1 WaveSpan Corporation
16621 00:60:41 Yokogawa Electric Corporation
1662217070 00:60:05 FEEDBACK DATA LTD.
1662317071 00:60:7B FORE SYSTEMS, INC.
1662417072 00:60:9C Perkin-Elmer Incorporated
1666617114 00:60:FC CONSERVATION THROUGH INNOVATION LTD.
1666717115 00:60:D4 ELDAT COMMUNICATION LTD.
1666817116 00:60:85 Storage Concepts
16669 00:60:D3 AT&T
1667017117 00:60:18 STELLAR ONE CORPORATION
1667117118 00:60:2B PEAK AUDIO
1667217119 00:60:6F CLARION CORPORATION OF AMERICA
1675817205 00:A0:B3 ZYKRONIX
1675917206 00:A0:6E AUSTRON, INC.
1676017207 00:A0:BB HILAN GMBH
16761 00:A0:C8 ADTRAN INC.
1676217208 00:A0:17 J B M CORPORATION
1676317209 00:20:D5 VIPA GMBH
1676417210 00:20:79 MIKRON GMBH
1686817314 00:80:68 YAMATECH SCIENTIFIC LTD.
1686917315 00:80:F2 RAYCOM SYSTEMS INC
1687017316 00:80:EA ADVA Optical Networking Ltd.
16871 00:80:25 STOLLMANN GMBH
1687217317 00:00:67 SOFT * RITE, INC.
1687317318 00:00:E8 ACCTON TECHNOLOGY CORP.
1687417319 00:00:B2 TELEVIDEO SYSTEMS, INC.
1694117386 08:00:79 THE DROID WORKS
1694217387 08:00:77 TSL COMMUNICATIONS LTD.
1694317388 08:00:71 MATRA (DSIE)
16944 08:00:6A ATT BELL LABORATORIES
1694517389 08:00:5F SABER TECHNOLOGY CORP.
1694617390 08:00:5C FOUR PHASE SYSTEMS
1694717391 08:00:5B VTA TECHNOLOGIES INC.
1699217436 08:00:05 SYMBOLICS INC.
1699317437 00:00:00 XEROX CORPORATION
1699417438 00:40:D6 LOCAMATION B.V.
16995 80:00:10 ATT BELL LABORATORIES
1699617439 AA:00:03 DIGITAL EQUIPMENT CORPORATION
1699717440 08:00:08 BOLT BERANEK AND NEWMAN INC.
1699817441 08:00:0E NCR CORPORATION
1710517548 00:0F:A3 Alpha Networks Inc.
1710617549 00:1D:6A Alpha Networks Inc.
1710717550 00:00:F4 Allied Telesis, Inc.
17108 10:AE:60 Private
17109 F0:4F:7C Private
1711017551 70:F1:A1 Liteon Technology Corporation
1711117552 6C:FA:A7 AMPAK Technology, Inc.
1711217553 00:24:EF Sony Mobile Communications AB
1722917670 D0:99:D5 Alcatel-Lucent
1723017671 DC:00:77 TP-LINK TECHNOLOGIES CO.,LTD.
1723117672 00:60:DC NEC Magnus Communications,Ltd.
17232 9C:AE:D3 Seiko Epson Corporation
1723317673 F4:5C:89 Apple, Inc.
17234 8C:3C:4A NAKAYO TELECOMMUNICATIONS,INC
1723517674 00:21:FD LACROIX TRAFFIC S.A.U
1723617675 4C:B4:4A NANOWAVE Technologies Inc.
1723717676 78:C3:E9 Samsung Electronics Co.,Ltd
1723817677 9C:5C:8E ASUSTek COMPUTER INC.
1723917678 70:88:4D JAPAN RADIO CO., LTD.
17240 10:2A:B3 Xiaomi Communications Co Ltd
1724117679 4C:55:CC Zentri Pty Ltd
1724217680 BC:EC:5D Apple, Inc.
1724317681 DC:41:5F Apple, Inc.
1726517703 D4:61:2E HUAWEI TECHNOLOGIES CO.,LTD
1726617704 1C:67:58 HUAWEI TECHNOLOGIES CO.,LTD
1726717705 E8:56:59 Advanced-Connectek Inc.
17268 34:E7:0B Beijing HAN Networks Co., Ltd
1726917706 88:01:F2 Vitec System Engineering Inc.
1727017707 FC:08:4A FUJITSU LIMITED
1727117708 D4:AD:2D Fiberhome Telecommunication Technologies Co.,LTD
1728117718 4C:B8:B5 Shenzhen YOUHUA Technology Co., Ltd
1728217719 1C:AB:C0 Hitron Technologies. Inc
1728317720 84:E3:23 Green Wave Telecommunication SDN BHD
17284 44:65:0D Amazon Technologies Inc.
1728517721 D8:97:BA PEGATRON CORPORATION
1728617722 70:71:BC PEGATRON CORPORATION
1728717723 E0:69:95 PEGATRON CORPORATION
1730217738 08:3F:BC zte corporation
1730317739 04:2A:E2 Cisco Systems, Inc
1730417740 1C:1B:0D GIGA-BYTE TECHNOLOGY CO.,LTD.
17305 90:38:09 Ericsson AB
1730617741 00:10:4F Oracle Corporation
1730717742 00:07:82 Oracle Corporation
1730817743 E4:2F:56 OptoMET GmbH
1735817793 34:B3:54 HUAWEI TECHNOLOGIES CO.,LTD
1735917794 74:9D:8F HUAWEI TECHNOLOGIES CO.,LTD
1736017795 34:6A:C2 HUAWEI TECHNOLOGIES CO.,LTD
17361 50:F5:DA Amazon Technologies Inc.
1736217796 8C:D2:E9 NIPPON SMT Co.Ltd
1736317797 C8:3D:FC Pioneer DJ Corporation
1736417798 00:16:FB SHENZHEN MTC CO LTD
17365 08:01:0F SICHUAN TIANYI COMHEART TELECOMCO.,LTD
1736617799 38:1D:D9 FN-LINK TECHNOLOGY LIMITED
1736717800 6C:95:22 Scalys
1736817801 8C:59:C3 ADB Italia
1737217805 BC:76:5E Samsung Electronics Co.,Ltd
1737317806 E0:A8:B8 Le Shi Zhi Xin Electronic Technology (Tianjin) Limited
1737417807 B8:81:98 Intel Corporate
17375 CC:A2:60 SICHUAN TIANYI COMHEART TELECOMCO.,LTD
1737617808 E4:FB:8F MOBIWIRE MOBILES (NINGBO) CO.,LTD
1737717809 78:00:9E Samsung Electronics Co.,Ltd
1737817810 C8:AF:E3 Hefei Radio Communication Technology Co., Ltd
1739417826 C8:6C:87 ZyXEL Communications Corporation
1739517827 D8:E0:B8 BULAT LLC
1739617828 68:C4:4D Motorola Mobility LLC, a Lenovo Company
17397 48:FC:B6 LAVA INTERNATIONAL(H.K) LIMITED
17398 CC:35:40 Technicolor CH USA Inc.
17399 C4:27:95 Technicolor CH USA Inc.
17400 58:23:8C Technicolor CH USA Inc.
17401 70:5A:9E Technicolor CH USA Inc.
17402 80:C6:AB Technicolor CH USA Inc.
17403 90:A4:DE Wistron Neweb Corporation
17404 3C:97:0E Wistron InfoComm(Kunshan)Co.,Ltd.
17405 30:14:4A Wistron Neweb Corporation
17406 A8:54:B2 Wistron Neweb Corporation
17407 38:BC:1A MEIZU Technology Co., Ltd.
17408 00:04:A3 Microchip Technology Inc.
17409 98:CF:53 BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
17410 F4:CB:52 HUAWEI TECHNOLOGIES CO.,LTD
17411 44:6E:E5 HUAWEI TECHNOLOGIES CO.,LTD
17412 2C:28:2D BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
17413 80:41:4E BBK EDUCATIONAL ELECTRONICS CORP.,LTD.
17414 8C:77:16 LONGCHEER TELECOMMUNICATION LIMITED
17415 00:0A:08 Alpine Electronics, Inc.
17416 A0:14:3D PARROT SA
17417 00:26:7E PARROT SA
17418 00:12:1C PARROT SA
17419 B8:55:10 Zioncom Electronics (Shenzhen) Ltd.
17420 00:0E:E8 Zioncom Electronics (Shenzhen) Ltd.
17421 00:11:65 ZNYX Networks, Inc.
17422 00:60:D5 AMADA MIYACHI Co., Ltd
17423 00:0F:DB Westell Technologies Inc.
17424 D4:04:FF Juniper Networks
17425 C4:54:44 QUANTA COMPUTER INC.
17426 00:26:9E QUANTA COMPUTER INC.
17427 68:35:63 SHENZHEN LIOWN ELECTRONICS CO.,LTD.
17428 00:03:B2 Radware
17429 2C:60:0C QUANTA COMPUTER INC.
17430 00:1E:68 QUANTA COMPUTER INC.
17431 00:A0:9B QPSX COMMUNICATIONS, LTD.
17432 00:E0:8B QLogic Corporation
17433 00:08:0D Toshiba
17434 00:15:B7 Toshiba
17435 00:05:69 VMware, Inc.
17436 00:08:F1 Voltaire
17437 00:1B:DA UTStarcom Inc
17438 FC:4D:D4 Universal Global Scientific Industrial Co., Ltd.
17439 40:2C:F4 Universal Global Scientific Industrial Co., Ltd.
17440 00:10:C6 Universal Global Scientific Industrial Co., Ltd.
17441 00:24:7E Universal Global Scientific Industrial Co., Ltd.
17442 DC:9F:DB Ubiquiti Networks
17443 00:16:39 Ubiquam Co., Ltd.
17444 18:39:19 Unicoi Systems
17445 90:A4:6A SISNET CO., LTD
17446 14:E7:C8 Integrated Device Technology (Malaysia) Sdn. Bhd.
17447 28:0D:FC Sony Interactive Entertainment Inc.
17448 00:15:C1 Sony Interactive Entertainment Inc.
17449 00:19:C5 Sony Interactive Entertainment Inc.
17450 AC:A2:13 Shenzhen Bilian electronic CO.,LTD
17451 38:F8:CA OWIN Inc.
17452 54:D2:72 Nuki Home Solutions GmbH
17453 9C:A3:A9 Guangzhou Juan Optical and Electronical Tech Joint Stock Co., Ltd
17454 D0:22:12 IEEE Registration Authority
17455 F8:02:78 IEEE Registration Authority
17456 74:E1:4A IEEE Registration Authority
17457 78:CA:83 IEEE Registration Authority
17458 D0:D9:4F IEEE Registration Authority
17459 2C:26:5F IEEE Registration Authority
17460 7C:70:BC IEEE Registration Authority
17461 58:FC:DB IEEE Registration Authority
17462 B0:1F:81 IEEE Registration Authority
17463 11:00:AA Private
17464 00:20:67 Private
17465 98:93:CC LG ELECTRONICS INC
17466 3C:CD:93 LG ELECTRONICS INC
17467 58:3F:54 LG Electronics (Mobile Communications)
17468 00:1C:62 LG Electronics (Mobile Communications)
17469 00:24:83 LG Electronics (Mobile Communications)
17470 E4:17:D8 8BITDO TECHNOLOGY HK LIMITED
17471 40:B0:FA LG Electronics (Mobile Communications)
17472 A0:91:69 LG Electronics (Mobile Communications)
17473 28:6C:07 XIAOMI Electronics,CO.,LTD
17474 84:D9:31 Hangzhou H3C Technologies Co., Limited
17475 34:FC:EF LG Electronics (Mobile Communications)
17476 48:59:29 LG Electronics (Mobile Communications)
17477 50:55:27 LG Electronics (Mobile Communications)
17478 98:D6:F7 LG Electronics (Mobile Communications)
17479 A8:92:2C LG Electronics (Mobile Communications)
17480 44:DC:91 PLANEX COMMUNICATIONS INC.
17481 9C:D3:32 PLC Technology Ltd
17482 94:D7:23 Shanghai DareGlobal Technologies Co.,Ltd
17483 A8:9D:D2 Shanghai DareGlobal Technologies Co.,Ltd
17484 90:3A:A0 Alcatel-Lucent Canada
17485 18:4A:6F Alcatel-Lucent Shanghai Bell Co., Ltd
17486 FC:2F:AA Alcatel-Lucent Canada
17487 BC:52:B4 Alcatel-Lucent Canada
17488 A0:F3:E4 Alcatel-Lucent IPD
17489 00:21:05 Alcatel-Lucent IPD
17490 00:07:72 Alcatel-Lucent Shanghai Bell Co., Ltd
17491 F0:6B:CA Samsung Electronics Co.,Ltd
17492 34:23:BA SAMSUNG ELECTRO-MECHANICS(THAILAND)
17493 D0:22:BE SAMSUNG ELECTRO-MECHANICS(THAILAND)
17494 D0:25:44 SAMSUNG ELECTRO-MECHANICS(THAILAND)
17495 BC:20:A4 Samsung Electronics Co.,Ltd
17496 14:F4:2A Samsung Electronics Co.,Ltd
17497 BC:85:1F Samsung Electronics Co.,Ltd
17498 B8:5E:7B Samsung Electronics Co.,Ltd
17499 C4:62:EA Samsung Electronics Co.,Ltd
17500 00:23:D6 Samsung Electronics Co.,Ltd
17501 00:24:91 Samsung Electronics Co.,Ltd
17502 00:1B:98 Samsung Electronics Co.,Ltd
17503 44:F4:59 Samsung Electronics Co.,Ltd
17504 34:C3:AC Samsung Electronics Co.,Ltd
17505 94:D7:71 Samsung Electronics Co.,Ltd
17506 4C:3C:16 Samsung Electronics Co.,Ltd
17507 94:01:C2 Samsung Electronics Co.,Ltd
17508 B4:3A:28 Samsung Electronics Co.,Ltd
17509 A8:C8:3A HUAWEI TECHNOLOGIES CO.,LTD
17510 84:9F:B5 HUAWEI TECHNOLOGIES CO.,LTD
17511 D0:C1:B1 Samsung Electronics Co.,Ltd
17512 F0:08:F1 Samsung Electronics Co.,Ltd
17513 78:20:79 ID Tech
17514 98:23:4E Micromedia AG
17515 E0:DD:C0 vivo Mobile Communication Co., Ltd.
17516 70:25:26 Alcatel-Lucent Canada
17517 98:2F:3C Sichuan Changhong Electric Ltd.
17518 38:0D:D4 Primax Electronics Ltd.
17519 98:FD:B4 Primax Electronics Ltd.
17520 00:15:7D POSDATA
17521 F8:E6:1A Samsung Electronics Co.,Ltd
17522 88:83:22 Samsung Electronics Co.,Ltd
17523 84:B5:41 Samsung Electronics Co.,Ltd
17524 18:DC:56 Yulong Computer Telecommunication Scientific (Shenzhen) Co.,Ltd
17525 00:1F:46 Nortel Networks
17526 00:1F:0A Nortel Networks
17527 00:13:0A Nortel Networks
17528 00:1E:7E Nortel Networks
17529 00:1C:9C Nortel Networks
17530 00:0C:F8 Nortel Networks
17531 00:0C:F7 Nortel Networks
17532 00:1E:1F Nortel Networks
17533 00:1C:17 Nortel Networks
17534 00:18:2E XStreamHD
17535 50:01:6B HUAWEI TECHNOLOGIES CO.,LTD
17536 58:98:6F Revolution Display
17537 28:AC:67 Mach Power, Rappresentanze Internazionali s.r.l.
17538 B0:B2:8F Sagemcom Broadband SAS
17539 DC:1A:01 Ecoliv Technology ( Shenzhen ) Ltd.
17540 7C:FE:90 Mellanox Technologies, Inc.
17541 00:02:C9 Mellanox Technologies, Inc.
17542 D0:5F:B8 Texas Instruments
17543 C4:BE:84 Texas Instruments
17544 78:A5:04 Texas Instruments
17545 7C:66:9D Texas Instruments
17546 D0:39:72 Texas Instruments
17547 E0:E5:CF Texas Instruments
17548 7C:EC:79 Texas Instruments
17549 74:D6:EA Texas Instruments
17550 00:17:EB Texas Instruments
17551 88:33:14 Texas Instruments
17552 84:DD:20 Texas Instruments
17553 1C:45:93 Texas Instruments
17554 5C:6B:32 Texas Instruments
17555 00:17:E4 Texas Instruments
17556 D0:37:61 Texas Instruments
17557 00:24:BA Texas Instruments
17558 00:22:A5 Texas Instruments
17559 00:21:BA Texas Instruments
17560 00:18:33 Texas Instruments
17561 D8:95:2F Texas Instruments
17562 64:9C:8E Texas Instruments
17563 F4:FC:32 Texas Instruments
17564 74:DA:EA Texas Instruments
17565 04:A3:16 Texas Instruments
17566 98:07:2D Texas Instruments
17567 00:1A:B6 Texas Instruments
17568 C8:A0:30 Texas Instruments
17569 34:B1:F7 Texas Instruments
17570 C4:ED:BA Texas Instruments
17571 A4:0D:BC Xiamen Intretech Inc.
17572 EC:8E:AE Nagravision SA
17573 60:64:05 Texas Instruments
17574 70:8B:CD ASUSTek COMPUTER INC.
17575 00:1A:21 Brookhuis Applied Technologies BV
17576 00:A0:0E NetScout Systems, Inc.
17577 1C:33:0E PernixData
17578 34:57:60 MitraStar Technology Corp.
17579 34:3D:C4 BUFFALO.INC
17580 6C:EF:C6 SHENZHEN TWOWING TECHNOLOGIES CO.,LTD.
17581 98:6B:3D ARRIS Group, Inc.
17582 CC:65:AD ARRIS Group, Inc.
17583 78:96:84 ARRIS Group, Inc.
17584 90:C7:92 ARRIS Group, Inc.
17585 00:15:CF ARRIS Group, Inc.
17586 38:6B:BB ARRIS Group, Inc.
17587 00:E0:6F ARRIS Group, Inc.
17588 00:04:BD ARRIS Group, Inc.
17589 5C:57:1A ARRIS Group, Inc.
17590 00:1D:D0 ARRIS Group, Inc.
17591 00:1D:D5 ARRIS Group, Inc.
17592 00:1D:CF ARRIS Group, Inc.
17593 E8:ED:05 ARRIS Group, Inc.
17594 90:1A:CA ARRIS Group, Inc.
17595 00:2A:10 Cisco Systems, Inc
17596 74:E7:C6 ARRIS Group, Inc.
17597 74:F6:12 ARRIS Group, Inc.
17598 DC:45:17 ARRIS Group, Inc.
17599 F8:0B:BE ARRIS Group, Inc.
17600 6C:C1:D2 ARRIS Group, Inc.
17601 14:5B:D1 ARRIS Group, Inc.
17602 B0:77:AC ARRIS Group, Inc.
17603 B8:16:19 ARRIS Group, Inc.
17604 A4:15:88 ARRIS Group, Inc.
17605 38:70:0C ARRIS Group, Inc.
17606 FC:51:A4 ARRIS Group, Inc.
17607 28:7A:EE ARRIS Group, Inc.
17608 64:12:69 ARRIS Group, Inc.
17609 00:1C:C3 ARRIS Group, Inc.
17610 14:D4:FE ARRIS Group, Inc.
17611 70:B1:4E ARRIS Group, Inc.
17612 D8:25:22 ARRIS Group, Inc.
17613 70:76:30 ARRIS Group, Inc.
17614 00:0C:E5 ARRIS Group, Inc.
17615 00:0E:5C ARRIS Group, Inc.
17616 00:15:A8 ARRIS Group, Inc.
17617 00:17:00 ARRIS Group, Inc.
17618 00:19:A6 ARRIS Group, Inc.
17619 00:14:E8 ARRIS Group, Inc.
17620 00:21:80 ARRIS Group, Inc.
17621 00:26:BA ARRIS Group, Inc.
17622 00:26:41 ARRIS Group, Inc.
17623 00:23:74 ARRIS Group, Inc.
17624 00:25:F2 ARRIS Group, Inc.
17625 00:19:C0 ARRIS Group, Inc.
17626 88:6A:B1 vivo Mobile Communication Co., Ltd.
17627 44:D6:E1 Snuza International Pty. Ltd.
17628 00:15:B9 Samsung Electronics Co.,Ltd
17629 00:1D:F6 Samsung Electronics Co.,Ltd
17630 00:25:66 5481
17631 00:26:5F 5481
17632 D4:88:90 5481
17633 78:47:1D 5481
17634 38:16:D1 5481
17635 EC:E0:9B Samsung Electronics Co.,Ltd
17636 60:6B:BD Samsung Electronics Co.,Ltd
17637 00:00:F0 Samsung Electronics Co.,Ltd
17638 48:44:F7 Samsung Electronics Co.,Ltd
17639 DC:71:44 SAMSUNG ELECTRO MECHANICS CO., LTD.
17640 A0:0B:BA SAMSUNG ELECTRO MECHANICS CO., LTD.
17641 1C:5A:3E Samsung Electronics Co.,Ltd
17642 F4:7B:5E Samsung Electronics Co.,Ltd
17643 C4:46:19 Hon Hai Precision Ind. Co.,Ltd.
17644 F0:F0:02 Hon Hai Precision Ind. Co.,Ltd.
17645 88:9F:FA Hon Hai Precision Ind. Co.,Ltd.
17646 5C:AC:4C Hon Hai Precision Ind. Co.,Ltd.
17647 18:F4:6A Hon Hai Precision Ind. Co.,Ltd.
17648 38:59:F9 Hon Hai Precision Ind. Co.,Ltd.
17649 BC:85:56 Hon Hai Precision Ind. Co.,Ltd.
17650 9C:2A:70 Hon Hai Precision Ind. Co.,Ltd.
17651 F8:2F:A8 Hon Hai Precision Ind. Co.,Ltd.
17652 0C:EE:E6 Hon Hai Precision Ind. Co.,Ltd.
17653 0C:60:76 Hon Hai Precision Ind. Co.,Ltd.
17654 90:FB:A6 Hon Hai Precision Ind. Co.,Ltd.
17655 00:19:7D Hon Hai Precision Ind. Co.,Ltd.
17656 00:1C:26 Hon Hai Precision Ind. Co.,Ltd.
17657 9C:AD:97 Hon Hai Precision Ind. Co.,Ltd.
17658 2C:81:58 Hon Hai Precision Ind. Co.,Ltd.
17659 14:2D:27 Hon Hai Precision Ind. Co.,Ltd.
17660 84:3D:C6 Cisco Systems, Inc
17661 2C:39:96 Sagemcom Broadband SAS
17662 00:54:BD Swelaser AB
17663 00:57:D2 Cisco Systems, Inc
17664 3C:67:16 Lily Robotics
17665 80:6A:B0 Shenzhen TINNO Mobile Technology Corp.
17666 A0:F8:95 Shenzhen TINNO Mobile Technology Corp.
17667 00:78:CD Ignition Design Labs
17668 28:ED:6A Apple, Inc.
17669 34:AB:37 Apple, Inc.
17670 60:A3:7D Apple, Inc.
17671 00:56:CD Apple, Inc.
17672 70:81:EB Apple, Inc.
17673 08:66:98 Apple, Inc.
17674 00:29:26 Applied Optoelectronics, Inc Taiwan Branch
17675 2C:FD:37 Blue Calypso, Inc.
17676 0C:61:27 Actiontec Electronics, Inc
17677 00:1B:11 D-Link Corporation
17678 00:1E:58 D-Link Corporation
17679 00:21:91 D-Link Corporation
17680 00:22:B0 D-Link Corporation
17681 F0:7D:68 D-Link Corporation
17682 78:54:2E D-Link International
17683 3C:DD:89 SOMO HOLDINGS & TECH. CO.,LTD.
17684 2C:56:DC ASUSTek COMPUTER INC.
17685 B8:AF:67 Hewlett Packard
17686 18:8B:45 Cisco Systems, Inc
17687 B0:C0:90 Chicony Electronics Co., Ltd.
17688 1C:A7:70 SHENZHEN CHUANGWEI-RGB ELECTRONICS CO.,LTD
17689 C4:2F:90 Hangzhou Hikvision Digital Technology Co.,Ltd.
17690 9C:5D:12 Aerohive Networks Inc.
17691 A4:2B:B0 TP-LINK TECHNOLOGIES CO.,LTD.
17692 4C:E6:76 BUFFALO.INC
17693 B0:C7:45 BUFFALO.INC
17694 CC:E1:D5 BUFFALO.INC
17695 B8:FC:9A Le Shi Zhi Xin Electronic Technology (Tianjin) Limited
17696 2C:41:38 Hewlett Packard
17697 2C:76:8A Hewlett Packard
17698 00:18:FE Hewlett Packard
17699 00:19:BB Hewlett Packard
17700 00:22:64 Hewlett Packard
17701 00:24:81 Hewlett Packard
17702 00:0D:9D Hewlett Packard
17703 00:14:C2 Hewlett Packard
17704 78:8B:77 Standar Telecom
17705 84:AC:FB Crouzet Automatismes
17706 34:BA:75 Tembo Systems, Inc.
17707 94:86:CD SEOUL ELECTRONICS&TELECOM
17708 94:AB:DE OMX Technology - FZE
17709 00:0E:35 Intel Corporation
17710 00:20:7B Intel Corporation
17711 00:13:CE Intel Corporate
17712 80:19:34 Intel Corporate
17713 B8:B8:1E Intel Corporate
17714 18:5E:0F Intel Corporate
17715 C8:0E:77 Le Shi Zhi Xin Electronic Technology (Tianjin) Limited
17716 84:34:97 Hewlett Packard
17717 EC:B1:D7 Hewlett Packard
17718 3C:A8:2A Hewlett Packard
17719 48:0F:CF Hewlett Packard
17720 58:20:B1 Hewlett Packard
17721 2C:23:3A Hewlett Packard
17722 00:0E:B3 Hewlett Packard
17723 00:04:EA Hewlett Packard
17724 00:30:6E Hewlett Packard
17725 00:60:B0 Hewlett Packard
17726 24:BE:05 Hewlett Packard
17727 00:04:23 Intel Corporation
17728 00:08:C7 Hewlett Packard
17729 00:10:E3 Hewlett Packard
17730 00:80:5F Hewlett Packard
17731 BC:EA:FA Hewlett Packard
17732 5C:8A:38 Hewlett Packard
17733 D8:9D:67 Hewlett Packard
17734 2C:44:FD Hewlett Packard
17735 F0:92:1C Hewlett Packard
17736 B4:B5:2F Hewlett Packard
17737 90:21:55 HTC Corporation
17738 64:A7:69 HTC Corporation
17739 BC:CF:CC HTC Corporation
17740 B0:F1:A3 Fengfan (BeiJing) Technology Co., Ltd.
17741 7C:7D:3D HUAWEI TECHNOLOGIES CO.,LTD
17742 44:82:E5 HUAWEI TECHNOLOGIES CO.,LTD
17743 54:27:58 Motorola (Wuhan) Mobility Technologies Communication Co., Ltd.
17744 4C:D0:8A HUMAX Co., Ltd.
17745 20:90:6F Shenzhen Tencent Computer System Co., Ltd.
17746 1C:78:39 Shenzhen Tencent Computer System Co., Ltd.
17747 D8:37:BE Shanghai Gongjing Telecom Technology Co,LTD
17748 A4:51:6F Microsoft Mobile Oy
17749 FC:64:BA Xiaomi Communications Co Ltd
17750 24:60:81 razberi technologies
17751 8C:AB:8E Shanghai Feixun Communication Co.,Ltd.
17752 90:60:F1 Apple, Inc.
17753 EC:26:CA TP-LINK TECHNOLOGIES CO.,LTD.
17754 A0:93:47 GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
17755 2C:08:8C HUMAX Co., Ltd.
17756 40:F3:08 Murata Manufacturing Co., Ltd.
17757 5C:DA:D4 Murata Manufacturing Co., Ltd.
17758 00:0E:6D Murata Manufacturing Co., Ltd.
17759 B0:5B:67 HUAWEI TECHNOLOGIES CO.,LTD
17760 38:F8:89 HUAWEI TECHNOLOGIES CO.,LTD
17761 F4:DC:F9 HUAWEI TECHNOLOGIES CO.,LTD
17762 90:4E:2B HUAWEI TECHNOLOGIES CO.,LTD
17763 0C:96:BF HUAWEI TECHNOLOGIES CO.,LTD
17764 9C:C1:72 HUAWEI TECHNOLOGIES CO.,LTD
17765 00:14:C9 Brocade Communications Systems, Inc.
17766 00:01:0F Brocade Communications Systems, Inc.
17767 08:00:88 Brocade Communications Systems, Inc.
17768 00:05:1E Brocade Communications Systems, Inc.
17769 38:46:08 zte corporation
17770 B4:B3:62 zte corporation
17771 B0:75:D5 zte corporation
17772 08:18:1A zte corporation
17773 00:25:12 zte corporation
17774 CC:F9:54 Avaya Inc
17775 70:30:18 Avaya Inc
17776 B0:A3:7E Qingdao Haier Telecom Co.,Ltd
17777 70:A8:E3 HUAWEI TECHNOLOGIES CO.,LTD
17778 F8:4A:BF HUAWEI TECHNOLOGIES CO.,LTD
17779 4C:B1:6C HUAWEI TECHNOLOGIES CO.,LTD
17780 4C:1F:CC HUAWEI TECHNOLOGIES CO.,LTD
17781 48:62:76 HUAWEI TECHNOLOGIES CO.,LTD
17782 AC:4E:91 HUAWEI TECHNOLOGIES CO.,LTD
17783 E4:68:A3 HUAWEI TECHNOLOGIES CO.,LTD
17784 80:D0:9B HUAWEI TECHNOLOGIES CO.,LTD
17785 58:1F:28 HUAWEI TECHNOLOGIES CO.,LTD
17786 8C:34:FD HUAWEI TECHNOLOGIES CO.,LTD
17787 90:67:1C HUAWEI TECHNOLOGIES CO.,LTD
17788 58:7F:66 HUAWEI TECHNOLOGIES CO.,LTD
17789 BC:25:E0 HUAWEI TECHNOLOGIES CO.,LTD
17790 C4:07:2F HUAWEI TECHNOLOGIES CO.,LTD
17791 0C:D6:BD HUAWEI TECHNOLOGIES CO.,LTD
17792 A4:99:47 HUAWEI TECHNOLOGIES CO.,LTD
17793 34:6B:D3 HUAWEI TECHNOLOGIES CO.,LTD
17794 1C:1D:67 HUAWEI TECHNOLOGIES CO.,LTD
17795 84:A8:E4 HUAWEI TECHNOLOGIES CO.,LTD
17796 20:2B:C1 HUAWEI TECHNOLOGIES CO.,LTD
17797 34:75:C7 Avaya Inc
17798 6C:FA:58 Avaya Inc
17799 64:A7:DD Avaya Inc
17800 64:6A:52 Avaya Inc
17801 F8:73:A2 Avaya Inc
17802 64:C3:54 Avaya Inc
17803 B4:B0:17 Avaya Inc
17804 58:16:26 Avaya Inc
17805 74:1B:B2 Apple, Inc.
17806 00:25:86 TP-LINK TECHNOLOGIES CO.,LTD.
17807 F8:D1:11 TP-LINK TECHNOLOGIES CO.,LTD.
17808 F4:EC:38 TP-LINK TECHNOLOGIES CO.,LTD.
17809 20:DC:E6 TP-LINK TECHNOLOGIES CO.,LTD.
17810 1C:6E:4C Logistic Service & Engineering Co.,Ltd
17811 00:10:1F Cisco Systems, Inc
17812 00:10:54 Cisco Systems, Inc
17813 DC:EB:94 Cisco Systems, Inc
17814 5C:83:8F Cisco Systems, Inc
17815 AC:7E:8A Cisco Systems, Inc
17816 38:20:56 Cisco Systems, Inc
17817 28:CF:E9 Apple, Inc.
17818 00:50:2A Cisco Systems, Inc
17819 00:50:14 Cisco Systems, Inc
17820 00:90:D9 Cisco Systems, Inc
17821 00:90:92 Cisco Systems, Inc
17822 00:10:29 Cisco Systems, Inc
17823 00:10:07 Cisco Systems, Inc
17824 00:60:5C Cisco Systems, Inc
17825 00:E0:F7 Cisco Systems, Inc
17826 00:E0:B0 Cisco Systems, Inc
17827 00:E0:FE Cisco Systems, Inc
17828 00:E0:A3 Cisco Systems, Inc
17829 00:E0:F9 Cisco Systems, Inc
17830 00:1B:D7 Cisco SPVTG
17831 10:51:72 HUAWEI TECHNOLOGIES CO.,LTD
17832 90:17:AC HUAWEI TECHNOLOGIES CO.,LTD
17833 94:04:9C HUAWEI TECHNOLOGIES CO.,LTD
17834 C4:6A:B7 Xiaomi Communications Co Ltd
17835 68:DF:DD Xiaomi Communications Co Ltd
17836 64:B4:73 Xiaomi Communications Co Ltd
17837 74:51:BA Xiaomi Communications Co Ltd
17838 34:80:B3 Xiaomi Communications Co Ltd
17839 50:06:AB Cisco Systems, Inc
17840 00:50:E2 Cisco Systems, Inc
17841 00:50:50 Cisco Systems, Inc
17842 00:90:21 Cisco Systems, Inc
17843 00:90:B1 Cisco Systems, Inc
17844 00:02:3D Cisco Systems, Inc
17845 18:E7:28 Cisco Systems, Inc
17846 2C:3E:CF Cisco Systems, Inc
17847 10:05:CA Cisco Systems, Inc
17848 1C:DE:A7 Cisco Systems, Inc
17849 1C:6A:7A Cisco Systems, Inc
17850 CC:D8:C1 Cisco Systems, Inc
17851 7C:0E:CE Cisco Systems, Inc
17852 F0:9E:63 Cisco Systems, Inc
17853 F0:7F:06 Cisco Systems, Inc
17854 84:80:2D Cisco Systems, Inc
17855 E0:89:9D Cisco Systems, Inc
17856 A8:9D:21 Cisco Systems, Inc
17857 BC:F1:F2 Cisco Systems, Inc
17858 C8:00:84 Cisco Systems, Inc
17859 A0:F8:49 Cisco Systems, Inc
17860 88:90:8D Cisco Systems, Inc
17861 A4:6C:2A Cisco Systems, Inc
17862 00:21:BE Cisco SPVTG
17863 7C:B2:1B Cisco SPVTG
17864 00:26:43 ALPS ELECTRIC CO.,LTD.
17865 00:24:33 ALPS ELECTRIC CO.,LTD.
17866 74:5E:1C PIONEER CORPORATION
17867 00:06:F5 ALPS ELECTRIC CO.,LTD.
17868 00:06:F7 ALPS ELECTRIC CO.,LTD.
17869 00:07:04 ALPS ELECTRIC CO.,LTD.
17870 1C:1D:86 Cisco Systems, Inc
17871 00:1A:92 ASUSTek COMPUTER INC.
17872 00:1D:60 ASUSTek COMPUTER INC.
17873 00:22:15 ASUSTek COMPUTER INC.
17874 20:CF:30 ASUSTek COMPUTER INC.
17875 E0:CB:4E ASUSTek COMPUTER INC.
17876 1C:87:2C ASUSTek COMPUTER INC.
17877 C4:14:3C Cisco Systems, Inc
17878 24:01:C7 Cisco Systems, Inc
17879 04:DA:D2 Cisco Systems, Inc
17880 F4:1F:C2 Cisco Systems, Inc
17881 4C:00:82 Cisco Systems, Inc
17882 DC:A5:F4 Cisco Systems, Inc
17883 7C:95:F3 Cisco Systems, Inc
17884 50:17:FF Cisco Systems, Inc
17885 E8:ED:F3 Cisco Systems, Inc
17886 78:DA:6E Cisco Systems, Inc
17887 24:E9:B3 Cisco Systems, Inc
17888 E4:25:E7 Apple, Inc.
17889 08:00:07 Apple, Inc.
17890 00:0A:95 Apple, Inc.
17891 00:22:41 Apple, Inc.
17892 00:23:DF Apple, Inc.
17893 00:25:BC Apple, Inc.
17894 00:26:4A Apple, Inc.
17895 00:26:B0 Apple, Inc.
17896 04:1E:64 Apple, Inc.
17897 D4:9A:20 Apple, Inc.
17898 90:27:E4 Apple, Inc.
17899 60:33:4B Apple, Inc.
17900 A4:31:35 Apple, Inc.
17901 9C:35:EB Apple, Inc.
17902 50:7A:55 Apple, Inc.
17903 A0:99:9B Apple, Inc.
17904 24:24:0E Apple, Inc.
17905 90:3C:92 Apple, Inc.
17906 34:12:98 Apple, Inc.
17907 9C:29:3F Apple, Inc.
17908 48:8A:D2 SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD.
17909 A8:8E:24 Apple, Inc.
17910 E8:80:2E Apple, Inc.
17911 68:AE:20 Apple, Inc.
17912 E0:B5:2D Apple, Inc.
17913 80:BE:05 Apple, Inc.
17914 D8:BB:2C Apple, Inc.
17915 D0:4F:7E Apple, Inc.
17916 2C:1F:23 Apple, Inc.
17917 54:9F:13 Apple, Inc.
17918 B8:09:8A Apple, Inc.
17919 F0:DB:E2 Apple, Inc.
17920 18:EE:69 Apple, Inc.
17921 74:81:14 Apple, Inc.
17922 18:F6:43 Apple, Inc.
17923 D0:A6:37 Apple, Inc.
17924 A0:18:28 Apple, Inc.
17925 D0:03:4B Apple, Inc.
17926 5C:59:48 Apple, Inc.
17927 78:CA:39 Apple, Inc.
17928 18:E7:F4 Apple, Inc.
17929 B8:FF:61 Apple, Inc.
17930 DC:2B:61 Apple, Inc.
17931 10:93:E9 Apple, Inc.
17932 44:2A:60 Apple, Inc.
17933 E0:F8:47 Apple, Inc.
17934 14:5A:05 Apple, Inc.
17935 28:CF:DA Apple, Inc.
17936 14:8F:C6 Apple, Inc.
17937 28:37:37 Apple, Inc.
17938 04:54:53 Apple, Inc.
17939 F0:CB:A1 Apple, Inc.
17940 C0:63:94 Apple, Inc.
17941 8C:00:6D Apple, Inc.
17942 B0:9F:BA Apple, Inc.
17943 DC:86:D8 Apple, Inc.
17944 8C:29:37 Apple, Inc.
17945 DC:9B:9C Apple, Inc.
17946 98:F0:AB Apple, Inc.
17947 F0:DB:F8 Apple, Inc.
17948 AC:CF:5C Apple, Inc.
17949 3C:15:C2 Apple, Inc.
17950 04:48:9A Apple, Inc.
17951 D8:CF:9C Apple, Inc.
17952 30:F7:C5 Apple, Inc.
17953 00:88:65 Apple, Inc.
17954 40:B3:95 Apple, Inc.
17955 30:90:AB Apple, Inc.
17956 1C:E6:2B Apple, Inc.
17957 A0:ED:CD Apple, Inc.
17958 A8:86:DD Apple, Inc.
17959 54:EA:A8 Apple, Inc.
17960 E4:C6:3D Apple, Inc.
17961 84:38:35 Apple, Inc.
17962 70:73:CB Apple, Inc.
17963 9C:20:7B Apple, Inc.
17964 84:29:99 Apple, Inc.
17965 74:E2:F5 Apple, Inc.
17966 20:C9:D0 Apple, Inc.
17967 14:02:EC Hewlett Packard Enterprise
17968 70:79:38 Wuxi Zhanrui Electronic Technology Co.,LTD
17969 64:6A:74 AUTH-SERVERS, LLC
17970 34:C9:F0 LM Technologies Ltd
17971 E0:34:E4 Feit Electric Company, Inc.
17972 98:E8:48 Axiim
17973 A0:F9:E0 VIVATEL COMPANY LIMITED
17974 F8:C3:72 TSUZUKI DENKI
17975 90:8D:78 D-Link International
17976 A4:CC:32 Inficomm Co., Ltd
17977 58:2B:DB Pax AB
17978 D0:0F:6D T&W Electronics Company
17979 48:BF:74 Baicells Technologies Co.,LTD
17980 38:F5:57 JOLATA, INC.
17981 28:0E:8B Beijing Spirit Technology Development Co., Ltd.
17982 F4:4D:30 Elitegroup Computer Systems Co.,Ltd.
17983 DC:9A:8E Nanjing Cocomm electronics co., LTD
17984 C4:EF:70 Home Skinovations
17985 B8:13:E9 Trace Live Network
17986 74:6F:19 ICARVISIONS (SHENZHEN) TECHNOLOGY CO., LTD.
17987 7C:71:76 Wuxi iData Technology Company Ltd.
17988 7C:01:91 Apple, Inc.
17989 70:48:0F Apple, Inc.
17990 A4:B8:05 Apple, Inc.
17991 58:7F:57 Apple, Inc.
17992 80:D6:05 Apple, Inc.
17993 68:A8:28 HUAWEI TECHNOLOGIES CO.,LTD
17994 98:87:44 Wuxi Hongda Science and Technology Co.,LTD
17995 C8:69:CD Apple, Inc.
17996 BC:6C:21 Apple, Inc.
17997 9C:8D:D3 Leonton Technologies
17998 24:6C:8A YUKAI Engineering
17999 A4:38:31 RF elements s.r.o.
18000 D0:BA:E4 Shanghai MXCHIP Information Technology Co., Ltd.
18001 A4:DC:BE HUAWEI TECHNOLOGIES CO.,LTD
18002 10:CC:1B Liverock technologies,INC
18003 48:B6:20 ROLI Ltd.
18004 20:D1:60 Private
18005 38:21:87 Midea Group Co., Ltd.
18006 30:5A:3A ASUSTek COMPUTER INC.
18007 A8:72:85 IDT, INC.
18008 AC:1F:D7 Real Vision Technology Co.,Ltd.
18009 C8:A2:CE Oasis Media Systems LLC
18010 A4:DE:C9 QLove Mobile Intelligence Information Technology (W.H.) Co. Ltd.
18011 A4:A6:A9 Private
18012 04:69:F8 Apple, Inc.
18013 9C:7A:03 Ciena Corporation
18014 38:0A:AB Formlabs
18015 F4:15:35 SPON Communication Technology Co.,Ltd
18016 E4:1A:2C ZPE Systems, Inc.
18017 A8:15:D6 Shenzhen Meione Technology CO., LTD
18018 D0:93:80 Ducere Technologies Pvt. Ltd.
18019 84:A7:88 Perples
18020 68:89:C1 HUAWEI TECHNOLOGIES CO.,LTD
18021 84:5B:12 HUAWEI TECHNOLOGIES CO.,LTD
18022 14:3E:BF zte corporation
18023 04:1E:7A DSPWorks
18024 38:B7:25 Wistron Infocomm (Zhongshan) Corporation
18025 4C:C6:81 Shenzhen Aisat Electronic Co., Ltd.
18026 28:B9:D9 Radisys Corporation
18027 E0:55:3D Cisco Meraki
18028 08:94:EF Wistron Infocomm (Zhongshan) Corporation
18029 E0:31:9E Valve Corporation
18030 E4:A3:2F Shanghai Artimen Technology Co., Ltd.
18031 D4:7B:B0 ASKEY COMPUTER CORP
18032 50:45:F7 Liuhe Intelligence Technology Ltd.
18033 20:F5:10 Codex Digital Limited
18034 94:9F:3E Sonos, Inc.
18035 78:8E:33 Jiangsu SEUIC Technology Co.,Ltd
18036 E0:1A:EA Allied Telesis, Inc.
18037 34:0C:ED Moduel AB
18038 50:7B:9D LCFC(HeFei) Electronics Technology co., ltd
18039 6C:72:20 D-Link International
18040 F0:26:24 WAFA TECHNOLOGIES CO., LTD.
18041 F8:F4:64 Rawe Electonic GmbH
18042 F4:67:2D ShenZhen Topstar Technology Company
18043 38:2B:78 ECO PLUGS ENTERPRISE CO., LTD
18044 BC:EB:5F Fujian Beifeng Telecom Technology Co., Ltd.
18045 80:0B:51 Chengdu XGimi Technology Co.,Ltd
18046 00:FC:8D Hitron Technologies. Inc
18047 1C:C5:86 Absolute Acoustics
18048 E0:76:D0 AMPAK Technology, Inc.
18049 24:B0:A9 Shanghai Mobiletek Communication Ltd.
18050 64:16:7F Polycom
18051 54:E2:C8 Dongguan Aoyuan Electronics Technology Co., Ltd
18052 20:D7:5A Posh Mobile Limited
18053 88:D3:7B FirmTek, LLC
18054 10:AF:78 Shenzhen ATUE Technology Co., Ltd
18055 B0:96:6C Lanbowan Technology Ltd.
18056 A4:08:EA Murata Manufacturing Co., Ltd.
18057 D4:F9:A1 HUAWEI TECHNOLOGIES CO.,LTD
18058 9C:B6:D0 Rivet Networks
18059 D0:C0:BF Actions Microelectronics Co., Ltd
18060 94:F6:65 Ruckus Wireless
18061 E0:4B:45 Hi-P Electronics Pte Ltd
18062 6C:45:98 Antex Electronic Corp.
18063 94:A7:B7 zte corporation
18064 3C:83:75 Microsoft Corporation
18065 C8:45:8F Wyler AG
18066 14:9A:10 Microsoft Corporation
18067 FC:9A:FA Motus Global Inc.
18068 5C:B4:3E HUAWEI TECHNOLOGIES CO.,LTD
18069 FC:E1:FB Array Networks
18070 54:E1:40 INGENICO
18071 14:15:7C TOKYO COSMOS ELECTRIC CO.,LTD.
18072 40:8D:5C GIGA-BYTE TECHNOLOGY CO.,LTD.
18073 6C:E0:1E Modcam AB
18074 E8:F2:E3 Starcor Beijing Co.,Limited
18075 D0:48:F3 DATTUS Inc
18076 CC:19:A8 PT Inovação e Sistemas SA
18077 6C:44:18 Zappware
18078 44:96:2B Aidon Oy
18079 D4:D7:A9 Shanghai Kaixiang Info Tech LTD
18080 18:5D:9A BobjGear LLC
18081 88:41:57 Shenzhen Atsmart Technology Co.,Ltd.
18082 3C:DA:2A zte corporation
18083 74:73:36 MICRODIGTAL Inc
18084 0C:E7:25 Microsoft Corporation
18085 6C:2E:72 B&B EXPORTING LIMITED
18086 FC:32:88 CELOT Wireless Co., Ltd
18087 BC:B3:08 HONGKONG RAGENTEK COMMUNICATION TECHNOLOGY CO.,LIMITED
18088 44:5E:CD Razer Inc
18089 74:96:37 Todaair Electronic Co., Ltd
18090 20:31:EB HDSN
18091 C0:33:5E Microsoft
18092 AC:CA:AB Virtual Electric Inc
18093 24:1B:44 Hangzhou Tuners Electronics Co., Ltd
18094 90:C3:5F Nanjing Jiahao Technology Co., Ltd.
18095 18:F1:45 NetComm Wireless Limited
18096 4C:A5:15 Baikal Electronics JSC
18097 9C:E2:30 JULONG CO,.LTD.
18098 34:87:3D Quectel Wireless Solution Co.,Ltd.
18099 18:68:82 Beward R&D Co., Ltd.
18100 34:4C:A4 amazipoint technology Ltd.
18101 A8:F0:38 SHEN ZHEN SHI JIN HUA TAI ELECTRONICS CO.,LTD
18102 74:E2:77 Vizmonet Pte Ltd
18103 10:A6:59 Mobile Create Co.,Ltd.
18104 58:85:6E QSC AG
18105 FC:AF:AC Socionext Inc.
18106 F8:C3:97 NZXT Corp. Ltd.
18107 C4:36:6C LG Innotek
18108 60:D9:A0 Lenovo Mobile Communication Technology Ltd.
18109 5C:3B:35 Gehirn Inc.
18110 5C:F7:C3 SYNTECH (HK) TECHNOLOGY LIMITED
18111 3C:C2:E1 XINHUA CONTROL ENGINEERING CO.,LTD
18112 7C:53:4A Metamako
18113 9C:30:66 RWE Effizienz GmbH
18114 FC:A2:2A PT. Callysta Multi Engineering
18115 24:76:56 Shanghai Net Miles Fiber Optics Technology Co., LTD.
18116 A0:AD:A1 JMR Electronics, Inc
18117 60:19:70 HUIZHOU QIAOXING ELECTRONICS TECHNOLOGY CO., LTD.
18118 88:70:33 Hangzhou Silan Microelectronic Inc
18119 8C:79:67 zte corporation
18120 D0:83:D4 XTel ApS
18121 78:F9:44 Private
18122 CC:A4:AF Shenzhen Sowell Technology Co., LTD
18123 84:F1:29 Metrascale Inc.
18124 20:28:BC Visionscape Co,. Ltd.
18125 B8:F0:80 SPS, INC.
18126 78:58:F3 Vachen Co.,Ltd
18127 FC:DC:4A G-Wearables Corp.
18128 F4:2C:56 SENOR TECH CO LTD
18129 50:50:2A Egardia
18130 48:EE:0C D-Link International
18131 48:C0:93 Xirrus, Inc.
18132 3C:1A:0F ClearSky Data
18133 AC:B5:7D Liteon Technology Corporation
18134 DC:E1:AD Shenzhen Wintop Photoelectric Technology Co., Ltd
18135 90:0C:B4 Alinket Electronic Technology Co., Ltd
18136 88:3B:8B Cheering Connection Co. Ltd.
18137 94:D4:17 GPI KOREA INC.
18138 D8:55:A3 zte corporation
18139 70:DA:9C TECSEN
18140 6C:F5:E8 Mooredoll Inc.
18141 70:FF:5C Cheerzing Communication(Xiamen)Technology Co.,Ltd
18142 E0:10:7F Ruckus Wireless
18143 08:11:5E Bitel Co., Ltd.
18144 44:CE:7D SFR
18145 08:81:BC HongKong Ipro Technology Co., Limited
18146 4C:16:F1 zte corporation
18147 80:09:02 Keysight Technologies, Inc.
18148 68:72:DC CETORY.TV Company Limited
18149 D8:B6:B7 Comtrend Corporation
18150 04:99:E6 Shenzhen Yoostar Technology Co., Ltd
18151 94:BF:95 Shenzhen Coship Electronics Co., Ltd
18152 FC:9F:E1 CONWIN.Tech. Ltd
18153 90:20:3A BYD Precision Manufacture Co.,Ltd
18154 A8:1B:5D Foxtel Management Pty Ltd
18155 B8:BD:79 TrendPoint Systems
18156 2C:01:0B NASCENT Technology, LLC - RemKon
18157 D4:EC:86 LinkedHope Intelligent Technologies Co., Ltd
18158 20:A9:9B Microsoft Corporation
18159 6C:76:60 KYOCERA Corporation
18160 A0:A3:E2 Actiontec Electronics, Inc
18161 54:09:8D deister electronic GmbH
18162 F0:FE:6B Shanghai High-Flying Electronics Technology Co., Ltd
18163 3C:AE:69 ESA Elektroschaltanlagen Grimma GmbH
18164 00:F3:DB WOO Sports
18165 08:A5:C8 Sunnovo International Limited
18166 84:8E:DF Sony Mobile Communications AB
18167 CC:BD:D3 Ultimaker B.V.
18168 50:29:4D NANJING IOT SENSOR TECHNOLOGY CO,LTD
18169 0C:CF:D1 SPRINGWAVE Co., Ltd
18170 58:10:8C Intelbras
18171 18:71:17 eta plus electronic gmbh
18172 7C:B1:77 Satelco AG
18173 8C:5D:60 UCI Corporation Co.,Ltd.
18174 10:4B:46 Mitsubishi Electric Corporation
18175 4C:0B:BE Microsoft
18176 08:EB:29 Jiangsu Huitong Group Co.,Ltd.
18177 E4:8C:0F Discovery Insure
18178 58:7F:B7 SONAR INDUSTRIAL CO., LTD.
18179 E4:23:54 SHENZHEN FUZHI SOFTWARE TECHNOLOGY CO.,LTD
18180 20:76:93 Lenovo (Beijing) Limited.
18181 C4:BD:6A SKF GmbH
18182 14:48:8B Shenzhen Doov Technology Co.,Ltd
18183 60:36:96 The Sapling Company
18184 54:FF:CF Mopria Alliance
18185 BC:BC:46 SKS Welding Systems GmbH
18186 A8:D8:8A Wyconn
18187 00:E6:E8 Netzin Technology Corporation,.Ltd.
18188 64:B2:1D Chengdu Phycom Tech Co., Ltd.
18189 88:70:8C Lenovo Mobile Communication Technology Ltd.
18190 F0:3D:29 Actility
18191 90:9F:33 EFM Networks
18192 84:96:81 Cathay Communication Co.,Ltd
18193 A0:56:B2 Harman/Becker Automotive Systems GmbH
18194 40:C6:2A Shanghai Jing Ren Electronic Technology Co., Ltd.
18195 E8:15:0E Nokia Corporation
18196 F4:D0:32 Yunnan Ideal Information&Technology.,Ltd
18197 44:A6:E5 THINKING TECHNOLOGY CO.,LTD
18198 A8:32:9A Digicom Futuristic Technologies Ltd.
18199 B4:0A:C6 DEXON Systems Ltd.
18200 48:0C:49 NAKAYO TELECOMMUNICATIONS,INC
18201 5C:B8:CB Allis Communications
18202 E8:5D:6B Luminate Wireless
18203 8C:33:57 HiteVision Digital Media Technology Co.,Ltd.
18204 50:67:87 iTellus
18205 F4:D2:61 SEMOCON Co., Ltd
18206 D0:5A:F1 Shenzhen Pulier Tech CO.,Ltd
18207 48:1A:84 Pointer Telocation Ltd
18208 E4:F4:C6 NETGEAR
18209 DC:66:3A Apacer Technology Inc.
18210 B0:09:D3 Avizia
18211 3C:AA:3F iKey, Ltd.
18212 0C:38:3E Fanvil Technology Co., Ltd.
18213 60:CD:A9 Abloomy
18214 B4:0B:44 Smartisan Technology Co., Ltd.
18215 A0:FC:6E Telegrafia a.s.
18216 44:D4:E0 Sony Mobile Communications AB
18217 D0:FA:1D Qihoo 360 Technology Co.,Ltd
18218 04:67:85 scemtec Hard- und Software fuer Mess- und Steuerungstechnik GmbH
18219 FC:6D:C0 BME CORPORATION
18220 78:45:61 CyberTAN Technology Inc.
18221 D8:96:E0 Alibaba Cloud Computing Ltd.
18222 30:0D:2A Zhejiang Wellcom Technology Co.,Ltd.
18223 64:EA:C5 SiboTech Automation Co., Ltd.
18224 74:DA:38 Edimax Technology Co. Ltd.
18225 F4:F2:6D TP-LINK TECHNOLOGIES CO.,LTD.
18226 5C:15:15 ADVAN
18227 D0:A0:D6 Chengdu TD Tech Ltd.
18228 8C:BF:9D Shanghai Xinyou Information Technology Ltd. Co.
18229 D4:93:98 Nokia Corporation
18230 78:D6:6F Aristocrat Technologies Australia Pty. Ltd.
18231 50:C7:BF TP-LINK TECHNOLOGIES CO.,LTD.
18232 C0:61:18 TP-LINK TECHNOLOGIES CO.,LTD.
18233 D0:C7:C0 TP-LINK TECHNOLOGIES CO.,LTD.
18234 20:9A:E9 Volacomm Co., Ltd
18235 34:5D:10 Wytek
18236 58:E3:26 Compass Technologies Inc.
18237 84:8D:C7 Cisco SPVTG
18238 A8:BD:3A UNIONMAN TECHNOLOGY CO.,LTD
18239 C4:4E:1F BlueN
18240 CC:A6:14 AIFA TECHNOLOGY CORP.
18241 B0:86:9E Chloride S.r.L
18242 34:4F:5C R&amp;M AG
18243 A4:6C:C1 LTi REEnergy GmbH
18244 90:DB:46 E-LEAD ELECTRONIC CO., LTD
18245 D4:2F:23 Akenori PTE Ltd
18246 28:63:36 Siemens AG - Industrial Automation - EWA
18247 38:F0:98 Vapor Stone Rail Systems
18248 40:01:07 Arista Corp
18249 4C:8B:30 Actiontec Electronics, Inc
18250 08:05:CD DongGuang EnMai Electronic Product Co.Ltd.
18251 00:92:FA SHENZHEN WISKY TECHNOLOGY CO.,LTD
18252 4C:F4:5B Blue Clover Devices
18253 B0:69:71 DEI Sales, Inc.
18254 58:49:3B Palo Alto Networks
18255 58:05:28 LABRIS NETWORKS
18256 28:65:6B Keystone Microtech Corporation
18257 EC:2E:4E HITACHI-LG DATA STORAGE INC
18258 50:58:00 WyTec International, Inc.
18259 78:92:3E Nokia Corporation
18260 D4:CF:F9 Shenzhen Sen5 Technology Co., Ltd.
18261 D8:49:2F CANON INC.
18262 D4:67:61 SAHAB TECHNOLOGY
18263 14:56:45 Savitech Corp.
18264 D4:E0:8E ValueHD Corporation
18265 70:30:5D Ubiquoss Inc
18266 58:50:AB TLS Corporation
18267 90:DF:B7 s.m.s smart microwave sensors GmbH
18268 B8:43:E4 Vlatacom
18269 84:25:A4 Tariox Limited
18270 E0:7F:53 TECHBOARD SRL
18271 4C:0D:EE JABIL CIRCUIT (SHANGHAI) LTD.
18272 A0:77:71 Vialis BV
18273 D0:BD:01 DS International
18274 C0:C5:69 SHANGHAI LYNUC CNC TECHNOLOGY CO.,LTD
18275 20:0E:95 IEC – TC9 WG43
18276 E0:DB:88 Open Standard Digital-IF Interface for SATCOM Systems
18277 D8:61:94 Objetivos y Sevicios de Valor Añadido
18278 58:9C:FC FreeBSD Foundation
18279 60:21:03 STCUBE.INC
18280 08:5D:DD Mercury Corporation
18281 98:34:9D Krauss Maffei Technologies GmbH
18282 18:CC:23 Philio Technology Corporation
18283 64:8D:9E IVT Electronic Co.,Ltd
18284 CC:95:D7 Vizio, Inc
18285 74:9C:52 Huizhou Desay SV Automotive Co., Ltd.
18286 C0:F7:9D Powercode
18287 3C:0C:48 Servergy, Inc.
18288 68:D2:47 Portalis LC
18289 FC:27:A2 TRANS ELECTRIC CO., LTD.
18290 14:C0:89 DUNE HD LTD
18291 F0:8A:28 JIANGSU HENGSION ELECTRONIC S and T CO.,LTD
18292 A8:57:4E TP-LINK TECHNOLOGIES CO.,LTD.
18293 DC:3E:F8 Nokia Corporation
18294 70:61:73 Calantec GmbH
18295 50:C2:71 SECURETECH INC
18296 7C:49:B9 Plexus Manufacturing Sdn Bhd
18297 18:44:62 Riava Networks, Inc.
18298 9C:44:3D CHENGDU XUGUANG TECHNOLOGY CO, LTD
18299 74:A4:B5 Powerleader Science and Technology Co. Ltd.
18300 BC:41:00 CODACO ELECTRONIC s.r.o.
18301 7C:CD:3C Guangzhou Juzing Technology Co., Ltd
18302 10:B2:6B base Co.,Ltd.
18303 DC:CE:BC Shenzhen JSR Technology Co.,Ltd.
18304 94:86:D4 Surveillance Pro Corporation
18305 F8:95:50 Proton Products Chengdu Ltd
18306 44:7B:C4 DualShine Technology(SZ)Co.,Ltd
18307 54:2F:89 Euclid Laboratories, Inc.
18308 48:B9:77 PulseOn Oy
18309 AC:2D:A3 TXTR GmbH
18310 C8:F6:8D S.E.TECHNOLOGIES LIMITED
18311 BC:14:EF ITON Technology Limited
18312 14:F2:8E ShenYang ZhongKe-Allwin Technology Co.LTD
18313 C0:64:C6 Nokia Corporation
18314 9C:44:A6 SwiftTest, Inc.
18315 44:C4:A9 Opticom Communication, LLC
18316 6C:3C:53 SoundHawk Corp
18317 64:BA:BD SDJ Technologies, Inc.
18318 88:91:66 Viewcooper Corp.
18319 10:33:78 FLECTRON Co., LTD
18320 DC:05:75 SIEMENS ENERGY AUTOMATION
18321 5C:11:93 Seal One AG
18322 B4:52:7E Sony Mobile Communications AB
18323 50:E1:4A Private
18324 68:FC:B3 Next Level Security Systems, Inc.
18325 70:30:5E Nanjing Zhongke Menglian Information Technology Co.,LTD
18326 9C:88:88 Simac Techniek NV
18327 18:0C:14 iSonea Limited
18328 8C:AE:89 Y-cam Solutions Ltd
18329 58:B9:61 SOLEM Electronique
18330 F4:6A:BC Adonit Corp. Ltd.
18331 20:18:0E Shenzhen Sunchip Technology Co., Ltd
18332 80:B2:19 ELEKTRON TECHNOLOGY UK LIMITED
18333 D0:8A:55 Skullcandy
18334 C4:D6:55 Tercel technology co.,ltd
18335 9C:A1:0A SCLE SFE
18336 78:D9:9F NuCom HK Ltd.
18337 44:C5:6F NGN Easy Satfinder (Tianjin) Electronic Co., Ltd
18338 2C:5A:05 Nokia Corporation
18339 84:83:36 Newrun
18340 EC:71:DB Shenzhen Baichuan Digital Technology Co., Ltd.
18341 B8:26:6C ANOV France
18342 28:4D:92 Luminator
18343 1C:4B:B9 SMG ENTERPRISE, LLC
18344 0C:5C:D8 DOLI Elektronik GmbH
18345 2C:5F:F3 Pertronic Industries
18346 E0:AF:4B Pluribus Networks, Inc.
18347 C8:56:63 Sunflex Europe GmbH
18348 88:FE:D6 ShangHai WangYong Software Co., Ltd.
18349 60:03:47 Billion Electric Co. Ltd.
18350 08:40:27 Gridstore Inc.
18351 7C:20:48 KoamTac
18352 70:59:86 OOO TTV
18353 20:DF:3F Nanjing SAC Power Grid Automation Co., Ltd.
18354 30:78:6B TIANJIN Golden Pentagon Electronics Co., Ltd.
18355 4C:D6:37 Qsono Electronics Co., Ltd
18356 8C:F9:45 Power Automation pte Ltd
18357 2C:92:2C Kishu Giken Kogyou Company Ltd,.
18358 50:98:71 Inventum Technologies Private Limited
18359 38:42:33 Wildeboer Bauteile GmbH
18360 94:40:A2 Anywave Communication Technologies, Inc.
18361 7C:B7:7B Paradigm Electronics Inc
18362 28:A2:41 exlar corp
18363 98:76:B6 Adafruit
18364 AC:22:0B ASUSTek COMPUTER INC.
18365 88:35:4C Transics
18366 70:9B:FC Bryton Inc.
18367 D8:2D:9B Shenzhen G.Credit Communication Technology Co., Ltd
18368 94:BF:1E eflow Inc. / Smart Device Planning and Development Division
18369 C0:A3:9E EarthCam, Inc.
18370 08:8E:4F SF Software Solutions
18371 E8:EA:DA Denkovi Assembly Electroncs LTD
18372 DC:AE:04 CELOXICA Ltd
18373 54:22:F8 zte corporation
18374 48:6E:73 Pica8, Inc.
18375 A0:CE:C8 CE LINK LIMITED
18376 90:7A:28 Beijing Morncloud Information And Technology Co. Ltd.
18377 CC:D2:9B Shenzhen Bopengfa Elec&Technology CO.,Ltd
18378 9C:4E:BF BoxCast
18379 34:A6:8C Shine Profit Development Limited
18380 78:DA:B3 GBO Technology
18381 80:BB:EB Satmap Systems Ltd
18382 94:9F:B4 ChengDu JiaFaAnTai Technology Co.,Ltd
18383 40:68:26 Thales UK Limited
18384 5C:15:E1 AIDC TECHNOLOGY (S) PTE LTD
18385 04:8D:38 Netcore Technology Inc.
18386 1C:4A:F7 AMON INC
18387 98:5D:46 PeopleNet Communication
18388 44:67:55 Orbit Irrigation
18389 78:9F:4C HOERBIGER Elektronik GmbH
18390 98:F8:C1 IDT Technology Limited
18391 F4:7A:4E Woojeon&Handan
18392 44:70:0B IFFU
18393 8C:2F:39 IBA Dosimetry GmbH
18394 B8:F8:28 Changshu Gaoshida Optoelectronic Technology Co. Ltd.
18395 58:46:8F Koncar Electronics and Informatics
18396 74:66:30 T:mi Ytti
18397 B0:FE:BD Private
18398 94:0B:D5 Himax Technologies, Inc
18399 30:05:5C Brother industries, LTD.
18400 0C:82:68 TP-LINK TECHNOLOGIES CO.,LTD.
18401 B0:17:43 EDISON GLOBAL CIRCUITS LLC
18402 90:DA:4E AVANU
18403 70:38:B4 Low Tech Solutions
18404 AC:18:26 SEIKO EPSON CORPORATION
18405 4C:80:4F Armstrong Monitoring Corp
18406 90:1D:27 zte corporation
18407 7C:D7:62 Freestyle Technology Pty Ltd
18408 D0:73:D5 LIFI LABS MANAGEMENT PTY LTD
18409 B8:C4:6F PRIMMCON INDUSTRIES INC
18410 50:5A:C6 GUANGDONG SUPER TELECOM CO.,LTD.
18411 38:A8:6B Orga BV
18412 14:13:30 Anakreon UK LLP
18413 0C:F4:05 Beijing Signalway Technologies Co.,Ltd
18414 1C:76:CA Terasic Technologies Inc.
18415 0C:11:05 Ringslink (Xiamen) Network Communication Technologies Co., Ltd
18416 94:50:47 Rechnerbetriebsgruppe
18417 D8:DC:E9 Kunshan Erlab ductless filtration system Co.,Ltd
18418 54:11:2F Sulzer Pump Solutions Finland Oy
18419 E0:DC:A0 Siemens Electrical Apparatus Ltd., Suzhou Chengdu Branch
18420 4C:55:B8 Turkcell Teknoloji
18421 08:80:39 Cisco SPVTG
18422 2C:72:C3 Soundmatters
18423 84:E4:D9 Shenzhen NEED technology Ltd.
18424 C4:48:38 Satcom Direct, Inc.
18425 54:54:14 Digital RF Corea, Inc
18426 24:EB:65 SAET I.S. S.r.l.
18427 D0:F2:7F SteadyServ Technoligies, LLC
18428 DC:64:7C C.R.S. iiMotion GmbH
18429 18:84:10 CoreTrust Inc.
18430 A0:8A:87 HuiZhou KaiYue Electronic Co.,Ltd
18431 04:BF:A8 ISB Corporation
18432 5C:84:86 Brightsource Industries Israel LTD
18433 28:CD:9C Shenzhen Dynamax Software Development Co.,Ltd.
18434 E0:ED:C7 Shenzhen Friendcom Technology Development Co., Ltd
18435 2C:F2:03 EMKO ELEKTRONIK SAN VE TIC AS
18436 24:62:78 sysmocom - systems for mobile communications GmbH
18437 F4:58:42 Boxx TV Ltd
18438 A8:61:AA Cloudview Limited
18439 C8:93:46 MXCHIP Company Limited
18440 F0:F2:60 Mobitec AB
18441 14:23:D7 EUTRONIX CO., LTD.
18442 3C:FB:96 Emcraft Systems LLC
18443 08:1F:3F WondaLink Inc.
18444 DC:6F:08 Bay Storage Technology
18445 E4:92:E7 Gridlink Tech. Co.,Ltd.
18446 60:BB:0C Beijing HuaqinWorld Technology Co,Ltd
18447 70:E0:27 HONGYU COMMUNICATION TECHNOLOGY LIMITED
18448 E8:80:D8 GNTEK Electronics Co.,Ltd.
18449 18:88:57 Beijing Jinhong Xi-Dian Information Technology Corp.
18450 28:79:94 Realplay Digital Technology(Shenzhen) Co.,Ltd
18451 10:5C:3B Perma-Pipe, Inc.
18452 40:C4:D6 ChongQing Camyu Technology Development Co.,Ltd.
18453 A0:EB:76 AirCUVE Inc.
18454 6C:61:26 Rinicom Holdings
18455 C0:4D:F7 SERELEC
18456 EC:D0:40 GEA Farm Technologies GmbH
18457 00:59:07 LenovoEMC Products USA, LLC
18458 78:B3:CE Elo touch solutions
18459 A8:FB:70 WiseSec L.t.d
18460 30:F3:1D zte corporation
18461 E4:77:6B AARTESYS AG
18462 5C:33:5C Swissphone Telecom AG
18463 A4:FC:CE Security Expert Ltd.
18464 E0:CE:C3 ASKEY COMPUTER CORP
18465 5C:43:D2 HAZEMEYER
18466 D8:19:CE Telesquare
18467 D8:09:C3 Cercacor Labs
18468 84:ED:33 BBMC Co.,Ltd
18469 68:1E:8B InfoSight Corporation
18470 C0:44:E3 Shenzhen Sinkna Electronics Co., LTD
18471 08:F1:B7 Towerstream Corpration
18472 20:85:8C Assa
18473 18:7A:93 AMICCOM Electronics Corporation
18474 94:C9:62 Teseq AG
18475 38:43:69 Patrol Products Consortium LLC
18476 D0:8B:7E Passif Semiconductor
18477 68:86:E7 Orbotix, Inc.
18478 2C:E8:71 Alert Metalguard ApS
18479 58:D0:71 BW Broadcast
18480 C0:A0:C7 FAIRFIELD INDUSTRIES
18481 98:20:8E Definium Technologies
18482 70:4A:E4 Rinstrum Pty Ltd
18483 68:B8:D9 Act KDE, Inc.
18484 F8:48:97 Hitachi, Ltd.
18485 74:E4:24 APISTE CORPORATION
18486 58:D6:D3 Dairy Cheq Inc
18487 68:FB:95 Generalplus Technology Inc.
18488 E4:C1:46 Objetivos y Servicios de Valor A
18489 D4:BF:2D SE Controls Asia Pacific Ltd
18490 C4:5D:D8 HDMI Forum
18491 C4:4E:AC Shenzhen Shiningworth Technology Co., Ltd.
18492 C4:58:C2 Shenzhen TATFOOK Technology Co., Ltd.
18493 44:18:4F Fitview
18494 8C:76:C1 Goden Tech Limited
18495 DC:2A:14 Shanghai Longjing Technology Co.
18496 0C:19:1F Inform Electronik
18497 08:0F:FA KSP INC.
18498 EC:FC:55 A. Eberle GmbH & Co. KG
18499 0C:8C:DC Suunto Oy
18500 20:B5:C6 Mimosa Networks
18501 AC:3C:B4 Nilan A/S
18502 A8:30:AD Wei Fang Goertek Electronics Co.,Ltd
18503 80:07:A2 Esson Technology Inc.
18504 2C:35:57 ELLIY Power CO..Ltd
18505 6C:5A:34 Shenzhen Haitianxiong Electronic Co., Ltd.
18506 48:5A:3F WISOL
18507 70:F1:E5 Xetawave LLC
18508 C0:AA:68 OSASI Technos Inc.
18509 B8:29:F7 Blaster Tech
18510 00:C1:4F DDL Co,.ltd.
18511 5C:E0:CA FeiTian United (Beijing) System Technology Co., Ltd.
18512 9C:98:11 Guangzhou Sunrise Electronics Development Co., Ltd
18513 A0:FE:91 AVAT Automation GmbH
18514 58:09:E5 Kivic Inc.
18515 74:EC:F1 Acumen
18516 68:15:D3 Zaklady Elektroniki i Mechaniki Precyzyjnej R&G S.A.
18517 60:19:29 VOLTRONIC POWER TECHNOLOGY(SHENZHEN) CORP.
18518 C0:BD:42 ZPA Smart Energy a.s.
18519 48:B2:53 Marketaxess Corporation
18520 60:D2:B9 REALAND BIO CO., LTD.
18521 20:67:B1 Pluto inc.
18522 08:7D:21 Altasec technology corporation
18523 30:FD:11 MACROTECH (USA) INC.
18524 F8:05:1C DRS Imaging and Targeting Solutions
18525 60:32:F0 Mplus technology
18526 74:99:75 IBM Corporation
18527 0C:DC:CC Inala Technologies
18528 F0:AC:A4 HBC-radiomatic
18529 14:DB:85 S NET MEDIA
18530 D4:93:A0 Fidelix Oy
18531 AC:72:36 Lexking Technology Co., Ltd.
18532 CC:B3:F8 FUJITSU ISOTEC LIMITED
18533 3C:D7:DA SK Mtek microelectronics(shenzhen)limited
18534 E8:6D:54 Digit Mobile Inc
18535 98:57:D3 HON HAI-CCPBG PRECISION IND.CO.,LTD.
18536 9C:8D:1A INTEG process group inc
18537 74:2D:0A Norfolk Elektronik AG
18538 48:03:62 DESAY ELECTRONICS(HUIZHOU)CO.,LTD
18539 B0:35:8D Nokia Corporation
18540 0C:F3:61 Java Information
18541 34:BD:FA Cisco SPVTG
18542 8C:EE:C6 Precepscion Pty. Ltd.
18543 EC:D9:50 IRT SA
18544 74:27:3C ChangYang Technology (Nanjing) Co., LTD
18545 08:7C:BE Quintic Corp.
18546 C4:AD:21 MEDIAEDGE Corporation
18547 DC:BF:90 HUIZHOU QIAOXING TELECOMMUNICATION INDUSTRY CO.,LTD.
18548 E0:F5:CA CHENG UEI PRECISION INDUSTRY CO.,LTD.
18549 1C:5C:60 Shenzhen Belzon Technology Co.,LTD.
18550 2C:ED:EB Alpheus Digital Company Limited
18551 38:1C:4A SIMCom Wireless Solutions Co.,Ltd.
18552 C8:DE:51 Integra Networks, Inc.
18553 90:1E:DD GREAT COMPUTER CORPORATION
18554 2C:62:89 Regenersis (Glenrothes) Ltd
18555 F0:93:C5 Garland Technology
18556 4C:09:B4 zte corporation
18557 B8:B9:4E Shenzhen iBaby Labs, Inc.
18558 00:F4:03 Orbis Systems Oy
18559 AC:C6:98 Kohzu Precision Co., Ltd.
18560 90:70:25 Garea Microsys Co.,Ltd.
18561 50:2E:CE Asahi Electronics Co.,Ltd
18562 44:0C:FD NetMan Co., Ltd.
18563 7C:EB:EA ASCT
18564 08:5B:0E Fortinet, Inc.
18565 4C:0F:C7 Earda Electronics Co.,Ltd
18566 64:C9:44 LARK Technologies, Inc
18567 68:69:F2 ComAp s.r.o.
18568 B8:89:CA ILJIN ELECTRIC Co., Ltd.
18569 B8:5A:FE Handaer Communication Technology (Beijing) Co., Ltd
18570 60:46:16 XIAMEN VANN INTELLIGENT CO., LTD
18571 EC:D9:25 RAMI
18572 04:9F:06 Smobile Co., Ltd.
18573 D8:06:D1 Honeywell Fire System (Shanghai) Co,. Ltd.
18574 68:72:51 Ubiquiti Networks
18575 8C:6A:E4 Viogem Limited
18576 20:C1:AF i Wit Digital Co., Limited
18577 D8:8A:3B UNIT-EM
18578 BC:D9:40 ASR Co,.Ltd.
18579 EC:49:93 Qihan Technology Co., Ltd
18580 B0:AC:FA FUJITSU LIMITED
18581 1C:95:9F Veethree Electronics And Marine LLC
18582 18:D9:49 Qvis Labs, LLC
18583 64:62:23 Cellient Co., Ltd.
18584 AC:F0:B2 Becker Electronics Taiwan Ltd.
18585 10:A9:32 Beijing Cyber Cloud Technology Co. ,Ltd.
18586 C4:7B:A3 NAVIS Inc.
18587 A8:17:58 Elektronik System i Umeå AB
18588 44:34:8F MXT INDUSTRIAL LTDA
18589 9C:01:11 Shenzhen Newabel Electronic Co., Ltd.
18590 0C:A1:38 Blinq Wireless Inc.
18591 34:81:37 UNICARD SA
18592 64:F2:42 Gerdes Aktiengesellschaft
18593 60:F2:81 TRANWO TECHNOLOGY CO., LTD.
18594 B0:E8:92 SEIKO EPSON CORPORATION
18595 64:24:00 Xorcom Ltd.
18596 4C:AA:16 AzureWave Technologies (Shanghai) Inc.
18597 1C:6B:CA Mitsunami Co., Ltd.
18598 08:37:9C Topaz Co. LTD.
18599 E8:3E:FB GEODESIC LTD.
18600 40:16:FA EKM Metering
18601 3C:36:3D Nokia Corporation
18602 BC:02:00 Stewart Audio
18603 1C:97:3D PRICOM Design
18604 F0:07:86 Shandong Bittel Electronics Co., Ltd
18605 88:5C:47 Alcatel Lucent
18606 E0:F9:BE Cloudena Corp.
18607 3C:C1:F6 Melange Systems Pvt. Ltd.
18608 54:E6:3F ShenZhen LingKeWeiEr Technology Co., Ltd.
18609 F8:8C:1C KAISHUN ELECTRONIC TECHNOLOGY CO., LTD. BEIJING
18610 94:01:49 AutoHotBox
18611 C0:35:BD Velocytech Aps
18612 F8:97:CF DAESHIN-INFORMATION TECHNOLOGY CO., LTD.
18613 38:3F:10 DBL Technology Ltd.
18614 8C:68:78 Nortek-AS
18615 80:16:B7 Brunel University
18616 9C:61:1D Omni-ID USA, Inc.
18617 78:BE:BD STULZ GmbH
18618 3C:91:74 ALONG COMMUNICATION TECHNOLOGY
18619 B8:E9:37 Sonos, Inc.
18620 E8:D0:FA MKS Instruments Deutschland GmbH
18621 98:26:2A Applied Research Associates, Inc
18622 B0:D2:F5 Vello Systems, Inc.
18623 C8:9F:42 VDII Innovation AB
18624 A4:18:75 Cisco Systems, Inc
18625 64:0E:94 Pluribus Networks, Inc.
18626 6C:E9:83 Gastron Co., LTD.
18627 0C:B4:EF Digience Co.,Ltd.
18628 D0:DB:32 Nokia Corporation
18629 60:90:84 DSSD Inc
18630 A4:E7:31 Nokia Corporation
18631 08:08:EA AMSC
18632 C0:5E:79 SHENZHEN HUAXUN ARK TECHNOLOGIES CO.,LTD
18633 A4:93:4C Cisco Systems, Inc
18634 E8:54:84 NEO Information Systems Co., Ltd.
18635 74:AE:76 iNovo Broadband, Inc.
18636 60:B9:33 Deutron Electronics Corp.
18637 38:EE:9D Anedo Ltd.
18638 80:CE:B1 Theissen Training Systems GmbH
18639 3C:38:88 ConnectQuest, llc
18640 08:BE:09 Astrol Electronic AG
18641 D8:B8:F6 Nantworks
18642 60:44:F5 Easy Digital Ltd.
18643 AC:51:EE Cambridge Communication Systems Ltd
18644 10:E4:AF APR, LLC
18645 B0:BD:6D Echostreams Innovative Solutions
18646 F0:D1:4F LINEAR LLC
18647 AC:3D:75 HANGZHOU ZHIWAY TECHNOLOGIES CO.,LTD.
18648 14:1A:51 Treetech Sistemas Digitais
18649 84:57:87 DVR C&C Co., Ltd.
18650 F4:36:E1 Abilis Systems SARL
18651 58:7F:C8 S2M
18652 C4:98:05 Minieum Networks, Inc
18653 90:F4:C1 Rand McNally
18654 18:19:3F Tamtron Oy
18655 F8:F7:FF SYN-TECH SYSTEMS INC
18656 F4:73:CA Conversion Sound Inc.
18657 00:E8:AB Meggitt Training Systems, Inc.
18658 18:42:1D Private
18659 78:61:7C MITSUMI ELECTRIC CO.,LTD
18660 C4:01:B1 SeekTech INC
18661 1C:5F:FF Beijing Ereneben Information Technology Co.,Ltd Shenzhen Branch
18662 C0:C9:46 MITSUYA LABORATORIES INC.
18663 AC:C2:EC CLT INT'L IND. CORP.
18664 70:2F:4B PolyVision Inc.
18665 74:14:89 SRT Wireless
18666 94:CA:0F Honeywell Analytics
18667 84:8D:84 Rajant Corporation
18668 D8:33:7F Office FA.com Co.,Ltd.
18669 7C:EF:8A Inhon International Ltd.
18670 84:AF:1F Beat System Service Co,. Ltd.
18671 10:0D:2F Online Security Pty. Ltd.
18672 40:8B:07 Actiontec Electronics, Inc
18673 98:02:84 Theobroma Systems GmbH
18674 E0:3C:5B SHENZHEN JIAXINJIE ELECTRON CO.,LTD
18675 64:55:63 Intelight Inc.
18676 C4:67:B5 Libratone A/S
18677 A4:EF:52 Telewave Co., Ltd.
18678 F4:04:4C ValenceTech Limited
18679 1C:BB:A8 OJSC Ufimskiy Zavod Promsvyaz
18680 50:60:28 Xirrus Inc.
18681 24:B6:57 Cisco Systems, Inc
18682 94:0B:2D NetView Technologies(Shenzhen) Co., Ltd
18683 30:6E:5C Validus Technologies
18684 E8:43:B6 QNAP Systems, Inc.
18685 5C:C9:D3 PALLADIUM ENERGY ELETRONICA DA AMAZONIA LTDA
18686 40:7B:1B Mettle Networks Inc.
18687 64:E1:61 DEP Corp.
18688 C8:A6:20 Nebula, Inc
18689 98:90:80 Linkpower Network System Inc Ltd.
18690 00:64:A6 Maquet CardioVascular
18691 3C:4E:47 Etronic A/S
18692 C8:F9:F9 Cisco Systems, Inc
18693 F0:F7:55 Cisco Systems, Inc
18694 B0:1C:91 Elim Co
18695 0C:A2:F4 Chameleon Technology (UK) Limited
18696 84:6A:ED Wireless Tsukamoto.,co.LTD
18697 D8:E9:52 KEOPSYS
18698 3C:B9:A6 Belden Deutschland GmbH
18699 34:40:B5 IBM
18700 90:D7:4F Bookeen
18701 90:56:82 Lenbrook Industries Limited
18702 CC:6D:EF TJK Tietolaite Oy
18703 3C:E6:24 LG Display
18704 D8:F0:F2 Zeebo Inc
18705 B0:CF:4D MI-Zone Technology Ireland
18706 14:36:05 Nokia Corporation
18707 B8:74:24 Viessmann Elektronik GmbH
18708 C8:1A:FE DLOGIC GmbH
18709 9C:53:CD ENGICAM s.r.l.
18710 DC:C1:01 SOLiD Technologies, Inc.
18711 AC:6F:BB TATUNG Technology Inc.
18712 18:03:FA IBT Interfaces
18713 60:86:45 Avery Weigh-Tronix, LLC
18714 54:1D:FB Freestyle Energy Ltd
18715 9C:F6:7D Ricardo Prague, s.r.o.
18716 A0:E2:01 AVTrace Ltd.(China)
18717 04:EE:91 x-fabric GmbH
18718 18:38:25 Wuhan Lingjiu High-tech Co.,Ltd.
18719 54:04:A6 ASUSTek COMPUTER INC.
18720 F8:33:76 Good Mind Innovation Co., Ltd.
18721 C4:60:44 Everex Electronics Limited
18722 64:54:22 Equinox Payments
18723 D4:12:BB Quadrant Components Inc. Ltd
18724 40:E7:93 Shenzhen Siviton Technology Co.,Ltd
18725 2C:67:FB ShenZhen Zhengjili Electronics Co., LTD
18726 D8:97:60 C2 Development, Inc.
18727 1C:B1:7F NEC Platforms, Ltd.
18728 94:2E:17 Schneider Electric Canada Inc
18729 B8:96:74 AllDSP GmbH & Co. KG
18730 6C:A6:82 EDAM information & communications
18731 48:A2:2D Shenzhen Huaxuchang Telecom Technology Co.,Ltd
18732 50:ED:94 EGATEL SL
18733 B8:74:47 Convergence Technologies
18734 70:A6:6A Prox Dynamics AS
18735 DC:17:5A Hitachi High-Technologies Corporation
18736 5C:07:6F Thought Creator
18737 3C:0F:C1 KBC Networks
18738 58:E6:36 EVRsafe Technologies
18739 90:D1:1B Palomar Medical Technologies
18740 CC:60:BB Empower RF Systems
18741 24:49:7B Innovative Converged Devices Inc
18742 EC:BD:09 FUSION Electronics Ltd
18743 54:84:7B Digital Devices GmbH
18744 70:5C:AD Konami Gaming Inc
18745 78:89:73 CMC
18746 DC:CE:41 FE GLOBAL HONG KONG LIMITED
18747 4C:77:4F Embedded Wireless Labs
18748 20:37:06 Cisco Systems, Inc
18749 7C:4C:58 Scale Computing, Inc.
18750 FC:C2:3D Atmel Corporation
18751 7C:1E:52 Microsoft
18752 DC:B4:C4 Microsoft XCG
18753 74:FD:A0 Compupal (Group) Corporation
18754 C0:29:F3 XySystem
18755 48:F3:17 Private
18756 B0:7D:62 Dipl.-Ing. H. Horstmann GmbH
18757 68:97:4B Shenzhen Costar Electronics Co. Ltd.
18758 B8:BB:6D ENERES Co.,Ltd.
18759 64:5D:D7 Shenzhen Lifesense Medical Electronics Co., Ltd.
18760 D4:5A:B2 Galleon Systems
18761 C4:01:42 MaxMedia Technology Limited
18762 A0:6E:50 Nanotek Elektronik Sistemler Ltd. Sti.
18763 18:2C:91 Concept Development, Inc.
18764 EC:46:70 Meinberg Funkuhren GmbH & Co. KG
18765 B4:0B:7A Brusa Elektronik AG
18766 BC:76:4E Rackspace US, Inc.
18767 C4:EE:AE VSS Monitoring
18768 24:37:EF EMC Electronic Media Communication SA
18769 D4:F6:3F IEA S.R.L.
18770 4C:02:89 LEX COMPUTECH CO., LTD
18771 C0:E5:4E DENX Computer Systems GmbH
18772 E4:35:FB Sabre Technology (Hull) Ltd
18773 00:CD:90 MAS Elektronik AG
18774 A8:BD:1A Honey Bee (Hong Kong) Limited
18775 AC:CC:8E Axis Communications AB
18776 18:7C:81 Valeo Vision Systems
18777 DC:1E:A3 Accensus LLC
18778 A4:01:30 ABIsystems Co., LTD
18779 68:F1:25 Data Controls Inc.
18780 70:6F:81 Private
18781 30:E4:DB Cisco Systems, Inc
18782 74:2B:0F Infinidat Ltd.
18783 28:0C:B8 Mikrosay Yazilim ve Elektronik A.S.
18784 A0:6C:EC RIM
18785 44:3E:B2 DEOTRON Co., LTD.
18786 8C:B8:2C IPitomy Communications
18787 80:7D:E3 Chongqing Sichuan Instrument Microcircuit Co.LTD.
18788 1C:8E:8E DB Communication & Systems Co., ltd.
18789 F0:02:2B Chrontel
18790 00:7F:28 Actiontec Electronics, Inc
18791 0C:92:4E Rice Lake Weighing Systems
18792 40:04:0C A&T
18793 A0:16:5C Triteka LTD
18794 90:B9:7D Johnson Outdoors Marine Electronics d/b/a Minnkota
18795 88:21:E3 Nebusens, S.L.
18796 B0:F1:BC Dhemax Ingenieros Ltda
18797 3C:09:6D Powerhouse Dynamics
18798 CC:50:1C KVH Industries, Inc.
18799 AC:6F:D9 Valueplus Inc.
18800 A4:E3:91 DENY FONTAINE
18801 04:A8:2A Nokia Corporation
18802 48:D8:FE ClarIDy Solutions, Inc.
18803 70:B2:65 Hiltron s.r.l.
18804 84:D9:C8 Unipattern Co.,
18805 1C:95:5D I-LAX ELECTRONICS INC.
18806 94:AA:B8 Joview(Beijing) Technology Co. Ltd.
18807 18:B3:BA Netlogic AB
18808 F4:3E:9D Benu Networks, Inc.
18809 64:69:BC Hytera Communications Co .,ltd
18810 64:09:4C Beijing Superbee Wireless Technology Co.,Ltd
18811 F0:AE:51 Xi3 Corp
18812 78:2E:EF Nokia Corporation
18813 78:51:0C LiveU Ltd.
18814 30:61:18 Paradom Inc.
18815 C8:45:29 IMK Networks Co.,Ltd
18816 A8:8C:EE MicroMade Galka i Drozdz sp.j.
18817 20:40:05 feno GmbH
18818 6C:81:FE Mitsuba Corporation
18819 E8:F9:28 RFTECH SRL
18820 70:3A:D8 Shenzhen Afoundry Electronic Co., Ltd
18821 4C:98:EF Zeo
18822 DC:A6:BD Beijing Lanbo Technology Co., Ltd.
18823 58:E8:08 AUTONICS CORPORATION
18824 B8:C7:16 Fiberhome Telecommunication Technologies Co.,LTD
18825 80:58:C5 NovaTec Kommunikationstechnik GmbH
18826 C0:EA:E4 Sonicwall
18827 F8:A9:DE PUISSANCE PLUS
18828 D4:F0:27 Navetas Energy Management
18829 5C:0C:BB CELIZION Inc.
18830 B8:87:1E Good Mind Industries Co., Ltd.
18831 F8:EA:0A Dipl.-Math. Michael Rauch
18832 BC:5F:F4 ASRock Incorporation
18833 A4:B3:6A JSC SDO Chromatec
18834 90:5F:8D modas GmbH
18835 E0:C9:22 Jireh Energy Tech., Ltd.
18836 28:40:1A C8 MediSensors, Inc.
18837 DC:3C:84 Ticom Geomatics, Inc.
18838 E8:CC:32 Micronet LTD
18839 9C:6A:BE QEES ApS.
18840 34:29:EA MCD ELECTRONICS SP. Z O.O.
18841 D4:3A:E9 DONGGUAN ipt INDUSTRIAL CO., LTD
18842 AC:C9:35 Ness Corporation
18843 7C:4A:82 Portsmith LLC
18844 2C:00:33 EControls, LLC
18845 E0:F2:11 Digitalwatt
18846 04:32:F4 Partron
18847 AC:19:9F SUNGROW POWER SUPPLY CO.,LTD.
18848 1C:AA:07 Cisco Systems, Inc
18849 30:8C:FB Dropcam
18850 CC:F8:41 Lumewave
18851 70:14:04 Limited Liability Company
18852 1C:35:F1 NEW Lift Neue Elektronische Wege Steuerungsbau GmbH
18853 CC:D9:E9 SCR Engineers Ltd.
18854 F0:DB:30 Yottabyte
18855 9C:31:B6 Kulite Semiconductor Products Inc
18856 5C:6A:7D KENTKART EGE ELEKTRONIK SAN. VE TIC. LTD. STI.
18857 04:FF:51 NOVAMEDIA INNOVISION SP. Z O.O.
18858 FC:D4:F2 The Coca Cola Company
18859 C4:71:FE Cisco Systems, Inc
18860 34:08:04 D-Link Corporation
18861 B4:4C:C2 NR ELECTRIC CO., LTD
18862 08:4E:BF Broad Net Mux Corporation
18863 48:CB:6E Cello Electronics (UK) Ltd
18864 EC:3B:F0 NovelSat
18865 A8:6A:6F RIM
18866 40:22:ED Digital Projection Ltd
18867 08:17:F4 IBM Corp
18868 C4:D4:89 JiangSu Joyque Information Industry Co.,Ltd
18869 1C:7C:11 EID
18870 F4:3E:61 Shenzhen Gongjin Electronics Co., Ltd
18871 B0:B3:2B Slican Sp. z o.o.
18872 58:42:E4 Baxter International Inc
18873 8C:A0:48 Beijing NeTopChip Technology Co.,LTD
18874 80:4F:58 ThinkEco, Inc.
18875 B0:65:63 Shanghai Railway Communication Factory
18876 34:9A:0D ZBD Displays Ltd
18877 A0:B5:DA HongKong THTF Co., Ltd
18878 CC:CD:64 SM-Electronic GmbH
18879 E8:28:77 TMY Co., Ltd.
18880 AC:81:12 Gemtek Technology Co., Ltd.
18881 6C:A9:06 Telefield Ltd
18882 3C:02:B1 Creation Technologies LP
18883 E4:6C:21 messMa GmbH
18884 04:70:BC Globalstar Inc.
18885 E0:5F:B9 Cisco Systems, Inc
18886 08:17:35 Cisco Systems, Inc
18887 20:FE:CD System In Frontier Inc.
18888 94:D0:19 Cydle Corp.
18889 2C:A1:57 acromate, Inc.
18890 70:DD:A1 Tellabs
18891 30:EB:25 INTEK DIGITAL
18892 BC:3E:13 Accordance Systems Inc.
18893 04:55:CA BriView (Xiamen) Corp.
18894 D4:5D:42 Nokia Corporation
18895 BC:28:46 NextBIT Computing Pvt. Ltd.
18896 44:25:BB Bamboo Entertainment Corporation
18897 B8:A8:AF Logic S.p.A.
18898 64:81:25 Alphatron Marine BV
18899 04:26:05 GFR Gesellschaft für Regelungstechnik und Energieeinsparung mbH
18900 9C:64:5E Harman Consumer Group
18901 78:CD:8E SMC Networks Inc
18902 5C:9A:D8 FUJITSU LIMITED
18903 14:4C:1A Max Communication GmbH
18904 FC:E5:57 Nokia Corporation
18905 BC:6E:76 Green Energy Options Ltd
18906 10:8C:CF Cisco Systems, Inc
18907 74:E0:6E Ergophone GmbH
18908 18:AF:9F DIGITRONIC Automationsanlagen GmbH
18909 EC:46:44 TTK SAS
18910 DC:D8:7F Shenzhen JoinCyber Telecom Equipment Ltd
18911 B0:89:91 LGE
18912 44:DC:CB SEMINDIA SYSTEMS PVT LTD
18913 90:D9:2C HUG-WITSCHI AG
18914 B4:28:F1 E-Prime Co., Ltd.
18915 B4:74:9F ASKEY COMPUTER CORP
18916 AC:2F:A8 Humannix Co.,Ltd.
18917 7C:4A:A8 MindTree Wireless PVT Ltd
18918 C8:A7:0A Verizon Business
18919 30:4E:C3 Tianjin Techua Technology Co., Ltd.
18920 BC:43:77 Hang Zhou Huite Technology Co.,ltd.
18921 A8:1B:18 XTS CORP
18922 04:E2:F8 AEP Ticketing solutions srl
18923 8C:51:05 Shenzhen ireadygo Information Technology CO.,LTD.
18924 28:E2:97 Shanghai InfoTM Microelectronics Co.,Ltd.
18925 D0:93:F8 Stonestreet One LLC
18926 1C:33:4D ITS Telecom
18927 60:9E:64 Vivonic GmbH
18928 D4:4F:80 Kemper Digital GmbH
18929 34:68:4A Teraworks Co., Ltd.
18930 0C:C6:AC DAGS
18931 D8:2A:7E Nokia Corporation
18932 5C:BD:9E HONGKONG MIRACLE EAGLE TECHNOLOGY(GROUP) LIMITED
18933 74:38:89 ANNAX Anzeigesysteme GmbH
18934 64:7F:DA TEKTELIC Communications Inc.
18935 90:61:0C Fida International (S) Pte Ltd
18936 3C:5F:01 Synerchip Co., Ltd.
18937 70:8B:78 citygrow technology co., ltd
18938 74:CD:0C Smith Myers Communications Ltd.
18939 B8:EE:79 YWire Technologies, Inc.
18940 40:C2:45 Shenzhen Hexicom Technology Co., Ltd.
18941 70:76:F0 LevelOne Communications (India) Private Limited
18942 48:C8:B6 SysTec GmbH
18943 30:38:55 Nokia Corporation
18944 9C:45:63 DIMEP Sistemas
18945 E4:27:71 Smartlabs
18946 C4:EE:F5 Oclaro, Inc.
18947 08:76:FF Thomson Telecom Belgium
18948 40:1D:59 Biometric Associates, LP
18949 4C:2C:80 Beijing Skyway Technologies Co.,Ltd
18950 08:D2:9A Proformatique
18951 90:D8:52 Comtec Co., Ltd.
18952 28:06:1E NINGBO GLOBAL USEFUL ELECTRIC CO.,LTD
18953 40:37:AD Macro Image Technology, Inc.
18954 64:E8:E6 global moisture management system
18955 34:A1:83 AWare, Inc
18956 74:0A:BC JSJS Designs (Europe) Limited
18957 58:8D:09 Cisco Systems, Inc
18958 34:21:09 Jensen Scandinavia AS
18959 08:FA:E0 Fohhn Audio AG
18960 50:6F:9A Wi-Fi Alliance
18961 7C:F0:98 Bee Beans Technologies, Inc.
18962 9C:75:14 Wildix srl
18963 BC:7D:D1 Radio Data Comms
18964 28:06:8D ITL, LLC
18965 F0:D7:67 Axema Passagekontroll AB
18966 A4:AE:9A Maestro Wireless Solutions ltd.
18967 5C:D1:35 Xtreme Power Systems
18968 9C:28:BF Continental Automotive Czech Republic s.r.o.
18969 20:6F:EC Braemac CA LLC
18970 64:A2:32 OOO Samlight
18971 A0:82:C7 P.T.I Co.,LTD
18972 F4:1F:0B YAMABISHI Corporation
18973 44:7C:7F Innolight Technology Corporation
18974 FC:75:E6 Handreamnet
18975 20:B0:F7 Enclustra GmbH
18976 40:13:D9 Global ES
18977 F4:DC:4D Beijing CCD Digital Technology Co., Ltd
18978 F8:B5:99 Guangzhou CHNAVS Digital Technology Co.,Ltd
18979 7C:39:20 SSOMA SECURITY
18980 9C:77:AA NADASNV
18981 D8:B6:C1 NetworkAccountant, Inc.
18982 58:D0:8F IEEE 1904.1 Working Group
18983 3C:99:F7 Lansentechnology AB
18984 94:E7:11 Xirka Dama Persada PT
18985 50:7D:02 BIODIT
18986 F4:42:27 S & S Research Inc.
18987 D4:CB:AF Nokia Corporation
18988 CC:09:C8 IMAQLIQ LTD
18989 C4:B5:12 General Electric Digital Energy
18990 E0:25:38 Titan Pet Products
18991 CC:7A:30 CMAX Wireless Co., Ltd.
18992 D8:76:0A Escort, Inc.
18993 60:63:FD Transcend Communication Beijing Co.,Ltd.
18994 E0:8A:7E Exponent
18995 80:C6:CA Endian s.r.l.
18996 F8:DA:E2 Beta LaserMike
18997 E8:04:62 Cisco Systems, Inc
18998 70:B0:8C Shenou Communication Equipment Co.,Ltd
18999 F0:E5:C3 Drägerwerk AG & Co. KG aA
19000 44:61:32 ecobee inc
19001 A4:B2:A7 Adaxys Solutions AG
19002 F4:55:E0 Niceway CNC Technology Co.,Ltd.Hunan Province
19003 AC:4F:FC SVS-VISTEK GmbH
19004 FC:7C:E7 FCI USA LLC
19005 14:54:12 Entis Co., Ltd.
19006 80:7D:1B Neosystem Co. Ltd.
19007 14:FE:AF SAGITTAR LIMITED
19008 7C:B5:42 ACES Technology
19009 40:CD:3A Z3 Technology
19010 04:5D:56 camtron industrial inc.
19011 AC:83:F0 ImmediaTV Corporation
19012 6C:E0:B0 SOUND4
19013 00:33:6C SynapSense Corporation
19014 E4:46:BD C&C TECHNIC TAIWAN CO., LTD.
19015 74:15:E2 Tri-Sen Systems Corporation
19016 F0:BD:F1 Sipod Inc.
19017 28:89:15 CashGuard Sverige AB
19018 18:06:75 DILAX Intelcom GmbH
19019 40:61:8E Stella-Green Co
19020 9C:4E:20 Cisco Systems, Inc
19021 40:84:93 Clavister AB
19022 1C:3A:4F AccuSpec Electronics, LLC
19023 58:E7:47 Deltanet AG
19024 D8:75:33 Nokia Corporation
19025 EC:FE:7E BlueRadios, Inc.
19026 7C:6F:06 Caterpillar Trimble Control Technologies
19027 7C:76:73 ENMAS GmbH
19028 6C:6F:18 Stereotaxis, Inc.
19029 00:35:32 Electro-Metrics Corporation
19030 44:37:6F Young Electric Sign Co
19031 8C:64:0B Beyond Devices d.o.o.
19032 F0:43:35 DVN(Shanghai)Ltd.
19033 A4:79:E4 KLINFO Corp
19034 00:3C:C5 WONWOO Engineering Co., Ltd
19035 E8:5E:53 Infratec Datentechnik GmbH
19036 C8:48:F5 MEDISON Xray Co., Ltd
19037 1C:17:D3 Cisco Systems, Inc
19038 AC:BE:75 Ufine Technologies Co.,Ltd.
19039 D8:71:57 Lenovo Mobile Communication Technology Ltd.
19040 80:66:29 Prescope Technologies CO.,LTD.
19041 90:F2:78 Radius Gateway
19042 68:CA:00 Octopus Systems Limited
19043 4C:30:89 Thales Transportation Systems GmbH
19044 0C:7D:7C Kexiang Information Technology Co, Ltd.
19045 70:D8:80 Upos System sp. z o.o.
19046 0C:C9:C6 Samwin Hong Kong Limited
19047 B4:58:61 CRemote, LLC
19048 AC:67:06 Ruckus Wireless
19049 B8:65:3B Bolymin, Inc.
19050 B0:97:3A E-Fuel Corporation
19051 A0:5D:C1 TMCT Co., LTD.
19052 E0:CA:4D Shenzhen Unistar Communication Co.,LTD
19053 E4:97:F0 Shanghai VLC Technologies Ltd. Co.
19054 20:4E:6B Axxana(israel) ltd
19055 50:F0:03 Open Stack, Inc.
19056 0C:17:F1 TELECSYS
19057 98:BC:99 Edeltech Co.,Ltd.
19058 E8:E1:E2 Energotest
19059 FC:68:3E Directed Perception, Inc
19060 6C:18:11 Decatur Electronics
19061 94:59:2D EKE Building Technology Systems Ltd
19062 9C:C0:77 PrintCounts, LLC
19063 A8:5B:B0 Shenzhen Dehoo Technology Co.,Ltd
19064 08:9F:97 LEROY AUTOMATION
19065 4C:5D:CD Oy Finnish Electric Vehicle Technologies Ltd
19066 10:09:0C Janome Sewing Machine Co., Ltd.
19067 EC:B1:06 Acuro Networks, Inc
19068 7C:2E:0D Blackmagic Design
19069 08:F6:F8 GET Engineering
19070 6C:DC:6A Promethean Limited
19071 90:55:AE Ericsson, EAB/RWI/K
19072 2C:3A:28 Fagor Electrónica
19073 90:A7:C1 Pakedge Device and Software Inc.
19074 80:F5:93 IRCO Sistemas de Telecomunicación S.A.
19075 6C:FD:B9 Proware Technologies Co Ltd.
19076 6C:FF:BE MPB Communications Inc.
19077 58:3C:C6 Omneality Ltd.
19078 00:97:FF Heimann Sensor GmbH
19079 34:BA:51 Se-Kure Controls, Inc.
19080 44:A8:C2 SEWOO TECH CO., LTD
19081 8C:D6:28 Ikor Metering
19082 48:1B:D2 Intron Scientific co., ltd.
19083 00:93:63 Uni-Link Technology Co., Ltd.
19084 64:DB:18 OpenPattern
19085 58:05:56 Elettronica GF S.r.L.
19086 88:B6:27 Gembird Europe BV
19087 D4:1F:0C JAI Oy
19088 3C:4C:69 Infinity System S.L.
19089 44:E4:9A OMNITRONICS PTY LTD
19090 74:F0:7D BnCOM Co.,Ltd
19091 10:65:A3 Core Brands LLC
19092 20:41:5A Smarteh d.o.o.
19093 70:3C:39 SEAWING Kft
19094 14:A8:6B ShenZhen Telacom Science&Technology Co., Ltd
19095 0C:C3:A7 Meritec
19096 4C:32:2D TELEDATA NETWORKS
19097 B8:B1:C7 BT&COM CO.,LTD
19098 A0:BF:A5 CORESYS
19099 D4:11:D6 ShotSpotter, Inc.
19100 7C:CB:0D Antaira Technologies, LLC
19101 EC:E9:F8 Guang Zhou TRI-SUN Electronics Technology Co., Ltd
19102 9C:AF:CA Cisco Systems, Inc
19103 34:CE:94 Parsec (Pty) Ltd
19104 AC:E9:AA Hay Systems Ltd
19105 08:2A:D0 SRD Innovations Inc.
19106 24:82:8A Prowave Technologies Ltd.
19107 6C:0F:6A JDC Tech Co., Ltd.
19108 6C:F0:49 GIGA-BYTE TECHNOLOGY CO.,LTD.
19109 D4:C7:66 Acentic GmbH
19110 48:EB:30 ETERNA TECHNOLOGY, INC.
19111 20:7C:8F Quanta Microsystems,Inc.
19112 F8:47:2D X2gen Digital Corp. Ltd
19113 8C:59:8B C Technologies AB
19114 64:F9:70 Kenade Electronics Technology Co.,LTD.
19115 A0:40:25 Actioncable, Inc.
19116 78:99:8F MEDILINE ITALIA SRL
19117 40:EC:F8 Siemens AG
19118 F0:4B:F2 JTECH Communications, Inc.
19119 A8:CB:95 EAST BEST CO., LTD.
19120 C8:D1:D1 AGAiT Technology Corporation
19121 3C:F5:2C DSPECIALISTS GmbH
19122 04:0E:C2 ViewSonic Mobile China Limited
19123 54:03:F5 EBN Technology Corp.
19124 7C:2F:80 Gigaset Communications GmbH
19125 44:6C:24 Reallin Electronic Co.,Ltd
19126 A0:59:3A V.D.S. Video Display Systems srl
19127 A8:F9:4B Eltex Enterprise Ltd.
19128 90:6D:C8 DLG Automação Industrial Ltda
19129 48:34:3D IEP GmbH
19130 C8:C1:3C RuggedTek Hangzhou Co., Ltd
19131 60:9F:9D CloudSwitch
19132 0C:E9:36 ELIMOS srl
19133 A4:DE:50 Total Walther GmbH
19134 E8:A4:C1 Deep Sea Electronics PLC
19135 70:1A:ED ADVAS CO., LTD.
19136 64:C6:AF AXERRA Networks Ltd
19137 D8:D6:7E GSK CNC EQUIPMENT CO.,LTD
19138 A4:E7:E4 Connex GmbH
19139 AC:58:3B Human Assembler, Inc.
19140 A0:5D:E7 DIRECTV, Inc.
19141 10:CA:81 PRECIA
19142 00:3A:98 Cisco Systems, Inc
19143 70:5A:B6 COMPAL INFORMATION (KUNSHAN) CO., LTD.
19144 00:3A:9A Cisco Systems, Inc
19145 AC:BE:B6 Visualedge Technology Co., Ltd.
19146 40:A6:A4 PassivSystems Ltd
19147 90:3D:6B Zicon Technology Corp.
19148 7C:3B:D5 Imago Group
19149 B8:94:D2 Retail Innovation HTT AB
19150 DC:E7:1C AUG Elektronik GmbH
19151 88:A5:BD QPCOM INC.
19152 DC:33:50 TechSAT GmbH
19153 00:27:1E Xagyl Communications
19154 00:27:16 Adachi-Syokai Co., Ltd.
19155 00:27:15 Rebound Telecom. Co., Ltd
19156 00:27:0A IEE S.A.
19157 00:26:74 Electronic Solutions, Inc.
19158 00:26:6E Nissho-denki Co.,LTD.
19159 00:26:5B Hitron Technologies. Inc
19160 00:26:61 Irumtek Co., Ltd.
19161 00:26:57 OOO NPP EKRA
19162 00:26:4E Rail & Road Protec GmbH
19163 00:25:E6 Belgian Monitoring Systems bvba
19164 00:25:E1 SHANGHAI SEEYOO ELECTRONIC & TECHNOLOGY CO., LTD
19165 00:25:DB ATI Electronics(Shenzhen) Co., LTD
19166 00:25:D5 Robonica (Pty) Ltd
19167 00:25:C9 SHENZHEN HUAPU DIGITAL CO., LTD
19168 00:25:CE InnerSpace
19169 00:25:C2 RingBell Co.,Ltd.
19170 00:26:A0 moblic
19171 00:26:9A Carina System Co., Ltd.
19172 00:26:94 Senscient Ltd
19173 00:26:93 QVidium Technologies, Inc.
19174 00:26:8D CellTel S.p.A.
19175 00:26:8E Alta Solutions, Inc.
19176 00:26:87 corega K.K
19177 00:26:81 Interspiro AB
19178 00:26:7B GSI Helmholtzzentrum für Schwerionenforschung GmbH
19179 00:25:BB INNERINT Co., Ltd.
19180 00:25:B6 Telecom FM
19181 00:25:AF COMFILE Technology
19182 00:25:AA Beijing Soul Technology Co.,Ltd.
19183 00:25:A9 Shanghai Embedway Information Technologies Co.,Ltd
19184 00:25:A3 Trimax Wireless, Inc.
19185 00:25:9C Cisco-Linksys, LLC
19186 00:25:90 Super Micro Computer, Inc.
19187 00:25:80 Equipson S.A.
19188 00:25:7C Huachentel Technology Development Co., Ltd
19189 00:25:75 FiberPlex Technologies, LLC
19190 00:25:76 NELI TECHNOLOGIES
19191 00:25:70 Eastern Communications Company Limited
19192 00:25:63 Luxtera Inc
19193 00:27:04 Accelerated Concepts, Inc
19194 00:26:FE MKD Technology Inc.
19195 00:26:F8 Golden Highway Industry Development Co., Ltd.
19196 00:26:EB Advanced Spectrum Technology Co., Ltd.
19197 00:26:E5 AEG Power Solutions
19198 00:26:DF TaiDoc Technology Corp.
19199 00:26:D8 Magic Point Inc.
19200 00:26:D2 Pcube Systems, Inc.
19201 00:26:C5 Guangdong Gosun Telecommunications Co.,Ltd
19202 00:26:C0 EnergyHub
19203 00:26:BF ShenZhen Temobi Science&Tech Development Co.,Ltd
19204 00:26:B7 Kingston Technology Company, Inc.
19205 00:26:A6 TRIXELL
19206 00:26:3C Bachmann Technology GmbH & Co. KG
19207 00:26:30 ACOREL S.A.S
19208 00:26:29 Juphoon System Software Inc.
19209 00:26:2A Proxense, LLC
19210 00:26:24 Thomson Inc.
19211 00:26:1D COP SECURITY SYSTEM CORP.
19212 00:26:11 Licera AB
19213 00:26:17 OEM Worldwide
19214 00:26:0A Cisco Systems, Inc
19215 00:25:FE Pilot Electronics Corporation
19216 00:26:05 CC Systems AB
19217 00:26:04 Audio Processing Technology Ltd
19218 00:25:F4 KoCo Connector AG
19219 00:25:EB Reutech Radar Systems (PTY) Ltd
19220 00:24:2A Hittite Microwave Corporation
19221 00:24:1D GIGA-BYTE TECHNOLOGY CO.,LTD.
19222 00:24:24 Axis Network Technology
19223 00:24:17 Thomson Telecom Belgium
19224 00:24:18 Nextwave Semiconductor
19225 00:24:11 PharmaSmart LLC
19226 00:24:0B Virtual Computer Inc.
19227 00:24:0A US Beverage Net
19228 00:24:B8 free alliance sdn bhd
19229 00:24:BD Hainzl Industriesysteme GmbH
19230 00:24:B3 Graf-Syteco GmbH & Co. KG
19231 00:24:AE Morpho
19232 00:24:A7 Advanced Video Communications Inc.
19233 00:24:AC Hangzhou DPtech Technologies Co., Ltd.
19234 00:25:5D Morningstar Corporation
19235 00:25:51 SE-Elektronic GmbH
19236 00:25:4A RingCube Technologies, Inc.
19237 00:25:43 MONEYTECH
19238 00:25:44 LoJack Corporation
19239 00:25:39 IfTA GmbH
19240 00:25:3B din Dietmar Nocker Facilitymanagement GmbH
19241 00:25:0B CENTROFACTOR INC
19242 00:25:04 Valiant Communications Limited
19243 00:24:FD Accedian Networks Inc
19244 00:24:F8 Technical Solutions Company Ltd.
19245 00:24:F1 Shenzhen Fanhai Sanjiang Electronics Co., Ltd.
19246 00:24:EC United Information Technology Co.,Ltd.
19247 00:24:9B Action Star Enterprise Co., Ltd.
19248 00:24:99 Aquila Technologies
19249 00:24:88 Centre For Development Of Telematics
19250 00:24:94 Shenzhen Baoxin Tech CO., Ltd.
19251 00:24:7A FU YI CHENG Technology Co., Ltd.
19252 00:24:75 Compass System(Embedded Dept.)
19253 00:24:6E Phihong USA Corp.
19254 00:24:67 AOC International (Europe) GmbH
19255 00:24:69 Smart Doorphones
19256 00:24:62 Rayzone Corporation
19257 00:24:58 PA Bastion CC
19258 00:24:5D Terberg besturingstechniek B.V.
19259 00:24:55 MuLogic BV
19260 00:24:50 Cisco Systems, Inc
19261 00:24:4B PERCEPTRON INC
19262 00:25:3A CEVA, Ltd.
19263 00:25:31 Cloud Engines, Inc.
19264 00:25:2F Energy, Inc.
19265 00:25:2A Chengdu GeeYa Technology Co.,LTD
19266 00:25:21 Logitek Electronic Systems, Inc.
19267 00:25:1C EDT
19268 00:25:17 Venntis, LLC
19269 00:25:10 Pico-Tesla Magnetic Therapies
19270 00:24:E5 Seer Technology, Inc
19271 00:24:E0 DS Tech, LLC
19272 00:24:DE GLOBAL Technology Inc.
19273 00:24:D9 BICOM, Inc.
19274 00:24:CB Autonet Mobile
19275 00:24:CD Willow Garage, Inc.
19276 00:24:C6 Hager Electro SAS
19277 00:24:3A Ludl Electronic Products
19278 00:24:34 Lectrosonics, Inc.
19279 00:24:2E Datastrip Inc.
19280 00:22:96 LinoWave Corporation
19281 00:22:8F CNRS
19282 00:22:90 Cisco Systems, Inc
19283 00:22:8A Teratronik elektronische systeme gmbh
19284 00:22:7E Chengdu 30Kaitian Communication Industry Co.Ltd
19285 00:22:7D YE DATA INC.
19286 00:22:78 Shenzhen Tongfang Multimedia Technology Co.,Ltd.
19287 00:22:72 American Micro-Fuel Device Corp.
19288 00:22:71 Jäger Computergesteuerte Meßtechnik GmbH.
19289 00:22:6E Gowell Electronic Limited
19290 00:23:58 SYSTEL SA
19291 00:23:57 Pitronot Technologies and Engineering P.T.E. Ltd.
19292 00:23:52 DATASENSOR S.p.A.
19293 00:23:4B Inyuan Technology Inc.
19294 00:23:46 Vestac
19295 00:23:3F Purechoice Inc
19296 00:23:38 OJ-Electronics A/S
19297 00:23:33 Cisco Systems, Inc
19298 00:23:2F Advanced Card Systems Ltd.
19299 00:23:2A eonas IT-Beratung und -Entwicklung GmbH
19300 00:22:C1 Active Storage Inc.
19301 00:22:C2 Proview Eletrônica do Brasil LTDA
19302 00:22:BC JDSU France SAS
19303 00:22:B5 NOVITA
19304 00:22:AF Safety Vision
19305 00:22:A2 Xtramus Technologies
19306 00:22:9D PYUNG-HWA IND.CO.,LTD
19307 00:23:27 Shouyo Electronics CO., LTD
19308 00:23:23 Zylin AS
19309 00:23:1A ITF Co., Ltd.
19310 00:23:11 Gloscom Co., Ltd.
19311 00:23:0C CLOVER ELECTRONICS CO.,LTD.
19312 00:23:05 Cisco Systems, Inc
19313 00:22:FF NIVIS LLC
19314 00:22:FE Advanced Illumination
19315 00:23:00 Cayee Computer Ltd.
19316 00:22:F6 Syracuse Research Corporation
19317 00:22:F9 Pollin Electronic GmbH
19318 00:23:AD Xmark Corporation
19319 00:23:A7 Redpine Signals, Inc.
19320 00:23:A1 Trend Electronics Ltd
19321 00:23:A6 E-Mon
19322 00:23:9A EasyData Hardware GmbH
19323 00:23:94 Samjeon
19324 00:23:90 Algolware Corporation
19325 00:23:86 Tour & Andersson AB
19326 00:24:05 Dilog Nordic AB
19327 00:23:F5 WILO SE
19328 00:23:FE Biodevices, SA
19329 00:23:F0 Shanghai Jinghan Weighing Apparatus Co. Ltd.
19330 00:23:EB Cisco Systems, Inc
19331 00:23:E5 IPaXiom Networks
19332 00:23:E6 Pirkus, Inc.
19333 00:23:D9 Banner Engineering
19334 00:23:D3 AirLink WiFi Networking Corp.
19335 00:23:D8 Ball-It Oy
19336 00:23:C6 SMC Corporation
19337 00:23:C0 Broadway Networks
19338 00:23:B9 EADS Deutschland GmbH
19339 00:23:B3 Lyyn AB
19340 00:22:F5 Advanced Realtime Tracking GmbH
19341 00:22:EF iWDL Technologies
19342 00:22:E8 Applition Co., Ltd.
19343 00:22:E3 Amerigon
19344 00:22:D5 Eaton Corp. Electrical Group Data Center Solutions - Pulizzi
19345 00:22:DC Vigil Health Solutions Inc.
19346 00:22:D6 Cypak AB
19347 00:22:D0 Polar Electro Oy
19348 00:22:CB IONODES Inc.
19349 00:22:C6 Sutus Inc
19350 00:23:80 Nanoteq
19351 00:23:7A RIM
19352 00:23:77 Isotek Electronics Ltd
19353 00:23:71 SOAM Systel
19354 00:23:65 ELKA-Elektronik GmbH
19355 00:23:6A SmartRG Inc
19356 00:23:5E Cisco Systems, Inc
19357 00:22:5A Garde Security AB
19358 00:22:54 Bigelow Aerospace
19359 00:22:51 Lumasense Technologies
19360 00:22:4B AIRTECH TECHNOLOGIES, INC.
19361 00:22:45 Leine & Linde AB
19362 00:22:42 Alacron Inc.
19363 00:22:3B Communication Networks, LLC
19364 00:21:46 Sanmina-SCI
19365 00:21:3D Cermetek Microelectronics, Inc.
19366 00:21:3E TomTom
19367 00:21:35 ALCATEL-LUCENT
19368 00:21:3A Winchester Systems Inc.
19369 00:21:30 Keico Hightech Inc.
19370 00:21:7E Telit Communication s.p.a
19371 00:21:78 Matuschek Messtechnik GmbH
19372 00:21:72 Seoultek Valley
19373 00:21:66 NovAtel Inc.
19374 00:21:65 Presstek Inc.
19375 00:21:5F IHSE GmbH
19376 00:21:53 SeaMicro Inc.
19377 00:21:58 Style Flying Technology Co.
19378 00:21:AC Infrared Integrated Systems Ltd
19379 00:21:A5 ERLPhase Power Technologies Ltd.
19380 00:21:9F SATEL OY
19381 00:21:8A Electronic Design and Manufacturing Company
19382 00:21:8B Wescon Technology, Inc.
19383 00:21:85 MICRO-STAR INT'L CO.,LTD.
19384 00:1F:F9 Advanced Knowledge Associates
19385 00:1F:F2 VIA Technologies, Inc.
19386 00:1F:ED Tecan Systems Inc.
19387 00:1F:E6 Alphion Corporation
19388 00:1F:E0 EdgeVelocity Corp
19389 00:1F:DA Nortel Networks
19390 00:22:09 Omron Healthcare Co., Ltd
19391 00:22:03 Glensound Electronics Ltd
19392 00:22:00 IBM Corp
19393 00:21:F6 Oracle Corporation
19394 00:21:F0 EW3 Technologies LLC
19395 00:21:EA Bystronic Laser AG
19396 00:21:E3 SerialTek LLC
19397 00:21:DE Firepro Wireless
19398 00:21:DD Northstar Systems Corp
19399 00:21:D7 Cisco Systems, Inc
19400 00:22:35 Strukton Systems bv
19401 00:22:34 Corventis Inc.
19402 00:22:2F Open Grid Computing, Inc.
19403 00:22:28 Breeze Innovations Ltd.
19404 00:22:22 Schaffner Deutschland GmbH
19405 00:22:1C Private
19406 00:22:0F MoCA (Multimedia over Coax Alliance)
19407 00:21:2B MSA Auer
19408 00:21:1D Dataline AB
19409 00:21:24 Optos Plc
19410 00:21:18 Athena Tech, Inc.
19411 00:21:11 Uniphone Inc.
19412 00:21:07 Seowonintech Co Ltd.
19413 00:21:01 Aplicaciones Electronicas Quasar (AEQ)
19414 00:21:02 UpdateLogic Inc.
19415 00:21:D0 Global Display Solutions Spa
19416 00:21:CB SMS TECNOLOGIA ELETRONICA LTDA
19417 00:21:C4 Consilium AB
19418 00:21:B8 Inphi Corporation
19419 00:21:B1 DIGITAL SOLUTIONS LTD
19420 00:1F:82 Cal-Comp Electronics & Communications Co., Ltd
19421 00:1F:7D embedded wireless GmbH
19422 00:1F:7B TechNexion Ltd.
19423 00:1F:7C Witelcom AS
19424 00:1F:79 Lodam Electronics A/S
19425 00:1F:74 Eigen Development
19426 00:1F:6F Fujian Sunnada Communication Co.,Ltd.
19427 00:1F:63 JSC Goodwin-Europa
19428 00:1F:6A PacketFlux Technologies, Inc.
19429 00:1F:69 Pingood Technology Co., Ltd.
19430 00:1F:57 Phonik Innovation Co.,LTD
19431 00:1F:21 Inner Mongolia Yin An Science & Technology Development Co.,L
19432 00:1F:22 Source Photonics, Inc.
19433 00:1F:1C KOBISHI ELECTRIC Co.,Ltd.
19434 00:1F:15 Bioscrypt Inc
19435 00:1F:10 TOLEDO DO BRASIL INDUSTRIA DE BALANCAS LTDA
19436 00:1F:0C Intelligent Digital Services GmbH
19437 00:1F:07 AZTEQ Mobile
19438 00:1F:AA Taseon, Inc.
19439 00:1F:A5 Blue-White Industries
19440 00:1F:A4 ShenZhen Gongjin Electronics Co.,Ltd
19441 00:1F:A0 A10 Networks
19442 00:1F:99 SERONICS co.ltd
19443 00:1F:9B POSBRO
19444 00:1F:94 Lascar Electronics Ltd
19445 00:1F:8D Ingenieurbuero Stark GmbH und Ko. KG
19446 00:1F:89 Signalion GmbH
19447 00:1E:D0 Ingespace
19448 00:1E:CB RPC Energoautomatika Ltd
19449 00:1E:C4 Celio Corp
19450 00:1E:BE Cisco Systems, Inc
19451 00:1E:BD Cisco Systems, Inc
19452 00:1E:B8 Fortis, Inc.
19453 00:1E:B1 Cryptsoft Pty Ltd
19454 00:1E:A6 Best IT World (India) Pvt. Ltd.
19455 00:1E:AC Armadeus Systems
19456 00:1E:9F Visioneering Systems, Inc.
19457 00:1E:A0 XLN-t
19458 00:1E:F4 L-3 Communications Display Systems
19459 00:1E:F9 Pascom Kommunikations systeme GmbH.
19460 00:1E:FA PROTEI Ltd.
19461 00:1E:E8 Mytek
19462 00:1E:ED Adventiq Ltd.
19463 00:1E:E7 Epic Systems Inc
19464 00:1E:D7 H-Stream Wireless, Inc.
19465 00:1E:6B Cisco SPVTG
19466 00:1E:72 PCS
19467 00:1E:66 RESOL Elektronische Regelungen GmbH
19468 00:1E:5F KwikByte, LLC
19469 00:1E:53 Further Tech Co., LTD
19470 00:1E:9A HAMILTON Bonaduz AG
19471 00:1E:93 CiriTech Systems Inc
19472 00:1E:8E Hunkeler AG
19473 00:1E:88 ANDOR SYSTEM SUPPORT CO., LTD.
19474 00:1E:82 SanDisk Corporation
19475 00:1E:81 CNB Technology Inc.
19476 00:1E:7C Taiwick Limited
19477 00:1E:77 Air2App
19478 00:1F:50 Swissdis AG
19479 00:1F:49 Manhattan TV Ltd
19480 00:1F:4A Albentia Systems S.A.
19481 00:1F:44 GE Transportation Systems
19482 00:1F:2F Berker GmbH & Co. KG
19483 00:1F:34 Lung Hwa Electronics Co., Ltd.
19484 00:1F:28 HPN Supply Chain
19485 00:1F:D5 MICRORISC s.r.o.
19486 00:1F:D6 Shenzhen Allywll
19487 00:1F:D0 GIGA-BYTE TECHNOLOGY CO.,LTD.
19488 00:1F:C9 Cisco Systems, Inc
19489 00:1F:BD Kyocera Wireless Corp.
19490 00:1F:B1 Cybertech Inc.
19491 00:1F:B6 Chi Lin Technology Co., Ltd.
19492 00:1D:02 Cybertech Telecom Development
19493 00:1C:F6 Cisco Systems, Inc
19494 00:1C:EA Scientific-Atlanta, Inc
19495 00:1C:E9 Galaxy Technology Limited
19496 00:1C:E5 MBS Electronic Systems GmbH
19497 00:1C:E0 DASAN TPS
19498 00:1C:D9 GlobalTop Technology Inc.
19499 00:1C:D2 King Champion (Hong Kong) Limited
19500 00:1C:CD Alektrona Corporation
19501 00:1C:C6 ProStor Systems
19502 00:1C:BA VerScient, Inc.
19503 00:1C:B0 Cisco Systems, Inc
19504 00:1C:B5 Neihua Network Technology Co.,LTD.(NHN)
19505 00:1C:B6 Duzon CNT Co., Ltd.
19506 00:1C:A9 Audiomatica Srl
19507 00:1D:5F OverSpeed SARL
19508 00:1D:53 S&O Electronics (Malaysia) Sdn. Bhd.
19509 00:1D:4E TCM Mobile LLC
19510 00:1D:4D Adaptive Recognition Hungary, Inc
19511 00:1D:49 Innovation Wireless Inc.
19512 00:1D:44 KROHNE Messtechnik GmbH
19513 00:1D:3D Avidyne Corporation
19514 00:1D:43 Shenzhen G-link Digital Technology Co., Ltd.
19515 00:1E:17 STN BV
19516 00:1E:1C SWS Australia Pty Limited
19517 00:1E:12 Ecolab
19518 00:1E:0D Micran Ltd.
19519 00:1E:06 WIBRAIN
19520 00:1D:FF Network Critical Solutions Ltd
19521 00:1E:00 Shantou Institute of Ultrasonic Instruments
19522 00:1D:FA Fujian LANDI Commercial Equipment Co.,Ltd
19523 00:1D:F3 SBS Science & Technology Co., Ltd
19524 00:1D:EE NEXTVISION SISTEMAS DIGITAIS DE TELEVISÃO LTDA.
19525 00:1D:ED Grid Net, Inc.
19526 00:1D:DE Zhejiang Broadcast&Television Technology Co.,Ltd.
19527 00:1D:E7 Marine Sonic Technology, Ltd.
19528 00:1D:D7 Algolith
19529 00:1D:D8 Microsoft Corporation
19530 00:1D:CB Exéns Development Oy
19531 00:1D:C6 SNR Inc.
19532 00:1D:C5 Beijing Jiaxun Feihong Electricial Co., Ltd.
19533 00:1D:BF Radiient Technologies, Inc.
19534 00:1D:B8 Intoto Inc.
19535 00:1D:36 ELECTRONICS CORPORATION OF INDIA LIMITED
19536 00:1D:31 HIGHPRO INTERNATIONAL R&D CO,.LTD.
19537 00:1D:2A SHENZHEN BUL-TECH CO.,LTD.
19538 00:1D:23 SENSUS
19539 00:1D:24 Aclara Power-Line Systems Inc.
19540 00:1D:1B Sangean Electronics Inc.
19541 00:1D:1E KYUSHU TEN CO.,LTD
19542 00:1D:15 Shenzhen Dolphin Electronic Co., Ltd
19543 00:1D:0E Agapha Technology co., Ltd.
19544 00:1D:B3 HPN Supply Chain
19545 00:1D:AE CHANG TSENG TECHNOLOGY CO., LTD
19546 00:1D:A9 Castles Technology, Co., LTD
19547 00:1D:A2 Cisco Systems, Inc
19548 00:1D:9C Rockwell Automation
19549 00:1D:9B Hokuyo Automatic Co., Ltd.
19550 00:1D:96 WatchGuard Video
19551 00:1D:8F PureWave Networks
19552 00:1D:8A TechTrex Inc
19553 00:1D:89 VaultStor Corporation
19554 00:1D:7F Tekron International Ltd
19555 00:1D:83 Emitech Corporation
19556 00:1D:79 SIGNAMAX LLC
19557 00:1D:66 Hyundai Telecom
19558 00:1D:6D Confidant International LLC
19559 00:1E:42 Teltonika
19560 00:1E:3C Lyngbox Media AB
19561 00:1E:2F DiMoto Pty Ltd
19562 00:1E:36 IPTE
19563 00:1E:29 Hypertherm Inc
19564 00:1E:23 Electronic Educational Devices, Inc
19565 00:1C:0C TANITA Corporation
19566 00:1C:06 Siemens Numerical Control Ltd., Nanjing
19567 00:1B:FF Millennia Media inc.
19568 00:1B:FA G.i.N. mbH
19569 00:1B:E3 Health Hero Network, Inc.
19570 00:1B:E5 802automation Limited
19571 00:1B:E4 TOWNET SRL
19572 00:1B:DE Renkus-Heinz, Inc.
19573 00:1B:D2 ULTRA-X ASIA PACIFIC Inc.
19574 00:1C:6B COVAX Co. Ltd
19575 00:1C:64 Landis+Gyr
19576 00:1C:5F Winland Electronics, Inc.
19577 00:1C:53 Synergy Lighting Controls
19578 00:1C:58 Cisco Systems, Inc
19579 00:1C:4E TASA International Limited
19580 00:1C:47 Hangzhou Hollysys Automation Co., Ltd
19581 00:1C:49 Zoltan Technology Inc.
19582 00:1C:48 WiDeFi, Inc.
19583 00:1C:3B AmRoad Technology Inc.
19584 00:1C:42 Parallels, Inc.
19585 00:1B:72 Sicep s.p.a.
19586 00:1B:6D Midtronics, Inc.
19587 00:1B:6B Swyx Solutions AG
19588 00:1B:6C LookX Digital Media BV
19589 00:1B:66 Sennheiser electronic GmbH & Co. KG
19590 00:1B:5F Alien Technology
19591 00:1B:5A Apollo Imaging Technologies, Inc.
19592 00:1B:53 Cisco Systems, Inc
19593 00:1B:47 Futarque A/S
19594 00:1B:4C Signtech
19595 00:1B:4E Navman New Zealand
19596 00:1B:40 Network Automation mxc AB
19597 00:1C:9E Dualtech IT AB
19598 00:1C:97 Enzytek Technology Inc.,
19599 00:1C:98 LUCKY TECHNOLOGY (HK) COMPANY LIMITED
19600 00:1C:92 Tervela
19601 00:1C:8B MJ Innovations Ltd.
19602 00:1C:86 Cranite Systems, Inc.
19603 00:1C:85 Eunicorn
19604 00:1C:81 NextGen Venturi LTD
19605 00:1C:72 Mayer & Cie GmbH & Co KG
19606 00:1C:77 Prodys
19607 00:1B:34 Focus System Inc.
19608 00:1B:39 Proxicast
19609 00:1B:3B Yi-Qing CO., LTD
19610 00:1B:28 POLYGON, JSC
19611 00:1B:2D Med-Eng Systems Inc.
19612 00:1B:1F DELTA - Danish Electronics, Light & Acoustics
19613 00:1B:18 Tsuken Electric Ind. Co.,Ltd
19614 00:1B:13 Icron Technologies Corporation
19615 00:1B:0C Cisco Systems, Inc
19616 00:1B:A7 Lorica Solutions
19617 00:1B:A2 IDS Imaging Development Systems GmbH
19618 00:1B:96 General Sensing
19619 00:1B:9B Hose-McCann Communications
19620 00:1B:8F Cisco Systems, Inc
19621 00:1B:85 MAN Diesel SE
19622 00:1B:7E Beckmann GmbH
19623 00:1B:79 FAIVELEY TRANSPORT
19624 00:1C:36 iNEWiT NV
19625 00:1C:2F Pfister GmbH
19626 00:1C:28 Sphairon Technologies GmbH
19627 00:1C:1E emtrion GmbH
19628 00:1C:19 secunet Security Networks AG
19629 00:1C:0B SmartAnt Telecom
19630 00:1C:0D G-Technology, Inc.
19631 00:1B:CB PEMPEK SYSTEMS PTY LTD
19632 00:1B:C4 Ultratec, Inc.
19633 00:1B:B5 ZF Electronics GmbH
19634 00:1B:AE Micro Control Systems, Inc
19635 00:1B:A8 UBI&MOBI,.Inc
19636 00:1B:05 YMC AG
19637 00:1B:00 Neopost Technologies
19638 00:1A:F9 AeroVIronment (AV Inc)
19639 00:1A:EF Loopcomm Technology, Inc.
19640 00:1A:E3 Cisco Systems, Inc
19641 00:1A:EA Radio Terminal Systems Pty Ltd
19642 00:1A:26 Deltanode Solutions AB
19643 00:1A:2B Ayecom Technology Co., Ltd.
19644 00:1A:1F Coastal Environmental Systems
19645 00:1A:1A Gentex Corporation/Electro-Acoustic Products
19646 00:1A:13 Wanlida Group Co., LTD
19647 00:1A:0E Cheng Uei Precision Industry Co.,Ltd
19648 00:1A:0C Swe-Dish Satellite Systems AB
19649 00:1A:07 Arecont Vision
19650 00:1A:00 MATRIX INC.
19651 00:1A:D0 Albis Technologies AG
19652 00:1A:D5 KMC CHAIN INDUSTRIAL CO., LTD.
19653 00:1A:D7 Christie Digital Systems, Inc.
19654 00:1A:C9 SUZUKEN CO.,LTD
19655 00:1A:BA Caton Overseas Limited
19656 00:1A:BF TRUMPF Laser Marking Systems AG
19657 00:1A:81 Zelax
19658 00:1A:88 Venergy,Co,Ltd
19659 00:1A:7A Lismore Instruments Limited
19660 00:1A:70 Cisco-Linksys, LLC
19661 00:1A:72 Mosart Semiconductor Corp.
19662 00:1A:64 IBM Corp
19663 00:1A:56 ViewTel Co,. Ltd.
19664 00:1A:5B NetCare Service Co., Ltd.
19665 00:1A:5F KitWorks.fi Ltd.
19666 00:19:B6 Euro Emme s.r.l.
19667 00:19:A3 asteel electronique atlantique
19668 00:19:A8 WiQuest Communications
19669 00:19:AA Cisco Systems, Inc
19670 00:19:AF Rigol Technologies, Inc.
19671 00:19:92 ADTRAN INC.
19672 00:19:97 Soft Device Sdn Bhd
19673 00:19:9C CTRING
19674 00:1A:43 Logical Link Communications
19675 00:1A:48 Takacom Corporation
19676 00:1A:4A Qumranet Inc.
19677 00:1A:3C Technowave Ltd.
19678 00:1A:30 Cisco Systems, Inc
19679 00:1A:35 BARTEC GmbH
19680 00:1A:37 Lear Corporation
19681 00:19:F2 Teradyne K.K.
19682 00:19:F7 Onset Computer Corporation
19683 00:19:DF Thomson Inc.
19684 00:19:E6 TOYO MEDIC CO.,LTD.
19685 00:19:EB Pyronix Ltd
19686 00:19:CC RCG (HK) Ltd
19687 00:19:D3 TRAK Microwave
19688 00:19:D8 MAXFOR
19689 00:19:C2 Equustek Solutions, Inc.
19690 00:19:8B Novera Optics Korea, Inc.
19691 00:19:8D Ocean Optics, Inc.
19692 00:19:7F PLANTRONICS, INC.
19693 00:19:86 Cheng Hongjian
19694 00:19:73 Zeugma Systems
19695 00:19:7A MAZeT GmbH
19696 00:19:67 TELDAT Sp.J.
19697 00:19:6C ETROVISION TECHNOLOGY
19698 00:19:6E Metacom (Pty) Ltd.
19699 00:1A:AC Corelatus AB
19700 00:1A:AE Savant Systems LLC
19701 00:1A:B3 VISIONITE INC.
19702 00:1A:A7 Torian Wireless
19703 00:1A:9E ICON Digital International Limited
19704 00:1A:A3 DELORME
19705 00:1A:A5 BRN Phoenix
19706 00:1A:A4 Future University-Hakodate
19707 00:1A:97 fitivision technology Inc.
19708 00:1A:8D AVECS Bergen GmbH
19709 00:19:62 Commerciant, LP
19710 00:19:5D ShenZhen XinHuaTong Opto Electronics Co.,Ltd
19711 00:19:51 NETCONS, s.r.o.
19712 00:19:56 Cisco Systems, Inc
19713 00:19:4A TESTO AG
19714 00:19:43 Belden
19715 00:18:73 Cisco Systems, Inc
19716 00:18:75 AnaCise Testnology Pte Ltd
19717 00:18:7A Wiremold
19718 00:18:6E 3Com Ltd
19719 00:18:5E Nexterm Inc.
19720 00:18:60 SIM Technology Group Shanghai Simcom Ltd.,
19721 00:18:65 Siemens Healthcare Diagnostics Manufacturing Ltd
19722 00:19:03 Bigfoot Networks Inc
19723 00:18:F9 VVOND, Inc.
19724 00:18:F2 Beijing Tianyu Communication Equipment Co., Ltd
19725 00:18:EB Blue Zen Enterprises Private Limited
19726 00:18:ED Accutech Ultrasystems Co., Ltd.
19727 00:18:E6 Computer Hardware Design SIA
19728 00:18:DF The Morey Corporation
19729 00:19:37 CommerceGuard AB
19730 00:19:2E Spectral Instruments, Inc.
19731 00:19:32 Gude Analog- und Digialsysteme GmbH
19732 00:19:22 CM Comandos Lineares
19733 00:19:27 ImCoSys Ltd
19734 00:19:29 2M2B Montadora de Maquinas Bahia Brasil LTDA
19735 00:19:0F Advansus Corp.
19736 00:19:16 PayTec AG
19737 00:19:1B Sputnik Engineering AG
19738 00:19:08 Duaxes Corporation
19739 00:19:0A HASWARE INC.
19740 00:17:D6 Bluechips Microhouse Co.,Ltd.
19741 00:17:DB CANKO TECHNOLOGIES INC.
19742 00:17:CC Alcatel-Lucent
19743 00:17:C5 SonicWALL
19744 00:17:B9 Gambro Lundia AB
19745 00:17:BE Tratec Telecom B.V.
19746 00:17:C0 PureTech Systems, Inc.
19747 00:18:52 StorLink Semiconductors, Inc.
19748 00:18:59 Strawberry Linux Co.,Ltd.
19749 00:18:4B Las Vegas Gaming, Inc.
19750 00:18:46 Crypto S.A.
19751 00:18:29 Gatsometer
19752 00:18:35 Thoratec / ITC
19753 00:18:24 Kimaldi Electronics, S.L.
19754 00:18:22 CEC TELECOM CO.,LTD.
19755 00:17:B2 SK Telesys
19756 00:17:AD AceNet Corporation
19757 00:17:A6 YOSIN ELECTRONICS CO., LTD.
19758 00:17:A1 3soft inc.
19759 00:17:9C DEPRAG SCHULZ GMBH u. CO.
19760 00:17:90 HYUNDAI DIGITECH Co, Ltd.
19761 00:17:95 Cisco Systems, Inc
19762 00:18:CE Dreamtech Co., Ltd
19763 00:18:D3 TEAMCAST
19764 00:18:C2 Firetide, Inc
19765 00:18:C4 Raba Technologies LLC
19766 00:18:C9 EOps Technology Limited
19767 00:18:BD SHENZHEN DVBWORLD TECHNOLOGY CO., LTD.
19768 00:18:B1 IBM Corp
19769 00:18:B6 S3C, Inc.
19770 00:18:A3 ZIPPY TECHNOLOGY CORP.
19771 00:18:AA Protec Fire Detection plc
19772 00:18:16 Ubixon Co., Ltd.
19773 00:18:1D ASIA ELECTRONICS CO.,LTD
19774 00:18:11 Neuros Technology International, LLC.
19775 00:18:0A Meraki, Inc.
19776 00:18:01 Actiontec Electronics, Inc
19777 00:17:F5 LIG NEOPTEK
19778 00:17:FA Microsoft Corporation
19779 00:17:FC Suprema Inc.
19780 00:18:9E OMNIKEY GmbH.
19781 00:18:94 NPCore, Inc.
19782 00:18:99 ShenZhen jieshun Science&Technology Industry CO,LTD.
19783 00:18:86 EL-TECH, INC.
19784 00:18:88 GOTIVE a.s.
19785 00:18:81 Buyang Electronics Industrial Co., Ltd
19786 00:16:D4 Compal Communications, Inc.
19787 00:16:D9 NINGBO BIRD CO.,LTD.
19788 00:16:C8 Cisco Systems, Inc
19789 00:16:CD HIJI HIGH-TECH CO., LTD.
19790 00:16:C1 Eleksen Ltd
19791 00:16:BA WEATHERNEWS INC.
19792 00:16:4F World Ethnic Broadcastin Inc.
19793 00:16:48 SSD Company Limited
19794 00:16:43 Sunhillo Corporation
19795 00:16:3E Xensource, Inc.
19796 00:16:37 CITEL SpA
19797 00:16:2B Togami Electric Mfg.co.,Ltd.
19798 00:17:55 GE Security
19799 00:17:47 Trimble
19800 00:17:49 HYUNDAE YONG-O-SA CO.,LTD
19801 00:17:4E Parama-tech Co.,Ltd.
19802 00:17:32 Science-Technical Center RISSA
19803 00:17:34 ADC Telecommunications
19804 00:17:39 Bright Headphone Electronics Company
19805 00:17:2D Axcen Photonics Corporation
19806 00:16:24 Teneros, Inc.
19807 00:16:13 LibreStream Technologies Inc.
19808 00:16:18 HIVION Co., Ltd.
19809 00:16:1F SUNWAVETEC Co., Ltd.
19810 00:16:0E Optica Technologies Inc.
19811 00:16:07 Curves International Inc.
19812 00:16:09 Unitech electronics co., ltd.
19813 00:16:08 Sequans Communications
19814 00:16:02 CEYON TECHNOLOGY CO.,LTD.
19815 00:15:FB setex schermuly textile computer gmbh
19816 00:15:F6 SCIENCE AND ENGINEERING SERVICES, INC.
19817 00:17:82 LoBenn Inc.
19818 00:17:89 Zenitron Corporation
19819 00:17:6D CORE CORPORATION
19820 00:17:71 APD Communications Ltd
19821 00:17:76 Meso Scale Diagnostics, LLC
19822 00:17:61 Private
19823 00:17:68 Zinwave Ltd
19824 00:17:5C SHARP CORPORATION
19825 00:17:5A Cisco Systems, Inc
19826 00:17:09 Exalt Communications
19827 00:17:04 Shinco Electronics Group Co.,Ltd
19828 00:16:FD Jaty Electronics
19829 00:16:F1 OmniSense, LLC
19830 00:16:F6 Video Products Group
19831 00:16:F8 AVIQTECH TECHNOLOGY CO., LTD.
19832 00:16:E5 FORDLEY DEVELOPMENT LIMITED
19833 00:16:DE FAST Inc
19834 00:16:7E DIBOSS.CO.,LTD
19835 00:16:80 Bally Gaming + Systems
19836 00:16:79 eOn Communications
19837 00:16:6E Arbitron Inc.
19838 00:16:67 A-TEC Subsystem INC.
19839 00:16:5B Grip Audio
19840 00:16:54 Flex-P Industries Sdn. Bhd.
19841 00:17:21 FITRE S.p.A.
19842 00:17:26 m2c Electronic Technology Ltd.
19843 00:17:1A Winegard Company
19844 00:17:1F IMV Corporation
19845 00:17:13 Tiger NetCom
19846 00:17:0E Cisco Systems, Inc
19847 00:16:A9 2EI
19848 00:16:AE INVENTEL
19849 00:16:9D Cisco Systems, Inc
19850 00:16:9F Vimtron Electronics Co., Ltd.
19851 00:16:A4 Ezurio Ltd
19852 00:16:91 Moser-Baer AG
19853 00:16:98 T&A Mobile Phones
19854 00:16:8C DSL Partner AS
19855 00:16:85 Elisa Oyj
19856 00:15:EF NEC TOKIN Corporation
19857 00:15:E3 Dream Technologies Corporation
19858 00:15:D9 PKC Electronics Oy
19859 00:15:D2 Xantech Corporation
19860 00:15:CC UQUEST, LTD.
19861 00:15:CB Surf Communication Solutions Ltd.
19862 00:15:CD Exartech International Corp.
19863 00:15:C6 Cisco Systems, Inc
19864 00:15:BB SMA Solar Technology AG
19865 00:14:D5 Datang Telecom Technology CO. , LCD,Optical Communication Br
19866 00:14:DA Huntleigh Healthcare
19867 00:14:CE NF CORPORATION
19868 00:14:C8 Contemporary Research Corp
19869 00:14:BB Open Interface North America
19870 00:14:B6 Enswer Technology Inc.
19871 00:14:AC Bountiful WiFi
19872 00:14:B1 Axell Wireless Limited
19873 00:14:76 MultiCom Industries Limited
19874 00:14:71 Eastern Asia Technology Limited
19875 00:14:6A Cisco Systems, Inc
19876 00:14:63 IDCS N.V.
19877 00:14:65 Novo Nordisk A/S
19878 00:14:64 Cryptosoft
19879 00:14:5E IBM Corp
19880 00:14:57 T-VIPS AS
19881 00:14:52 CALCULEX,INC.
19882 00:15:92 Facom UK Ltd (Melksham)
19883 00:15:8B Park Air Systems Ltd
19884 00:15:84 Schenck Process GmbH
19885 00:15:7F ChuanG International Holding CO.,LTD.
19886 00:15:7A Telefin S.p.A.
19887 00:15:75 Nevis Networks Inc.
19888 00:15:6E A. W. Communication Systems Ltd
19889 00:15:67 RADWIN Inc.
19890 00:15:69 PECO II, Inc.
19891 00:15:68 Dilithium Networks
19892 00:15:62 Cisco Systems, Inc
19893 00:15:03 PROFIcomms s.r.o.
19894 00:15:05 Actiontec Electronics, Inc
19895 00:15:04 GAME PLUS CO., LTD.
19896 00:14:FE Artech Electronics
19897 00:14:F7 CREVIS Co., LTD
19898 00:14:F2 Cisco Systems, Inc
19899 00:14:EB AwarePoint Corporation
19900 00:14:E1 Data Display AG
19901 00:15:5B Sampo Corporation
19902 00:15:4F one RF Technology
19903 00:15:46 ITG Worldwide Sdn Bhd
19904 00:15:3F Alcatel Alenia Space Italia
19905 00:15:41 StrataLight Communications, Inc.
19906 00:15:3A Shenzhen Syscan Technology Co.,Ltd.
19907 00:15:BF technicob
19908 00:15:B4 Polymap Wireless LLC
19909 00:15:AA Rextechnik International Co.,
19910 00:15:A5 DCI Co., Ltd.
19911 00:15:9E Mad Catz Interactive Inc
19912 00:15:97 AETA AUDIO SYSTEMS
19913 00:14:9E UbONE Co., Ltd
19914 00:14:99 Helicomm Inc
19915 00:14:92 Liteon, Mobile Media Solution SBU
19916 00:14:8B Globo Electronic GmbH & Co. KG
19917 00:14:8D Cubic Defense Simulation Systems
19918 00:14:86 Echo Digital Audio Corporation
19919 00:14:7D Aeon Digital International
19920 00:15:33 NADAM.CO.,LTD
19921 00:15:2E PacketHop, Inc.
19922 00:15:27 Balboa Instruments
19923 00:15:20 Radiocrafts AS
19924 00:15:1B Isilon Systems Inc.
19925 00:15:16 URIEL SYSTEMS INC.
19926 00:15:11 Data Center Systems
19927 00:15:0A Sonoa Systems, Inc
19928 00:13:1F NxtPhase T&D, Corp.
19929 00:13:18 DGSTATION Co., Ltd.
19930 00:13:0C HF System Corporation
19931 00:13:13 GuangZhou Post & Telecom Equipment ltd
19932 00:13:54 Zcomax Technologies, Inc.
19933 00:13:58 Realm Systems, Inc.
19934 00:13:5D NTTPC Communications, Inc.
19935 00:13:4F Tranzeo Wireless Technologies Inc.
19936 00:13:48 Artila Electronics Co., Ltd.
19937 00:13:42 Vision Research, Inc.
19938 00:13:3C QUINTRON SYSTEMS INC.
19939 00:13:41 Shandong New Beiyang Information Technology Co.,Ltd
19940 00:13:29 VSST Co., LTD
19941 00:13:30 EURO PROTECTION SURVEILLANCE
19942 00:13:35 VS Industry Berhad
19943 00:13:2F Interactek
19944 00:12:C4 Viseon, Inc.
19945 00:12:D0 Gossen-Metrawatt-GmbH
19946 00:12:CA Mechatronic Brick Aps
19947 00:12:BA FSI Systems, Inc.
19948 00:12:AE HLS HARD-LINE Solutions Inc.
19949 00:12:B3 Advance Wireless Technology Corp.
19950 00:12:AD IDS GmbH
19951 00:14:4D Intelligent Systems
19952 00:14:41 Innovation Sound Technology Co., LTD.
19953 00:14:48 Inventec Multimedia & Telecom Corporation
19954 00:14:3A RAYTALK INTERNATIONAL SRL
19955 00:14:35 CityCom Corp.
19956 00:14:2E 77 Elektronika Kft.
19957 00:14:29 V Center Technologies Co., Ltd.
19958 00:14:27 JazzMutant
19959 00:14:1E P.A. Semi, Inc.
19960 00:12:F9 URYU SEISAKU, LTD.
19961 00:13:00 IT-FACTORY, INC.
19962 00:13:05 Epicom, Inc.
19963 00:13:06 Always On Wireless
19964 00:12:F4 Belco International Co.,Ltd.
19965 00:12:EF OneAccess SA
19966 00:12:EA Trane
19967 00:12:E9 Abbey Systems Ltd
19968 00:12:DC SunCorp Industrial Limited
19969 00:12:E3 Agat-RT, Ltd.
19970 00:12:D7 Invento Networks, Inc.
19971 00:13:F0 Wavefront Semiconductor
19972 00:13:EB Sysmaster Corporation
19973 00:13:E6 Technolution
19974 00:13:DF Ryvor Corp.
19975 00:13:D9 Matrix Product Development, Inc.
19976 00:13:DA Diskware Co., Ltd
19977 00:13:CD MTI co. LTD
19978 00:13:D3 MICRO-STAR INTERNATIONAL CO., LTD.
19979 00:13:C1 Asoka USA Corporation
19980 00:13:BC Artimi Ltd
19981 00:13:B7 Scantech ID
19982 00:13:AB Telemotive AG
19983 00:13:B2 Carallon Limited
19984 00:13:B1 Intelligent Control Systems (Asia) Pte Ltd
19985 00:13:A4 KeyEye Communications
19986 00:13:9F Electronics Design Services, Co., Ltd.
19987 00:13:98 TrafficSim Co.,Ltd
19988 00:13:92 Ruckus Wireless
19989 00:13:8C Kumyoung.Co.Ltd
19990 00:13:91 OUEN CO.,LTD.
19991 00:13:7C Kaicom co., Ltd.
19992 00:13:83 Application Technologies and Engineering Research Laboratory
19993 00:13:64 Paradigm Technology Inc..
19994 00:13:69 Honda Electron Co., LED.
19995 00:13:6A Hach Lange Sarl
19996 00:14:18 C4Line
19997 00:14:1D LTi DRIVES GmbH
19998 00:14:11 Deutschmann Automation GmbH & Co. KG
19999 00:45:01 Versus Technology, Inc.
20000 00:14:03 Renasis, LLC
20001 00:13:FC SiCortex, Inc
20002 00:13:F5 Akimbi Systems
20003 00:13:F6 Cintech
20004 00:12:86 ENDEVCO CORP
20005 00:12:7F Cisco Systems, Inc
20006 00:12:78 International Bar Code
20007 00:12:73 Stoke Inc
20008 00:12:66 Swisscom Hospitality Services SA
20009 00:12:65 Enerdyne Technologies, Inc.
20010 00:12:5B KAIMEI ELECTRONI
20011 00:11:D2 Perception Digital Ltd
20012 00:11:D7 eWerks Inc
20013 00:11:D1 Soft Imaging System GmbH
20014 00:11:C2 United Fiber Optic Communication
20015 00:11:CB Jacobsons AB
20016 00:11:BB Cisco Systems, Inc
20017 00:11:BC Cisco Systems, Inc
20018 00:11:AA Uniclass Technology, Co., LTD
20019 00:11:AF Medialink-i,Inc
20020 00:12:00 Cisco Systems, Inc
20021 00:11:FB Heidelberg Engineering GmbH
20022 00:11:F6 Asia Pacific Microsystems , Inc.
20023 00:11:F1 QinetiQ Ltd
20024 00:11:EA IWICS Inc.
20025 00:11:E3 Thomson, Inc.
20026 00:11:DE EURILOGIC
20027 00:11:E4 Danelec Electronics A/S
20028 00:12:30 Picaso Infocommunication CO., LTD.
20029 00:12:26 Japan Direx Corporation
20030 00:12:20 Cadco Systems
20031 00:12:1A Techno Soft Systemnics Inc.
20032 00:12:1F Harding Instruments
20033 00:12:13 Metrohm AG
20034 00:12:0D Advanced Telecommunication Technologies, Inc.
20035 00:12:07 Head Strong International Limited
20036 00:12:0E AboCom
20037 00:11:7A Singim International Corp.
20038 00:11:73 SMART Storage Systems
20039 00:11:67 Integrated System Solution Corp.
20040 00:11:6D American Time and Signal
20041 00:11:63 SYSTEM SPA DEPT. ELECTRONICS
20042 00:11:56 Pharos Systems NZ
20043 00:11:5D Cisco Systems, Inc
20044 00:12:A7 ISR TECHNOLOGIES Inc
20045 00:12:A0 NeoMeridian Sdn Bhd
20046 00:12:9B E2S Electronic Engineering Solutions, S.L.
20047 00:12:94 SUMITOMO ELECTRIC DEVICE INNOVATIONS, INC
20048 00:12:8B Sensory Networks Inc
20049 00:12:85 Gizmondo Europe Ltd
20050 00:11:A9 MOIMSTONE Co., LTD
20051 00:11:A3 LanReady Technologies Inc.
20052 00:11:97 Monitoring Technologies Limited
20053 00:11:9C EP&T Energy
20054 00:11:8D Hanchang System Corp.
20055 00:11:92 Cisco Systems, Inc
20056 00:11:86 Prime Systems, Inc.
20057 00:11:7F Neotune Information Technology Corporation,.LTD
20058 00:12:60 Stanton Magnetics,inc.
20059 00:12:56 LG INFORMATION & COMM.
20060 00:12:4F Pentair Thermal Management
20061 00:12:4A Dedicated Devices, Inc.
20062 00:12:49 Delta Elettronica S.p.A.
20063 00:12:43 Cisco Systems, Inc
20064 00:12:3C Second Rule LLC
20065 00:11:48 Prolon Control Systems
20066 00:11:4D Atsumi Electric Co.,LTD.
20067 00:11:4E 690885 Ontario Inc.
20068 00:11:41 GoodMan Corporation
20069 00:11:3B Micronet Communications Inc.
20070 00:11:35 Grandeye Ltd
20071 00:11:26 Venstar Inc.
20072 00:0E:B9 HASHIMOTO Electronics Industry Co.,Ltd.
20073 00:0E:BA HANMI SEMICONDUCTOR CO., LTD.
20074 00:0E:AC MINTRON ENTERPRISE CO., LTD.
20075 00:0E:A0 NetKlass Technology Inc.
20076 00:0E:A7 Endace Technology
20077 00:0E:9A BOE TECHNOLOGY GROUP CO.,LTD
20078 00:0E:99 Spectrum Digital, Inc
20079 00:11:2B NetModule AG
20080 00:11:20 Cisco Systems, Inc
20081 00:11:25 IBM Corp
20082 00:11:19 Solteras, Inc.
20083 00:11:13 Fraunhofer FOKUS
20084 00:11:06 Siemens NV (Belgium)
20085 00:11:0D SANBlaze Technology, Inc.
20086 00:11:01 CET Technologies Pte Ltd
20087 00:0F:B3 Actiontec Electronics, Inc
20088 00:0F:A6 S2 Security Corporation
20089 00:0F:AD FMN communications GmbH
20090 00:0F:9B Ross Video Limited
20091 00:0F:9E Murrelektronik GmbH
20092 00:0F:A1 Gigabit Systems Inc.
20093 00:0F:95 ELECOM Co.,LTD Laneed Division
20094 00:0F:96 Telco Systems, Inc.
20095 00:0F:8F Cisco Systems, Inc
20096 00:0F:88 AMETEK, Inc.
20097 00:0F:83 Brainium Technologies Inc.
20098 00:0F:51 Azul Systems, Inc.
20099 00:0F:44 Tivella Inc.
20100 00:0F:43 Wasabi Systems Inc.
20101 00:0F:4A Kyushu-kyohan co.,ltd
20102 00:0F:3E CardioNet, Inc
20103 00:0F:3A HISHARP
20104 00:0F:30 Raza Microelectronics Inc
20105 00:0F:2F W-LINX TECHNOLOGY CO., LTD.
20106 00:0F:36 Accurate Techhnologies, Inc.
20107 00:0F:2A Cableware Electronics
20108 00:0F:76 Digital Keystone, Inc.
20109 00:0F:70 Wintec Industries, inc.
20110 00:0F:75 First Silicon Solutions
20111 00:0F:7C ACTi Corporation
20112 00:0F:69 SEW Eurodrive GmbH & Co. KG
20113 00:0F:63 Obzerv Technologies
20114 00:0F:64 D&R Electronica Weesp BV
20115 00:0F:5D Genexis BV
20116 00:0F:56 Continuum Photonics Inc
20117 00:0E:EB Sandmartin(zhong shan)Electronics Co.,Ltd
20118 00:0E:EC Orban
20119 00:0E:F1 EZQUEST INC.
20120 00:0E:DE REMEC, Inc.
20121 00:0E:E5 bitWallet, Inc.
20122 00:0E:CC Tableau, LLC
20123 00:0E:D9 Aksys, Ltd.
20124 00:0E:CB VineSys Technology
20125 00:0E:D2 Filtronic plc
20126 00:0E:BF Remsdaq Limited
20127 00:0E:C6 ASIX ELECTRONICS CORP.
20128 00:0F:23 Cisco Systems, Inc
20129 00:0F:1D Cosmo Techs Co., Ltd.
20130 00:0F:10 RDM Corporation
20131 00:0F:17 Insta Elektro GmbH
20132 00:0F:1E Chengdu KT Electric Co.of High & New Technology
20133 00:0F:0B Kentima Technologies AB
20134 00:0F:04 cim-usa inc
20135 00:0E:FE EndRun Technologies LLC
20136 00:0E:F8 SBC ASI
20137 00:0E:FD FUJINON CORPORATION
20138 00:0F:FB Nippon Denso Industry Co., Ltd.
20139 00:0F:F8 Cisco Systems, Inc
20140 00:0F:F2 Loud Technologies Inc.
20141 00:0F:F7 Cisco Systems, Inc
20142 00:0F:E5 MERCURY SECURITY CORPORATION
20143 00:0F:E6 MBTech Systems, Inc.
20144 00:0F:EB Cylon Controls
20145 00:0F:DF SOLOMON Technology Corp.
20146 00:0F:D8 Force, Inc.
20147 00:0F:D3 Digium
20148 00:0F:C6 Eurocom Industries A/S
20149 00:0F:C5 KeyMed Ltd
20150 00:0F:C0 DELCOMp
20151 00:0F:B4 Timespace Technology
20152 00:0F:B9 Adaptive Instruments
20153 00:0D:4D Ninelanes
20154 00:0D:54 3Com Ltd
20155 00:0D:45 Tottori SANYO Electric Co., Ltd.
20156 00:0D:48 AEWIN Technologies Co., Ltd.
20157 00:0D:40 Verint Loronix Video Solutions
20158 00:0D:39 Network Electronics
20159 00:0D:33 Prediwave Corp.
20160 00:0D:34 Shell International Exploration and Production, Inc.
20161 00:0D:2D NCT Deutschland GmbH
20162 00:0D:26 Primagraphics Limited
20163 00:0D:21 WISCORE Inc.
20164 00:0D:14 Vtech Innovation LP dba Advanced American Telephones
20165 00:0D:13 Wilhelm Rutenbeck GmbH&Co.KG
20166 00:0D:1A Mustek System Inc.
20167 00:0D:0E Inqnet Systems, Inc.
20168 00:0D:01 P&E Microcomputer Systems, Inc.
20169 00:0D:02 NEC Platforms, Ltd.
20170 00:0D:07 Calrec Audio Ltd
20171 00:0E:8D Systems in Progress Holding GmbH
20172 00:0E:94 Maas International BV
20173 00:0E:87 adp Gauselmann GmbH
20174 00:0E:81 Devicescape Software, Inc.
20175 00:0E:88 VIDEOTRON CORP.
20176 00:0E:75 New York Air Brake Corp.
20177 00:0E:7A GemWon Communications Co., Ltd.
20178 00:0E:66 Hitachi Industry & Control Solutions, Ltd.
20179 00:0D:F6 Technology Thesaurus Corp.
20180 00:0D:FD Huges Hi-Tech Inc.,
20181 00:0E:02 Advantech AMT Inc.
20182 00:0D:F0 QCOM TECHNOLOGY INC.
20183 00:0D:EA Kingtel Telecommunication Corp.
20184 00:0D:EF Soc. Coop. Bilanciai
20185 00:0D:DD Profilo Telra Elektronik Sanayi ve Ticaret. A.Ş
20186 00:0D:DE Joyteck Co., Ltd.
20187 00:0D:E3 AT Sweden AB
20188 00:0D:D0 TetraTec Instruments GmbH
20189 00:0D:D7 Bright
20190 00:0E:61 MICROTROL LIMITED
20191 00:0E:5A TELEFIELD inc.
20192 00:0E:54 AlphaCell Wireless Ltd.
20193 00:0E:4E Waveplus Technology Co., Ltd.
20194 00:0E:53 AV TECH CORPORATION
20195 00:0E:47 NCI System Co.,Ltd.
20196 00:0E:41 NIHON MECHATRONICS CO.,LTD.
20197 00:0E:42 Motic Incoporation Ltd.
20198 00:0E:3C Transact Technologies Inc
20199 00:0E:36 HEINESYS, Inc.
20200 00:0D:B1 Japan Network Service Co., Ltd.
20201 00:0D:A9 T.E.A.M. S.L.
20202 00:0D:AC Japan CBM Corporation
20203 00:0D:A4 DOSCH & AMAND SYSTEMS AG
20204 00:0D:97 ABB Inc./Tropos
20205 00:0D:98 S.W.A.C. Schmitt-Walter Automation Consult GmbH
20206 00:0D:8A Winners Electronics Co., Ltd.
20207 00:0D:91 Eclipse (HQ Espana) S.L.
20208 00:0D:7F MIDAS COMMUNICATION TECHNOLOGIES PTE LTD ( Foreign Branch)
20209 00:0D:79 Dynamic Solutions Co,.Ltd.
20210 00:0D:73 Technical Support, Inc.
20211 00:0D:7A DiGATTO Asia Pacific Pte Ltd
20212 00:0D:6C M-Audio
20213 00:0D:5A Tiesse SpA
20214 00:0D:60 IBM Corp
20215 00:0D:59 Amity Systems, Inc.
20216 00:0D:CB Petcomkorea Co., Ltd.
20217 00:0D:C4 Emcore Corporation
20218 00:0D:BE Bel Fuse Europe Ltd.,UK
20219 00:0D:B8 SCHILLER AG
20220 00:0D:BD Cisco Systems, Inc
20221 00:0E:30 AERAS Networks, Inc.
20222 00:0E:29 Shester Communications Inc
20223 00:0E:23 Incipient, Inc.
20224 00:0E:24 Huwell Technology Inc.
20225 00:0E:16 SouthWing S.L.
20226 00:0E:1D ARION Technology Inc.
20227 00:0E:09 Shenzhen Coship Software Co.,LTD.
20228 00:0E:11 BDT Büro und Datentechnik GmbH & Co.KG
20229 00:0B:C8 AirFlow Networks
20230 00:0B:CF AGFA NDT INC.
20231 00:0B:C3 Multiplex, Inc.
20232 00:0B:BC En Garde Systems, Inc.
20233 00:0B:C1 Bay Microsystems, Inc.
20234 00:0B:B0 Sysnet Telematica srl
20235 00:0B:B5 nStor Technologies, Inc.
20236 00:0B:A6 Miyakawa Electric Works Ltd.
20237 00:0B:AB Advantech Technology (CHINA) Co., Ltd.
20238 00:0B:99 SensAble Technologies, Inc.
20239 00:0B:9A Shanghai Ulink Telecom Equipment Co. Ltd.
20240 00:0B:9F Neue ELSA GmbH
20241 00:0B:94 Digital Monitoring Products, Inc.
20242 00:0C:1D Mettler & Fuchs AG
20243 00:0C:22 Double D Electronics Ltd
20244 00:0C:0F Techno-One Co., Ltd
20245 00:0C:16 Concorde Microsystems Inc.
20246 00:0C:0A Guangdong Province Electronic Technology Research Institute
20247 00:0B:FD Cisco Systems, Inc
20248 00:0B:F7 NIDEK CO.,LTD
20249 00:0B:FC Cisco Systems, Inc
20250 00:0B:FE CASTEL Broadband Limited
20251 00:0C:03 HDMI Licensing, LLC
20252 00:0C:A4 Prompttec Product Management GmbH
20253 00:0C:AB COMMEND International
20254 00:0C:98 LETEK Communications Inc.
20255 00:0C:9D UbeeAirWalk, Inc.
20256 00:0C:9F NKE Corporation
20257 00:0C:8C KODICOM CO.,LTD.
20258 00:0C:91 Riverhead Networks Inc.
20259 00:0C:80 Opelcomm Inc.
20260 00:0C:85 Cisco Systems, Inc
20261 00:0C:D0 Symetrix
20262 00:0C:D5 Passave Inc.
20263 00:0C:DC BECS Technology, Inc
20264 00:0C:C9 ILWOO DATA & TECHNOLOGY CO.,LTD
20265 00:0C:B0 Star Semiconductor Corporation
20266 00:0C:B6 NANJING SEU MOBILE & INTERNET TECHNOLOGY CO.,LTD
20267 00:0C:BD Interface Masters, Inc
20268 00:0C:C2 ControlNet (India) Private Limited
20269 00:0C:AF TRI TERM CO.,LTD.
20270 00:0C:71 Wybron, Inc
20271 00:0C:78 In-Tech Electronics Limited
20272 00:0C:7D TEIKOKU ELECTRIC MFG. CO., LTD
20273 00:0C:65 Sunin Telecom
20274 00:0C:6A MBARI
20275 00:0C:6C Elgato Systems LLC
20276 00:0B:88 Vidisco ltd.
20277 00:0B:8D Avvio Networks
20278 00:0B:7B Test-Um Inc.
20279 00:0B:7A L-3 Linkabit
20280 00:0B:7C Telex Communications
20281 00:0B:81 Kaparel Corporation
20282 00:0B:6E Neff Instrument Corp.
20283 00:0B:75 Iosoft Ltd.
20284 00:0B:69 Franke Finland Oy
20285 00:91:D6 Crystal Group, Inc.
20286 00:0B:62 ib-mohnen KG
20287 00:0B:59 ScriptPro, LLC
20288 00:0C:52 Roll Systems Inc.
20289 00:0C:57 MACKIE Engineering Services Belgium BVBA
20290 00:0C:59 Indyme Electronics, Inc.
20291 00:0C:5E Calypso Medical
20292 00:0C:4B Cheops Elektronik
20293 00:0C:46 Allied Telesyn Inc.
20294 00:0C:3D Glsystech Co., Ltd.
20295 00:0C:33 Compucase Enterprise Co. Ltd.
20296 00:0C:36 SHARP TAKAYA ELECTRONICS INDUSTRY CO.,LTD.
20297 00:0C:2C Enwiser Inc.
20298 00:0C:FB Korea Network Systems
20299 00:0C:EF Open Networks Engineering Ltd
20300 00:0C:F4 AKATSUKI ELECTRIC MFG.CO.,LTD.
20301 00:0C:E8 GuangZhou AnJuBao Co., Ltd
20302 00:0C:E1 The Open Group
20303 00:0C:CF Cisco Systems, Inc
20304 00:0B:EB Systegra AG
20305 00:0B:F0 MoTEX Products Co., Ltd.
20306 00:0B:DD TOHOKU RICOH Co., LTD.
20307 00:0B:E4 Hosiden Corporation
20308 00:0B:D8 Industrial Scientific Corp.
20309 00:0B:D4 Beijing Wise Technology & Science Development Co.Ltd
20310 00:0A:1D Optical Communications Products Inc.
20311 00:0A:1F ART WARE Telecommunication Co., Ltd.
20312 00:0A:24 Octave Communications
20313 00:0A:18 Vichel Inc.
20314 00:0A:0C Scientific Research Corporation
20315 00:0A:11 ExPet Technologies, Inc
20316 00:09:F8 UNIMO TECHNOLOGY CO., LTD.
20317 00:09:FB Philips Patient Monitoring
20318 00:0A:02 ANNSO CO., LTD.
20319 00:09:EB HuMANDATA LTD.
20320 00:09:EC Daktronics, Inc.
20321 00:09:F1 Yamaki Electric Corporation
20322 00:09:E5 Hottinger Baldwin Messtechnik GmbH
20323 00:09:D9 Neoscale Systems, Inc
20324 00:09:DE Samjin Information & Communications Co., Ltd.
20325 00:09:CC Moog GmbH
20326 00:09:C6 Visionics Corporation
20327 00:09:CB HBrain
20328 00:09:D2 Mai Logic Inc.
20329 00:09:BE Mamiya-OP Co.,Ltd.
20330 00:09:C2 Onity, Inc.
20331 00:0B:51 Micetek International Inc.
20332 00:0B:54 BiTMICRO Networks, Inc.
20333 00:0B:45 Cisco Systems, Inc
20334 00:0B:4C Clarion (M) Sdn Bhd
20335 00:0B:40 Oclaro
20336 00:0B:32 VORMETRIC, INC.
20337 00:0B:39 Keisoku Giken Co.,Ltd.
20338 00:0B:3E BittWare, Inc
20339 00:0B:26 Wetek Corporation
20340 00:0B:2B HOSTNET CORPORATION
20341 00:0B:2D Danfoss Inc.
20342 00:0A:BB Taiwan Secom Co,. Ltd
20343 00:0A:C7 Unication Group
20344 00:0A:AF Pipal Systems
20345 00:0A:B6 COMPUNETIX, INC
20346 00:0A:A3 SHIMAFUJI ELECTRIC CO.,LTD.
20347 00:0A:A8 ePipe Pty. Ltd.
20348 00:0A:AA AltiGen Communications Inc.
20349 00:0A:90 Bayside Interactive, Inc.
20350 00:0A:9C Server Technology, Inc.
20351 00:0A:96 MEWTEL TECHNOLOGY INC.
20352 00:0A:81 TEIMA Audiotex S.L.
20353 00:0A:83 SALTO SYSTEMS S.L.
20354 00:0A:88 InCypher S.A.
20355 00:0A:7C Tecton Ltd
20356 00:0A:70 MPLS Forum
20357 00:0A:75 Caterpillar, Inc
20358 00:0A:62 Crinis Networks, Inc.
20359 00:0A:64 Eracom Technologies
20360 00:0A:69 SUNNY bell Technology Co., Ltd.
20361 00:0A:5D FingerTec Worldwide Sdn Bhd
20362 00:0A:F4 Cisco Systems, Inc
20363 00:0A:E8 Cathay Roxus Information Technology Co. LTD
20364 00:0A:DA Vindicator Technologies
20365 00:0A:DC RuggedCom Inc.
20366 00:0A:E1 EG Technology
20367 00:0A:C9 Zambeel Inc
20368 00:0A:CE RADIANTECH, INC.
20369 00:0A:D5 Brainchild Electronic Co., Ltd.
20370 00:0A:4F Brain Boxes Limited
20371 00:0A:51 GyroSignal Technology Co., Ltd.
20372 00:0A:56 HITACHI Maxell Ltd.
20373 00:0A:4A Targa Systems Ltd.
20374 00:0A:37 Procera Networks, Inc.
20375 00:0A:3E EADS Telecom
20376 00:0A:43 Chunghwa Telecom Co., Ltd.
20377 00:0A:30 Visteon Corporation
20378 00:0A:32 Xsido Corporation
20379 00:0A:2B Etherstuff
20380 00:0A:29 Pan Dacom Networking AG
20381 00:0B:1A Industrial Defender, Inc.
20382 00:0B:1F I CON Computer Co.
20383 00:0B:13 ZETRON INC
20384 00:0B:0C Agile Systems Inc.
20385 00:0B:07 Voxpath Networks
20386 00:0A:F9 HiConnect, Inc.
20387 00:0A:FB Ambri Limited
20388 00:0B:00 FUJIAN START COMPUTER EQUIPMENT CO.,LTD
20389 00:09:B8 Entise Systems
20390 00:09:B7 Cisco Systems, Inc
20391 00:09:B2 L&F Inc.
20392 00:09:A5 HANSUNG ELETRONIC INDUSTRIES DEVELOPMENT CO., LTD
20393 00:09:A6 Ignis Optics, Inc.
20394 00:09:AB Netcontrol Oy
20395 00:09:9F VIDEX INC.
20396 00:07:B3 Cisco Systems, Inc
20397 00:07:AD Pentacon GmbH Foto-und Feinwerktechnik
20398 00:07:A5 Y.D.K Co. Ltd.
20399 00:07:9F Action Digital Inc.
20400 00:07:92 Sütron Electronic GmbH
20401 00:07:99 Tipping Point Technologies, Inc.
20402 00:07:8C Elektronikspecialisten i Borlange AB
20403 00:07:86 Wireless Networks Inc.
20404 00:07:75 Valence Semiconductor, Inc.
20405 00:07:7C Westermo Teleindustri AB
20406 00:07:76 Federal APD
20407 00:07:7F J Communications Co., Ltd.
20408 00:07:80 Bluegiga Technologies OY
20409 00:08:81 DIGITAL HANDS CO.,LTD.
20410 02:C0:8C 3COM CORPORATION
20411 00:08:7B RTX Telecom A/S
20412 00:08:80 BroadTel Canada Communications inc.
20413 00:08:6E Hyglo AB
20414 00:08:68 PurOptix
20415 00:08:61 SoftEnergy Co., Ltd.
20416 00:08:4F Qualstar Corporation
20417 00:08:5B Hanbit Electronics Co., Ltd.
20418 00:08:55 NASA-Goddard Space Flight Center
20419 00:08:4E DivergeNet, Inc.
20420 00:08:5C Shanghai Dare Technologies Co. Ltd.
20421 00:07:ED Altera Corporation
20422 00:07:F4 Eletex Co., Ltd.
20423 00:07:E1 WIS Communications Co. Ltd.
20424 00:07:D4 Zhejiang Yutong Network Communication Co Ltd.
20425 00:07:DB Kirana Networks, Inc.
20426 00:07:D5 3e Technologies Int;., Inc.
20427 00:05:F9 TOA Corporation
20428 00:07:C5 Gcom, Inc.
20429 00:07:CC Kaba Benzing GmbH
20430 00:07:C6 VDS Vosskuhler GmbH
20431 00:07:B9 Ginganet Corporation
20432 00:07:BF Armillaire Technologies, Inc.
20433 00:04:7F Chr. Mayr GmbH & Co. KG
20434 00:09:61 Switchgear and Instrumentation Ltd
20435 00:09:5A RACEWOOD TECHNOLOGY
20436 00:09:54 AMiT spol. s. r. o.
20437 00:09:4E BARTECH SYSTEMS INTERNATIONAL, INC
20438 00:09:53 Linkage System Integration Co.Ltd.
20439 00:09:42 Wireless Technologies, Inc
20440 00:09:47 Aztek, Inc.
20441 00:09:3B HYUNDAI NETWORKS INC.
20442 00:09:34 Dream-Multimedia-Tv GmbH
20443 00:08:BA Erskine Systems Ltd
20444 00:08:B4 SYSPOL
20445 00:08:AE PacketFront Network Products AB
20446 00:08:A7 iLogic Inc.
20447 00:08:A2 ADI Engineering, Inc.
20448 00:08:A1 CNet Technology Inc.
20449 00:08:9B ICP Electronics Inc.
20450 00:08:8D Sigma-Links Inc.
20451 00:08:93 LE INFORMATION COMMUNICATION INC.
20452 00:08:8E Nihon Computer Co., Ltd.
20453 00:08:97 Quake Technologies
20454 00:08:87 Maschinenfabrik Reinhausen GmbH
20455 00:08:FD BlueKorea Co., Ltd.
20456 00:08:F5 YESTECHNOLOGY Co.,Ltd.
20457 00:08:EF DIBAL,S.A.
20458 00:08:EA Motion Control Engineering, Inc
20459 00:08:DD Telena Communications, Inc.
20460 00:08:DE 3UP Systems
20461 00:08:E3 Cisco Systems, Inc
20462 00:08:D7 HOW CORPORATION
20463 00:08:CB Zeta Broadband Inc.
20464 00:08:D0 Musashi Engineering Co., LTD.
20465 00:08:C1 Avistar Communications Corporation
20466 00:08:C6 Philips Consumer Communications
20467 00:09:93 Visteon Corporation
20468 00:09:98 Capinfo Company Limited
20469 00:09:86 Metalink LTD.
20470 00:09:85 Auto Telecom Company
20471 00:09:8C Option Wireless Sweden
20472 00:09:80 Power Zenith Inc.
20473 00:09:73 Lenten Technology Co., Ltd.
20474 00:09:74 Innopia Technologies, Inc.
20475 00:09:79 Advanced Television Systems Committee, Inc.
20476 00:09:66 Thales Navigation
20477 00:09:6D Powernet Technologies Corp.
20478 00:08:1F Pou Yuen Tech Corp. Ltd.
20479 00:08:26 Colorado Med Tech
20480 00:08:20 Cisco Systems, Inc
20481 00:08:25 Acme Packet
20482 00:08:2C Homag AG
20483 00:08:19 Banksys
20484 00:08:10 Key Technology, Inc.
20485 00:08:13 Diskbank, Inc.
20486 00:08:0A Espera-Werke GmbH
20487 00:08:04 ICA Inc.
20488 00:07:FA ITT Co., Ltd.
20489 00:07:E7 FreeWave Technologies
20490 00:07:EE telco Informationssysteme GmbH
20491 00:09:28 Telecore
20492 00:09:2F Akom Technology Corporation
20493 00:09:22 TST Biometrics GmbH
20494 00:09:21 Planmeca Oy
20495 00:09:1C CacheVision, Inc
20496 00:09:10 Simple Access Inc.
20497 00:09:15 CAS Corp.
20498 00:09:0F Fortinet Inc.
20499 00:09:09 Telenor Connect A/S
20500 00:09:02 Redline Communications Inc.
20501 00:06:5E Photuris, Inc.
20502 00:06:45 Meisei Electric Co. Ltd.
20503 00:06:44 neix,Inc
20504 00:06:4B Alexon Co., Ltd.
20505 00:06:3B Arcturus Networks Inc.
20506 00:06:3A Dura Micro, Inc.
20507 00:06:34 GTE Airfone Inc.
20508 00:06:2A Cisco Systems, Inc
20509 00:06:27 Uniwide Technologies, Inc.
20510 00:06:2E Aristos Logic Corp.
20511 00:06:17 Redswitch Inc.
20512 00:06:1E Maxan Systems
20513 00:06:18 DigiPower Manufacturing Inc.
20514 00:07:70 Ubiquoss Inc
20515 00:07:6B Stralfors AB
20516 00:07:5F VCS Video Communication Systems AG
20517 00:07:66 Chou Chin Industrial Co., Ltd.
20518 00:07:59 Boris Manufacturing Corp.
20519 00:07:4C Beicom Inc.
20520 00:07:53 Beijing Qxcomm Technology Co., Ltd.
20521 00:07:43 Chelsio Communications
20522 00:07:44 Unico, Inc.
20523 00:07:47 Mecalc
20524 00:07:37 Soriya Co. Ltd.
20525 00:07:3E China Great-Wall Computer Shenzhen Co., Ltd.
20526 00:06:C4 Piolink Inc.
20527 00:06:C0 United Internetworks, Inc.
20528 00:06:BA Westwave Communications
20529 00:06:AD KB Electronics Ltd.
20530 00:06:B4 Vorne Industries, Inc.
20531 00:06:AE Himachal Futuristic Communications Ltd
20532 00:06:B3 Diagraph Corporation
20533 00:06:A3 Bitran Corporation
20534 00:06:9D Petards Ltd
20535 00:06:A7 Primarion
20536 00:06:57 Market Central, Inc.
20537 00:06:97 R & D Center
20538 00:06:91 PT Inovacao
20539 00:05:C7 I/F-COM A/S
20540 00:05:CE Prolink Microsystems Corporation
20541 00:05:C1 A-Kyung Motion, Inc.
20542 00:05:BB Myspace AB
20543 00:05:9B Cisco Systems, Inc
20544 00:05:A7 Hyperchip, Inc.
20545 00:05:B5 Broadcom Technologies
20546 00:05:9A Cisco Systems, Inc
20547 00:05:A1 Zenocom
20548 00:05:AB Cyber Fone, Inc.
20549 00:05:88 Sensoria Corp.
20550 00:05:8E Flextronics International GmbH & Co. Nfg. KG
20551 00:06:12 Accusys, Inc.
20552 00:06:09 Crossport Systems
20553 00:06:0F Narad Networks Inc
20554 00:06:02 Cirkitech Electronics Co.
20555 00:05:ED Technikum Joanneum GmbH
20556 00:06:00 Toshiba Teli Corporation
20557 00:05:E7 Netrake an AudioCodes Company
20558 00:05:F3 Webyn
20559 00:05:FA IPOptical, Inc.
20560 00:05:DE Gi Fone Korea, Inc.
20561 00:05:DA Apex Automationstechnik
20562 00:05:C8 VERYTECH
20563 00:05:D4 FutureSmart Networks, Inc.
20564 00:06:EC Harris Corporation
20565 00:06:DF AIDONIC Corporation
20566 00:06:E0 MAT Co., Ltd.
20567 00:06:E5 Fujian Newland Computer Ltd. Co.
20568 00:06:DB ICHIPS Co., Ltd.
20569 00:06:D0 Elgar Electronics Corp.
20570 00:06:D7 Cisco Systems, Inc
20571 00:06:CA American Computer & Digital Components, Inc. (ACDC)
20572 00:05:81 Snell
20573 00:05:7B Chung Nam Electronic Co., Ltd.
20574 00:05:82 ClearCube Technology
20575 00:05:77 SM Information & Communication
20576 00:05:71 Seiwa Electronics Co.
20577 00:05:6B C.P. Technology Co., Ltd.
20578 00:05:65 Tailyn Communication Company Ltd.
20579 00:05:5F Cisco Systems, Inc
20580 00:05:5E Cisco Systems, Inc
20581 00:05:58 Synchronous, Inc.
20582 00:05:52 Xycotec Computer GmbH
20583 00:05:49 Salira Optical Network Systems
20584 00:07:2B Jung Myung Telecom Co., Ltd.
20585 00:07:31 Ophir-Spiricon LLC
20586 00:07:1A Finedigital Inc.
20587 00:07:21 Formac Elektronik GmbH
20588 00:07:0E Cisco Systems, Inc
20589 00:07:15 General Research of Electronics, Inc.
20590 00:07:08 Bitrage Inc.
20591 00:06:F2 Platys Communications
20592 00:06:FE Ambrado, Inc
20593 00:06:FC Fnet Co., Ltd.
20594 00:06:84 Biacore AB
20595 00:06:8A NeuronNet Co. Ltd. R&D Center
20596 00:06:7E WinCom Systems, Inc.
20597 00:06:70 Upponetti Oy
20598 00:06:76 Novra Technologies Inc.
20599 00:06:7A JMP Systems
20600 00:06:64 Fostex Corporation
20601 00:06:6A InfiniCon Systems, Inc.
20602 00:06:51 Aspen Networks Inc.
20603 00:06:5D Heidelberg Web Systems
20604 00:04:15 Rasteme Systems Co., Ltd.
20605 00:04:08 Sanko Electronics Co., Ltd.
20606 00:04:09 Cratos Networks
20607 00:04:02 Nexsan Technologies, Ltd.
20608 00:03:F8 SanCastle Technologies, Inc.
20609 00:03:FF Microsoft Corporation
20610 00:03:F1 Cicada Semiconductor, Inc.
20611 00:03:F2 Seneca Networks
20612 00:03:EC ICG Research, Inc.
20613 00:03:E6 Entone, Inc.
20614 00:03:DE OTC Wireless
20615 00:03:E1 Winmate Communication, Inc.
20616 00:03:DA Takamisawa Cybernetics Co., Ltd.
20617 00:05:4C RF Innovations Pty Ltd
20618 00:05:43 IQ Wireless GmbH
20619 00:05:3D Agere Systems
20620 00:05:30 Andiamo Systems, Inc.
20621 00:05:37 Nets Technology Co., Ltd.
20622 00:05:36 Danam Communications, Inc.
20623 00:05:24 BTL System (HK) Limited
20624 00:05:2A Ikegami Tsushinki Co., Ltd.
20625 00:05:1D Airocon, Inc.
20626 00:05:17 Shellcomm, Inc.
20627 00:05:13 VTLinx Multimedia Systems, Inc.
20628 00:04:D4 Proview Electronics Co., Ltd.
20629 00:04:CE Patria Ailon
20630 00:04:CD Extenway Solutions Inc
20631 00:04:C7 NetMount
20632 00:04:C8 LIBA Maschinenfabrik GmbH
20633 00:04:C1 Cisco Systems, Inc
20634 00:04:BB Bardac Corporation
20635 00:04:B5 Equitrac Corporation
20636 00:04:A7 FabiaTech Corporation
20637 00:04:A1 Pathway Connectivity
20638 00:04:9A Cisco Systems, Inc
20639 00:03:5B BridgeWave Communications
20640 00:03:56 Wincor Nixdorf International GmbH
20641 00:03:50 BTICINO SPA
20642 00:03:48 Norscan Instruments, Ltd.
20643 00:03:45 Routrek Networks Corporation
20644 00:03:3D ILSHin Lab
20645 00:01:EC Ericsson Group
20646 00:03:31 Cisco Systems, Inc
20647 00:03:38 Oak Technology
20648 00:03:35 Mirae Technology
20649 00:03:2C ABB Switzerland Ltd
20650 00:03:25 Arima Computer Corp.
20651 00:04:53 YottaYotta, Inc.
20652 00:04:4D Cisco Systems, Inc
20653 00:04:49 Mapletree Networks
20654 00:04:43 Agilent Technologies, Inc.
20655 00:04:3D INDEL AG
20656 00:04:31 GlobalStreams, Inc.
20657 00:04:36 ELANsat Technologies, Inc.
20658 00:04:30 Netgem
20659 00:04:2A Wireless Networks, Inc.
20660 00:04:24 TMC s.r.l.
20661 00:04:1B Bridgeworks Ltd.
20662 00:04:1E Shikoku Instrumentation Co., Ltd.
20663 00:03:D3 Internet Energy Systems, Inc.
20664 00:03:CE ETEN Technologies, Inc.
20665 00:03:CB Nippon Systems Development Co., Ltd.
20666 00:03:C2 Solphone K.K.
20667 00:03:C7 hopf Elektronik GmbH
20668 00:03:BB Signal Communications Limited
20669 00:03:B5 Entra Technology Co.
20670 00:03:B0 Xsense Technology Corp.
20671 00:03:A4 Imation Corp.
20672 00:03:A9 AXCENT Media AG
20673 00:03:AD Emerson Energy Systems AB
20674 00:03:96 EZ Cast Co., Ltd.
20675 00:05:0D Midstream Technologies, Inc.
20676 00:05:07 Fine Appliance Corp.
20677 00:04:FD Japan Control Engineering Co., Ltd.
20678 00:04:F7 Omega Band, Inc.
20679 00:04:F1 WhereNet
20680 00:04:DA Relax Technology, Inc.
20681 00:80:87 OKI ELECTRIC INDUSTRY CO., LTD
20682 00:04:E0 Procket Networks
20683 00:04:60 Knilink Technology, Inc.
20684 00:04:94 Breezecom, Ltd.
20685 00:04:8E Ohm Tech Labs, Inc.
20686 00:04:95 Tejas Networks India Limited
20687 00:04:83 Deltron Technology, Inc.
20688 00:04:89 YAFO Networks, Inc.
20689 00:04:79 Radius Co., Ltd.
20690 00:04:6D Cisco Systems, Inc
20691 00:04:72 Telelynx, Inc.
20692 00:04:6C Cyber Technology Co., Ltd.
20693 00:04:66 ARMITEL Co.
20694 00:04:5A The Linksys Group, Inc.
20695 00:04:5F Avalue Technology, Inc.
20696 00:03:91 Advanced Digital Broadcast, Ltd.
20697 00:03:8A America Online, Inc.
20698 00:03:8E Atoga Systems, Inc.
20699 00:03:7C Coax Media
20700 00:03:81 Ingenico International
20701 00:03:75 NetMedia, Inc.
20702 00:03:6E Nicon Systems (Pty) Limited
20703 00:03:62 Vodtel Communications, Inc.
20704 00:03:1C Svenska Hardvarufabriken AB
20705 00:03:15 Cidco Incorporated
20706 00:03:10 E-Globaledge Corporation
20707 00:03:0D Uniwill Computer Corp.
20708 00:03:09 Texcel Technology PLC
20709 00:03:04 Pacific Broadband Communications
20710 00:01:9F ReadyNet
20711 00:02:FD Cisco Systems, Inc
20712 00:02:F6 Equipe Communications
20713 00:02:F1 Pinetron Co., Ltd.
20714 00:02:EF CCC Network Systems Group Ltd.
20715 00:02:EB Pico Communications
20716 00:02:E6 Gould Instrument Systems, Inc.
20717 00:02:DF Net Com Systems, Inc.
20718 00:02:D3 NetBotz, Inc.
20719 00:02:D8 BRECIS Communications Corporation
20720 00:02:CC M.C.C.I
20721 00:02:D0 Comdial Corporation
20722 00:02:C5 Evertz Microsystems Ltd.
20723 00:02:C0 Bencent Tzeng Industry Co., Ltd.
20724 00:02:BD Bionet Co., Ltd.
20725 00:02:B7 Watanabe Electric Industry Co., Ltd.
20726 00:02:B0 Hokubu Communication & Industrial Co., Ltd.
20727 00:02:A8 Air Link Technology
20728 00:02:AB CTC Union Technologies Co., Ltd.
20729 00:02:A4 AddPac Technology Co., Ltd.
20730 00:02:99 Apex, Inc.
20731 00:02:9D Merix Corp.
20732 00:02:91 Open Network Co., Ltd.
20733 00:02:8A Ambit Microsystems Corporation
20734 00:02:87 Adapcom
20735 00:02:8C Micrel-Synergy Semiconductor
20736 00:02:82 ViaClix, Inc.
20737 00:02:7B Amplify Net, Inc.
20738 00:02:4F IPM Datacom S.R.L.
20739 00:02:74 Tommy Technologies Corp.
20740 00:02:6F Senao International Co., Ltd.
20741 00:02:64 AudioRamp.com
20742 00:30:6C Hitex Holding GmbH
20743 00:01:77 EDSL
20744 00:01:61 Meta Machine Technology
20745 00:01:68 VITANA CORPORATION
20746 00:01:74 CyberOptics Corporation
20747 00:01:64 Cisco Systems, Inc
20748 00:01:70 ESE Embedded System Engineer'g
20749 00:01:52 CHROMATEK INC.
20750 00:01:56 FIREWIREDIRECT.COM, INC.
20751 00:01:3F Neighbor World Co., Ltd.
20752 00:01:46 Tesco Controls, Inc.
20753 00:01:33 KYOWA Electronic Instruments C
20754 00:01:E3 Siemens AG
20755 00:01:EA Cirilium Corp.
20756 00:01:EF Camtel Technology Corp.
20757 00:01:F2 Mark of the Unicorn, Inc.
20758 00:01:D7 F5 Networks, Inc.
20759 00:01:DC Activetelco
20760 00:01:DF ISDN Communications, Ltd.
20761 00:01:D3 PAXCOMM, Inc.
20762 00:01:C5 Simpler Networks
20763 00:01:D0 VitalPoint, Inc.
20764 00:01:B2 Digital Processing Systems, Inc.
20765 00:01:C1 Vitesse Semiconductor Corporation
20766 00:01:BA IC-Net, Inc.
20767 00:01:B6 SAEJIN T&M Co., Ltd.
20768 00:02:2B SAXA, Inc.
20769 00:02:26 XESystems, Inc.
20770 00:02:1E SIMTEL S.R.L.
20771 00:02:1A Zuma Networks
20772 00:02:0B Native Networks, Inc.
20773 00:02:12 SierraCom
20774 00:02:17 Cisco Systems, Inc
20775 00:02:07 VisionGlobal Network Corp.
20776 00:02:04 Bodmann Industries Elektronik GmbH
20777 00:01:F8 TEXIO TECHNOLOGY CORPORATION
20778 00:01:FF Data Direct Networks, Inc.
20779 00:01:FB DoTop Technology, Inc.
20780 00:02:68 Harris Government Communications
20781 00:02:5D Calix Networks
20782 00:02:58 Flying Packets Communications
20783 00:02:57 Microcom Corp.
20784 00:02:54 WorldGate
20785 00:02:48 Pilz GmbH & Co.
20786 00:02:2E TEAC Corp. R& D
20787 00:02:41 Amer.com
20788 00:02:32 Avision, Inc.
20789 00:01:2A Telematica Sistems Inteligente
20790 00:01:30 Extreme Networks
20791 00:01:37 IT Farm Corporation
20792 00:01:43 Cisco Systems, Inc
20793 00:01:1B Unizone Technologies, Inc.
20794 00:01:22 Trend Communications, Ltd.
20795 00:01:1E Precidia Technologies, Inc.
20796 00:01:08 AVLAB Technology, Inc.
20797 00:01:0B Space CyberLink, Inc.
20798 00:01:AE Trex Enterprises
20799 00:01:AA Airspan Communications, Ltd.
20800 00:01:98 Darim Vision
20801 00:01:80 AOpen, Inc.
20802 00:01:87 I2SE GmbH
20803 00:01:8F Kenetec, Inc.
20804 00:01:83 ANITE TELECOMS
20805 00:01:9C JDS Uniphase Inc.
20806 00:01:90 SMK-M
20807 00:30:D1 INOVA CORPORATION
20808 00:30:32 MagicRam, Inc.
20809 00:30:5A TELGEN CORPORATION
20810 00:30:69 IMPACCT TECHNOLOGY CORP.
20811 00:30:EC BORGARDT
20812 00:30:B4 INTERSIL CORP.
20813 00:30:8E CROSS MATCH TECHNOLOGIES, INC.
20814 00:30:D0 Tellabs
20815 00:30:A5 ACTIVE POWER
20816 00:30:09 Tachion Networks, Inc.
20817 00:30:2F GE Aviation System
20818 00:30:A4 Woodwind Communications System
20819 00:30:E5 Amper Datos S.A.
20820 00:30:C0 Lara Technology, Inc.
20821 00:30:0E Klotz Digital AG
20822 00:30:94 Cisco Systems, Inc
20823 00:30:9A ASTRO TERRA CORP.
20824 00:30:0C CONGRUENCY, LTD.
20825 00:30:FD INTEGRATED SYSTEMS DESIGN
20826 00:30:23 COGENT COMPUTER SYSTEMS, INC.
20827 00:30:DF KB/TEL TELECOMUNICACIONES
20828 00:30:7D GRE AMERICA, INC.
20829 00:D0:E4 Cisco Systems, Inc
20830 00:D0:8B ADVA Optical Networking Ltd.
20831 00:D0:98 Photon Dynamics Canada Inc.
20832 00:D0:5E STRATABEAM TECHNOLOGY, INC.
20833 00:D0:BE EMUTEC INC.
20834 00:D0:F4 CARINTHIAN TECH INSTITUTE
20835 00:D0:AA CHASE COMMUNICATIONS
20836 00:D0:FA Thales e-Security Ltd.
20837 00:D0:06 Cisco Systems, Inc
20838 00:D0:3D GALILEO TECHNOLOGY, LTD.
20839 00:D0:14 ROOT, INC.
20840 00:D0:DD SUNRISE TELECOM, INC.
20841 00:D0:91 SMARTSAN SYSTEMS, INC.
20842 00:B0:EE Ajile Systems, Inc.
20843 00:B0:E7 British Federal Ltd.
20844 00:B0:4A Cisco Systems, Inc
20845 00:B0:69 Honewell Oy
20846 00:B0:C2 Cisco Systems, Inc
20847 00:B0:DF Starboard Storage Systems
20848 00:B0:EC EACEM
20849 00:30:92 ModuNORM GmbH
20850 00:30:EE DSG Technology, Inc.
20851 00:30:42 DeTeWe-Deutsche Telephonwerke
20852 00:30:99 BOENIG UND KALLENBACH OHG
20853 00:30:51 ORBIT AVIONIC & COMMUNICATION
20854 00:30:AB DELTA NETWORKS, INC.
20855 00:30:93 Sonnet Technologies, Inc
20856 00:30:3C ONNTO CORP.
20857 00:30:C7 Macromate Corp.
20858 00:30:66 RFM
20859 00:30:7F IRLAN LTD.
20860 00:30:16 ISHIDA CO., LTD.
20861 00:30:2A SOUTHERN INFORMATION
20862 00:30:DC RIGHTECH CORPORATION
20863 00:D0:A4 ALANTRO COMMUNICATIONS
20864 00:D0:43 ZONAL RETAIL DATA SYSTEMS
20865 00:D0:16 SCM MICROSYSTEMS, INC.
20866 00:D0:12 GATEWORKS CORP.
20867 00:D0:92 GLENAYRE WESTERN MULTIPLEX
20868 00:D0:C5 COMPUTATIONAL SYSTEMS, INC.
20869 00:01:A7 UNEX TECHNOLOGY CORPORATION
20870 00:D0:B5 IPricot formerly DotCom
20871 00:30:E8 ENSIM CORP.
20872 00:30:ED Expert Magnetics Corp.
20873 00:30:F9 Sollae Systems Co., Ltd.
20874 00:30:98 Global Converging Technologies
20875 00:30:E2 GARNET SYSTEMS CO., LTD.
20876 00:30:02 Expand Networks
20877 00:30:0B mPHASE Technologies, Inc.
20878 00:30:8F MICRILOR, Inc.
20879 00:30:F3 At Work Computers
20880 00:D0:F9 ACUTE COMMUNICATIONS CORP.
20881 00:D0:63 Cisco Systems, Inc
20882 00:D0:69 TECHNOLOGIC SYSTEMS
20883 00:D0:70 LONG WELL ELECTRONICS CORP.
20884 00:D0:61 TREMON ENTERPRISES CO., LTD.
20885 00:D0:C4 TERATECH CORPORATION
20886 00:30:BF MULTIDATA GMBH
20887 00:D0:D7 B2C2, INC.
20888 00:D0:15 UNIVEX MICROTECHNOLOGY CORP.
20889 00:D0:A5 AMERICAN ARIUM
20890 00:D0:E5 SOLIDUM SYSTEMS CORP.
20891 00:D0:B3 DRS Technologies Canada Ltd
20892 00:D0:E9 Advantage Century Telecommunication Corp.
20893 00:D0:94 Seeion Control LLC
20894 00:90:45 Marconi Communications
20895 00:90:F6 ESCALATE NETWORKS, INC.
20896 00:90:EA ALPHA TECHNOLOGIES, INC.
20897 00:90:FE ELECOM CO., LTD. (LANEED DIV.)
20898 00:90:EB SENTRY TELECOM SYSTEMS
20899 00:90:8E Nortel Networks Broadband Access
20900 00:90:CA ACCORD VIDEO TELECOMMUNICATIONS, LTD.
20901 00:90:8B Tattile SRL
20902 00:90:99 ALLIED TELESIS, K.K.
20903 00:90:0E HANDLINK TECHNOLOGIES, INC.
20904 00:90:F7 NBASE COMMUNICATIONS LTD.
20905 00:90:24 PIPELINKS, INC.
20906 00:90:52 SELCOM ELETTRONICA S.R.L.
20907 00:90:E5 TEKNEMA, INC.
20908 00:90:85 GOLDEN ENTERPRISES, INC.
20909 00:90:19 HERMES ELECTRONICS CO., LTD.
20910 00:90:DC TECO INFORMATION SYSTEMS
20911 00:D0:AE ORESIS COMMUNICATIONS, INC.
20912 00:D0:D4 V-BITS, INC.
20913 00:D0:41 AMIGO TECHNOLOGY CO., LTD.
20914 00:D0:D1 Sycamore Networks
20915 00:D0:A1 OSKAR VIERLING GMBH + CO. KG
20916 00:D0:0B RHK TECHNOLOGY, INC.
20917 00:D0:2C CAMPBELL SCIENTIFIC, INC.
20918 00:D0:A0 MIPS DENMARK
20919 00:D0:4E LOGIBAG
20920 00:D0:D9 DEDICATED MICROCOMPUTERS
20921 00:D0:CD ATAN TECHNOLOGY INC.
20922 00:D0:1D FURUNO ELECTRIC CO., LTD.
20923 00:D0:C7 PATHWAY, INC.
20924 00:D0:5C KATHREIN TechnoTrend GmbH
20925 00:D0:40 SYSMATE CO., LTD.
20926 00:D0:8A PHOTRON USA
20927 00:D0:76 Bank of America
20928 00:D0:7A AMAQUEST COMPUTER CORP.
20929 00:D0:BB Cisco Systems, Inc
20930 00:D0:01 VST TECHNOLOGIES, INC.
20931 00:90:4C Epigram, Inc.
20932 00:90:00 DIAMOND MULTIMEDIA
20933 00:90:25 BAE Systems Australia (Electronic Systems) Pty Ltd
20934 00:90:F8 MEDIATRIX TELECOM
20935 00:90:84 ATECH SYSTEM
20936 00:90:54 INNOVATIVE SEMICONDUCTORS, INC
20937 00:90:80 NOT LIMITED, INC.
20938 00:90:C0 K.J. LAW ENGINEERS, INC.
20939 00:90:BC TELEMANN CO., LTD.
20940 00:90:0A PROTON ELECTRONIC INDUSTRIAL CO., LTD.
20941 00:90:4E DELEM BV
20942 00:90:4A CONCUR SYSTEM TECHNOLOGIES
20943 00:90:29 CRYPTO AG
20944 00:90:61 PACIFIC RESEARCH & ENGINEERING CORPORATION
20945 00:90:A9 WESTERN DIGITAL
20946 00:90:72 SIMRAD AS
20947 00:50:48 INFOLIBRIA
20948 00:50:EA XEL COMMUNICATIONS, INC.
20949 00:50:CE LG INTERNATIONAL CORP.
20950 00:50:19 SPRING TIDE NETWORKS, INC.
20951 00:50:AC MAPLE COMPUTER CORPORATION
20952 00:50:44 ASACA CORPORATION
20953 00:50:C6 LOOP TELECOMMUNICATION INTERNATIONAL, INC.
20954 00:50:49 Arbor Networks Inc
20955 00:50:9F HORIZON COMPUTER
20956 00:50:C8 Addonics Technologies, Inc.
20957 00:50:DC TAS TELEFONBAU A. SCHWABE GMBH & CO. KG
20958 00:50:69 PixStream Incorporated
20959 00:90:1D PEC (NZ) LTD.
20960 00:90:2D DATA ELECTRONICS (AUST.) PTY, LTD.
20961 00:90:07 DOMEX TECHNOLOGY CORP.
20962 00:90:48 ZEAL CORPORATION
20963 00:90:E6 ALi Corporation
20964 00:90:46 DEXDYNE, LTD.
20965 00:90:5E RAULAND-BORG CORPORATION
20966 00:90:67 WalkAbout Computers, Inc.
20967 00:90:DA DYNARC, INC.
20968 00:90:26 ADVANCED SWITCHING COMMUNICATIONS, INC.
20969 00:90:BB TAINET COMMUNICATION SYSTEM Corp.
20970 00:90:33 INNOVAPHONE AG
20971 00:90:10 SIMULATION LABORATORIES, INC.
20972 00:90:3D BIOPAC SYSTEMS, INC.
20973 00:90:57 AANetcom, Inc.
20974 00:90:1C mps Software Gmbh
20975 00:90:56 TELESTREAM, INC.
20976 00:90:7D Lake Communications
20977 00:90:DB NEXT LEVEL COMMUNICATIONS
20978 00:50:42 SCI MANUFACTURING SINGAPORE PTE, LTD.
20979 00:50:C0 GATAN, INC.
20980 00:50:D3 DIGITAL AUDIO PROCESSING PTY. LTD.
20981 00:50:9A TAG ELECTRONIC SYSTEMS
20982 00:50:7D IFP
20983 00:50:D0 MINERVA SYSTEMS
20984 00:50:98 GLOBALOOP, LTD.
20985 00:50:FA OXTEL, LTD.
20986 00:50:86 TELKOM SA, LTD.
20987 00:50:E1 NS TECH ELECTRONICS SDN BHD
20988 00:50:13 Chaparral Network Storage
20989 00:50:22 ZONET TECHNOLOGY, INC.
20990 00:50:40 Panasonic Electric Works Co., Ltd.
20991 00:50:D6 ATLAS COPCO TOOLS AB
20992 00:50:82 FORESSON CORPORATION
20993 00:50:CA NET TO NET TECHNOLOGIES
20994 00:50:A6 OPTRONICS
20995 00:50:DB CONTEMPORARY CONTROL
20996 00:50:6B SPX-ATEG
20997 00:50:74 ADVANCED HI-TECH CORP.
20998 00:50:47 Private
20999 00:50:67 AEROCOMM, INC.
21000 00:50:24 NAVIC SYSTEMS, INC.
21001 00:50:41 Coretronic Corporation
21002 00:50:D2 CMC Electronics Inc
21003 00:90:DE CARDKEY SYSTEMS, INC.
21004 00:90:60 SYSTEM CREATE CORP.
21005 00:90:F1 DOT HILL SYSTEMS CORPORATION
21006 00:90:E2 DISTRIBUTED PROCESSING TECHNOLOGY
21007 00:90:6B APPLIED RESOURCES, INC.
21008 00:90:20 PHILIPS ANALYTICAL X-RAY B.V.
21009 00:90:65 FINISAR CORPORATION
21010 00:10:53 COMPUTER TECHNOLOGY CORP.
21011 00:10:A3 OMNITRONIX, INC.
21012 00:10:2B UMAX DATA SYSTEMS, INC.
21013 00:10:55 FUJITSU MICROELECTRONICS, INC.
21014 00:10:3C IC ENSEMBLE, INC.
21015 00:10:D9 IBM JAPAN, FUJISAWA MT+D
21016 00:10:A5 OXFORD INSTRUMENTS
21017 00:10:46 ALCORN MCBRIDE INC.
21018 00:E0:DC NEXWARE CORP.
21019 00:E0:D9 TAZMO CO., LTD.
21020 00:E0:C2 NECSY S.p.A.
21021 00:E0:9B ENGAGE NETWORKS, INC.
21022 00:E0:45 TOUCHWAVE, INC.
21023 00:E0:55 INGENIERIA ELECTRONICA COMERCIAL INELCOM S.A.
21024 00:E0:37 CENTURY CORPORATION
21025 00:E0:81 TYAN COMPUTER CORP.
21026 00:E0:D4 EXCELLENT COMPUTER
21027 00:E0:1A COMTEC SYSTEMS. CO., LTD.
21028 00:E0:BC SYMON COMMUNICATIONS, INC.
21029 00:E0:84 COMPULITE R&D
21030 00:E0:F6 DECISION EUROPE
21031 00:E0:27 DUX, INC.
21032 00:E0:7F LOGISTISTEM s.r.l.
21033 00:E0:43 VitalCom
21034 00:E0:BF TORRENT NETWORKING TECHNOLOGIES CORP.
21035 00:E0:9D SARNOFF CORPORATION
21036 00:E0:BB NBX CORPORATION
21037 00:E0:8A GEC AVERY, LTD.
21038 00:E0:4B JUMP INDUSTRIELLE COMPUTERTECHNIK GmbH
21039 00:10:15 OOmon Inc.
21040 00:10:88 AMERICAN NETWORKS INC.
21041 00:10:08 VIENNA SYSTEMS CORPORATION
21042 00:10:CC CLP COMPUTER LOGISTIK PLANUNG GmbH
21043 00:10:94 Performance Analysis Broadband, Spirent plc
21044 00:10:BB DATA & INFORMATION TECHNOLOGY
21045 00:10:28 COMPUTER TECHNICA, INC.
21046 00:10:8A TeraLogic, Inc.
21047 00:10:C5 PROTOCOL TECHNOLOGIES, INC.
21048 00:10:6D Axxcelera Broadband Wireless
21049 00:10:FC BROADBAND NETWORKS, INC.
21050 00:10:78 NUERA COMMUNICATIONS, INC.
21051 00:10:48 HTRC AUTOMATION, INC.
21052 00:10:81 DPS, INC.
21053 00:10:2D HITACHI SOFTWARE ENGINEERING
21054 00:10:9F PAVO, INC.
21055 00:10:A1 KENDIN SEMICONDUCTOR, INC.
21056 00:10:84 K-BOT COMMUNICATIONS
21057 00:10:AF TAC SYSTEMS, INC.
21058 00:10:0F INDUSTRIAL CPU SYSTEMS
21059 00:10:A2 TNS
21060 00:10:00 CABLE TELEVISION LABORATORIES, INC.
21061 00:10:3B HIPPI NETWORKING FORUM
21062 00:60:C2 MPL AG
21063 00:60:A2 NIHON UNISYS LIMITED CO.
21064 00:60:46 VMETRO, INC.
21065 00:60:9D PMI FOOD EQUIPMENT GROUP
21066 00:60:BF MACRAIGOR SYSTEMS, INC.
21067 00:60:4A SAIC IDEAS GROUP
21068 00:60:81 TV/COM INTERNATIONAL
21069 00:60:B4 GLENAYRE R&D INC.
21070 00:60:45 PATHLIGHT TECHNOLOGIES
21071 00:A0:05 DANIEL INSTRUMENTS, LTD.
21072 00:A0:53 COMPACT DEVICES, INC.
21073 00:A0:33 imc MeBsysteme GmbH
21074 00:A0:59 HAMILTON HALLMARK
21075 00:A0:AD MARCONI SPA
21076 00:A0:F6 AutoGas Systems Inc.
21077 00:A0:96 MITSUMI ELECTRIC CO., LTD.
21078 00:A0:06 IMAGE DATA PROCESSING SYSTEM GROUP
21079 00:60:F3 Performance Analysis Broadband, Spirent plc
21080 00:60:0B LOGWARE GmbH
21081 00:60:3F PATAPSCO DESIGNS
21082 00:60:7C WaveAccess, Ltd.
21083 00:60:8D UNIPULSE CORP.
21084 00:60:49 VINA TECHNOLOGIES
21085 00:60:A1 VPNet, Inc.
21086 00:60:C9 ControlNet, Inc.
21087 00:60:5F NIPPON UNISOFT CORPORATION
21088 00:60:21 DSC CORPORATION
21089 00:60:1D LUCENT TECHNOLOGIES
21090 00:08:00 MULTITECH SYSTEMS, INC.
21091 00:60:C7 AMATI COMMUNICATIONS CORP.
21092 00:E0:CA BEST DATA PRODUCTS
21093 00:E0:97 CARRIER ACCESS CORPORATION
21094 00:E0:9F PIXEL VISION
21095 00:E0:F5 TELES AG
21096 00:E0:70 DH TECHNOLOGY
21097 00:E0:B5 ARDENT COMMUNICATIONS CORP.
21098 00:E0:73 NATIONAL AMUSEMENT NETWORK, INC.
21099 00:E0:E8 GRETACODER Data Systems AG
21100 00:E0:16 RAPID CITY COMMUNICATIONS
21101 00:E0:01 STRAND LIGHTING LIMITED
21102 00:E0:82 ANERMA
21103 00:E0:EA INNOVAT COMMUNICATIONS, INC.
21104 00:E0:6A KAPSCH AG
21105 00:E0:23 TELRAD
21106 00:E0:C3 SAKAI SYSTEM DEVELOPMENT CORP.
21107 00:60:1A KEITHLEY INSTRUMENTS
21108 00:60:AF PACIFIC MICRO DATA, INC.
21109 00:60:1F STALLION TECHNOLOGIES
21110 00:60:8F TEKRAM TECHNOLOGY CO., LTD.
21111 00:60:C5 ANCOT CORP.
21112 00:60:23 PERICOM SEMICONDUCTOR CORP.
21113 00:60:63 PSION DACOM PLC.
21114 00:60:4F Tattile SRL
21115 00:60:E8 HITACHI COMPUTER PRODUCTS (AMERICA), INC.
21116 00:60:72 VXL INSTRUMENTS, LIMITED
21117 00:60:54 CONTROLWARE GMBH
21118 00:A0:DC O.N. ELECTRONIC CO., LTD.
21119 00:A0:13 TELTREND LTD.
21120 00:A0:DF STS TECHNOLOGIES, INC.
21121 00:A0:61 PURITAN BENNETT
21122 00:A0:CE Ecessa
21123 00:A0:2A TRANCELL SYSTEMS
21124 00:A0:2C interWAVE Communications
21125 00:A0:77 FUJITSU NEXION, INC.
21126 00:A0:20 CITICORP/TTI
21127 00:A0:0D THE PANDA PROJECT
21128 00:A0:31 HAZELTINE CORPORATION, MS 1-17
21129 00:A0:41 INFICON
21130 00:60:FA EDUCATIONAL TECHNOLOGY RESOURCES, INC.
21131 00:02:88 GLOBAL VILLAGE COMMUNICATION
21132 00:60:F9 DIAMOND LANE COMMUNICATIONS
21133 00:60:EA StreamLogic
21134 00:60:EC HERMARY OPTO ELECTRONICS INC.
21135 00:60:4E CYCLE COMPUTER CORPORATION, INC.
21136 00:60:2C LINX Data Terminals, Inc.
21137 00:60:28 MACROVISION CORPORATION
21138 00:60:6A MITSUBISHI WIRELESS COMMUNICATIONS. INC.
21139 00:E0:21 FREEGATE CORP.
21140 00:E0:AB DIMAT S.A.
21141 00:E0:B6 Entrada Networks
21142 00:E0:EC CELESTICA INC.
21143 00:E0:38 PROXIMA CORPORATION
21144 00:E0:90 BECKMAN LAB. AUTOMATION DIV.
21145 00:E0:2E SPC ELECTRONICS CORPORATION
21146 00:E0:F4 INSIDE Technology A/S
21147 00:E0:3C AdvanSys
21148 00:E0:96 SHIMADZU CORPORATION
21149 00:E0:F1 THAT CORPORATION
21150 00:A0:D0 TEN X TECHNOLOGY, INC.
21151 00:A0:E0 TENNYSON TECHNOLOGIES PTY LTD
21152 00:A0:99 K-NET LTD.
21153 00:A0:3D OPTO-22
21154 00:A0:8C MultiMedia LANs, Inc.
21155 10:00:E8 NATIONAL SEMICONDUCTOR
21156 00:60:76 SCHLUMBERGER TECHNOLOGIES RETAIL PETROLEUM SYSTEMS
21157 00:60:AE TRIO INFORMATION SYSTEMS AB
21158 00:60:6C ARESCOM
21159 00:60:32 I-CUBE, INC.
21160 00:60:60 Data Innovations North America
21161 00:A0:EB Encore Networks, Inc.
21162 00:A0:C1 ORTIVUS MEDICAL AB
21163 00:A0:7D SEEQ TECHNOLOGY, INC.
21164 00:A0:CF SOTAS, INC.
21165 00:A0:3A KUBOTEK CORPORATION
21166 00:A0:D7 KASTEN CHASE APPLIED RESEARCH
21167 00:A0:9D JOHNATHON FREEMAN TECHNOLOGIES
21168 00:A0:36 APPLIED NETWORK TECHNOLOGY
21169 00:A0:D2 ALLIED TELESIS INTERNATIONAL CORPORATION
21170 00:A0:75 MICRON TECHNOLOGY, INC.
21171 00:A0:09 WHITETREE NETWORK
21172 00:A0:60 ACER PERIPHERALS, INC.
21173 00:A0:0C KINGMAX TECHNOLOGY, INC.
21174 00:20:FD ITV TECHNOLOGIES, INC.
21175 00:20:0D CARL ZEISS
21176 00:20:91 J125, NATIONAL SECURITY AGENCY
21177 00:20:54 Sycamore Networks
21178 00:20:A7 PAIRGAIN TECHNOLOGIES, INC.
21179 00:20:DA Alcatel North America ESD
21180 00:20:05 SIMPLE TECHNOLOGY
21181 00:20:2B ADVANCED TELECOMMUNICATIONS MODULES, LTD.
21182 00:20:86 MICROTECH ELECTRONICS LIMITED
21183 00:20:52 RAGULA SYSTEMS
21184 00:20:90 ADVANCED COMPRESSION TECHNOLOGY, INC.
21185 00:20:A3 Harmonic, Inc
21186 00:20:6A OSAKA COMPUTER CORP.
21187 00:20:DB XNET TECHNOLOGY, INC.
21188 00:20:A4 MULTIPOINT NETWORKS
21189 00:20:1C EXCEL, INC.
21190 00:20:9B ERSAT ELECTRONIC GMBH
21191 00:20:C9 VICTRON BV
21192 00:20:D1 MICROCOMPUTER SYSTEMS (M) SDN.
21193 00:20:84 OCE PRINTING SYSTEMS, GMBH
21194 00:20:C2 TEXAS MEMORY SYSTEMS, INC.
21195 00:20:C8 LARSCOM INCORPORATED
21196 00:20:EC TECHWARE SYSTEMS CORP.
21197 00:20:83 PRESTICOM INCORPORATED
21198 00:20:6D DATA RACE, INC.
21199 00:20:3A DIGITAL BI0METRICS INC.
21200 00:A0:6C SHINDENGEN ELECTRIC MFG. CO., LTD.
21201 00:A0:EE NASHOBA NETWORKS
21202 00:A0:FB TORAY ENGINEERING CO., LTD.
21203 00:A0:E3 XKL SYSTEMS CORP.
21204 00:A0:1E EST CORPORATION
21205 00:A0:80 Tattile SRL
21206 00:A0:C2 R.A. SYSTEMS CO., LTD.
21207 00:A0:CB ARK TELECOMMUNICATIONS, INC.
21208 00:A0:74 PERCEPTION TECHNOLOGY
21209 00:A0:6A Verilink Corporation
21210 00:A0:70 COASTCOM
21211 00:A0:79 ALPS ELECTRIC (USA), INC.
21212 00:20:59 MIRO COMPUTER PRODUCTS AG
21213 00:20:BC Long Reach Networks Pty Ltd
21214 00:20:AD LINQ SYSTEMS
21215 00:20:46 CIPRICO, INC.
21216 00:20:71 IBR GMBH
21217 00:20:A2 GALCOM NETWORKING LTD.
21218 00:20:98 HECTRONIC AB
21219 00:20:65 SUPERNET NETWORKING INC.
21220 00:20:94 CUBIX CORPORATION
21221 00:20:C3 COUNTER SOLUTIONS LTD.
21222 00:20:A5 API ENGINEERING
21223 00:20:70 HYNET, LTD.
21224 00:20:1E NETQUEST CORPORATION
21225 00:20:97 APPLIED SIGNAL TECHNOLOGY
21226 00:20:E8 DATATREK CORPORATION
21227 00:20:4F DEUTSCHE AEROSPACE AG
21228 00:20:2E DAYSTAR DIGITAL
21229 00:20:B0 GATEWAY DEVICES, INC.
21230 00:20:A9 WHITE HORSE INDUSTRIAL
21231 00:20:61 GarrettCom, Inc.
21232 00:20:C6 NECTEC
21233 00:20:D2 RAD DATA COMMUNICATIONS, LTD.
21234 00:A0:F8 Zebra Technologies Inc
21235 00:A0:25 REDCOM LABS INC.
21236 00:A0:D4 RADIOLAN, INC.
21237 00:A0:8A BROOKTROUT TECHNOLOGY, INC.
21238 00:20:93 LANDINGS TECHNOLOGY CORP.
21239 00:20:56 NEOPRODUCTS
21240 00:20:A6 Proxim Wireless
21241 00:C0:73 XEDIA CORPORATION
21242 00:C0:D4 AXON NETWORKS, INC.
21243 00:C0:E5 GESPAC, S.A.
21244 00:A0:CA FUJITSU DENSO LTD.
21245 00:A0:29 COULTER CORPORATION
21246 00:C0:88 EKF ELEKTRONIK GMBH
21247 00:C0:56 SOMELEC
21248 00:C0:63 MORNING STAR TECHNOLOGIES, INC
21249 00:C0:21 NETEXPRESS
21250 00:C0:49 U.S. ROBOTICS, INC.
21251 00:C0:32 I-CUBED LIMITED
21252 00:C0:51 ADVANCED INTEGRATION RESEARCH
21253 00:C0:85 ELECTRONICS FOR IMAGING, INC.
21254 00:C0:FE APTEC COMPUTER SYSTEMS, INC.
21255 00:C0:E8 PLEXCOM, INC.
21256 00:C0:B2 NORAND CORPORATION
21257 00:C0:B1 GENIUS NET CO.
21258 00:C0:D9 QUINTE NETWORK CONFIDENTIALITY
21259 00:C0:38 RASTER IMAGE PROCESSING SYSTEM
21260 00:C0:98 CHUNTEX ELECTRONIC CO., LTD.
21261 00:C0:DD QLogic Corporation
21262 00:C0:8A Lauterbach GmbH
21263 00:40:FF TELEBIT CORPORATION
21264 00:40:D7 STUDIO GEN INC.
21265 00:40:07 TELMAT INFORMATIQUE
21266 00:40:8D THE GOODYEAR TIRE & RUBBER CO.
21267 00:40:2C ISIS DISTRIBUTED SYSTEMS, INC.
21268 00:C0:3D WIESEMANN & THEIS GMBH
21269 00:C0:26 LANS TECHNOLOGY CO., LTD.
21270 00:40:E2 MESA RIDGE TECHNOLOGIES, INC.
21271 00:40:78 WEARNES AUTOMATION PTE LTD
21272 00:40:62 E-SYSTEMS, INC./GARLAND DIV.
21273 00:40:D2 PAGINE CORPORATION
21274 00:40:D0 MITAC INTERNATIONAL CORP.
21275 00:40:E4 E-M TECHNOLOGY, INC.
21276 00:40:BF CHANNEL SYSTEMS INTERN'L INC.
21277 00:40:94 SHOGRAPHICS, INC.
21278 00:40:7F FLIR Systems
21279 00:40:A9 DATACOM INC.
21280 00:C0:7D RISC DEVELOPMENTS LTD.
21281 00:C0:1E LA FRANCAISE DES JEUX
21282 00:C0:84 DATA LINK CORP. LTD.
21283 00:C0:87 UUNET TECHNOLOGIES, INC.
21284 00:C0:33 TELEBIT COMMUNICATIONS APS
21285 00:C0:81 METRODATA LTD.
21286 00:C0:06 NIPPON AVIONICS CO., LTD.
21287 00:C0:13 NETRIX
21288 00:C0:58 DATAEXPERT CORP.
21289 00:40:E8 CHARLES RIVER DATA SYSTEMS,INC
21290 00:40:30 GK COMPUTER
21291 00:80:DC PICKER INTERNATIONAL
21292 00:C0:A8 GVC CORPORATION
21293 00:C0:10 HIRAKAWA HEWTECH CORP.
21294 00:C0:20 ARCO ELECTRONIC, CONTROL LTD.
21295 00:40:A6 Cray, Inc.
21296 00:40:98 DRESSLER GMBH & CO.
21297 00:C0:B9 FUNK SOFTWARE, INC.
21298 00:C0:65 SCOPE COMMUNICATIONS, INC.
21299 00:C0:18 LANART CORPORATION
21300 00:C0:FF DOT HILL SYSTEMS CORPORATION
21301 00:40:0D LANNET DATA COMMUNICATIONS,LTD
21302 00:40:F5 OEM ENGINES
21303 00:40:19 AEON SYSTEMS, INC.
21304 00:40:A1 ERGO COMPUTING
21305 00:40:7E EVERGREEN SYSTEMS, INC.
21306 00:40:F6 KATRON COMPUTERS INC.
21307 00:40:76 Sun Conversion Technologies
21308 00:40:F4 CAMEO COMMUNICATIONS, INC.
21309 00:C0:6D BOCA RESEARCH, INC.
21310 00:C0:DB IPC CORPORATION (PTE) LTD.
21311 00:C0:DA NICE SYSTEMS LTD.
21312 00:C0:9B RELIANCE COMM/TEC, R-TEC
21313 00:C0:B8 FRASER'S HILL LTD.
21314 00:C0:16 ELECTRONIC THEATRE CONTROLS
21315 00:C0:96 TAMURA CORPORATION
21316 00:C0:35 QUINTAR COMPANY
21317 00:C0:CC TELESCIENCES CO SYSTEMS, INC.
21318 00:C0:78 COMPUTER SYSTEMS ENGINEERING
21319 00:40:F3 NETCOR
21320 00:40:33 ADDTRON TECHNOLOGY CO., LTD.
21321 00:40:A3 MICROUNITY SYSTEMS ENGINEERING
21322 00:40:ED NETWORK CONTROLS INT'NATL INC.
21323 00:40:AD SMA REGELSYSTEME GMBH
21324 00:80:D2 SHINNIHONDENKO CO., LTD.
21325 00:80:DF ADC CODENOLL TECHNOLOGY CORP.
21326 00:80:71 SAI TECHNOLOGY
21327 00:80:3D SURIGIKEN CO., LTD.
21328 00:80:4B EAGLE TECHNOLOGIES PTY.LTD.
21329 00:80:07 DLOG NC-SYSTEME
21330 00:80:01 PERIPHONICS CORPORATION
21331 00:80:62 INTERFACE CO.
21332 00:80:F3 SUN ELECTRONICS CORP.
21333 00:80:8D WESTCOAST TECHNOLOGY B.V.
21334 00:80:B2 NETWORK EQUIPMENT TECHNOLOGIES
21335 00:80:5B CONDOR SYSTEMS, INC.
21336 00:80:1C NEWPORT SYSTEMS SOLUTIONS
21337 00:80:C6 NATIONAL DATACOMM CORPORATION
21338 00:80:FA RWT GMBH
21339 00:80:84 THE CLOUD INC.
21340 00:80:46 Tattile SRL
21341 00:80:A6 REPUBLIC TECHNOLOGY, INC.
21342 00:80:09 JUPITER SYSTEMS, INC.
21343 00:80:B5 UNITED NETWORKS INC.
21344 00:80:35 TECHNOLOGY WORKS, INC.
21345 00:80:88 VICTOR COMPANY OF JAPAN, LTD.
21346 00:80:9E DATUS GMBH
21347 00:80:55 FERMILAB
21348 00:80:2A TEST SYSTEMS & SIMULATIONS INC
21349 00:40:E3 QUIN SYSTEMS LTD
21350 00:40:91 PROCOMP INDUSTRIA ELETRONICA
21351 00:40:14 COMSOFT GMBH
21352 00:40:0F DATACOM TECHNOLOGIES
21353 00:40:85 SAAB INSTRUMENTS AB
21354 00:40:06 SAMPO TECHNOLOGY CORPORATION
21355 00:40:2D HARRIS ADACOM CORPORATION
21356 00:40:47 WIND RIVER SYSTEMS
21357 00:40:FA MICROBOARDS, INC.
21358 00:00:2E SOCIETE EVIRA
21359 00:00:ED APRIL
21360 00:00:3C AUSPEX SYSTEMS INC.
21361 00:00:51 HOB ELECTRONIC GMBH & CO. KG
21362 00:00:A7 NETWORK COMPUTING DEVICES INC.
21363 00:00:F7 YOUTH KEEP ENTERPRISE CO LTD
21364 00:00:FC MEIKO
21365 00:00:B5 DATABILITY SOFTWARE SYS. INC.
21366 00:00:26 SHA-KEN CO., LTD.
21367 00:00:22 VISUAL TECHNOLOGY INC.
21368 00:00:6D CRAY COMMUNICATIONS, LTD.
21369 00:00:FA MICROSAGE COMPUTER SYSTEMS INC
21370 00:00:2B CRISP AUTOMATION, INC
21371 00:00:19 APPLIED DYNAMICS INTERNATIONAL
21372 00:80:D3 SHIVA CORP.
21373 00:80:A5 SPEED INTERNATIONAL
21374 00:80:A9 CLEARPOINT RESEARCH
21375 00:80:69 COMPUTONE SYSTEMS
21376 00:80:91 TOKYO ELECTRIC CO.,LTD
21377 00:80:F4 TELEMECANIQUE ELECTRIQUE
21378 00:80:0C VIDECOM LIMITED
21379 00:80:E8 CUMULUS CORPORATIION
21380 00:00:CD Allied Telesis Labs Ltd
21381 00:00:A5 Tattile SRL
21382 00:80:1E XINETRON, INC.
21383 00:80:4A PRO-LOG
21384 00:80:59 STANLEY ELECTRIC CO., LTD
21385 00:80:6B SCHMID TELECOMMUNICATION
21386 00:80:2C THE SAGE GROUP PLC
21387 00:80:18 KOBE STEEL, LTD.
21388 00:80:EE THOMSON CSF
21389 00:80:13 THOMAS-CONRAD CORPORATION
21390 00:80:8E RADSTONE TECHNOLOGY
21391 00:00:36 ATARI CORPORATION
21392 00:80:BD THE FURUKAWA ELECTRIC CO., LTD
21393 00:80:A8 VITACOM CORPORATION
21394 00:80:FB BVM LIMITED
21395 00:80:42 Artesyn Embedded Technologies
21396 00:80:67 SQUARE D COMPANY
21397 00:80:45 MATSUSHITA ELECTRIC IND. CO
21398 00:80:4C CONTEC CO., LTD.
21399 00:80:20 NETWORK PRODUCTS
21400 00:40:44 QNIX COMPUTER CO., LTD.
21401 00:40:DD HONG TECHNOLOGIES
21402 00:40:3A IMPACT TECHNOLOGIES
21403 00:40:C9 NCUBE
21404 00:40:75 Tattile SRL
21405 00:80:F1 OPUS SYSTEMS
21406 08:00:8F CHIPCOM CORPORATION
21407 08:00:81 ASTECH INC.
21408 08:00:7A INDATA
21409 08:00:78 ACCELL CORPORATION
21410 08:00:6E MASSCOMP
21411 08:00:6D WHITECHAPEL COMPUTER WORKS
21412 08:00:6C SUNTEK TECHNOLOGY INT'L
21413 08:00:67 ComDesign
21414 08:00:63 PLESSEY
21415 08:00:60 INDUSTRIAL NETWORKING INC.
21416 00:00:81 Bay Networks
21417 00:00:A1 MARQUETTE ELECTRIC CO.
21418 00:00:F5 DIAMOND SALES LIMITED
21419 00:00:E5 SIGMEX LTD.
21420 00:00:BA SIIG, INC.
21421 00:00:2F TIMEPLEX INC.
21422 00:00:B8 SEIKOSHA CO., LTD.
21423 00:00:7F LINOTYPE-HELL AG
21424 00:00:B7 DOVE COMPUTER CORPORATION
21425 00:00:9A RC COMPUTER A/S
21426 00:00:DE CETIA
21427 00:00:4B ICL DATA OY
21428 00:00:13 CAMEX
21429 00:00:95 SONY TEKTRONIX CORP.
21430 08:00:37 FUJI-XEROX CO. LTD.
21431 08:00:31 LITTLE MACHINES INC.
21432 08:00:2B DIGITAL EQUIPMENT CORPORATION
21433 08:00:2A MOSAIC TECHNOLOGIES INC.
21434 08:00:29 Megatek Corporation
21435 08:00:26 NORSK DATA A.S.
21436 08:00:1F SHARP CORPORATION
21437 00:00:AE DASSAULT ELECTRONIQUE
21438 00:00:DD TCL INCORPORATED
21439 00:00:D9 NIPPON TELEGRAPH & TELEPHONE
21440 00:00:46 OLIVETTI NORTH AMERICA
21441 00:00:17 Oracle
21442 00:00:9F AMERISTAR TECHNOLOGIES INC.
21443 00:00:E3 INTEGRATED MICRO PRODUCTS LTD
21444 00:00:73 SIECOR CORPORATION
21445 00:00:D3 WANG LABORATORIES INC.
21446 00:00:B3 CIMLINC INCORPORATED
21447 00:00:9D LOCUS COMPUTING CORPORATION
21448 00:00:60 KONTRON ELEKTRONIK GMBH
21449 00:00:11 NORMEREL SYSTEMES
21450 08:00:6F PHILIPS APELDOORN B.V.
21451 00:00:B0 RND-RAD NETWORK DEVICES
21452 00:00:71 ADRA SYSTEMS INC.
21453 00:00:6C Private
21454 AA:00:00 DIGITAL EQUIPMENT CORPORATION
21455 02:70:B0 M/A-COM INC. COMPANIES
21456 00:00:0B MATRIX CORPORATION
21457 08:00:42 JAPAN MACNICS CORP.
21458 02:60:86 LOGIC REPLACEMENT TECH. LTD.
21459 00:DD:05 UNGERMANN-BASS INC.
21460 00:BB:F0 UNGERMANN-BASS INC.
21461 00:80:E9 Madge Ltd.
21462 08:00:55 STANFORD TELECOMM. INC.
21463 08:00:48 EUROTHERM GAUGING SYSTEMS
21464 08:00:49 UNIVATION
21465 00:DD:02 UNGERMANN-BASS INC.
21466 00:00:03 XEROX CORPORATION
21467 00:00:08 XEROX CORPORATION
21468 08:00:30 CERN
21469 00:DD:01 UNGERMANN-BASS INC.
21470 18:01:7D Harbin Arteor technology co., LTD
21471 00:1C:DF Belkin International Inc.
21472 94:44:52 Belkin International Inc.
21473 08:86:3B Belkin International Inc.
21474 20:82:C0 Xiaomi Communications Co Ltd
21475 00:15:56 Sagemcom Broadband SAS
21476 00:25:69 Sagemcom Broadband SAS
21477 00:1B:BF Sagemcom Broadband SAS
21478 4C:17:EB Sagemcom Broadband SAS
21479 7C:03:4C Sagemcom Broadband SAS
21480 88:AE:1D COMPAL INFORMATION (KUNSHAN) CO., LTD.
21481 5C:35:3B Compal Broadband Networks, Inc.
21482 C8:F2:30 GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
21483 1C:44:19 TP-LINK TECHNOLOGIES CO.,LTD.
21484 74:9D:DC 2Wire Inc
21485 78:2B:CB Dell Inc.
21486 B8:CA:3A Dell Inc.
21487 F0:1F:AF Dell Inc.
21488 C8:1F:66 Dell Inc.
21489 00:18:3F 2Wire Inc
21490 00:19:E4 2Wire Inc
21491 00:1A:C4 2Wire Inc
21492 00:1D:5A 2Wire Inc
21493 34:EF:44 2Wire Inc
21494 98:2C:BE 2Wire Inc
21495 00:14:22 Dell Inc.
21496 00:1C:23 Dell Inc.
21497 00:21:9B Dell Inc.
21498 00:08:74 Dell Inc.
21499 00:25:64 Dell Inc.
21500 84:2B:2B Dell Inc.
21501 E0:DB:55 Dell Inc.
21502 A4:1F:72 Dell Inc.
21503 00:C0:4F Dell Inc.
21504 F0:4D:A2 Dell Inc.
21505 BC:30:5B Dell Inc.
21506 00:1D:09 Dell Inc.
21507 F8:E0:79 Motorola Mobility LLC, a Lenovo Company
21508 14:30:C6 Motorola Mobility LLC, a Lenovo Company
21509 04:4E:06 Ericsson AB
21510 00:0D:67 Ericsson
21511 E0:75:7D Motorola Mobility LLC, a Lenovo Company
21512 00:1E:65 Intel Corporate
21513 00:1F:3B Intel Corporate
21514 00:16:EA Intel Corporate
21515 00:21:6B Intel Corporate
21516 00:19:D1 Intel Corporate
21517 00:1C:C0 Intel Corporate
21518 5C:E0:C5 Intel Corporate
21519 18:3D:A2 Intel Corporate
21520 44:85:00 Intel Corporate
21521 80:9B:20 Intel Corporate
21522 10:0B:A9 Intel Corporate
21523 24:77:03 Intel Corporate
21524 C4:85:08 Intel Corporate
21525 00:26:C6 Intel Corporate
21526 74:E5:0B Intel Corporate
21527 58:94:6B Intel Corporate
21528 00:27:10 Intel Corporate
21529 64:D4:DA Intel Corporate
21530 DC:A9:71 Intel Corporate
21531 00:1C:BF Intel Corporate
21532 A0:A8:CD Intel Corporate
21533 34:02:86 Intel Corporate
21534 34:DE:1A Intel Corporate
21535 80:00:0B Intel Corporate
21536 B8:03:05 Intel Corporate
21537 30:3A:64 Intel Corporate
21538 AC:FD:CE Intel Corporate
21539 E0:94:67 Intel Corporate
21540 00:DB:DF Intel Corporate
21541 0C:8B:FD Intel Corporate
21542 E0:9D:31 Intel Corporate
21543 CC:3D:82 Intel Corporate
21544 D0:0E:D9 Taicang T&W Electronics
21545 6C:29:95 Intel Corporate
21546 40:E3:D6 Aruba Networks
21547 24:DE:C6 Aruba Networks
21548 D8:C7:C8 Aruba Networks
21549 90:0B:C1 Sprocomm Technologies CO.,Ltd
21550 6C:71:D9 AzureWave Technology Inc.
21551 38:4F:F0 AzureWave Technology Inc.
21552 00:15:AF AzureWave Technology Inc.
21553 48:5D:60 AzureWave Technology Inc.
21554 54:E4:BD FN-LINK TECHNOLOGY LIMITED
21555 98:74:3D Shenzhen Jun Kai Hengye Technology Co. Ltd
21556 A0:4F:D4 ADB Broadband Italia
21557 84:26:15 ADB Broadband Italia
21558 5C:E2:F4 AcSiP Technology Corp.
21559 00:26:62 Actiontec Electronics, Inc
21560 00:19:3E ADB Broadband Italia
21561 00:13:C8 ADB Broadband Italia
21562 DC:0B:1A ADB Broadband Italia
21563 74:88:8B ADB Broadband Italia
21564 84:D6:D0 Amazon Technologies Inc.
21565 E0:CB:1D Private
21566 AC:D0:74 Espressif Inc.
21567 D0:53:49 Liteon Technology Corporation
21568 00:BB:3A Private
21569 00:09:41 Allied Telesis R&D Center K.K.
21570 00:01:4A Sony Corporation
21571 00:1C:A4 Sony Mobile Communications AB
21572 00:23:45 Sony Mobile Communications AB
21573 8C:64:22 Sony Mobile Communications AB
21574 90:C1:15 Sony Mobile Communications AB
21575 84:00:D2 Sony Mobile Communications AB
21576 5C:B5:24 Sony Mobile Communications AB
21577 94:A1:A2 AMPAK Technology, Inc.
21578 74:DE:2B Liteon Technology Corporation
21579 68:A3:C4 Liteon Technology Corporation
21580 C8:FF:28 Liteon Technology Corporation
21581 00:24:D2 ASKEY COMPUTER CORP
21582 DC:64:B8 Shenzhen JingHanDa Electronics Co.Ltd
21583 C4:DA:7D Ivium Technologies B.V.
21584 94:92:BC SYNTECH(HK) TECHNOLOGY LIMITED
21585 00:1A:4F AVM GmbH
21586 00:04:0E AVM GmbH
21587 00:16:E3 ASKEY COMPUTER CORP
21588 30:46:9A NETGEAR
21589 00:26:F2 NETGEAR
21590 00:18:4D NETGEAR
21591 00:1E:2A NETGEAR
21592 E8:FC:AF NETGEAR
21593 4C:60:DE NETGEAR
21594 00:30:0A Aztech Electronics Pte Ltd
21595 A0:63:91 NETGEAR
21596 9C:C7:A6 AVM GmbH
21597 DC:EF:09 NETGEAR
21598 74:31:70 Arcadyan Technology Corporation
21599 A8:D3:F7 Arcadyan Technology Corporation
21600 7C:4F:B5 Arcadyan Technology Corporation
21601 00:12:BF Arcadyan Technology Corporation
21602 20:0C:C8 NETGEAR
21603 04:FE:8D HUAWEI TECHNOLOGIES CO.,LTD
21604 48:00:31 HUAWEI TECHNOLOGIES CO.,LTD
21605 00:19:FB BSkyB Ltd
21606 0C:F9:C0 BSkyB Ltd
21607 00:1B:A9 Brother industries, LTD.
21608 00:11:B6 Open Systems International
21609 E0:3E:44 Broadcom
21610 D4:01:29 Broadcom
21611 FC:B6:98 Cambridge Industries(Group) Co.,Ltd.
21612 00:E0:3A Cabletron Systems, Inc.
21613 00:01:17 Canal +
21614 00:19:C7 Cambridge Industries(Group) Co.,Ltd.
21615 00:6D:FB Vutrix Technologies Ltd
21616 C8:10:73 CENTURY OPTICOMM CO.,LTD
21617 74:4A:A4 zte corporation
21618 9C:D3:5B Samsung Electronics Co.,Ltd
21619 60:AF:6D Samsung Electronics Co.,Ltd
21620 B8:5A:73 Samsung Electronics Co.,Ltd
21621 10:30:47 Samsung Electronics Co.,Ltd
21622 10:92:66 Samsung Electronics Co.,Ltd
21623 B0:47:BF Samsung Electronics Co.,Ltd
21624 7C:0B:C6 Samsung Electronics Co.,Ltd
21625 80:4E:81 Samsung Electronics Co.,Ltd
21626 24:4B:81 Samsung Electronics Co.,Ltd
21627 50:A4:C8 Samsung Electronics Co.,Ltd
21628 84:25:DB Samsung Electronics Co.,Ltd
21629 D8:C4:E9 Samsung Electronics Co.,Ltd
21630 50:C8:E5 Samsung Electronics Co.,Ltd
21631 44:6D:6C Samsung Electronics Co.,Ltd
21632 38:D4:0B Samsung Electronics Co.,Ltd
21633 64:77:91 Samsung Electronics Co.,Ltd
21634 78:1F:DB Samsung Electronics Co.,Ltd
21635 08:FC:88 Samsung Electronics Co.,Ltd
21636 30:C7:AE Samsung Electronics Co.,Ltd
21637 18:22:7E Samsung Electronics Co.,Ltd
21638 00:F4:6F Samsung Electronics Co.,Ltd
21639 BC:14:85 Samsung Electronics Co.,Ltd
21640 9C:E6:E7 Samsung Electronics Co.,Ltd
21641 38:01:95 Samsung Electronics Co.,Ltd
21642 5C:F6:DC Samsung Electronics Co.,Ltd
21643 10:77:B1 Samsung Electronics Co.,Ltd
21644 50:85:69 Samsung Electronics Co.,Ltd
21645 00:90:A2 CyberTAN Technology Inc.
21646 00:30:DA Comtrend Corporation
21647 64:68:0C Comtrend Corporation
21648 00:CF:1C Communication Machinery Corporation
21649 00:90:F5 CLEVO CO.
21650 00:30:FF DataFab Systems Inc.
21651 E4:98:D1 Microsoft Mobile Oy
21652 A8:A0:89 Tactical Communications
21653 48:36:5F Wintecronics Ltd.
21654 00:5A:39 SHENZHEN FAST TECHNOLOGIES CO.,LTD
21655 5C:C6:D0 Skyworth Digital Technology(Shenzhen) Co.,Ltd
21656 08:05:81 Roku, Inc.
21657 B0:A7:37 Roku, Inc.
21658 B8:3E:59 Roku, Inc.
21659 DC:3A:5E Roku, Inc.
21660 00:14:A5 Gemtek Technology Co., Ltd.
21661 00:17:42 FUJITSU LIMITED
21662 2C:10:C1 Nintendo Co., Ltd.
21663 CC:FB:65 Nintendo Co., Ltd.
21664 40:D2:8A Nintendo Co., Ltd.
21665 7C:BB:8A Nintendo Co., Ltd.
21666 00:22:4C Nintendo Co., Ltd.
21667 00:23:CC Nintendo Co., Ltd.
21668 00:24:44 Nintendo Co., Ltd.
21669 E0:E7:51 Nintendo Co., Ltd.
21670 00:17:AB Nintendo Co., Ltd.
21671 00:1B:EA Nintendo Co., Ltd.
21672 00:15:DE Nokia Danmark A/S
21673 00:13:70 Nokia Danmark A/S
21674 00:24:7C Nokia Danmark A/S
21675 00:23:B4 Nokia Danmark A/S
21676 00:21:AB Nokia Danmark A/S
21677 00:1F:DF Nokia Danmark A/S
21678 00:19:4F Nokia Danmark A/S
21679 00:18:8D Nokia Danmark A/S
21680 00:18:0F Nokia Danmark A/S
21681 54:79:75 Nokia Corporation
21682 2C:CC:15 Nokia Corporation
21683 00:BD:3A Nokia Corporation
21684 00:26:CC Nokia Danmark A/S
21685 00:16:4E Nokia Danmark A/S
21686 00:16:BC Nokia Danmark A/S
21687 00:1A:DC Nokia Danmark A/S
21688 00:26:68 Nokia Danmark A/S
21689 00:1F:5C Nokia Danmark A/S
21690 00:1F:00 Nokia Danmark A/S
21691 00:1E:3B Nokia Danmark A/S
21692 A0:4E:04 Nokia Corporation
21693 24:0B:0A Palo Alto Networks
21694 C4:E5:10 Mechatro, Inc.
21695 74:C3:30 SHENZHEN FAST TECHNOLOGIES CO.,LTD
21696 40:3F:8C TP-LINK TECHNOLOGIES CO.,LTD.
21697 14:C3:C2 K.A. Schmersal GmbH & Co. KG
21698 10:78:5B Actiontec Electronics, Inc
21699 20:76:8F Apple, Inc.
21700 9C:5C:F9 Sony Mobile Communications AB
21701 88:A0:84 Formation Data Systems
21702 00:25:DC Sumitomo Electric Industries,Ltd
21703 00:1C:FC Sumitomo Electric Industries,Ltd
21704 00:D0:EC NAKAYO TELECOMMUNICATIONS,INC
21705 8C:C6:61 Current, powered by GE
21706 00:90:50 Teleste Corporation
21707 BC:44:B0 Elastifile
21708 78:64:E6 Green Motive Technology Limited
21709 74:3E:2B Ruckus Wireless
21710 C0:CC:F8 Apple, Inc.
21711 80:ED:2C Apple, Inc.
21712 E8:B2:AC Apple, Inc.
21713 00:80:B8 DMG MORI B.U.G. CO., LTD.
21714 84:89:AD Apple, Inc.
21715 40:B6:88 LEGIC Identsystems AG
21716 A0:9D:91 SoundBridge
21717 30:78:5C Partow Tamas Novin (Parman)
21718 44:11:02 EDMI Europe Ltd
21719 2C:21:D7 IMAX Corporation
21720 00:26:F7 Nivetti Systems Pvt. Ltd.
21721 24:C3:F9 Securitas Direct AB
21722 DC:4D:23 MRV Comunications
21723 08:5B:DA CliniCare LTD
21724 0C:5A:9E Wi-SUN Alliance
21725 00:C1:64 Cisco Systems, Inc
21726 C4:BE:D4 Avaya Inc
21727 98:E7:F5 HUAWEI TECHNOLOGIES CO.,LTD
21728 24:BC:F8 HUAWEI TECHNOLOGIES CO.,LTD
21729 10:D0:AB zte corporation
21730 20:2D:F8 Digital Media Cartridge Ltd.
21731 04:2D:B4 First Property (Beijing) Co., Ltd Modern MOMA Branch
21732 00:8A:96 Cisco Systems, Inc
21733 00:78:88 Cisco Systems, Inc
21734 98:DE:D0 TP-LINK TECHNOLOGIES CO.,LTD.
21735 30:FC:68 TP-LINK TECHNOLOGIES CO.,LTD.
21736 5C:CA:1A Microsoft Mobile Oy
21737 00:05:94 HMS Industrial Networks
21738 00:0A:C2 Wuhan FiberHome Digital Technology Co.,Ltd.
21739 F0:8C:FB Fiberhome Telecommunication Technologies Co.,LTD
21740 D4:F2:07 DIAODIAO(Beijing)Technology CO.,Ltd
21741 FC:F8:B7 TRONTEQ Electronic
21742 D4:88:3F HDPRO CO., LTD.
21743 00:1B:F3 TRANSRADIO SenderSysteme Berlin AG
21744 E0:07:1B Hewlett Packard Enterprise
21745 A8:6A:C1 HanbitEDS Co., Ltd.
21746 40:16:3B Samsung Electronics Co.,Ltd
21747 88:B1:E1 Mojo Networks, Inc.
21748 74:DF:BF Liteon Technology Corporation
21749 FC:3F:7C HUAWEI TECHNOLOGIES CO.,LTD
21750 60:83:34 HUAWEI TECHNOLOGIES CO.,LTD
21751 84:AD:58 HUAWEI TECHNOLOGIES CO.,LTD
21752 74:6F:F7 Wistron Neweb Corporation
21753 B0:1B:D2 Le Shi Zhi Xin Electronic Technology (Tianjin) Limited
21754 74:85:2A PEGATRON CORPORATION
21755 38:60:77 PEGATRON CORPORATION
21756 60:B4:F7 Plume Design Inc
21757 A4:D8:CA HONG KONG WATER WORLD TECHNOLOGY CO. LIMITED
21758 00:10:9B Emulex Corporation
21759 00:E0:D5 Emulex Corporation
21760 00:10:35 Elitegroup Computer Systems Co.,Ltd.
21761 EC:A8:6B Elitegroup Computer Systems Co.,Ltd.
21762 44:87:FC Elitegroup Computer Systems Co.,Ltd.
21763 00:21:97 Elitegroup Computer Systems Co.,Ltd.
21764 64:99:68 Elentec
21765 00:20:8F ECI Telecom Ltd.
21766 9C:DF:03 Harman/Becker Automotive Systems GmbH
21767 F0:40:7B Fiberhome Telecommunication Technologies Co.,LTD
21768 94:88:5E Surfilter Network Technology Co., Ltd.
21769 00:23:78 GN Netcom A/S
21770 00:20:88 GLOBAL VILLAGE COMMUNICATION
21771 90:C7:D8 zte corporation
21772 BC:6A:44 Commend International GmbH
21773 00:20:F2 Oracle Corporation
21774 00:01:5D Oracle Corporation
21775 94:3B:B1 Kaonmedia CO., LTD.
21776 14:63:08 JABIL CIRCUIT (SHANGHAI) LTD.
21777 08:00:0D International Computers, Ltd
21778 00:D0:A2 INTEGRATED DEVICE
21779 00:60:B1 Input/Output, Inc.
21780 00:17:7D IDT Technology Limited
21781 28:8A:1C Juniper Networks
21782 10:0E:7E Juniper Networks
21783 84:B5:9C Juniper Networks
21784 54:4B:8C Juniper Networks
21785 54:1E:56 Juniper Networks
21786 64:64:9B Juniper Networks
21787 2C:6B:F5 Juniper Networks
21788 00:22:83 Juniper Networks
21789 EC:13:DB Juniper Networks
21790 AC:4B:C8 Juniper Networks
21791 B0:A8:6E Juniper Networks
21792 3C:94:D5 Juniper Networks
21793 F4:CC:55 Juniper Networks
21794 00:21:59 Juniper Networks
21795 5C:70:A3 LG Electronics (Mobile Communications)
21796 34:97:F6 ASUSTek COMPUTER INC.
21797 50:68:0A HUAWEI TECHNOLOGIES CO.,LTD
21798 D8:94:03 Hewlett Packard Enterprise
21799 9C:8D:7C ALPS ELECTRIC CO.,LTD.
21800 E0:4F:43 Universal Global Scientific Industrial Co., Ltd.
21801 B0:E0:3C TCT mobile ltd
21802 D0:9D:AB TCT mobile ltd
21803 94:D8:59 TCT mobile ltd
21804 94:71:AC TCT mobile ltd
21805 70:BA:EF Hangzhou H3C Technologies Co., Limited
21806 00:90:06 Hamamatsu Photonics K.K.
21807 00:1A:F4 Handreamnet
21808 00:0A:ED HARTING Electronics GmbH
21809 1C:CB:99 TCT mobile ltd
21810 18:E3:BC TCT mobile ltd
21811 28:9A:FA TCT mobile ltd
21812 44:A4:2D TCT mobile ltd
21813 8C:8E:F2 Apple, Inc.
21814 F4:0F:24 Apple, Inc.
21815 A0:D3:85 AUMA Riester GmbH & Co. KG
21816 14:14:E6 Ningbo Sanhe Digital Co.,Ltd
21817 84:A1:34 Apple, Inc.
21818 1C:91:48 Apple, Inc.
21819 CC:16:7E Cisco Systems, Inc
21820 60:08:10 HUAWEI TECHNOLOGIES CO.,LTD
21821 C8:5B:76 LCFC(HeFei) Electronics Technology co., ltd
21822 00:1A:E8 Unify Software and Solutions GmbH & Co. KG
21823 94:59:07 Shanghai HITE-BELDEN Network Technology Co., Ltd.
21824 48:C6:63 GTO Access Systems LLC
21825 60:64:53 AOD Co.,Ltd.
21826 6C:98:EB Riverbed Technology, Inc.
21827 DC:29:3A Shenzhen Nuoshi Technology Co., LTD.
21828 40:56:2D Smartron India Pvt ltd
21829 70:28:8B Samsung Electronics Co.,Ltd
21830 00:80:9F ALE International
21831 B0:D7:CC Tridonic GmbH & Co KG
21832 7C:57:4E COBI GmbH
21833 34:C0:F9 Rockwell Automation
21834 20:C0:47 Verizon
21835 AC:04:81 Jiangsu Huaxing Electronics Co., Ltd.
21836 FC:2D:5E zte corporation
21837 E8:11:CA SHANDONG KAER ELECTRIC.CO.,LTD
21838 EC:D6:8A Shenzhen JMicron Intelligent Technology Developmen
21839 1C:77:F6 GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD
21840 08:D0:B7 Qingdao Hisense Communications Co.,Ltd.
21841 28:28:5D ZyXEL Communications Corporation
21842 5C:F4:AB ZyXEL Communications Corporation
21843 4C:9E:FF ZyXEL Communications Corporation
21844 00:23:F8 ZyXEL Communications Corporation
21845 B0:B2:DC ZyXEL Communications Corporation
21846 90:EF:68 ZyXEL Communications Corporation
21847 00:24:8D Sony Interactive Entertainment Inc.
21848 54:27:6C Jiangsu Houge Technology Corp.
21849 00:CB:00 Private
21850 FC:FF:AA IEEE Registration Authority
21851 70:B3:D5 IEEE Registration Authority
21852 40:D8:55 IEEE Registration Authority
21853 48:DF:37 Hewlett Packard Enterprise
21854 9C:93:E4 Private
21855 00:50:79 Private
21856 74:F8:DB IEEE Registration Authority
21857 0C:EF:AF IEEE Registration Authority
21858 28:FD:80 IEEE Registration Authority
21859 B0:C5:CA IEEE Registration Authority
21860 98:02:D8 IEEE Registration Authority
21861 D0:76:50 IEEE Registration Authority
21862 BC:66:41 IEEE Registration Authority
21863 00:28:F8 Intel Corporate
21864 84:16:F9 TP-LINK TECHNOLOGIES CO.,LTD.
21865 CC:D3:1E IEEE Registration Authority
21866 8C:19:2D IEEE Registration Authority
21867 E8:18:63 IEEE Registration Authority
21868 C4:4B:D1 Wallys Communications Teachnologies Co.,Ltd.
21869 20:57:AF Shenzhen FH-NET OPTOELECTRONICS CO.,LTD
21870 34:EA:34 HangZhou Gubei Electronics Technology Co.,Ltd
21871 F8:A9:D0 LG Electronics (Mobile Communications)
21872 CC:FA:00 LG Electronics (Mobile Communications)
21873 BC:F5:AC LG Electronics (Mobile Communications)
21874 00:AA:70 LG Electronics (Mobile Communications)
21875 F0:1C:13 LG Electronics (Mobile Communications)
21876 CC:2D:8C LG ELECTRONICS INC
21877 34:4D:F7 LG Electronics (Mobile Communications)
21878 C4:9A:02 LG Electronics (Mobile Communications)
21879 00:22:A9 LG Electronics (Mobile Communications)
21880 00:25:E5 LG Electronics (Mobile Communications)
21881 10:F9:6F LG Electronics (Mobile Communications)
21882 00:11:6E Peplink International Ltd.
21883 A0:91:C8 zte corporation
21884 00:25:97 Kalki Communication Technologies
21885 88:2B:D7 ADDÉNERGIE TECHNOLOGIES
21886 9C:A5:C0 vivo Mobile Communication Co., Ltd.
21887 B4:A5:EF Sercomm Corporation.
21888 30:44:A1 Shanghai Nanchao Information Technology
21889 C4:F1:D1 BEIJING SOGOU TECHNOLOGY DEVELOPMENT CO., LTD.
21890 38:A2:8C SHENZHEN RF-LINK TECHNOLOGY CO.,LTD.
21891 58:52:8A Mitsubishi Electric Corporation
21892 BC:C0:0F Fiberhome Telecommunication Technologies Co.,LTD
21893 B0:C2:87 Technicolor CH USA Inc.
21894 CC:03:FA Technicolor CH USA Inc.
21895 28:BE:9B Technicolor CH USA Inc.
21896 50:9F:3B OI ELECTRIC CO.,LTD
21897 E4:02:9B Intel Corporate
21898 60:02:B4 Wistron Neweb Corporation
21899 98:EE:CB Wistron Infocomm (Zhongshan) Corporation
21900 70:E2:84 Wistron Infocomm (Zhongshan) Corporation
21901 80:EA:23 Wistron Neweb Corporation
21902 D8:80:39 Microchip Technology Inc.
21903 00:1D:72 Wistron Neweb Corporation
21904 FC:3D:93 LONGCHEER TELECOMMUNICATION LIMITED
21905 48:F7:C0 Technicolor CH USA Inc.
21906 00:40:9F Telco Systems, Inc.
21907 00:E0:9E Quantum Corporation
21908 00:14:8C General Dynamics Mission Systems
21909 A4:71:74 HUAWEI TECHNOLOGIES CO.,LTD
21910 D4:A1:48 HUAWEI TECHNOLOGIES CO.,LTD
21911 D0:65:CA HUAWEI TECHNOLOGIES CO.,LTD
21912 8C:EB:C6 HUAWEI TECHNOLOGIES CO.,LTD
21913 B8:08:D7 HUAWEI TECHNOLOGIES CO.,LTD
21914 FC:F1:52 Sony Corporation
21915 78:44:76 Zioncom Electronics (Shenzhen) Ltd.
21916 00:18:3A Westell Technologies Inc.
21917 E8:9A:8F QUANTA COMPUTER INC.
21918 00:1B:24 QUANTA COMPUTER INC.
21919 CC:52:AF Universal Global Scientific Industrial Co., Ltd.
21920 00:1A:6B Universal Global Scientific Industrial Co., Ltd.
21921 00:27:22 Ubiquiti Networks
21922 00:DD:0A UNGERMANN-BASS INC.
21923 00:03:9D Qisda Corporation
21924 00:0B:0E Trapeze Networks
21925 00:23:18 Toshiba
21926 E8:9D:87 Toshiba
21927 E8:E0:B7 Toshiba
21928 00:14:28 Vocollect Inc
21929 00:6B:9E Vizio, Inc
21930 00:24:FF QLogic Corporation
21931 00:A0:C6 Qualcomm Inc.
21932 EC:AA:A0 PEGATRON CORPORATION
21933 E8:88:6C Shenzhen SC Technologies Co.,LTD
21934 DC:35:F1 Positivo Informática SA.
21935 EC:68:81 Palo Alto Networks
21936 44:33:4C Shenzhen Bilian electronic CO.,LTD
21937 D8:4F:B8 LG ELECTRONICS
21938 9C:22:0E TASCAN Systems GmbH
21939 0C:A4:02 Alcatel-Lucent IPD
21940 00:16:4D Alcatel-Lucent IPD
21941 FC:FA:F7 Shanghai Baud Data Communication Co.,Ltd.
21942 0C:54:B9 Alcatel-Lucent Canada
21943 C4:08:4A Alcatel-Lucent Canada
21944 C8:E7:76 PTCOM Technology
21945 5C:49:7D Samsung Electronics Co.,Ltd
21946 34:AA:99 Alcatel-Lucent Canada
21947 8C:90:D3 Alcatel-Lucent Canada
21948 A8:AD:3D Alcatel-Lucent Shanghai Bell Co., Ltd
21949 E0:30:05 Alcatel-Lucent Shanghai Bell Co., Ltd
21950 28:24:FF Wistron Neweb Corporation
21951 14:C1:FF ShenZhen QianHai Comlan communication Co.,LTD
21952 EC:8E:B5 Hewlett Packard
21953 70:AF:6A SHENZHEN FENGLIAN TECHNOLOGY CO., LTD.
21954 00:26:F1 ProCurve Networking by HP
21955 B4:39:D6 ProCurve Networking by HP
21956 00:1C:EF Primax Electronics Ltd.
21957 00:02:76 Primax Electronics Ltd.
21958 48:49:C7 Samsung Electronics Co.,Ltd
21959 00:1F:9A Nortel Networks
21960 00:14:C7 Nortel Networks
21961 00:15:40 Nortel Networks
21962 00:17:D1 Nortel Networks
21963 00:15:E8 Nortel Networks
21964 00:16:60 Nortel Networks
21965 00:1B:BA Nortel Networks
21966 20:5E:F7 Samsung Electronics Co.,Ltd
21967 00:03:4B Nortel Networks
21968 00:00:1B Novell, Inc.
21969 00:E0:11 UNIDEN CORPORATION
21970 B0:3E:B0 MICRODIA Ltd.
21971 00:12:6C Visonic Technologies 1993 Ltd.
21972 18:AB:F5 Ultra Electronics Electrics
21973 30:44:87 Hefei Radio Communication Technology Co., Ltd
21974 AC:61:75 HUAWEI TECHNOLOGIES CO.,LTD
21975 AC:48:2D Ralinwi Nanjing Electronic Technology Co., Ltd.
21976 A4:82:69 Datrium, Inc.
21977 44:14:41 AudioControl Inc.
21978 00:18:DA AMBER wireless GmbH
21979 EC:24:B8 Texas Instruments
21980 68:C9:0B Texas Instruments
21981 F4:B8:5E Texas Instruments
21982 5C:31:3E Texas Instruments
21983 A0:E6:F8 Texas Instruments
21984 20:C3:8F Texas Instruments
21985 D0:FF:50 Texas Instruments
21986 74:72:B0 Guangzhou Shiyuan Electronics Co., Ltd.
21987 44:BF:E3 Shenzhen Longtech Electronics Co.,Ltd
21988 F4:52:14 Mellanox Technologies, Inc.
21989 68:9E:19 Texas Instruments
21990 98:59:45 Texas Instruments
21991 1C:E2:CC Texas Instruments
21992 44:C1:5C Texas Instruments
21993 00:17:E9 Texas Instruments
21994 00:17:E7 Texas Instruments
21995 D0:07:90 Texas Instruments
21996 04:E4:51 Texas Instruments
21997 B0:D5:CC Texas Instruments
21998 5C:F8:21 Texas Instruments
21999 FC:0F:4B Texas Instruments
22000 3C:6F:EA Panasonic India Pvt. Ltd.
22001 A8:63:F2 Texas Instruments
22002 94:88:54 Texas Instruments
22003 00:12:37 Texas Instruments
22004 BC:6A:29 Texas Instruments
22005 C0:E4:22 Texas Instruments
22006 00:18:30 Texas Instruments
22007 1C:BA:8C Texas Instruments
22008 58:FB:84 Intel Corporate
22009 E0:E7:BB Nureva, Inc.
22010 7C:A9:7D Objenious
22011 BC:8A:A3 NHN Entertainment
22012 70:A8:4C MONAD., Inc.
22013 00:D0:88 ARRIS Group, Inc.
22014 00:16:75 ARRIS Group, Inc.
22015 00:16:B5 ARRIS Group, Inc.
22016 00:17:84 ARRIS Group, Inc.
22017 00:17:E2 ARRIS Group, Inc.
22018 CC:7D:37 ARRIS Group, Inc.
22019 00:1A:77 ARRIS Group, Inc.
22020 98:4B:4A ARRIS Group, Inc.
22021 00:15:A4 ARRIS Group, Inc.
22022 00:15:A3 ARRIS Group, Inc.
22023 7C:BF:B1 ARRIS Group, Inc.
22024 80:96:B1 ARRIS Group, Inc.
22025 00:90:9C ARRIS Group, Inc.
22026 00:11:80 ARRIS Group, Inc.
22027 00:17:EE ARRIS Group, Inc.
22028 40:70:09 ARRIS Group, Inc.
22029 94:87:7C ARRIS Group, Inc.
22030 00:1D:D2 ARRIS Group, Inc.
22031 9C:34:26 ARRIS Group, Inc.
22032 5C:8F:E0 ARRIS Group, Inc.
22033 6C:CA:08 ARRIS Group, Inc.
22034 54:65:DE ARRIS Group, Inc.
22035 F8:ED:A5 ARRIS Group, Inc.
22036 00:A2:89 Cisco Systems, Inc
22037 AC:EC:80 ARRIS Group, Inc.
22038 3C:7A:8A ARRIS Group, Inc.
22039 00:0F:CC ARRIS Group, Inc.
22040 BC:CA:B5 ARRIS Group, Inc.
22041 80:F5:03 ARRIS Group, Inc.
22042 84:96:D8 ARRIS Group, Inc.
22043 D4:2C:0F ARRIS Group, Inc.
22044 E0:B7:B1 ARRIS Group, Inc.
22045 00:24:A0 ARRIS Group, Inc.
22046 C0:C5:22 ARRIS Group, Inc.
22047 5C:B0:66 ARRIS Group, Inc.
22048 00:22:10 ARRIS Group, Inc.
22049 00:21:1E ARRIS Group, Inc.
22050 E4:83:99 ARRIS Group, Inc.
22051 00:26:36 ARRIS Group, Inc.
22052 00:12:C9 ARRIS Group, Inc.
22053 00:1C:FB ARRIS Group, Inc.
22054 00:1C:12 ARRIS Group, Inc.
22055 00:1F:C4 ARRIS Group, Inc.
22056 6C:1E:90 Hansol Technics Co., Ltd.
22057 48:6D:BB Vestel Elektronik San ve Tic. A.Ş.
22058 E0:9D:FA Wanan Hongsheng Electronic Co.Ltd
22059 34:E7:1C Shenzhen YOUHUA Technology Co., Ltd
22060 18:28:61 AirTies Wireless Networks
22061 88:41:FC AirTies Wireless Networks
22062 18:26:66 Samsung Electronics Co.,Ltd
22063 C0:65:99 Samsung Electronics Co.,Ltd
22064 CC:07:AB Samsung Electronics Co.,Ltd
22065 E8:4E:84 Samsung Electronics Co.,Ltd
22066 50:FC:9F Samsung Electronics Co.,Ltd
22067 E4:32:CB Samsung Electronics Co.,Ltd
22068 88:9B:39 Samsung Electronics Co.,Ltd
22069 BC:B1:F3 Samsung Electronics Co.,Ltd
22070 38:EC:E4 Samsung Electronics Co.,Ltd
22071 CC:F9:E8 Samsung Electronics Co.,Ltd
22072 F0:E7:7E Samsung Electronics Co.,Ltd
22073 5C:E8:EB Samsung Electronics Co.,Ltd
22074 B8:D9:CE Samsung Electronics Co.,Ltd
22075 70:F9:27 Samsung Electronics Co.,Ltd
22076 30:19:66 Samsung Electronics Co.,Ltd
22077 28:BA:B5 Samsung Electronics Co.,Ltd
22078 10:3B:59 Samsung Electronics Co.,Ltd
22079 6C:B7:F4 Samsung Electronics Co.,Ltd
22080 44:4E:1A 5481
22081 E8:E5:D6 5481
22082 10:1D:C0 5481
22083 00:1E:E1 Samsung Electronics Co.,Ltd
22084 00:18:AF Samsung Electronics Co.,Ltd
22085 00:21:D1 5481
22086 54:92:BE 5481
22087 BC:72:B1 Samsung Electronics Co.,Ltd
22088 78:F7:BE Samsung Electronics Co.,Ltd
22089 F4:9F:54 Samsung Electronics Co.,Ltd
22090 7C:11:CB HUAWEI TECHNOLOGIES CO.,LTD
22091 A4:CA:A0 HUAWEI TECHNOLOGIES CO.,LTD
22092 00:21:4C Samsung Electronics Co.,Ltd
22093 00:16:32 Samsung Electronics Co.,Ltd
22094 D0:66:7B Samsung Electronics Co.,Ltd
22095 38:AA:3C SAMSUNG ELECTRO MECHANICS CO., LTD.
22096 20:64:32 SAMSUNG ELECTRO MECHANICS CO., LTD.
22097 00:26:37 SAMSUNG ELECTRO MECHANICS CO., LTD.
22098 00:13:77 Samsung Electronics Co.,Ltd
22099 50:B7:C3 Samsung Electronics Co.,Ltd
22100 80:18:A7 Samsung Electronics Co.,Ltd
22101 5C:A3:9D SAMSUNG ELECTRO MECHANICS CO., LTD.
22102 B8:8E:DF Zencheer Communication Technology Co., Ltd.
22103 D8:5D:E2 Hon Hai Precision Ind. Co.,Ltd.
22104 70:77:81 Hon Hai Precision Ind. Co.,Ltd.
22105 60:6D:C7 Hon Hai Precision Ind. Co.,Ltd.
22106 68:14:01 Hon Hai Precision Ind. Co.,Ltd.
22107 00:71:CC Hon Hai Precision Ind. Co.,Ltd.
22108 F8:66:D1 Hon Hai Precision Ind. Co.,Ltd.
22109 F8:0D:43 Hon Hai Precision Ind. Co.,Ltd.
22110 00:22:68 Hon Hai Precision Ind. Co.,Ltd.
22111 00:1F:E1 Hon Hai Precision Ind. Co.,Ltd.
22112 00:25:56 Hon Hai Precision Ind. Co.,Ltd.
22113 00:26:5C Hon Hai Precision Ind. Co.,Ltd.
22114 90:CD:B6 Hon Hai Precision Ind. Co.,Ltd.
22115 00:1E:4C Hon Hai Precision Ind. Co.,Ltd.
22116 F8:DA:0C Hon Hai Precision Ind. Co.,Ltd.
22117 90:34:FC Hon Hai Precision Ind. Co.,Ltd.
22118 90:6E:BB Hon Hai Precision Ind. Co.,Ltd.
22119 34:23:87 Hon Hai Precision Ind. Co.,Ltd.
22120 68:94:23 Hon Hai Precision Ind. Co.,Ltd.
22121 B8:76:3F Hon Hai Precision Ind. Co.,Ltd.
22122 1C:3E:84 Hon Hai Precision Ind. Co.,Ltd.
22123 C0:18:85 Hon Hai Precision Ind. Co.,Ltd.
22124 78:59:68 Hon Hai Precision Ind. Co.,Ltd.
22125 1C:66:6D Hon Hai Precision Ind. Co.,Ltd.
22126 CC:AF:78 Hon Hai Precision Ind. Co.,Ltd.
22127 90:4C:E5 Hon Hai Precision Ind. Co.,Ltd.
22128 B0:10:41 Hon Hai Precision Ind. Co.,Ltd.
22129 00:05:CD D&M Holdings Inc.
22130 74:87:A9 OCT Technology Co., Ltd.
22131 70:F8:E7 IEEE Registration Authority
7979
8080 def ifcard(dev):
8181 """
82 get driver and chipset for dev
8283 :param dev: device name
8384 :returns: tuple t = (driver,chipset)
8485 """
8788
8889 def ifdriver(dev):
8990 """
91 get driver for dev
9092 :param dev: device name
9193 :returns: driver (or unknown)
9294 """
00 #!/usr/bin/env python
11
2 """ ouifetch.py: get ouis data from IEEE
2 """ ouifetch.py: IEEE oui helper
33
44 Copyright (C) 2016 Dale V. Patterson ([email protected])
55
1919 contributors may be used to endorse or promote products derived from this
2020 software without specific prior written permission.
2121
22 Fetchs and stores oui data from IEEE
22 oui dict as determined by IEEE oui.txt
2323
2424 """
2525 from __future__ import print_function # python 2to3 compability
3535
3636 try:
3737 # load urllib related for python 2
38 # noinspection PyCompatibility
3839 from urllib2 import Request as url_request
40 # noinspection PyCompatibility
3941 from urllib2 import urlopen as url_open
42 # noinspection PyCompatibility
4043 from urllib2 import URLError as url_error
4144 except ImportError:
45 # noinspection PyCompatibility,PyUnresolvedReferences
4246 from urllib.request import Request as url_request
47 # noinspection PyCompatibility,PyUnresolvedReferences
4348 from urllib.request import urlopen as url_open
49 # noinspection PyUnresolvedReferences
4450 from urllib import error as url_error
4551 import os,sys,datetime,time
4652 import pyric
7278 finally:
7379 if fin and not fin.closed: fin.close()
7480 return ouis
75
7681
7782 def fetch(opath=None,verbose=False):
7883 """
2727 - this may be due to bug in ubuntu and not present in other distros
2828 o rfkill does not do sanity checks on the index, rfkill.py will through error
2929 if the index does not exist
30
3031 """
3132
3233 __name__ = 'rfkill'
5960 """
6061 dpath = '/dev/rfkill'
6162 spath = '/sys/class/rfkill'
63 ipath = 'sys/class/ieee80211' # directory of physical indexes
6264
6365 def rfkill_list():
6466 """
6668 :returns: a dict of dicts name -> {idx,type,soft,hard}
6769 """
6870 rfks = {}
69 fin = open(dpath,'r')
71 fin = open(dpath,'r') # this will raise an IOError if rfkill is not supported
7072 flags = fcntl.fcntl(fin.fileno(),fcntl.F_GETFL)
7173 fcntl.fcntl(fin.fileno(),fcntl.F_SETFL,flags|os.O_NONBLOCK)
7274 while True:
98100 try:
99101 rfke = rfkh.rfkill_event(idx,rfkh.RFKILL_TYPE_ALL,rfkh.RFKILL_OP_CHANGE,1,0)
100102 if _PY3_: rfke = rfke.decode('ascii')
101 fout = open(dpath, 'w')
103 fout = open(dpath, 'wb')
102104 fout.write(rfke)
103105 except struct.error as e:
104106 raise pyric.error(pyric.EUNDEF,"Error packing rfkill event {0}".format(e))
128130 fout = None
129131 try:
130132 rfke = rfkh.rfkill_event(idx,rfkh.RFKILL_TYPE_ALL,rfkh.RFKILL_OP_CHANGE,0,0)
131 fout = open(dpath, 'w')
133 fout = open(dpath, 'wb')
132134 fout.write(rfke)
133135 except struct.error as e:
134136 raise pyric.error(pyric.EUNDEF,"Error packing rfkill event {0}".format(e))
228230 except IOError:
229231 raise pyric.error(errno.ENODEV,"No device at {0}".format(idx))
230232 finally:
231 if fin: fin.close()
233 if fin: fin.close()
0 # pip installation and distribution sudo pip install PyRIC
0 # pip installation and distribution to install type sudo pip install PyRIC
11
22 [bdist_wheel]
33 universal=1
00 #!/usr/bin/env python
11
2 """ setup.py: install PyRIC
2 """ setup.py: install PyRIC v 0.1.6.4
33
44 Copyright (C) 2016 Dale V. Patterson ([email protected])
55
2020 software without specific prior written permission.
2121
2222 sudo pip install PyRIC
23
2423 """
2524
2625 #__name__ = 'setup'
2726 __license__ = 'GPLv3'
2827 __version__ = '0.0.3'
29 __date__ = 'June 2016'
28 __date__ = 'January 2017'
3029 __author__ = 'Dale Patterson'
3130 __maintainer__ = 'Dale Patterson'
3231 __email__ = '[email protected]'
2121 Ran 83 tests in 5.919s
2222
2323 OK
24
2524
2625 NOTE:
2726 1) functions disconnect and link require a connection, they are tested/confirmed
161160 # broadcastset
162161 class InetGetSetTestCase(CardTestCase):
163162 def test_inetgetset(self):
164 self.assertEquals(None,pyw.inetset(self.card,pri['ip'],pri['mask'],pri['bcast']))
165 self.assertEqual(pri['ip'],pyw.inetget(self.card)[0])
166 def test_invalidcardarg(self):
167 self.assertRaises(error,pyw.inetget,'bad0')
168 self.assertRaises(error,pyw.inetset,'bad0',pri['ip'],pri['mask'],pri['bcast'])
163 self.assertEquals(None,pyw.ifaddrset(self.card,pri['ip'],pri['mask'],pri['bcast']))
164 self.assertEqual(pri['ip'],pyw.ifaddrget(self.card)[0])
165 def test_invalidcardarg(self):
166 self.assertRaises(error,pyw.ifaddrget,'bad0')
167 self.assertRaises(error,pyw.ifaddrset,'bad0',pri['ip'],pri['mask'],pri['bcast'])
169168 def test_invalidiparg(self):
170 self.assertRaises(error,pyw.inetset,self.card,'192.168',pri['mask'],pri['bcast'])
169 self.assertRaises(error,pyw.ifaddrset,self.card,'192.168',pri['mask'],pri['bcast'])
171170 def test_invalidmaskarg(self):
172 self.assertRaises(error,pyw.inetset,self.card,pri['ip'],'255.255',pri['bcast'])
171 self.assertRaises(error,pyw.ifaddrset,self.card,pri['ip'],'255.255',pri['bcast'])
173172 def test_invalidbcastarg(self):
174 self.assertRaises(error,pyw.inetset,self.card,pri['ip'],pri['mask'],'192.168')
173 self.assertRaises(error,pyw.ifaddrset,self.card,pri['ip'],pri['mask'],'192.168')
175174
176175 # isup, test only card check
177176 class IsUpTestCase(CardTestCase):