Repository: G4lile0/Heimdall-WiFi-Radar Branch: master Commit: 7962c137a672 Files: 28 Total size: 568.9 KB Directory structure: gitextract_n3mwhkk3/ ├── LICENSE ├── PacketMonitor32/ │ ├── Buffer.cpp │ ├── Buffer.h │ └── PacketMonitor32_ite5.ino ├── README.md ├── README.txt ├── circles_no_zoom.html ├── circles_zoom.html ├── data/ │ └── vendors.tsv ├── esp8266/ │ ├── espreset.py │ ├── esptool.py │ ├── espwrite.py │ ├── install.sh │ └── jsonsniffer/ │ └── jsonsniffer.ino ├── flare.json ├── flare1.json ├── mqtt.py ├── phatsniffer.py ├── rickroll.py ├── server.py ├── server2.py ├── static/ │ ├── sorttable.js │ └── style.css └── templates/ ├── flare.html ├── flare.json ├── flare1.json ├── flare2.html └── index.html ================================================ FILE CONTENTS ================================================ ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2018 Galile0 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: PacketMonitor32/Buffer.cpp ================================================ #include "Buffer.h" Buffer::Buffer(){ bufA = (uint8_t*)malloc(BUF_SIZE); bufB = (uint8_t*)malloc(BUF_SIZE); } void Buffer::open(fs::FS* fs){ int i=0; do{ fileName = "/"+(String)i+".pcap"; i++; } while(fs->exists(fileName)); Serial.println(fileName); file = fs->open(fileName, FILE_WRITE); file.close(); bufSizeA = 0; bufSizeB = 0; writing = true; write(uint32_t(0xa1b2c3d4)); // magic number write(uint16_t(2)); // major version number write(uint16_t(4)); // minor version number write(int32_t(0)); // GMT to local correction write(uint32_t(0)); // accuracy of timestamps write(uint32_t(SNAP_LEN)); // max length of captured packets, in octets write(uint32_t(105)); // data link type useSD = true; } void Buffer::close(fs::FS* fs){ if(!writing) return; forceSave(fs); writing = false; Serial.println("file closed"); } void Buffer::addPacket(uint8_t* buf, uint32_t len){ // buffer is full -> drop packet if((useA && bufSizeA + len >= BUF_SIZE && bufSizeB > 0) || (!useA && bufSizeB + len >= BUF_SIZE && bufSizeA > 0)){ Serial.print(";"); return; } if(useA && bufSizeA + len + 16 >= BUF_SIZE && bufSizeB == 0){ useA = false; Serial.println("\nswitched to buffer B"); } else if(!useA && bufSizeB + len + 16 >= BUF_SIZE && bufSizeA == 0){ useA = true; Serial.println("\nswitched to buffer A"); } uint32_t microSeconds = micros(); // e.g. 45200400 => 45s 200ms 400us uint32_t seconds = (microSeconds/1000)/1000; // e.g. 45200400/1000/1000 = 45200 / 1000 = 45s microSeconds -= seconds*1000*1000; // e.g. 45200400 - 45*1000*1000 = 45200400 - 45000000 = 400us (because we only need the offset) write(seconds); // ts_sec write(microSeconds); // ts_usec write(len); // incl_len write(len); // orig_len write(buf, len); // packet payload } void Buffer::write(int32_t n){ uint8_t buf[4]; buf[0] = n; buf[1] = n >> 8; buf[2] = n >> 16; buf[3] = n >> 24; write(buf,4); } void Buffer::write(uint32_t n){ uint8_t buf[4]; buf[0] = n; buf[1] = n >> 8; buf[2] = n >> 16; buf[3] = n >> 24; write(buf,4); } void Buffer::write(uint16_t n){ uint8_t buf[2]; buf[0] = n; buf[1] = n >> 8; write(buf,2); } void Buffer::write(uint8_t* buf, uint32_t len){ if(!writing) return; if(useA){ memcpy(&bufA[bufSizeA], buf, len); bufSizeA += len; }else{ memcpy(&bufB[bufSizeB], buf, len); bufSizeB += len; } } void Buffer::save(fs::FS* fs){ if(saving) return; // makes sure the function isn't called simultaneously on different cores // buffers are already emptied, therefor saving is unecessary if((useA && bufSizeB == 0) || (!useA && bufSizeA == 0)){ //Serial.printf("useA: %s, bufA %u, bufB %u\n",useA ? "true" : "false",bufSizeA,bufSizeB); // for debug porpuses return; } Serial.println("saving file"); uint32_t startTime = millis(); uint32_t finishTime; file = fs->open(fileName, FILE_APPEND); if (!file) { Serial.println("Failed to open file '"+fileName+"'"); useSD = false; return; } saving = true; uint32_t len; if(useA){ file.write(bufB, bufSizeB); len = bufSizeB; bufSizeB = 0; } else{ file.write(bufA, bufSizeA); len = bufSizeA; bufSizeA = 0; } file.close(); finishTime = millis() - startTime; Serial.printf("\n%u bytes written for %u ms\n", len, finishTime); saving = false; } void Buffer::forceSave(fs::FS* fs){ uint32_t len = bufSizeA + bufSizeB; if(len == 0) return; file = fs->open(fileName, FILE_APPEND); if (!file) { Serial.println("Failed to open file '"+fileName+"'"); useSD = false; return; } saving = true; writing = false; if(useA){ if(bufSizeB > 0){ file.write(bufB, bufSizeB); bufSizeB = 0; } if(bufSizeA > 0){ file.write(bufA, bufSizeA); bufSizeA = 0; } } else { if(bufSizeA > 0){ file.write(bufA, bufSizeA); bufSizeA = 0; } if(bufSizeB > 0){ file.write(bufB, bufSizeB); bufSizeB = 0; } } file.close(); Serial.printf("saved %u bytes\n",len); saving = false; writing = true; } ================================================ FILE: PacketMonitor32/Buffer.h ================================================ #ifndef Buffer_h #define Buffer_h #include "Arduino.h" #include "FS.h" #include "SD_MMC.h" #define BUF_SIZE 24 * 1024 #define SNAP_LEN 2324 // max len of each recieved packet extern bool useSD; class Buffer { public: Buffer(); void open(fs::FS* fs); void close(fs::FS* fs); void addPacket(uint8_t* buf, uint32_t len); void save(fs::FS* fs); void forceSave(fs::FS* fs); private: void write(int32_t n); void write(uint32_t n); void write(uint16_t n); void write(uint8_t* buf, uint32_t len); uint8_t* bufA; uint8_t* bufB; uint32_t bufSizeA = 0; uint32_t bufSizeB = 0; bool writing = false; // acceppting writes to buffer bool useA = true; // writing to bufA or bufB bool saving = false; // currently saving onto the SD card String fileName = "/0.pcap"; File file; }; #endif ================================================ FILE: PacketMonitor32/PacketMonitor32_ite5.ino ================================================ //https://github.com/lpodkalicki/blog/blob/master/esp32/016_wifi_sniffer/main/main.c // packet monitor from spacehuhn /* uncomment if the default 4 bit mode doesn't work */ /* ------------------------------------------------ */ // #define BOARD_HAS_1BIT_SDMMC true // forces 1bit mode for SD MMC /* ------------------------------------------------ */ #include "freertos/FreeRTOS.h" #include "esp_wifi.h" #include "esp_wifi_types.h" #include "esp_system.h" #include "esp_event.h" #include "esp_event_loop.h" #include "nvs_flash.h" #include #include #include #include #include using namespace std; // g4lile0 ESPNow #include #include #define CHANNEL 1 // Init ESP Now with fallback void InitESPNow() { if (esp_now_init() == ESP_OK) { Serial.println("ESPNow Init Success"); } else { Serial.println("ESPNow Init Failed"); // Retry InitESPNow, add a counte and then restart? // InitESPNow(); // or Simply Restart ESP.restart(); } } // config AP SSID void configDeviceAP() { char* SSID = "Slave_1"; bool result = WiFi.softAP(SSID, "Slave_1_Password", CHANNEL, 0); if (!result) { Serial.println("AP Config failed."); } else { Serial.println("AP Config Success. Broadcasting with AP: " + String(SSID)); } } /* ===== compile settings ===== */ #define MAX_CH 14 // 1 - 14 channels (1-11 for US, 1-13 for EU and 1-14 for Japan) #define SNAP_LEN 2324 // max len of each recieved packet #define BUTTON_PIN 0 // button to change the channel #define USE_DISPLAY // comment out if you don't want to use the OLED display #define FLIP_DISPLAY // comment out if you don't like to flip it #define SDA_PIN 4 #define SCL_PIN 15 #define MAX_X 128 #define MAX_Y 51 #if CONFIG_FREERTOS_UNICORE #define RUNNING_CORE 0 #else #define RUNNING_CORE 1 #endif #ifdef USE_DISPLAY #include "SSD1306.h" #endif #include "FS.h" #include "SD_MMC.h" #include "Buffer.h" esp_err_t event_handler(void* ctx, system_event_t* event) { return ESP_OK; } /* =====g4lile0 ===== */ #define DATA_LENGTH 112 #define TYPE_MANAGEMENT 0x00 #define TYPE_CONTROL 0x01 #define TYPE_DATA 0x02 #define SUBTYPE_PROBE_REQUEST 0x04 struct RxControl { signed rssi:8; // signal intensity of packet unsigned rate:4; unsigned is_group:1; unsigned:1; unsigned sig_mode:2; // 0:is 11n packet; 1:is not 11n packet; unsigned legacy_length:12; // if not 11n packet, shows length of packet. unsigned damatch0:1; unsigned damatch1:1; unsigned bssidmatch0:1; unsigned bssidmatch1:1; unsigned MCS:7; // if is 11n packet, shows the modulation and code used (range from 0 to 76) unsigned CWB:1; // if is 11n packet, shows if is HT40 packet or not unsigned HT_length:16;// if is 11n packet, shows length of packet. unsigned Smoothing:1; unsigned Not_Sounding:1; unsigned:1; unsigned Aggregation:1; unsigned STBC:2; unsigned FEC_CODING:1; // if is 11n packet, shows if is LDPC packet or not. unsigned SGI:1; unsigned rxend_state:8; unsigned ampdu_cnt:8; unsigned channel:4; //which channel this packet in. unsigned:12; }; struct SnifferPacket{ struct RxControl rx_ctrl; uint8_t data[DATA_LENGTH]; uint16_t cnt; uint16_t len; }; /* ===== run-time variables ===== */ Buffer sdBuffer; #ifdef USE_DISPLAY SSD1306 display(0x3c, SDA_PIN, SCL_PIN); #endif Preferences preferences; bool useSD = false; bool buttonPressed = false; bool buttonEnabled = true; uint32_t lastDrawTime; uint32_t lastButtonTime; uint32_t tmpPacketCounter; uint32_t pkts[MAX_X]; // here the packets per second will be saved uint32_t deauths = 0; // deauth frames per second unsigned int ch = 1; // current 802.11 channel int rssiSum; /* ===== functions ===== */ double getMultiplicator() { uint32_t maxVal = 1; for (int i = 0; i < MAX_X; i++) { if (pkts[i] > maxVal) maxVal = pkts[i]; } if (maxVal > MAX_Y) return (double)MAX_Y / (double)maxVal; else return 1; } void setChannel(int newChannel) { ch = newChannel; if (ch > MAX_CH || ch < 1) ch = 1; preferences.begin("packetmonitor32", false); preferences.putUInt("channel", ch); preferences.end(); esp_wifi_set_promiscuous(false); esp_wifi_set_channel(ch, WIFI_SECOND_CHAN_NONE); esp_wifi_set_promiscuous_rx_cb(&wifi_promiscuous); esp_wifi_set_promiscuous(true); } bool setupSD() { if (!SD_MMC.begin()) { Serial.println("Card Mount Failed"); return false; } uint8_t cardType = SD_MMC.cardType(); if (cardType == CARD_NONE) { Serial.println("No SD_MMC card attached"); return false; } Serial.print("SD_MMC Card Type: "); if (cardType == CARD_MMC) { Serial.println("MMC"); } else if (cardType == CARD_SD) { Serial.println("SDSC"); } else if (cardType == CARD_SDHC) { Serial.println("SDHC"); } else { Serial.println("UNKNOWN"); } uint64_t cardSize = SD_MMC.cardSize() / (1024 * 1024); Serial.printf("SD_MMC Card Size: %lluMB\n", cardSize); return true; } void wifi_promiscuous(void* buf, wifi_promiscuous_pkt_type_t type) { wifi_promiscuous_pkt_t* pkt = (wifi_promiscuous_pkt_t*)buf; wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)pkt->rx_ctrl; if (type == WIFI_PKT_MGMT && (pkt->payload[0] == 0xA0 || pkt->payload[0] == 0xC0 )) deauths++; if (type == WIFI_PKT_MISC) return; // wrong packet type if (ctrl.sig_len > SNAP_LEN) return; // packet too long uint32_t packetLength = ctrl.sig_len; if (type == WIFI_PKT_MGMT) packetLength -= 4; // fix for known bug in the IDF https://github.com/espressif/esp-idf/issues/886 //, CHAN=%02d, RSSI=%02d," // Serial.print(pkt->payload); tmpPacketCounter++; rssiSum += ctrl.rssi; unsigned int frameControl = ((unsigned int)pkt->payload[1] << 8) + pkt->payload[0]; uint8_t version = (frameControl & 0b0000000000000011) >> 0; uint8_t frameType = (frameControl & 0b0000000000001100) >> 2; uint8_t frameSubType = (frameControl & 0b0000000011110000) >> 4; uint8_t toDS = (frameControl & 0b0000000100000000) >> 8; uint8_t fromDS = (frameControl & 0b0000001000000000) >> 9; // Only look for probe request packets if (frameType != TYPE_MANAGEMENT || frameSubType != SUBTYPE_PROBE_REQUEST) return; // if (frameType != TYPE_MANAGEMENT ) return; // Serial.print(ctrl.rssi, DEC); //Serial.print("."); Serial.println(""); //Serial.printf("PACKET TYPE=%s CHAN=%02d, RSSI=%02d ",wifi_sniffer_packet_type2str(type),ctrl.channel,ctrl.rssi); Serial.printf("PACKET TYPE=%s CHAN=%02d, RSSI=%02d ",wifi_sniffer_packet_type2str(type),pkt->rx_ctrl.channel,pkt->rx_ctrl.rssi); if (useSD) sdBuffer.addPacket(pkt->payload, packetLength); Serial.print("RSSI: "); Serial.print(pkt->rx_ctrl.rssi, DEC); char addr[] = "00:00:00:00:00:00"; getMAC(addr, pkt->payload, 10); Serial.print(" Peer MAC: "); Serial.print(addr); uint8_t SSID_length = pkt->payload[25]; Serial.print(" SSID: "); printDataSpan(26, SSID_length, pkt->payload); } static void getMAC(char *addr, uint8_t* data, uint16_t offset) { sprintf(addr, "%02x:%02x:%02x:%02x:%02x:%02x", data[offset+0], data[offset+1], data[offset+2], data[offset+3], data[offset+4], data[offset+5]); } static void printDataSpan(uint16_t start, uint16_t size, uint8_t* data) { for(uint16_t i = start; i < DATA_LENGTH && i < start+size; i++) { Serial.write(data[i]); } } char * wifi_sniffer_packet_type2str(wifi_promiscuous_pkt_type_t type) { switch(type) { case WIFI_PKT_MGMT: return "MGMT"; case WIFI_PKT_DATA: return "DATA"; default: case WIFI_PKT_MISC: return "MISC"; } } void draw() { #ifdef USE_DISPLAY double multiplicator = getMultiplicator(); int len; int rssi; if (pkts[MAX_X - 1] > 0) rssi = rssiSum / (int)pkts[MAX_X - 1]; else rssi = rssiSum; display.clear(); display.drawString(0, 0, (String)ch + " | " + (String)rssi + " | Pkts " + (String)tmpPacketCounter + " [" + deauths + "]" + (useSD ? " | SD" : "")); display.drawLine(0, 63 - MAX_Y, MAX_X, 63 - MAX_Y); for (int i = 0; i < MAX_X; i++) { len = pkts[i] * multiplicator; display.drawLine(i, 63, i, 63 - (len > MAX_Y ? MAX_Y : len)); if (i < MAX_X - 1) pkts[i] = pkts[i + 1]; } display.display(); #endif } // callback when data is recv from Master void OnDataRecv(const uint8_t *mac_addr, const uint8_t *data, int data_len) { char macStr[18]; snprintf(macStr, sizeof(macStr), "%02x:%02x:%02x:%02x:%02x:%02x", mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3], mac_addr[4], mac_addr[5]); Serial.print("Last Packet Recv from: "); Serial.println(macStr); Serial.print("Last Packet Recv Data: "); Serial.println(*data); Serial.println(""); } /* ===== main program ===== */ void setup() { // Serial Serial.begin(115200); // EspNOW g4lile0 Serial.println("ESPNow/Basic/Slave Example"); //Set device in AP mode to begin with // WiFi.mode(WIFI_AP); // configure device AP mode // configDeviceAP(); // This is the mac address of the Slave in AP Mode // Serial.print("AP MAC: "); Serial.println(WiFi.softAPmacAddress()); // Init ESPNow with a fallback logic //InitESPNow(); // Once ESPNow is successfully Init, we will register for recv CB to // get recv packer info. //esp_now_register_recv_cb(OnDataRecv); // Settings preferences.begin("packetmonitor32", false); ch = preferences.getUInt("channel", 1); preferences.end(); // System & WiFi nvs_flash_init(); tcpip_adapter_init(); wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_CHECK(esp_event_loop_init(event_handler, NULL)); ESP_ERROR_CHECK(esp_wifi_init(&cfg)); //ESP_ERROR_CHECK(esp_wifi_set_country(WIFI_COUNTRY_EU)); ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_RAM)); ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_NULL)); ESP_ERROR_CHECK(esp_wifi_start()); esp_wifi_set_channel(ch, WIFI_SECOND_CHAN_NONE); // SD card sdBuffer = Buffer(); if (setupSD()) sdBuffer.open(&SD_MMC); // I/O pinMode(BUTTON_PIN, INPUT_PULLUP); // display #ifdef USE_DISPLAY pinMode(16,OUTPUT); digitalWrite(16, LOW); // set GPIO16 low to reset OLED delay(50); digitalWrite(16, HIGH); // while OLED is running, must set GPIO16 in high display.init(); #ifdef FLIP_DISPLAY display.flipScreenVertically(); #endif /* show start screen */ display.clear(); display.setFont(ArialMT_Plain_16); display.drawString(6, 6, "PacketMonitor32"); display.setFont(ArialMT_Plain_10); display.drawString(24, 34, "Made with <3 by"); display.drawString(29, 44, "@Spacehuhn"); display.display(); delay(1000); #endif // second core xTaskCreatePinnedToCore( coreTask, /* Function to implement the task */ "coreTask", /* Name of the task */ 2500, /* Stack size in words */ NULL, /* Task input parameter */ 0, /* Priority of the task */ NULL, /* Task handle. */ RUNNING_CORE); /* Core where the task should run */ // start Wifi sniffer esp_wifi_set_promiscuous_rx_cb(&wifi_promiscuous); esp_wifi_set_promiscuous(true); } void loop() { vTaskDelay(portMAX_DELAY); } void coreTask( void * p ) { uint32_t currentTime; while (true) { currentTime = millis(); /* bit of spaghetti code, have to clean this up later :D */ // check button if (digitalRead(BUTTON_PIN) == LOW) { if (buttonEnabled) { if (!buttonPressed) { buttonPressed = true; lastButtonTime = currentTime; } else if (currentTime - lastButtonTime >= 2000) { if (useSD) { useSD = false; sdBuffer.close(&SD_MMC); draw(); } else { if (setupSD()) sdBuffer.open(&SD_MMC); draw(); } buttonPressed = false; buttonEnabled = false; } } } else { if (buttonPressed) { setChannel(ch + 1); draw(); } buttonPressed = false; buttonEnabled = true; } // save buffer to SD if (useSD) sdBuffer.save(&SD_MMC); // draw Display if ( currentTime - lastDrawTime > 1000 ) { lastDrawTime = currentTime; // Serial.printf("\nFree RAM %u %u\n", heap_caps_get_minimum_free_size(MALLOC_CAP_8BIT), heap_caps_get_minimum_free_size(MALLOC_CAP_32BIT));// for debug purposes pkts[MAX_X - 1] = tmpPacketCounter; draw(); // Serial.println((String)pkts[MAX_X - 1]); tmpPacketCounter = 0; deauths = 0; rssiSum = 0; } // Serial input if (Serial.available()) { ch = Serial.readString().toInt(); if (ch < 1 || ch > 14) ch = 1; setChannel(ch); } } } ================================================ FILE: README.md ================================================ # Heimdall-WiFi-Radar Heimdall WiFi Radar ESP8266 ================================================ FILE: README.txt ================================================ # pHAT Sniffer Raspberry Pi + ESP8266 pHAT WiFi sniffer ![Screenshot](screenshot.png "Screenshot") ![Device](device.jpg "Device") ================================================ FILE: circles_no_zoom.html ================================================ ================================================ FILE: circles_zoom.html ================================================ ================================================ FILE: data/vendors.tsv ================================================ 00:00:00 00:00:00 00:00:01 Superlan 00:00:02 BbnWasIn 00:00:03 Xerox 00:00:04 Xerox 00:00:05 Xerox 00:00:06 Xerox 00:00:07 Xerox 00:00:08 Xerox 00:00:09 Powerpip 00:00:0a OmronTat 00:00:0b Matrix 00:00:0c Cisco 00:00:0d Fibronic 00:00:0e Fujitsu 00:00:0f Next 00:00:10 Hughes 00:00:11 Tektrnix 00:00:12 Informat 00:00:13 Camex 00:00:14 Netronix 00:00:15 Datapoin 00:00:16 DuPontPi 00:00:17 Oracle 00:00:18 WebsterC 00:00:19 AppliedD 00:00:1a AMD 00:00:1b NovellNo 00:00:1c JdrMicro 00:00:1d Cabletro 00:00:1e TelsistI 00:00:1f Cryptall 00:00:20 DIAB 00:00:21 SC&C 00:00:22 VisualTe 00:00:23 AbbAutom 00:00:24 Olicom 00:00:25 Ramtek 00:00:26 Sha-Ken 00:00:27 JapanRad 00:00:28 Prodigy 00:00:29 Imc 00:00:2a Trw 00:00:2b CrispAut 00:00:2c Nrc-Netw 00:00:2d Chromati 00:00:2e SocieteE 00:00:2f Timeplex 00:00:30 VgLabora 00:00:31 QpsxComm 00:00:32 GptReass 00:00:33 EganMach 00:00:34 NetworkR 00:00:35 Spectrag 00:00:36 Atari 00:00:37 OxfordMe 00:00:38 CssLabs 00:00:39 Toshiba 00:00:3a Chyron 00:00:3b Hyundai/ 00:00:3c Auspex 00:00:3d AT&T 00:00:3e Simpact 00:00:3f Syntrex 00:00:40 Applicon 00:00:41 Ice 00:00:42 MetierMa 00:00:43 MicroTec 00:00:44 Castelle 00:00:45 FordAero 00:00:46 ISC-BR 00:00:47 NicoletI 00:00:48 Epson 00:00:49 Apricot 00:00:4a AdcCoden 00:00:4b APT 00:00:4c Nec 00:00:4d Dci 00:00:4e Ampex 00:00:4f Logicraf 00:00:50 Radisys 00:00:51 HobElect 00:00:52 OpticalD 00:00:53 Compucor 00:00:54 Schneide 00:00:55 AT&T 00:00:56 DrBStruc 00:00:57 Scitex 00:00:58 RacoreCo 00:00:59 Hellige 00:00:5a SkSchnei 00:00:5b Eltec 00:00:5c Telemati 00:00:5d Rce 00:00:5e USDepart 00:00:5f Sumitomo 00:00:60 KontronE 00:00:61 GatewayC 00:00:62 Hneywell 00:00:63 HP 00:00:64 Yokogawa 00:00:65 NetworkG 00:00:66 Talaris 00:00:67 Soft*Rit 00:00:68 Rosemoun 00:00:69 SGI 00:00:6a Computer 00:00:6b MIPS 00:00:6c Private 00:00:6d Case 00:00:6e Artisoft 00:00:6f MadgeNet 00:00:70 Hcl 00:00:71 Adra 00:00:72 Miniware 00:00:73 Dupont 00:00:74 Ricoh 00:00:75 BellNort 00:00:76 AbekasVi 00:00:77 Interpha 00:00:78 LabtamAu 00:00:79 Networth 00:00:7a Ardent 00:00:7b Research 00:00:7c Ampere 00:00:7d Cray 00:00:7e Netframe 00:00:7f Linotype 00:00:80 CrayComm 00:00:81 Synoptic 00:00:82 LectraSy 00:00:83 TadpoleT 00:00:84 Aquila?A 00:00:85 Canon 00:00:86 GatewayC 00:00:87 Hitachi 00:00:88 BrocadeC 00:00:89 CaymanSy 00:00:8a Datahous 00:00:8b Infotron 00:00:8c AlloyCom 00:00:8d Cryptek 00:00:8e Solbourn 00:00:8f Raytheon 00:00:90 Microcom 00:00:91 Anritsu 00:00:92 UnisysCo 00:00:93 Proteon 00:00:94 AsanteMa 00:00:95 Sony 00:00:96 MarconiE 00:00:97 Epoch 00:00:98 CrossCom 00:00:99 MemorexT 00:00:9a RcComput 00:00:9b Informat 00:00:9c RolmMil- 00:00:9d LocusCom 00:00:9e MarliSA 00:00:9f Amerista 00:00:a0 SanyoEle 00:00:a1 Marquett 00:00:a2 Wellflee 00:00:a3 NAT 00:00:a4 Acorn 00:00:a5 CSC 00:00:a6 NetworkG 00:00:a7 NCD 00:00:a8 StratusC 00:00:a9 NetSys 00:00:aa XeroxXer 00:00:ab LogicMod 00:00:ac ConwareN 00:00:ad BrukerIn 00:00:ae Dassault 00:00:af NuclearD 00:00:b0 RndRadNe 00:00:b1 AlphaMic 00:00:b2 Televide 00:00:b3 Cimlinc 00:00:b4 Edimax 00:00:b5 Databili 00:00:b6 Micro-Ma 00:00:b7 DoveFast 00:00:b8 Seikosha 00:00:b9 Mcdonnel 00:00:ba Siig 00:00:bb Tri-Data 00:00:bc Allen-Br 00:00:bd Mitsubis 00:00:be NtiGroup 00:00:bf Symmetri 00:00:c0 WesternD 00:00:c1 Olicom 00:00:c2 Informat 00:00:c3 HarrisCo 00:00:c4 WatersDi 00:00:c5 Farallon 00:00:c6 HpIntell 00:00:c7 Arix 00:00:c8 Altos 00:00:c9 EmulexTe 00:00:ca LancityC 00:00:cb Compu-Sh 00:00:cc Densan 00:00:cd Industri 00:00:ce Megadata 00:00:cf HayesMic 00:00:d0 Develcon 00:00:d1 Adaptec 00:00:d2 Sbe 00:00:d3 WangLabs 00:00:d4 Puredata 00:00:d5 Microgno 00:00:d6 PunchLin 00:00:d7 Dartmout 00:00:d8 OldNovel 00:00:d9 NipponTe 00:00:da Atex 00:00:db BritishT 00:00:dc HayesMic 00:00:dd Gould 00:00:de Unigraph 00:00:df BellHowe 00:00:e0 Quadram 00:00:e1 Hitachi 00:00:e2 AcerCoun 00:00:e3 Integrat 00:00:e4 Mips? 00:00:e5 Sigmex 00:00:e6 AptorPro 00:00:e7 StarGate 00:00:e8 AcctonTe 00:00:e9 Isicad 00:00:ea Upnod 00:00:eb Matsushi 00:00:ec Micropro 00:00:ed April 00:00:ee NetworkD 00:00:ef AlantecN 00:00:f0 Samsung 00:00:f1 MagnaCom 00:00:f2 SpiderCo 00:00:f3 GandalfD 00:00:f4 AlliedTe 00:00:f5 DiamondS 00:00:f6 Madge 00:00:f7 YouthKee 00:00:f8 Dec 00:00:f9 Quotron 00:00:fa Microsag 00:00:fb RechnerZ 00:00:fc Meiko 00:00:fd HighLeve 00:00:fe Annapoli 00:00:ff CamtecEl 00:01:00 EquipTra 00:01:01 Private 00:01:02 BbnBoltB 00:01:03 3Com 00:01:04 Dvico 00:01:05 Beckhoff 00:01:06 TewsDate 00:01:07 Leiser 00:01:08 AvlabTec 00:01:09 NaganoJa 00:01:0a CisTechn 00:01:0b SpaceCyb 00:01:0c SystemTa 00:01:0d Teledyne 00:01:0e Bri-Link 00:01:0f BrocadeC 00:01:10 GothamNe 00:01:11 Idigm 00:01:12 SharkMul 00:01:13 Olympus 00:01:14 KandaTsu 00:01:15 Extratec 00:01:16 Netspect 00:01:17 Canal+ 00:01:18 EzDigita 00:01:19 RtunetAu 00:01:1a Hoffmann 00:01:1b UnizoneT 00:01:1c Universa 00:01:1d Centilli 00:01:1e Precidia 00:01:1f RcNetwor 00:01:20 Oscilloq 00:01:21 Watchgua 00:01:22 TrendCom 00:01:23 DigitalE 00:01:24 Acer 00:01:25 YaesuMus 00:01:26 PacLabs 00:01:27 OpenNetw 00:01:28 Enjoyweb 00:01:29 Dfi 00:01:2a Telemati 00:01:2b Telenet 00:01:2c AravoxTe 00:01:2d KomodoTe 00:01:2e PcPartne 00:01:2f Twinhead 00:01:30 ExtremeN 00:01:31 BoschSec 00:01:32 Dranetz- 00:01:33 KyowaEle 00:01:34 Selectro 00:01:35 Kdc 00:01:36 Cybertan 00:01:37 ItFarm 00:01:38 XaviTech 00:01:39 PointMul 00:01:3a ShelcadC 00:01:3b Bna 00:01:3c Tiw 00:01:3d Riscstat 00:01:3e AscomTat 00:01:3f Neighbor 00:01:40 Sendtek 00:01:41 CablePri 00:01:42 Cisco 00:01:43 IEEE802 00:01:44 Emc 00:01:45 Winsyste 00:01:46 TescoCon 00:01:47 ZhoneTec 00:01:48 X-Traweb 00:01:49 TDTTrans 00:01:4a Sony 00:01:4b Ennovate 00:01:4c Berkeley 00:01:4d ShinKinE 00:01:4e WinEnter 00:01:4f Adtran 00:01:50 Megahert 00:01:51 Ensemble 00:01:52 Chromate 00:01:53 ArchtekT 00:01:54 G3m 00:01:55 PromiseT 00:01:56 Firewire 00:01:57 Syswave 00:01:58 ElectroI 00:01:59 S1 00:01:5a DigitalV 00:01:5b ItaltelS 00:01:5c Cadant 00:01:5d Oracle 00:01:5e BestTech 00:01:5f DigitalD 00:01:60 Elmex 00:01:61 MetaMach 00:01:62 CygnetTe 00:01:63 NdcNatio 00:01:64 Cisco 00:01:65 Airswitc 00:01:66 TcGroup 00:01:67 HiokiEE 00:01:68 W&GWande 00:01:69 Celestix 00:01:6a Alitec 00:01:6b Lightchi 00:01:6c Foxconn 00:01:6d Carrierc 00:01:6e Conklin 00:01:6f Inkel 00:01:70 EseEmbed 00:01:71 AlliedDa 00:01:72 Technola 00:01:73 Amcc 00:01:74 Cyberopt 00:01:75 RadiantC 00:01:76 OrientSi 00:01:77 Edsl 00:01:78 Margi 00:01:79 Wireless 00:01:7a ChengduM 00:01:7b Heidelbe 00:01:7c Ag-E 00:01:7d Thermoqu 00:01:7e AdtekSys 00:01:7f Experien 00:01:80 Aopen 00:01:81 NortelNe 00:01:82 DicaTech 00:01:83 AniteTel 00:01:84 SiebMeye 00:01:85 HitachiA 00:01:86 UweDisch 00:01:87 I2se 00:01:88 LxcoTech 00:01:89 Refracti 00:01:8a RoiCompu 00:01:8b Netlinks 00:01:8c MegaVisi 00:01:8d AudesiTe 00:01:8e Logitec 00:01:8f Kenetec 00:01:90 Smk-M 00:01:91 SyredDat 00:01:92 TexasDig 00:01:93 HanbyulT 00:01:94 CapitalE 00:01:95 SenaTech 00:01:96 Cisco 00:01:97 Cisco 00:01:98 DarimVis 00:01:99 HeiseiEl 00:01:9a Leunig 00:01:9b KyotoMic 00:01:9c JdsUniph 00:01:9d E-Contro 00:01:9e EssTechn 00:01:9f Readynet 00:01:a0 Infinili 00:01:a1 Mag-Tek 00:01:a2 Logical 00:01:a3 GenesysL 00:01:a4 Microlin 00:01:a5 Nextcomm 00:01:a6 Scientif 00:01:a7 UnexTech 00:01:a8 Welltech 00:01:a9 Bmw 00:01:aa AirspanC 00:01:ab MainStre 00:01:ac SitaraNe 00:01:ad CoachMas 00:01:ae TrexEnte 00:01:af ArtesynE 00:01:b0 FulltekT 00:01:b1 GeneralB 00:01:b2 DigitalP 00:01:b3 Precisio 00:01:b4 Wayport 00:01:b5 TurinNet 00:01:b6 SaejinT& 00:01:b7 Centos 00:01:b8 Netsensi 00:01:b9 SkfCondi 00:01:ba Ic-Net 00:01:bb Frequent 00:01:bc Brains 00:01:bd Peterson 00:01:be Gigalink 00:01:bf Teleforc 00:01:c0 Compulab 00:01:c1 VitesseS 00:01:c2 ArkResea 00:01:c3 Acromag 00:01:c4 Neowave 00:01:c5 SimplerN 00:01:c6 QuarryTe 00:01:c7 Cisco 00:01:c8 ThomasCo 00:01:c9 Cisco 00:01:ca GeocastN 00:01:cb Evr 00:01:cc JapanTot 00:01:cd Artem 00:01:ce CustomMi 00:01:cf AlphaDat 00:01:d0 Vitalpoi 00:01:d1 ConetCom 00:01:d2 Inxtron 00:01:d3 Paxcomm 00:01:d4 LeisureT 00:01:d5 HaedongI 00:01:d6 Manrolan 00:01:d7 F5Networ 00:01:d8 Teltroni 00:01:d9 Sigma 00:01:da Wincomm 00:01:db FreecomT 00:01:dc Activete 00:01:dd AvailNet 00:01:de Trango 00:01:df IsdnComm 00:01:e0 Fast 00:01:e1 KinpoEle 00:01:e2 AndoElec 00:01:e3 Siemens 00:01:e4 Sitera 00:01:e5 Supernet 00:01:e6 HP 00:01:e7 HP 00:01:e8 Force10N 00:01:e9 LittonMa 00:01:ea Cirilium 00:01:eb C-Com 00:01:ec Ericsson 00:01:ed Seta 00:01:ee ComtrolE 00:01:ef CamtelTe 00:01:f0 Tridium 00:01:f1 Innovati 00:01:f2 MarkOfUn 00:01:f3 Qps 00:01:f4 Enterasy 00:01:f5 ErimSA 00:01:f6 Associat 00:01:f7 ImageDis 00:01:f8 TexioTec 00:01:f9 Teraglob 00:01:fa Compaq 00:01:fb DotopTec 00:01:fc Keyence 00:01:fd DigitalV 00:01:fe DigitalE 00:01:ff DataDire 00:02:00 NetSys 00:02:01 IfmElect 00:02:02 AminoCom 00:02:03 Woonsang 00:02:04 Novell 00:02:05 Hamilton 00:02:06 TelitalR 00:02:07 Visiongl 00:02:08 UnifyNet 00:02:09 Shenzhen 00:02:0a Gefran 00:02:0b NativeNe 00:02:0c Metro-Op 00:02:0d Micronpc 00:02:0e EciTelec 00:02:0f Aatr 00:02:10 Fenecom 00:02:11 NatureWo 00:02:12 Sierraco 00:02:13 SDEL 00:02:14 Dtvro 00:02:15 CotasCom 00:02:16 EsiExten 00:02:17 Cisco 00:02:18 Advanced 00:02:19 ParalonT 00:02:1a ZumaNetw 00:02:1b Kollmorg 00:02:1c NetworkE 00:02:1d DataGene 00:02:1e SimtelSR 00:02:1f Aculab 00:02:20 CanonFin 00:02:21 DspAppli 00:02:22 Chromisy 00:02:23 Clicktv 00:02:24 C-Cor 00:02:25 OneStop 00:02:26 Xesystem 00:02:27 EsdElect 00:02:28 Necsom 00:02:29 Adtec 00:02:2a AsoundEl 00:02:2b Saxa 00:02:2c AbbBomem 00:02:2d Agere 00:02:2e TeacR&D 00:02:2f P-Cube 00:02:30 Intersof 00:02:31 Axis 00:02:32 Avision 00:02:33 MantraCo 00:02:34 Imperial 00:02:35 ParagonN 00:02:36 Init 00:02:37 CosmoRes 00:02:38 SeromeTe 00:02:39 Visicom 00:02:3a ZskStick 00:02:3b Ericsson 00:02:3c Creative 00:02:3d Cisco 00:02:3e SeltaTel 00:02:3f CompalEl 00:02:40 Seedek 00:02:41 AmerCom 00:02:42 Videofra 00:02:43 Raysis 00:02:44 SurecomT 00:02:45 Lampus 00:02:46 All-WinT 00:02:47 GreatDra 00:02:48 Pilz 00:02:49 AvivInfo 00:02:4a Cisco 00:02:4b Cisco 00:02:4c Sibyte 00:02:4d Mannesma 00:02:4e Datacard 00:02:4f IpmDatac 00:02:50 GeyserNe 00:02:51 SomaNetw 00:02:52 Carrier 00:02:53 Televide 00:02:54 Worldgat 00:02:55 IBM 00:02:56 AlphaPro 00:02:57 Microcom 00:02:58 FlyingPa 00:02:59 TsannKue 00:02:5a CatenaNe 00:02:5b Cambridg 00:02:5c SciKunsh 00:02:5d CalixNet 00:02:5e HighTech 00:02:5f NortelNe 00:02:60 Accordio 00:02:61 Tilgin 00:02:62 SoyoGrou 00:02:63 UpsManuf 00:02:64 Audioram 00:02:65 Virditec 00:02:66 Thermalo 00:02:67 NodeRunn 00:02:68 HarrisGo 00:02:69 Nadatel 00:02:6a CocessTe 00:02:6b BcmCompu 00:02:6c Philips 00:02:6d AdeptTel 00:02:6e NegenAcc 00:02:6f SenaoInt 00:02:70 Crewave 00:02:71 ZhoneTec 00:02:72 Cc&CTech 00:02:73 Coriolis 00:02:74 TommyTec 00:02:75 SmartTec 00:02:76 PrimaxEl 00:02:77 CashSyst 00:02:78 Samsung 00:02:79 ControlA 00:02:7a IoiTechn 00:02:7b AmplifyN 00:02:7c Trilithi 00:02:7d Cisco 00:02:7e Cisco 00:02:7f Ask-Tech 00:02:80 MuNet 00:02:81 Madge 00:02:82 Viaclix 00:02:83 Spectrum 00:02:84 ArevaT&D 00:02:85 Riversto 00:02:86 OccamNet 00:02:87 Adapcom 00:02:88 GlobalVi 00:02:89 DneTechn 00:02:8a AmbitMic 00:02:8b VdslOy 00:02:8c Micrel-S 00:02:8d MovitaTe 00:02:8e Rapid5Ne 00:02:8f Globetek 00:02:90 Woorigis 00:02:91 OpenNetw 00:02:92 LogicInn 00:02:93 SolidDat 00:02:94 TokyoSok 00:02:95 IpAccess 00:02:96 Lectron 00:02:97 C-CorNet 00:02:98 Broadfra 00:02:99 Apex 00:02:9a StorageA 00:02:9b KreatelC 00:02:9c 3Com 00:02:9d Merix 00:02:9e Informat 00:02:9f L-3Commu 00:02:a0 Flatstac 00:02:a1 WorldWid 00:02:a2 Hilscher 00:02:a3 AbbSwitz 00:02:a4 AddpacTe 00:02:a5 HP 00:02:a6 Effinet 00:02:a7 VivaceNe 00:02:a8 AirLinkT 00:02:a9 RacomSRO 00:02:aa Plcom 00:02:ab CtcUnion 00:02:ac 3parData 00:02:ad Hoya 00:02:ae ScannexE 00:02:af Telecruz 00:02:b0 HokubuCo 00:02:b1 Anritsu 00:02:b2 Cablevis 00:02:b3 Intel 00:02:b4 Daphne 00:02:b5 Avnet 00:02:b6 Acrosser 00:02:b7 Watanabe 00:02:b8 WhiKonsu 00:02:b9 Cisco 00:02:ba Cisco 00:02:bb Continuo 00:02:bc Lvl7 00:02:bd Bionet 00:02:be TotsuEng 00:02:bf Dotrocke 00:02:c0 BencentT 00:02:c1 Innovati 00:02:c2 NetVisio 00:02:c3 Arelnet 00:02:c4 VectorIn 00:02:c5 EvertzMi 00:02:c6 DataTrac 00:02:c7 AlpsElec 00:02:c8 Technoco 00:02:c9 Mellanox 00:02:ca Endpoint 00:02:cb Tristate 00:02:cc MCCI 00:02:cd Teledrea 00:02:ce Foxjet 00:02:cf ZygateCo 00:02:d0 Comdial 00:02:d1 Vivotek 00:02:d2 Workstat 00:02:d3 Netbotz 00:02:d4 PdaPerip 00:02:d5 Acr 00:02:d6 Nice 00:02:d7 Empeg 00:02:d8 BrecisCo 00:02:d9 Reliable 00:02:da ExioComm 00:02:db Netsec 00:02:dc Fujitsu 00:02:dd BromaxCo 00:02:de Astrodes 00:02:df NetCom 00:02:e0 Etas 00:02:e1 Integrat 00:02:e2 NdcInfar 00:02:e3 Lite-OnC 00:02:e4 JcHyun 00:02:e5 Timeware 00:02:e6 GouldIns 00:02:e7 Cab 00:02:e8 ED&A 00:02:e9 CsSystem 00:02:ea FocusEnh 00:02:eb PicoComm 00:02:ec Maschoff 00:02:ed DxoTelec 00:02:ee NokiaDan 00:02:ef CccNetwo 00:02:f0 AmeOptim 00:02:f1 Pinetron 00:02:f2 Edevice 00:02:f3 MediaSer 00:02:f4 Pctel 00:02:f5 ViveSyne 00:02:f6 EquipeCo 00:02:f7 Arm 00:02:f8 SeakrEng 00:02:f9 MimosBer 00:02:fa DxAntenn 00:02:fb Baumulle 00:02:fc Cisco 00:02:fd Cisco 00:02:fe Viditec 00:02:ff HandanBr 00:03:00 Barracud 00:03:01 Exfo 00:03:02 CharlesI 00:03:03 JamaElec 00:03:04 PacificB 00:03:05 MscVertr 00:03:06 FusionIn 00:03:07 SecureWo 00:03:08 AmCommun 00:03:09 TexcelTe 00:03:0a ArgusTec 00:03:0b HunterTe 00:03:0c Telesoft 00:03:0d UniwillC 00:03:0e CoreComm 00:03:0f DigitalC 00:03:10 E-Global 00:03:11 MicroTec 00:03:12 Tr-Syste 00:03:13 AccessMe 00:03:14 Teleware 00:03:15 Cidco 00:03:16 NobellCo 00:03:17 Merlin 00:03:18 Cyras 00:03:19 Infineon 00:03:1a BeijingB 00:03:1b Cellvisi 00:03:1c SvenskaH 00:03:1d TaiwanCo 00:03:1e Optranet 00:03:1f Condev 00:03:20 Xpeed 00:03:21 RecoRese 00:03:22 Idis 00:03:23 CornetTe 00:03:24 SanyoCon 00:03:25 ArimaCom 00:03:26 IwasakiI 00:03:27 ActL 00:03:28 MaceGrou 00:03:29 F3 00:03:2a UnidataC 00:03:2b GaiDaten 00:03:2c AbbSwitz 00:03:2d IbaseTec 00:03:2e ScopeInf 00:03:2f GlobalSu 00:03:30 Imagenic 00:03:31 Cisco 00:03:32 Cisco 00:03:33 Digitel 00:03:34 NewportE 00:03:35 MiraeTec 00:03:36 ZetesTec 00:03:37 Vaone 00:03:38 OakTechn 00:03:39 Eurologi 00:03:3a SiliconW 00:03:3b TamiTech 00:03:3c Daiden 00:03:3d IlshinLa 00:03:3e Tateyama 00:03:3f BigbandN 00:03:40 FlowareW 00:03:41 AxonDigi 00:03:42 NortelNe 00:03:43 MartinPr 00:03:44 Tietech 00:03:45 RoutrekN 00:03:46 HitachiK 00:03:47 Intel 00:03:48 NorscanI 00:03:49 Vidicode 00:03:4a Rias 00:03:4b NortelNe 00:03:4c Shanghai 00:03:4d ChiaroNe 00:03:4e PosData 00:03:4f Sur-Gard 00:03:50 Bticino 00:03:51 Diebold 00:03:52 Colubris 00:03:53 Mitac 00:03:54 FiberLog 00:03:55 Terabeam 00:03:56 WincorNi 00:03:57 Intervoi 00:03:58 HanyangD 00:03:59 Digitals 00:03:5a Photron 00:03:5b Bridgewa 00:03:5c SaintSon 00:03:5d BosungHi 00:03:5e Metropol 00:03:5f Prüftech 00:03:60 PacInter 00:03:61 Widcomm 00:03:62 VodtelCo 00:03:63 Miraesys 00:03:64 ScenixSe 00:03:65 KiraInfo 00:03:66 AsmPacif 00:03:67 JasmineN 00:03:68 Embedone 00:03:69 NipponAn 00:03:6a Mainnet 00:03:6b Cisco 00:03:6c Cisco 00:03:6d Runtop 00:03:6e NiconPty 00:03:6f Telsey 00:03:70 Nxtv 00:03:71 AcomzNet 00:03:72 Ulan 00:03:73 AselsanA 00:03:74 ControlM 00:03:75 Netmedia 00:03:76 Graphtec 00:03:77 GigabitW 00:03:78 Humax 00:03:79 Proscend 00:03:7a TaiyoYud 00:03:7b IdecIzum 00:03:7c CoaxMedi 00:03:7d Stellcom 00:03:7e PortechC 00:03:7f AtherosC 00:03:80 SshCommu 00:03:81 Ingenico 00:03:82 A-One 00:03:83 MeteraNe 00:03:84 Aeta 00:03:85 ActelisN 00:03:86 HoNet 00:03:87 BlazeNet 00:03:88 Fastfame 00:03:89 Plantron 00:03:8a AmericaO 00:03:8b Plus-One 00:03:8c TotalImp 00:03:8d PcsReven 00:03:8e Atoga 00:03:8f Weinsche 00:03:90 DigitalV 00:03:91 Advanced 00:03:92 HyundaiT 00:03:93 Apple 00:03:94 ConnectO 00:03:95 Californ 00:03:96 EzCast 00:03:97 Watchfro 00:03:98 Wisi 00:03:99 DongjuIn 00:03:9a Siconnec 00:03:9b NetchipT 00:03:9c Optimigh 00:03:9d Qisda 00:03:9e TeraSyst 00:03:9f Cisco 00:03:a0 Cisco 00:03:a1 HiperInf 00:03:a2 Catapult 00:03:a3 Mavix 00:03:a4 Imation 00:03:a5 Medea 00:03:a6 TraxitTe 00:03:a7 UnixtarT 00:03:a8 IdotComp 00:03:a9 AxcentMe 00:03:aa Watlow 00:03:ab BridgeIn 00:03:ac FroniusS 00:03:ad EmersonE 00:03:ae AlliedAd 00:03:af ParageaC 00:03:b0 XsenseTe 00:03:b1 Hospira 00:03:b2 Radware 00:03:b3 IaLink 00:03:b4 Macrotek 00:03:b5 EntraTec 00:03:b6 Qsi 00:03:b7 Zaccess 00:03:b8 NetkitSo 00:03:b9 HualongT 00:03:ba Oracle 00:03:bb SignalCo 00:03:bc Cot 00:03:bd Omniclus 00:03:be Netility 00:03:bf Centerpo 00:03:c0 Rftnc 00:03:c1 PacketDy 00:03:c2 Solphone 00:03:c3 Micronik 00:03:c4 TomraAsa 00:03:c5 Mobotix 00:03:c6 MorningS 00:03:c7 HopfElek 00:03:c8 CmlEmerg 00:03:c9 Tecom 00:03:ca Mts 00:03:cb NipponDe 00:03:cc Momentum 00:03:cd Cloverte 00:03:ce EtenTech 00:03:cf Muxcom 00:03:d0 Koankeis 00:03:d1 Takaya 00:03:d2 Crossbea 00:03:d3 Internet 00:03:d4 Alloptic 00:03:d5 Advanced 00:03:d6 Radvisio 00:03:d7 NextnetW 00:03:d8 ImpathNe 00:03:d9 Secheron 00:03:da Takamisa 00:03:db ApogeeEl 00:03:dc LexarMed 00:03:dd ComarkIn 00:03:de OtcWirel 00:03:df Desana 00:03:e0 ArrisGro 00:03:e1 WinmateC 00:03:e2 Comspace 00:03:e3 Cisco 00:03:e4 Cisco 00:03:e5 Hermsted 00:03:e6 Entone 00:03:e7 Logostek 00:03:e8 Waveleng 00:03:e9 AkaraCan 00:03:ea MegaSyst 00:03:eb Atrica 00:03:ec IcgResea 00:03:ed Shinkawa 00:03:ee Mknet 00:03:ef Oneline 00:03:f0 RedfernB 00:03:f1 CicadaSe 00:03:f2 SenecaNe 00:03:f3 DazzleMu 00:03:f4 Netburne 00:03:f5 Chip2chi 00:03:f6 AllegroN 00:03:f7 Plast-Co 00:03:f8 Sancastl 00:03:f9 Pleiades 00:03:fa TimetraN 00:03:fb Enegate 00:03:fc Intertex 00:03:fd Cisco 00:03:fe Cisco 00:03:ff Microsoft 00:04:00 LexmarkP 00:04:01 OsakiEle 00:04:02 NexsanTe 00:04:03 Nexsi 00:04:04 MakinoMi 00:04:05 AcnTechn 00:04:06 FaMetabo 00:04:07 TopconPo 00:04:08 SankoEle 00:04:09 CratosNe 00:04:0a Sage 00:04:0b 3comEuro 00:04:0c KannoWor 00:04:0d Avaya 00:04:0e Avm 00:04:0f ASUS 00:04:10 Spinnake 00:04:11 InkraNet 00:04:12 Wavesmit 00:04:13 SnomTech 00:04:14 UmezawaM 00:04:15 Rasteme 00:04:16 ParksCom 00:04:17 Elau 00:04:18 Teltroni 00:04:19 Fibercyc 00:04:1a InesTest 00:04:1b Bridgewo 00:04:1c Ipdialog 00:04:1d CoregaOf 00:04:1e ShikokuI 00:04:1f Sony 00:04:20 SlimDevi 00:04:21 OcularNe 00:04:22 StudioTe 00:04:23 Intel 00:04:24 TmcSRL 00:04:25 Atmel 00:04:26 Autosys 00:04:27 Cisco 00:04:28 Cisco 00:04:29 Pixord 00:04:2a Wireless 00:04:2b ItAccess 00:04:2c Minet 00:04:2d Sarian 00:04:2e NetousTe 00:04:2f Internat 00:04:30 Netgem 00:04:31 Globalst 00:04:32 VoyetraT 00:04:33 Cyberboa 00:04:34 Accelent 00:04:35 InfinetL 00:04:36 ElansatT 00:04:37 PowinInf 00:04:38 NortelNe 00:04:39 RoscoEnt 00:04:3a Intellig 00:04:3b LavaComp 00:04:3c Sonos 00:04:3d Indel 00:04:3e Telencom 00:04:3f EsteemWi 00:04:40 Cyberpix 00:04:41 HalfDome 00:04:42 Nact 00:04:43 AgilentT 00:04:44 WesternM 00:04:45 LmsSkala 00:04:46 Cyzentec 00:04:47 Acrowave 00:04:48 Polaroid 00:04:49 Mapletre 00:04:4a IpolicyN 00:04:4b Nvidia 00:04:4c Jenoptik 00:04:4d Cisco 00:04:4e Cisco 00:04:4f Schubert 00:04:50 DmdCompu 00:04:51 Medrad 00:04:52 Rocketlo 00:04:53 Yottayot 00:04:54 Quadriga 00:04:55 AntaraNe 00:04:56 CambiumN 00:04:57 Universa 00:04:58 FusionX 00:04:59 Veristar 00:04:5a LinksysG 00:04:5b TechsanE 00:04:5c Mobiwave 00:04:5d BekaElek 00:04:5e Polytrax 00:04:5f AvalueTe 00:04:60 KnilinkT 00:04:61 EpoxComp 00:04:62 DakosDat 00:04:63 BoschSec 00:04:64 Pulse-Li 00:04:65 ISTIsdn- 00:04:66 Armitel 00:04:67 WuhanRes 00:04:68 Vivity 00:04:69 Innocom 00:04:6a NaviniNe 00:04:6b PalmWire 00:04:6c CyberTec 00:04:6d Cisco 00:04:6e Cisco 00:04:6f DigitelI 00:04:70 Ipunplug 00:04:71 Iprad 00:04:72 Telelynx 00:04:73 Photonex 00:04:74 Legrand 00:04:75 3Com 00:04:76 3Com 00:04:77 Scalant 00:04:78 GStarTec 00:04:79 Radius 00:04:7a Axxessit 00:04:7b Schlumbe 00:04:7c Skidata 00:04:7d Pelco 00:04:7e SiquraBV 00:04:7f ChrMayr 00:04:80 BrocadeC 00:04:81 Econolit 00:04:82 Medialog 00:04:83 DeltronT 00:04:84 Amann 00:04:85 Picoligh 00:04:86 IttcUniv 00:04:87 CogencyS 00:04:88 Eurother 00:04:89 YafoNetw 00:04:8a TemiaVer 00:04:8b Poscon 00:04:8c NaynaNet 00:04:8d TeoTechn 00:04:8e OhmTechL 00:04:8f Td 00:04:90 OpticalA 00:04:91 Technovi 00:04:92 HiveInte 00:04:93 Tsinghua 00:04:94 Breezeco 00:04:95 TejasNet 00:04:96 ExtremeN 00:04:97 Macrosys 00:04:98 MahiNetw 00:04:99 Chino 00:04:9a Cisco 00:04:9b Cisco 00:04:9c Surgient 00:04:9d IpanemaT 00:04:9e Wirelink 00:04:9f Freescal 00:04:a0 VerityIn 00:04:a1 PathwayC 00:04:a2 LSIJapan 00:04:a3 Microchi 00:04:a4 Netenabl 00:04:a5 BarcoPro 00:04:a6 SafTehni 00:04:a7 Fabiatec 00:04:a8 Broadmax 00:04:a9 Sandstre 00:04:aa Jetstrea 00:04:ab Comverse 00:04:ac IBM 00:04:ad MalibuNe 00:04:ae Sullair 00:04:af DigitalF 00:04:b0 Elesign 00:04:b1 SignalTe 00:04:b2 EssegiSr 00:04:b3 Videotek 00:04:b4 Ciac 00:04:b5 Equitrac 00:04:b6 StratexN 00:04:b7 AmbIT 00:04:b8 Kumahira 00:04:b9 SISoubou 00:04:ba KddMedia 00:04:bb Bardac 00:04:bc Giantec 00:04:bd ArrisGro 00:04:be Optxcon 00:04:bf Versalog 00:04:c0 Cisco 00:04:c1 Cisco 00:04:c2 Magnipix 00:04:c3 CastorIn 00:04:c4 AllenHea 00:04:c5 AseTechn 00:04:c6 YamahaMo 00:04:c7 Netmount 00:04:c8 LibaMasc 00:04:c9 MicroEle 00:04:ca Freems 00:04:cb TdsoftCo 00:04:cc PeekTraf 00:04:cd Extenway 00:04:ce PatriaAi 00:04:cf SeagateT 00:04:d0 Softlink 00:04:d1 DrewTech 00:04:d2 AdconTel 00:04:d3 Toyokeik 00:04:d4 ProviewE 00:04:d5 HitachiI 00:04:d6 TakagiIn 00:04:d7 OmitecIn 00:04:d8 Ipwirele 00:04:d9 TitanEle 00:04:da RelaxTec 00:04:db TellusGr 00:04:dc NortelNe 00:04:dd Cisco 00:04:de Cisco 00:04:df TeracomT 00:04:e0 ProcketN 00:04:e1 Infinior 00:04:e2 SmcNetwo 00:04:e3 AcctonTe 00:04:e4 Daeryung 00:04:e5 Glonet 00:04:e6 BanyanNe 00:04:e7 Lightpoi 00:04:e8 Ier 00:04:e9 Infinisw 00:04:ea HP 00:04:eb PaxonetC 00:04:ec MemoboxS 00:04:ed BillionE 00:04:ee LincolnE 00:04:ef Polestar 00:04:f0 Internat 00:04:f1 Wherenet 00:04:f2 Polycom 00:04:f3 FsForth- 00:04:f4 Infinite 00:04:f5 Snowshor 00:04:f6 Amphus 00:04:f7 OmegaBan 00:04:f8 Qualicab 00:04:f9 XteraCom 00:04:fa NbsTechn 00:04:fb Commtech 00:04:fc StratusC 00:04:fd JapanCon 00:04:fe PelagoNe 00:04:ff Acronet 00:05:00 Cisco 00:05:01 Cisco 00:05:02 ApplePci 00:05:03 Iconag 00:05:04 NarayInf 00:05:05 Integrat 00:05:06 ReddoNet 00:05:07 FineAppl 00:05:08 Inetcam 00:05:09 AvocNish 00:05:0a Ics 00:05:0b Sicom 00:05:0c NetworkP 00:05:0d Midstrea 00:05:0e 3ware 00:05:0f TanakaS/ 00:05:10 Infinite 00:05:11 Compleme 00:05:12 ZebraTec 00:05:13 VtlinxMu 00:05:14 Kdt 00:05:15 Nuark 00:05:16 SmartMod 00:05:17 Shellcom 00:05:18 Jupiters 00:05:19 SiemensB 00:05:1a 3comEuro 00:05:1b MagicCon 00:05:1c XnetTech 00:05:1d Airocon 00:05:1e BrocadeC 00:05:1f TaijinMe 00:05:20 Smartron 00:05:21 ControlM 00:05:22 Lea*D 00:05:23 AvlList 00:05:24 BtlSyste 00:05:25 PuretekI 00:05:26 Ipas 00:05:27 SjTek 00:05:28 NewFocus 00:05:29 Shanghai 00:05:2a IkegamiT 00:05:2b Horiba 00:05:2c SupremeM 00:05:2d ZoltrixI 00:05:2e CintaNet 00:05:2f LevitonN 00:05:30 Andiamo 00:05:31 Cisco 00:05:32 Cisco 00:05:33 BrocadeC 00:05:34 Northsta 00:05:35 ChipPc 00:05:36 DanamCom 00:05:37 NetsTech 00:05:38 Merilus 00:05:39 ABrandNe 00:05:3a Willowgl 00:05:3b HarbourN 00:05:3c Xircom 00:05:3d Agere 00:05:3e KidSyste 00:05:3f Visionte 00:05:40 Fast 00:05:41 Advanced 00:05:42 Otari 00:05:43 IqWirele 00:05:44 ValleyTe 00:05:45 Internet 00:05:46 KddiNetw 00:05:47 StarentN 00:05:48 Disco 00:05:49 SaliraOp 00:05:4a ArioData 00:05:4b EatonAut 00:05:4c RfInnova 00:05:4d BransTec 00:05:4e Philips 00:05:4f Private 00:05:50 VcommsCo 00:05:51 FSElektr 00:05:52 XycotecC 00:05:53 Dvc 00:05:54 Rangesta 00:05:55 JapanCas 00:05:56 360 00:05:57 AgileTv 00:05:58 Synchron 00:05:59 Intracom 00:05:5a PowerDsi 00:05:5b CharlesI 00:05:5c Kowa 00:05:5d D-Link 00:05:5e Cisco 00:05:5f Cisco 00:05:60 LeaderCo 00:05:61 NacImage 00:05:62 DigitalV 00:05:63 J-Works 00:05:64 Tsinghua 00:05:65 TailynCo 00:05:66 SecuiCom 00:05:67 Etymonic 00:05:68 Piltofis 00:05:69 Vmware 00:05:6a HeuftSys 00:05:6b CPTechno 00:05:6c HungChan 00:05:6d Pacific 00:05:6e National 00:05:6f Innomedi 00:05:70 Baydel 00:05:71 SeiwaEle 00:05:72 Deonet 00:05:73 Cisco 00:05:74 Cisco 00:05:75 Cds-Elec 00:05:76 NsmTechn 00:05:77 SmInform 00:05:78 Private 00:05:79 Universa 00:05:7a Overture 00:05:7b ChungNam 00:05:7c RcoSecur 00:05:7d SunCommu 00:05:7e Eckelman 00:05:7f AcqisTec 00:05:80 Fibrolan 00:05:81 Snell 00:05:82 Clearcub 00:05:83 Imagecom 00:05:84 Absolute 00:05:85 JuniperN 00:05:86 LucentTe 00:05:87 Locus 00:05:88 Sensoria 00:05:89 National 00:05:8a Netcom 00:05:8b Ipmental 00:05:8c Opentech 00:05:8d LynxPhot 00:05:8e Flextron 00:05:8f Clcsoft 00:05:90 Swissvoi 00:05:91 ActiveSi 00:05:92 Pultek 00:05:93 GrammarE 00:05:94 HmsIndus 00:05:95 Alesis 00:05:96 Genotech 00:05:97 EagleTra 00:05:98 CronosSR 00:05:99 DrsTestA 00:05:9a Powercom 00:05:9b Cisco 00:05:9c Kleinkne 00:05:9d DanielCo 00:05:9e Zinwell 00:05:9f YottaNet 00:05:a0 Mobiline 00:05:a1 Zenocom 00:05:a2 CeloxNet 00:05:a3 Qei 00:05:a4 LucidVoi 00:05:a5 Kott 00:05:a6 ExtronEl 00:05:a7 Hyperchi 00:05:a8 Powercom 00:05:a9 Princeto 00:05:aa MooreInd 00:05:ab CyberFon 00:05:ac Northern 00:05:ad TopspinC 00:05:ae Mediapor 00:05:af Innoscan 00:05:b0 KoreaCom 00:05:b1 AsbTechn 00:05:b2 Medison 00:05:b3 Asahi-En 00:05:b4 Aceex 00:05:b5 Broadcom 00:05:b6 InsysMic 00:05:b7 ArborTec 00:05:b8 Electron 00:05:b9 Airvana 00:05:ba AreaNetw 00:05:bb Myspace 00:05:bc Resource 00:05:bd RoaxBv 00:05:be Kongsber 00:05:bf JustezyT 00:05:c0 DigitalN 00:05:c1 A-KyungM 00:05:c2 Soronti 00:05:c3 PacificI 00:05:c4 Telect 00:05:c5 FlagaHf 00:05:c6 TrizComm 00:05:c7 I/F-Com 00:05:c8 Verytech 00:05:c9 LG 00:05:ca HitronTe 00:05:cb RoisTech 00:05:cc SumtelCo 00:05:cd D&MHoldi 00:05:ce ProlinkM 00:05:cf ThunderR 00:05:d0 Solinet 00:05:d1 Metavect 00:05:d2 DapTechn 00:05:d3 Eproduct 00:05:d4 Futuresm 00:05:d5 Speedcom 00:05:d6 L-3Linka 00:05:d7 VistaIma 00:05:d8 Arescom 00:05:d9 TechnoVa 00:05:da ApexAuto 00:05:db PsiNente 00:05:dc Cisco 00:05:dd Cisco 00:05:de GiFoneKo 00:05:df Electron 00:05:e0 Empirix 00:05:e1 TrellisP 00:05:e2 CreativN 00:05:e3 Lightsan 00:05:e4 RedLionC 00:05:e5 Renishaw 00:05:e6 Egenera 00:05:e7 NetrakeA 00:05:e8 Turbowav 00:05:e9 UnicessN 00:05:ea Rednix 00:05:eb BlueRidg 00:05:ec Mosaic 00:05:ed Techniku 00:05:ee Vanderbi 00:05:ef AdoirDig 00:05:f0 Satec 00:05:f1 Vrcom 00:05:f2 PowerR 00:05:f3 Webyn 00:05:f4 SystemBa 00:05:f5 Geospace 00:05:f6 YoungCha 00:05:f7 AnalogDe 00:05:f8 RealTime 00:05:f9 Toa 00:05:fa Ipoptica 00:05:fb Sharegat 00:05:fc SchenckP 00:05:fd Packetli 00:05:fe Traficon 00:05:ff SnsSolut 00:06:00 ToshibaT 00:06:01 Otanikei 00:06:02 Cirkitec 00:06:03 BakerHug 00:06:04 @TrackCo 00:06:05 InncomIn 00:06:06 Rapidwan 00:06:07 OmniDire 00:06:08 At-SkySa 00:06:09 Crosspor 00:06:0a Blue2spa 00:06:0b ArtesynE 00:06:0c MelcoInd 00:06:0d HP 00:06:0e Igys 00:06:0f NaradNet 00:06:10 AbeonaNe 00:06:11 ZeusWire 00:06:12 Accusys 00:06:13 Kawasaki 00:06:14 PrismHol 00:06:15 KimotoEl 00:06:16 TelNet 00:06:17 Redswitc 00:06:18 Digipowe 00:06:19 Connecti 00:06:1a Zetari 00:06:1b Notebook 00:06:1c HoshinoM 00:06:1d MipTelec 00:06:1e Maxan 00:06:1f VisionCo 00:06:20 SerialSy 00:06:21 Hinox 00:06:22 ChungFuC 00:06:23 MgeUpsFr 00:06:24 GentnerC 00:06:25 LinksysG 00:06:26 Mwe 00:06:27 UniwideT 00:06:28 Cisco 00:06:29 IBM 00:06:2a Cisco 00:06:2b Intraser 00:06:2c BivioNet 00:06:2d Touchsta 00:06:2e AristosL 00:06:2f Pivotech 00:06:30 AdtranzS 00:06:31 Calix 00:06:32 MescoEng 00:06:33 CrossMat 00:06:34 GteAirfo 00:06:35 Packetai 00:06:36 JedaiBro 00:06:37 Toptrend 00:06:38 SungjinC 00:06:39 Newtec 00:06:3a DuraMicr 00:06:3b Arcturus 00:06:3c Intrinsy 00:06:3d Microwav 00:06:3e Opthos 00:06:3f EverexCo 00:06:40 WhiteRoc 00:06:41 Itcn 00:06:42 Genetel 00:06:43 SonoComp 00:06:44 Neix 00:06:45 MeiseiEl 00:06:46 Shenzhen 00:06:47 EtraliSA 00:06:48 Seedswar 00:06:49 3mDeutsc 00:06:4a Honeywel 00:06:4b Alexon 00:06:4c InvictaN 00:06:4d Sencore 00:06:4e BroadNet 00:06:4f Pro-Nets 00:06:50 TiburonN 00:06:51 AspenNet 00:06:52 Cisco 00:06:53 Cisco 00:06:54 Winpresa 00:06:55 Yipee 00:06:56 Tactel 00:06:57 MarketCe 00:06:58 HelmutFi 00:06:59 EalApeld 00:06:5a Strix 00:06:5b Dell 00:06:5c Malachit 00:06:5d Heidelbe 00:06:5e Photuris 00:06:5f EciTelec 00:06:60 Nadex 00:06:61 NiaHomeT 00:06:62 MbmTechn 00:06:63 HumanTec 00:06:64 Fostex 00:06:65 SunnyGik 00:06:66 RovingNe 00:06:67 TrippLit 00:06:68 ViconInd 00:06:69 Datasoun 00:06:6a Infinico 00:06:6b Sysmex 00:06:6c Robinson 00:06:6d Compupri 00:06:6e DeltaEle 00:06:6f KoreaDat 00:06:70 Upponett 00:06:71 Softing 00:06:72 Netezza 00:06:73 TkhSecur 00:06:74 Spectrum 00:06:75 Banderac 00:06:76 NovraTec 00:06:77 Sick 00:06:78 D&MHoldi 00:06:79 Konami 00:06:7a Jmp 00:06:7b ToplinkC 00:06:7c Cisco 00:06:7d Takasago 00:06:7e Wincom 00:06:7f Digeo 00:06:80 CardAcce 00:06:81 GoepelEl 00:06:82 Convedia 00:06:83 BravaraC 00:06:84 Biacore 00:06:85 Netnearu 00:06:86 Zardcom 00:06:87 Omnitron 00:06:88 TelwaysC 00:06:89 YlezTech 00:06:8a Neuronne 00:06:8b Airrunne 00:06:8c 3Com 00:06:8d Sepaton 00:06:8e Hid 00:06:8f Telemoni 00:06:90 EuracomC 00:06:91 PtInovac 00:06:92 Intruver 00:06:93 FlexusCo 00:06:94 Mobillia 00:06:95 EnsureTe 00:06:96 AdventNe 00:06:97 RDCenter 00:06:98 Egnite 00:06:99 VidaDesi 00:06:9a ETel 00:06:9b AvtAudio 00:06:9c Transmod 00:06:9d Petards 00:06:9e Uniqa 00:06:9f KuokoaNe 00:06:a0 MxImagin 00:06:a1 CelsianT 00:06:a2 Microtun 00:06:a3 Bitran 00:06:a4 Innowell 00:06:a5 Pinon 00:06:a6 Artistic 00:06:a7 Primario 00:06:a8 KcTechno 00:06:a9 Universa 00:06:aa VtMiltop 00:06:ab W-Link 00:06:ac Intersof 00:06:ad KbElectr 00:06:ae Himachal 00:06:af XaltedNe 00:06:b0 ComtechE 00:06:b1 Sonicwal 00:06:b2 Linxtek 00:06:b3 Diagraph 00:06:b4 VorneInd 00:06:b5 SourcePh 00:06:b6 Nir-OrIs 00:06:b7 Telem 00:06:b8 Bandspee 00:06:b9 A5tek 00:06:ba Westwave 00:06:bb AtiTechn 00:06:bc Macrolin 00:06:bd Bntechno 00:06:be BaumerOp 00:06:bf AccellaT 00:06:c0 UnitedIn 00:06:c1 Cisco 00:06:c2 Smartmat 00:06:c3 Schindle 00:06:c4 Piolink 00:06:c5 InnoviTe 00:06:c6 Lesswire 00:06:c7 RfnetTec 00:06:c8 Sumitomo 00:06:c9 Technica 00:06:ca American 00:06:cb JotronEl 00:06:cc JmiElect 00:06:cd LeafImag 00:06:ce Dateno 00:06:cf ThalesAv 00:06:d0 ElgarEle 00:06:d1 TahoeNet 00:06:d2 TundraSe 00:06:d3 AlphaTel 00:06:d4 Interact 00:06:d5 Diamond 00:06:d6 Cisco 00:06:d7 Cisco 00:06:d8 MapleOpt 00:06:d9 Ipm-NetS 00:06:da ItranCom 00:06:db Ichips 00:06:dc SyabasTe 00:06:dd AtTLabor 00:06:de FlashTec 00:06:df Aidonic 00:06:e0 Mat 00:06:e1 TechnoTr 00:06:e2 CeemaxTe 00:06:e3 Quantita 00:06:e4 CitelTec 00:06:e5 FujianNe 00:06:e6 Dongyang 00:06:e7 BitBlitz 00:06:e8 OpticalN 00:06:e9 Intime 00:06:ea Elzet80M 00:06:eb GlobalDa 00:06:ec Harris 00:06:ed InaraNet 00:06:ee Shenyang 00:06:ef Maxxan 00:06:f0 Digeo 00:06:f1 Optillio 00:06:f2 PlatysCo 00:06:f3 Acceligh 00:06:f4 PrimeEle 00:06:f5 AlpsElec 00:06:f6 Cisco 00:06:f7 AlpsElec 00:06:f8 Boeing 00:06:f9 MitsuiZo 00:06:fa IpSquare 00:06:fb HitachiP 00:06:fc Fnet 00:06:fd ComjetIn 00:06:fe Ambrado 00:06:ff Sheba 00:07:00 Zettamed 00:07:01 Cisco 00:07:02 VarianMe 00:07:03 CseeTran 00:07:04 AlpsElec 00:07:05 EndressH 00:07:06 Sanritz 00:07:07 Interali 00:07:08 Bitrage 00:07:09 Westerst 00:07:0a UnicomAu 00:07:0b Novabase 00:07:0c Sva-Intr 00:07:0d Cisco 00:07:0e Cisco 00:07:0f Fujant 00:07:10 Adax 00:07:11 Acterna 00:07:12 JalInfor 00:07:13 IpOne 00:07:14 Brightco 00:07:15 GeneralR 00:07:16 JSMarine 00:07:17 WielandE 00:07:18 Icantek 00:07:19 Mobiis 00:07:1a Finedigi 00:07:1b CdviAmer 00:07:1c At&T 00:07:1d SatelsaS 00:07:1e Tri-MEng 00:07:1f European 00:07:20 Trutzsch 00:07:21 FormacEl 00:07:22 Nielsen 00:07:23 ElconSys 00:07:24 Telemax 00:07:25 Bematech 00:07:26 Shenzhen 00:07:27 ZiHk 00:07:28 NeoTelec 00:07:29 KistlerI 00:07:2a Innovanc 00:07:2b JungMyun 00:07:2c Fabricom 00:07:2d Cnsystem 00:07:2e NorthNod 00:07:2f Intransa 00:07:30 Hutchiso 00:07:31 Ophir-Sp 00:07:32 AaeonTec 00:07:33 Dancontr 00:07:34 Onstor 00:07:35 FlarionT 00:07:36 DataVide 00:07:37 Soriya 00:07:38 YoungTec 00:07:39 ScottyGr 00:07:3a Inventel 00:07:3b Tenovis 00:07:3c TelecomD 00:07:3d NanjingP 00:07:3e ChinaGre 00:07:3f WoojyunS 00:07:40 Buffalo 00:07:41 SierraAu 00:07:42 Ormazaba 00:07:43 ChelsioC 00:07:44 Unico 00:07:45 RadlanCo 00:07:46 Turck 00:07:47 Mecalc 00:07:48 ImagingS 00:07:49 Cenix 00:07:4a CarlVale 00:07:4b Daihen 00:07:4c Beicom 00:07:4d ZebraTec 00:07:4e Ipfront 00:07:4f Cisco 00:07:50 Cisco 00:07:51 M-U-T 00:07:52 RhythmWa 00:07:53 BeijingQ 00:07:54 XyterraC 00:07:55 Lafon 00:07:56 JuyoungT 00:07:57 TopcallI 00:07:58 Dragonwa 00:07:59 BorisMan 00:07:5a AirProdu 00:07:5b GibsonGu 00:07:5c EastmanK 00:07:5d Cellerit 00:07:5e AmetekPo 00:07:5f VcsVideo 00:07:60 TomisInf 00:07:61 29530 00:07:62 GroupSen 00:07:63 Sunniwel 00:07:64 Youngwoo 00:07:65 JadeQuan 00:07:66 ChouChin 00:07:67 YuxingEl 00:07:68 Danfoss 00:07:69 Italiana 00:07:6a Nexteye 00:07:6b Stralfor 00:07:6c Daehanet 00:07:6d Flexligh 00:07:6e Sinetica 00:07:6f Synoptic 00:07:70 Ubiquoss 00:07:71 Embedded 00:07:72 Alcatel- 00:07:73 AscomPow 00:07:74 Guangzho 00:07:75 ValenceS 00:07:76 FederalA 00:07:77 Motah 00:07:78 Gerstel 00:07:79 SungilTe 00:07:7a Infoware 00:07:7b Millimet 00:07:7c Westermo 00:07:7d Cisco 00:07:7e Elrest 00:07:7f JCommuni 00:07:80 Bluegiga 00:07:81 Itron 00:07:82 Oracle 00:07:83 SyncomNe 00:07:84 Cisco 00:07:85 Cisco 00:07:86 Wireless 00:07:87 IdeaSyst 00:07:88 Clipcomm 00:07:89 Dongwon 00:07:8a MentorDa 00:07:8b WegenerC 00:07:8c Elektron 00:07:8d Netengin 00:07:8e GarzFric 00:07:8f EmkayInn 00:07:90 Tri-MTec 00:07:91 Internat 00:07:92 SütronEl 00:07:93 ShinSate 00:07:94 SimpleDe 00:07:95 Elitegro 00:07:96 Lsi 00:07:97 Netpower 00:07:98 SeleaSrl 00:07:99 TippingPoint 00:07:9a Verint 00:07:9b AuroraNe 00:07:9c GoldenEl 00:07:9d Musashi 00:07:9e Ilinx 00:07:9f ActionDi 00:07:a0 E-Watch 00:07:a1 ViasysHe 00:07:a2 Opteon 00:07:a3 OsitisSo 00:07:a4 GnNetcom 00:07:a5 YDK 00:07:a6 LevitonM 00:07:a7 A-Z 00:07:a8 HaierGro 00:07:a9 Novasoni 00:07:aa QuantumD 00:07:ab Samsung 00:07:ac Eolring 00:07:ad Pentacon 00:07:ae Britestr 00:07:af RedLionC 00:07:b0 OfficeDe 00:07:b1 EquatorT 00:07:b2 Transacc 00:07:b3 Cisco 00:07:b4 Cisco 00:07:b5 AnyOneWi 00:07:b6 TelecomT 00:07:b7 SamuraiI 00:07:b8 Corvalen 00:07:b9 Ginganet 00:07:ba Utstarco 00:07:bb Candera 00:07:bc Identix 00:07:bd Radionet 00:07:be Datalogi 00:07:bf Armillai 00:07:c0 Netzerve 00:07:c1 Overture 00:07:c2 NetsysTe 00:07:c3 Thomson 00:07:c4 Jean 00:07:c5 Gcom 00:07:c6 VdsVossk 00:07:c7 Synectic 00:07:c8 Brain21 00:07:c9 TechnolS 00:07:ca CreatixP 00:07:cb FreeboxS 00:07:cc KabaBenz 00:07:cd KumohEle 00:07:ce Cabletim 00:07:cf Anoto 00:07:d0 AutomatE 00:07:d1 Spectrum 00:07:d2 LogopakS 00:07:d3 Spgprint 00:07:d4 Zhejiang 00:07:d5 3eTechno 00:07:d6 Commil 00:07:d7 CaporisN 00:07:d8 HitronTe 00:07:d9 Spliceco 00:07:da NeuroTel 00:07:db KiranaNe 00:07:dc Atek 00:07:dd CradleTe 00:07:de Ecopilt 00:07:df Vbrick 00:07:e0 Palm 00:07:e1 WisCommu 00:07:e2 Bitworks 00:07:e3 NavcomTe 00:07:e4 Softradi 00:07:e5 Coup 00:07:e6 Edgeflow 00:07:e7 Freewave 00:07:e8 Edgewave 00:07:e9 Intel 00:07:ea Massana 00:07:eb Cisco 00:07:ec Cisco 00:07:ed Altera 00:07:ee TelcoInf 00:07:ef Lockheed 00:07:f0 Logisync 00:07:f1 Teraburs 00:07:f2 Ioa 00:07:f3 Thinkeng 00:07:f4 Eletex 00:07:f5 Bridgeco 00:07:f6 QqestSof 00:07:f7 Galtroni 00:07:f8 Itdevice 00:07:f9 Sensapho 00:07:fa Itt 00:07:fb GigaStre 00:07:fc Adept 00:07:fd Lanergy 00:07:fe Rigaku 00:07:ff GluonNet 00:08:00 Multitec 00:08:01 Highspee 00:08:02 HP 00:08:03 CosTron 00:08:04 Ica 00:08:05 Techno-H 00:08:06 Raonet 00:08:07 AccessDe 00:08:08 PptVisio 00:08:09 Systemon 00:08:0a Espera-W 00:08:0b BirkaBpa 00:08:0c VdaElett 00:08:0d Toshiba 00:08:0e ArrisGro 00:08:0f Proximio 00:08:10 KeyTechn 00:08:11 Voix 00:08:12 Gm-2 00:08:13 Diskbank 00:08:14 TilTechn 00:08:15 Cats 00:08:16 BluelonA 00:08:17 Emergeco 00:08:18 Pixelwor 00:08:19 Banksys 00:08:1a SanradIn 00:08:1b Windigo 00:08:1c @PosCom 00:08:1d Ipsil 00:08:1e Repeatit 00:08:1f PouYuenT 00:08:20 Cisco 00:08:21 Cisco 00:08:22 InproCom 00:08:23 Texa 00:08:24 NuanceDo 00:08:25 AcmePack 00:08:26 Colorado 00:08:27 AdbBroad 00:08:28 KoeiEngi 00:08:29 AvalNaga 00:08:2a Powerwal 00:08:2b Wooksung 00:08:2c Homag 00:08:2d IndusTeq 00:08:2e Multiton 00:08:2f Cisco 00:08:30 Cisco 00:08:31 Cisco 00:08:32 Cisco 00:08:4e Divergen 00:08:4f Qualstar 00:08:50 ArizonaI 00:08:51 Canadian 00:08:52 Technica 00:08:53 Schleich 00:08:54 Netronix 00:08:55 Fermilab 00:08:56 Gamatron 00:08:57 PolarisN 00:08:58 Novatech 00:08:59 Shenzhen 00:08:5a Intigate 00:08:5b HanbitEl 00:08:5c Shanghai 00:08:5d Aastra 00:08:5e Pco 00:08:5f PicanolN 00:08:60 Lodgenet 00:08:61 Softener 00:08:62 NecElumi 00:08:63 Entrisph 00:08:64 FasySPA 00:08:65 Jascom 00:08:66 DsxAcces 00:08:67 UptimeDe 00:08:68 Puroptix 00:08:69 Command- 00:08:6a Securito 00:08:6b Mipsys 00:08:6c PlasmonL 00:08:6d Missouri 00:08:6e Hyglo 00:08:6f Resource 00:08:70 Rasvia 00:08:71 Northdat 00:08:72 Sorenson 00:08:73 Daptechn 00:08:74 Dell 00:08:75 AcorpEle 00:08:76 Sdsystem 00:08:77 Liebert- 00:08:78 Benchmar 00:08:79 Cem 00:08:7a Wipotec 00:08:7b RtxTelec 00:08:7c Cisco 00:08:7d Cisco 00:08:7e BonElect 00:08:7f SpaunEle 00:08:80 Broadtel 00:08:81 DigitalH 00:08:82 Sigma 00:08:83 HP 00:08:84 IndexBra 00:08:85 EmsDrTho 00:08:86 HansungT 00:08:87 Maschine 00:08:88 OullimIn 00:08:89 Echostar 00:08:8a Minds@Wo 00:08:8b TropicNe 00:08:8c QuantaNe 00:08:8d Sigma-Li 00:08:8e NihonCom 00:08:8f Advanced 00:08:90 Avilinks 00:08:91 Lyan 00:08:92 EmSoluti 00:08:93 LeInform 00:08:94 Innovisi 00:08:95 DircTech 00:08:96 Printron 00:08:97 QuakeTec 00:08:98 GigabitO 00:08:99 Netbind 00:08:9a AlcatelM 00:08:9b IcpElect 00:08:9c ElecsInd 00:08:9d Uhd-Elek 00:08:9e BeijingE 00:08:9f EfmNetwo 00:08:a0 StotzFei 00:08:a1 CnetTech 00:08:a2 AdiEngin 00:08:a3 Cisco 00:08:a4 Cisco 00:08:a5 Peninsul 00:08:a6 Multiwar 00:08:a7 Ilogic 00:08:a8 Systec 00:08:a9 Sangsang 00:08:aa Karam 00:08:ab Enerlinx 00:08:ac Eltromat 00:08:ad Toyo-Lin 00:08:ae Packetfr 00:08:af Novatec 00:08:b0 BktelCom 00:08:b1 Proquent 00:08:b2 Shenzhen 00:08:b3 Fastwel 00:08:b4 Syspol 00:08:b5 TaiGuenE 00:08:b6 Routefre 00:08:b7 Hit 00:08:b8 EFJohnso 00:08:b9 Kaonmedi 00:08:ba Erskine 00:08:bb Netexcel 00:08:bc Ilevo 00:08:bd Tepg-Us 00:08:be XenpakMs 00:08:bf AptusEle 00:08:c0 Asa 00:08:c1 AvistarC 00:08:c2 Cisco 00:08:c3 Contex 00:08:c4 Hikari 00:08:c5 Liontech 00:08:c6 Philips 00:08:c7 Compaq 00:08:c8 Sonetico 00:08:c9 Technisa 00:08:ca TwinhanT 00:08:cb ZetaBroa 00:08:cc Remotec 00:08:cd With-Net 00:08:ce Ipmobile 00:08:cf NipponKo 00:08:d0 MusashiE 00:08:d1 Karel 00:08:d2 ZoomNetw 00:08:d3 Hercules 00:08:d4 Ineoques 00:08:d5 Vanguard 00:08:d6 Hassnet 00:08:d7 How 00:08:d8 DowkeyMi 00:08:d9 Mitadens 00:08:da Sofaware 00:08:db Corrigen 00:08:dc Wiznet 00:08:dd TelenaCo 00:08:de 3up 00:08:df Alistel 00:08:e0 AtoTechn 00:08:e1 Barix 00:08:e2 Cisco 00:08:e3 Cisco 00:08:e4 Envenerg 00:08:e5 Idk 00:08:e6 Littlefe 00:08:e7 ShiContr 00:08:e8 ExcelMas 00:08:e9 Nextgig 00:08:ea MotionCo 00:08:eb Romwin 00:08:ec OpticalZ 00:08:ed St&TInst 00:08:ee LogicPro 00:08:ef DibalSA 00:08:f0 NextGene 00:08:f1 Voltaire 00:08:f2 C&STechn 00:08:f3 Wany 00:08:f4 Bluetake 00:08:f5 Yestechn 00:08:f6 Sumitomo 00:08:f7 HitachiS 00:08:f8 UtcCcs 00:08:f9 ArtesynE 00:08:fa KarlEBri 00:08:fb Sonosite 00:08:fc Gigaphot 00:08:fd Bluekore 00:08:fe UnikC&C 00:08:ff TrilogyC 00:09:00 Tmt 00:09:01 Shenzhen 00:09:02 RedlineC 00:09:03 Panasas 00:09:04 MondialE 00:09:05 ItecTech 00:09:06 EsteemNe 00:09:07 Chrysali 00:09:08 VtechTec 00:09:09 TelenorC 00:09:0a SnedfarT 00:09:0b MtlInstr 00:09:0c Mayekawa 00:09:0d LeaderEl 00:09:0e HelixTec 00:09:0f Fortinet 00:09:10 SimpleAc 00:09:11 Cisco 00:09:12 Cisco 00:09:13 Systemk 00:09:14 Computro 00:09:15 Cas 00:09:16 ListmanH 00:09:17 WemTechn 00:09:18 Samsung 00:09:19 MdsGatew 00:09:1a MacatOpt 00:09:1b DigitalG 00:09:1c Cachevis 00:09:1d ProteamC 00:09:1e Firstech 00:09:1f A&D 00:09:20 EpoxComp 00:09:21 Planmeca 00:09:22 TstBiome 00:09:23 HeamanSy 00:09:24 Telebau 00:09:25 VsnSyste 00:09:26 YodaComm 00:09:27 Toyokeik 00:09:28 Telecore 00:09:29 SanyoInd 00:09:2a Mytecs 00:09:2b IqstorNe 00:09:2c Hitpoint 00:09:2d HTC 00:09:2e B&TechSy 00:09:2f AkomTech 00:09:30 Aeroconc 00:09:31 FutureIn 00:09:32 Omnilux 00:09:33 Ophit 00:09:34 Dream-Mu 00:09:35 Sandvine 00:09:36 Ipetroni 00:09:37 Inventec 00:09:38 AllotCom 00:09:39 Shibasok 00:09:3a Molex 00:09:3b HyundaiN 00:09:3c JacquesT 00:09:3d Newisys 00:09:3e C&ITechn 00:09:3f Double-W 00:09:40 Agfeo 00:09:41 AlliedTe 00:09:42 Wireless 00:09:43 Cisco 00:09:44 Cisco 00:09:45 Palmmicr 00:09:46 ClusterL 00:09:47 Aztek 00:09:48 VistaCon 00:09:49 GlyphTec 00:09:4a HomenetC 00:09:4b Fillfact 00:09:4c Communic 00:09:4d Braintre 00:09:4e BartechI 00:09:4f Elmegt 00:09:50 Independ 00:09:51 ApogeeIm 00:09:52 Auerswal 00:09:53 LinkageS 00:09:54 AmitSpol 00:09:55 YoungGen 00:09:56 NetworkG 00:09:57 Supercal 00:09:58 Intelnet 00:09:59 Sitecsof 00:09:5a Racewood 00:09:5b Netgear 00:09:5c Philips 00:09:5d Dialogue 00:09:5e Masstech 00:09:5f Telebyte 00:09:60 Yozan 00:09:61 Switchge 00:09:62 SonitorT 00:09:63 Dominion 00:09:64 Hi-Techn 00:09:65 HyunjuCo 00:09:66 ThalesNa 00:09:67 Tachyon 00:09:68 Technove 00:09:69 MeretOpt 00:09:6a Cloverle 00:09:6b IBM 00:09:6c ImediaSe 00:09:6d Powernet 00:09:6e GiantEle 00:09:6f BeijingZ 00:09:70 Vibratio 00:09:71 TimeMana 00:09:72 Secureba 00:09:73 LentenTe 00:09:74 InnopiaT 00:09:75 FsonaCom 00:09:76 Datasoft 00:09:77 BrunnerE 00:09:78 AijiSyst 00:09:79 Advanced 00:09:7a LouisDes 00:09:7b Cisco 00:09:7c Cisco 00:09:7d SecwellN 00:09:7e ImiTechn 00:09:7f Vsecure2 00:09:80 PowerZen 00:09:81 NewportN 00:09:82 LoeweOpt 00:09:83 Globalto 00:09:84 MycasaNe 00:09:85 AutoTele 00:09:86 Metalink 00:09:87 NishiNip 00:09:88 NudianEl 00:09:89 Vividlog 00:09:8a Equallog 00:09:8b Entropic 00:09:8c OptionWi 00:09:8d Velocity 00:09:8e Ipcas 00:09:8f Cetacean 00:09:90 AcksysCo 00:09:91 GeFanucA 00:09:92 Interepo 00:09:93 Visteon 00:09:94 CronyxEn 00:09:95 CastleTe 00:09:96 Rdi 00:09:97 NortelNe 00:09:98 Capinfo 00:09:99 CpGeorge 00:09:9a Elmo 00:09:9b WesternT 00:09:9c NavalRes 00:09:9d Haliplex 00:09:9e Testech 00:09:9f Videx 00:09:a0 Microtec 00:09:a1 Telewise 00:09:a2 Interfac 00:09:a3 LeadflyT 00:09:a4 Hartec 00:09:a5 HansungE 00:09:a6 IgnisOpt 00:09:a7 BangOluf 00:09:a8 Eastmode 00:09:a9 IkanosCo 00:09:aa DataComm 00:09:ab Netcontr 00:09:ac Lanvoice 00:09:ad HyundaiS 00:09:ae OkanoEle 00:09:af E-Generi 00:09:b0 Onkyo 00:09:b1 Kanemats 00:09:b2 L&F 00:09:b3 Mcm 00:09:b4 KisanTel 00:09:b5 3jTech 00:09:b6 Cisco 00:09:b7 Cisco 00:09:b8 Entise 00:09:b9 ActionIm 00:09:ba MakuInfo 00:09:bb Mathstar 00:09:bc DigitalS 00:09:bd EpygiTec 00:09:be Mamiya-O 00:09:bf Nintendo 00:09:c0 6wind 00:09:c1 Proces-D 00:09:c2 Onity 00:09:c3 Netas 00:09:c4 Medicore 00:09:c5 KingeneT 00:09:c6 Visionic 00:09:c7 Movistec 00:09:c8 Sinagawa 00:09:c9 Bluewinc 00:09:ca Imaxnetw 00:09:cb Hbrain 00:09:cc Moog 00:09:cd HudsonSo 00:09:ce Spacebri 00:09:cf Iad 00:09:d0 SolacomT 00:09:d1 SeranoaN 00:09:d2 MaiLogic 00:09:d3 WesternD 00:09:d4 Transtec 00:09:d5 SignalCo 00:09:d6 KncOne 00:09:d7 DcSecuri 00:09:d8 FältComm 00:09:d9 Neoscale 00:09:da ControlM 00:09:db Espace 00:09:dc GalaxisT 00:09:dd MavinTec 00:09:de SamjinIn 00:09:df VestelKo 00:09:e0 XemicsSA 00:09:e1 GemtekTe 00:09:e2 SinbonEl 00:09:e3 AngelIgl 00:09:e4 KTechInf 00:09:e5 Hottinge 00:09:e6 CyberSwi 00:09:e7 AdcTecho 00:09:e8 Cisco 00:09:e9 Cisco 00:09:ea Yem 00:09:eb Humandat 00:09:ec Daktroni 00:09:ed Cipherop 00:09:ee MeikyoEl 00:09:ef VoceraCo 00:09:f0 ShimizuT 00:09:f1 YamakiEl 00:09:f2 CohuElec 00:09:f3 WellComm 00:09:f4 AlconLab 00:09:f5 EmersonN 00:09:f6 Shenzhen 00:09:f7 SedADivi 00:09:f8 UnimoTec 00:09:f9 ArtJapan 00:09:fb Philips 00:09:fc Ipflex 00:09:fd Ubinetic 00:09:fe DaisyTec 00:09:ff XNet2000 00:0a:00 Mediatek 00:0a:01 Sohoware 00:0a:02 Annso 00:0a:03 EndesaSe 00:0a:04 3Com 00:0a:05 Widax 00:0a:06 TeledexL 00:0a:07 Webwayon 00:0a:08 AlpineEl 00:0a:09 TaracomI 00:0a:0a Sunix 00:0a:0b Sealevel 00:0a:0c Scientif 00:0a:0d FciDeuts 00:0a:0e InvivoRe 00:0a:0f IlryungT 00:0a:10 FastMedi 00:0a:11 ExpetTec 00:0a:12 AzylexTe 00:0a:13 Honeywel 00:0a:14 TecoAS 00:0a:15 SiliconD 00:0a:16 LassenRe 00:0a:17 NestarCo 00:0a:18 Vichel 00:0a:19 ValerePo 00:0a:1a Imerge 00:0a:1b StreamLa 00:0a:1c BridgeIn 00:0a:1d OpticalC 00:0a:1e Red-MPro 00:0a:1f ArtWareT 00:0a:20 SvaNetwo 00:0a:21 IntegraT 00:0a:22 Amperion 00:0a:23 ParamaNe 00:0a:24 OctaveCo 00:0a:25 CeragonN 00:0a:26 CeiaSPA 00:0a:27 Apple 00:0a:28 Motorola 00:0a:29 PanDacom 00:0a:2a Qsi 00:0a:2b Etherstu 00:0a:2c ActiveTc 00:0a:2d CabotCom 00:0a:2e MapleNet 00:0a:2f Artnix 00:0a:30 Visteon 00:0a:31 HcvConsu 00:0a:32 Xsido 00:0a:33 Emulex 00:0a:34 Identica 00:0a:35 Xilinx 00:0a:36 SynelecT 00:0a:37 ProceraN 00:0a:38 ApaniNet 00:0a:39 LopaInfo 00:0a:3a J-ThreeI 00:0a:3b GctSemic 00:0a:3c Enerpoin 00:0a:3d EloSiste 00:0a:3e EadsTele 00:0a:3f DataEast 00:0a:40 CrownAud 00:0a:41 Cisco 00:0a:42 Cisco 00:0a:43 Chunghwa 00:0a:44 AveryDen 00:0a:45 Audio-Te 00:0a:46 AroWeldi 00:0a:47 AlliedVi 00:0a:48 Albatron 00:0a:49 F5Networ 00:0a:4a Targa 00:0a:4b Datapowe 00:0a:4c Molecula 00:0a:4d Noritz 00:0a:4e UnitekEl 00:0a:4f BrainBox 00:0a:50 Remotek 00:0a:51 Gyrosign 00:0a:52 Asiarf 00:0a:53 Intronic 00:0a:54 LagunaHi 00:0a:55 Markem 00:0a:56 HitachiM 00:0a:57 HP 00:0a:58 FreyerSi 00:0a:59 HwServer 00:0a:5a Greennet 00:0a:5b Power-On 00:0a:5c CarelSPA 00:0a:5d Fingerte 00:0a:5e 3Com 00:0a:5f Almedio 00:0a:60 Autostar 00:0a:61 Cellinx 00:0a:62 CrinisNe 00:0a:63 Dhd 00:0a:64 EracomTe 00:0a:65 Gentechm 00:0a:66 Mitsubis 00:0a:67 Ongcorp 00:0a:68 Solarfla 00:0a:69 SunnyBel 00:0a:6a SvmMicro 00:0a:6b TadiranT 00:0a:6c Walchem 00:0a:6d EksElekt 00:0a:6e Harmonic 00:0a:6f ZyflexTe 00:0a:70 MplsForu 00:0a:71 AvrioTec 00:0a:72 Stec 00:0a:73 Scientif 00:0a:74 Manticom 00:0a:75 Caterpil 00:0a:76 BeidaJad 00:0a:77 Bluewire 00:0a:78 Olitec 00:0a:79 CoregaKK 00:0a:7a Kyoritsu 00:0a:7b Corneliu 00:0a:7c Tecton 00:0a:7d Valo 00:0a:7e Advantag 00:0a:7f TeradonI 00:0a:80 Telkonet 00:0a:81 TeimaAud 00:0a:82 TatsutaS 00:0a:83 SaltoSL 00:0a:84 RainsunE 00:0a:85 PlatC2 00:0a:86 Lenze 00:0a:87 Integrat 00:0a:88 Incypher 00:0a:89 Creval 00:0a:8a Cisco 00:0a:8b Cisco 00:0a:8c Guardwar 00:0a:8d Eurother 00:0a:8e Invacom 00:0a:8f AskaInte 00:0a:90 BaysideI 00:0a:91 Hemocue 00:0a:92 Presonus 00:0a:93 W2Networ 00:0a:94 Shanghai 00:0a:95 Apple 00:0a:96 MewtelTe 00:0a:97 Sonicblu 00:0a:98 M+FGwinn 00:0a:99 CalampWi 00:0a:9a AiptekIn 00:0a:9b TbGroup 00:0a:9c ServerTe 00:0a:9d KingYoun 00:0a:9e Broadweb 00:0a:9f Pannaway 00:0a:a0 CedarPoi 00:0a:a1 VVS 00:0a:a2 Systek 00:0a:a3 Shimafuj 00:0a:a4 Shanghai 00:0a:a5 MaxlinkI 00:0a:a6 Hochiki 00:0a:a7 FeiElect 00:0a:a8 EpipePty 00:0a:a9 BrooksAu 00:0a:aa AltigenC 00:0a:ab ToyotaTe 00:0a:ac Terratec 00:0a:ad Stargame 00:0a:ae Rosemoun 00:0a:af Pipal 00:0a:b0 LoytecEl 00:0a:b1 Genetec 00:0a:b2 FresnelW 00:0a:b3 FaGira 00:0a:b4 EticTele 00:0a:b5 DigitalE 00:0a:b6 Compunet 00:0a:b7 Cisco 00:0a:b8 Cisco 00:0a:b9 AsteraTe 00:0a:ba ArconTec 00:0a:bb TaiwanSe 00:0a:bc Seabridg 00:0a:bd Rupprech 00:0a:be OpnetTec 00:0a:bf HirotaSs 00:0a:c0 FuyohVid 00:0a:c1 Futurete 00:0a:c2 WuhanFib 00:0a:c3 EmTechni 00:0a:c4 DaewooTe 00:0a:c5 ColorKin 00:0a:c6 Overture 00:0a:c7 Unicatio 00:0a:c8 ZpsysPla 00:0a:c9 Zambeel 00:0a:ca Yokoyama 00:0a:cb XpakMsaG 00:0a:cc WinnowNe 00:0a:cd SunrichT 00:0a:ce Radiante 00:0a:cf Provideo 00:0a:d0 NiigataD 00:0a:d1 Mws 00:0a:d2 Jepico 00:0a:d3 Initech 00:0a:d4 Corebell 00:0a:d5 Brainchi 00:0a:d6 Beamreac 00:0a:d7 OriginEl 00:0a:d8 IpcservT 00:0a:d9 Sony 00:0a:da Vindicat 00:0a:db Skypilot 00:0a:dc Ruggedco 00:0a:dd Allworx 00:0a:de HappyCom 00:0a:df Gennum 00:0a:e0 Fujitsu 00:0a:e1 EgTechno 00:0a:e2 Binatone 00:0a:e3 YangMeiT 00:0a:e4 Wistron 00:0a:e5 Scottcar 00:0a:e6 Elitegro 00:0a:e7 EliopSA 00:0a:e8 CathayRo 00:0a:e9 AirvastT 00:0a:ea AdamElek 00:0a:eb TP-Link 00:0a:ec KoatsuGa 00:0a:ed HartingE 00:0a:ee GcdHard- 00:0a:ef OtrumAsa 00:0a:f0 Shin-OhE 00:0a:f1 ClarityD 00:0a:f2 Neoaxiom 00:0a:f3 Cisco 00:0a:f4 Cisco 00:0a:f5 AirgoNet 00:0a:f6 EmersonC 00:0a:f7 Broadcom 00:0a:f8 American 00:0a:f9 Hiconnec 00:0a:fa Traverse 00:0a:fb Ambri 00:0a:fc CoreTecC 00:0a:fd KentecEl 00:0a:fe Novapal 00:0a:ff Kilchher 00:0b:00 FujianSt 00:0b:01 DaiichiE 00:0b:02 Dallmeie 00:0b:03 Taekwang 00:0b:04 Volktek 00:0b:05 PacificB 00:0b:06 ArrisGro 00:0b:07 VoxpathN 00:0b:08 PillarDa 00:0b:09 Ifoundry 00:0b:0a DbmOptic 00:0b:0b Corrent 00:0b:0c Agile 00:0b:0d Air2u 00:0b:0e TrapezeN 00:0b:0f BoschRex 00:0b:10 11waveTe 00:0b:11 HimejiAb 00:0b:12 NuriTele 00:0b:13 Zetron 00:0b:14 Viewsoni 00:0b:15 Platypus 00:0b:16 Communic 00:0b:17 MksInstr 00:0b:18 Private 00:0b:19 VernierN 00:0b:1a Industri 00:0b:1b Systroni 00:0b:1c SibcoBv 00:0b:1d Layerzer 00:0b:1e KappaOpt 00:0b:1f IConComp 00:0b:20 Hirata 00:0b:21 G-StarCo 00:0b:22 Environm 00:0b:23 SiemensS 00:0b:24 Airlogic 00:0b:25 Aeluros 00:0b:26 Wetek 00:0b:27 Scion 00:0b:28 Quatech 00:0b:29 LsLgIndu 00:0b:2a Howtel 00:0b:2b Hostnet 00:0b:2c EikiIndu 00:0b:2d Danfoss 00:0b:2e Cal-Comp 00:0b:2f Bplan 00:0b:30 BeijingG 00:0b:31 YantaiZh 00:0b:32 Vormetri 00:0b:33 VivatoTe 00:0b:34 Shanghai 00:0b:35 QuadBitS 00:0b:36 Producti 00:0b:37 Manufact 00:0b:38 Knürr 00:0b:39 KeisokuG 00:0b:3a Qustream 00:0b:3b Devolo 00:0b:3c CygnalIn 00:0b:3d ContalOk 00:0b:3e Bittware 00:0b:3f Antholog 00:0b:40 Oclaro 00:0b:41 IngBüroD 00:0b:42 Commax 00:0b:43 Microsca 00:0b:44 ConcordI 00:0b:45 Cisco 00:0b:46 Cisco 00:0b:47 Advanced 00:0b:48 Sofrel 00:0b:49 Rf-LinkS 00:0b:4a Visimetr 00:0b:4b Visiowav 00:0b:4c ClarionM 00:0b:4d Emuzed 00:0b:4e Vertexrs 00:0b:4f Verifone 00:0b:50 Oxygnet 00:0b:51 MicetekI 00:0b:52 JoymaxEl 00:0b:53 Initium 00:0b:54 Bitmicro 00:0b:55 Adinstru 00:0b:56 Cybernet 00:0b:57 SiliconL 00:0b:58 Astronau 00:0b:59 Scriptpr 00:0b:5a Hyperedg 00:0b:5b RinconRe 00:0b:5c Newtech 00:0b:5d Fujitsu 00:0b:5e AudioEng 00:0b:5f Cisco 00:0b:60 Cisco 00:0b:61 Friedric 00:0b:62 Ib-Mohne 00:0b:63 Kaleides 00:0b:64 KiebackP 00:0b:65 SyACSrl 00:0b:66 Teralink 00:0b:67 TopviewT 00:0b:68 Addvalue 00:0b:69 FrankeFi 00:0b:6a Asiarock 00:0b:6b WistronN 00:0b:6c Sychip 00:0b:6d Solectro 00:0b:6e NeffInst 00:0b:6f MediaStr 00:0b:70 LoadTech 00:0b:71 Litchfie 00:0b:72 Lawo 00:0b:73 KodeosCo 00:0b:74 Kingwave 00:0b:75 Iosoft 00:0b:76 Et&TTech 00:0b:77 Cogent 00:0b:78 Taifatec 00:0b:79 X-Com 00:0b:7a L-3Linka 00:0b:7b Test-Um 00:0b:7c TelexCom 00:0b:7d SolomonE 00:0b:7e Saginomi 00:0b:7f AlignEng 00:0b:80 LyciumNe 00:0b:81 Kaparel 00:0b:82 Grandstr 00:0b:83 Datawatt 00:0b:84 Bodet 00:0b:85 Cisco 00:0b:86 ArubaNet 00:0b:87 American 00:0b:88 Vidisco 00:0b:89 TopGloba 00:0b:8a Miteq 00:0b:8b KerajetS 00:0b:8c Flextron 00:0b:8d AvvioNet 00:0b:8e Ascent 00:0b:8f AkitaEle 00:0b:90 AdvaOpti 00:0b:91 AglaiaGe 00:0b:92 AscomDan 00:0b:93 RitterEl 00:0b:94 DigitalM 00:0b:95 EbetGami 00:0b:96 Innotrac 00:0b:97 Matsushi 00:0b:98 Nicetech 00:0b:99 Sensable 00:0b:9a Shanghai 00:0b:9b SiriusSy 00:0b:9c TribeamT 00:0b:9d TwinmosT 00:0b:9e YasingTe 00:0b:9f NeueElsa 00:0b:a0 T&LInfor 00:0b:a1 Fujikura 00:0b:a2 Sumitomo 00:0b:a3 SiemensI 00:0b:a4 ShironSa 00:0b:a5 QuasarCi 00:0b:a6 Miyakawa 00:0b:a7 MarantiN 00:0b:a8 HanbackE 00:0b:a9 Cloudshi 00:0b:aa Aiphone 00:0b:ab Advantec 00:0b:ac 3Com 00:0b:ad Pc-Pos 00:0b:ae VitalsSy 00:0b:af WoojuCom 00:0b:b0 SysnetTe 00:0b:b1 SuperSta 00:0b:b2 Smallbig 00:0b:b3 RitTechn 00:0b:b4 RdcSemic 00:0b:b5 NstorTec 00:0b:b6 Metallig 00:0b:b7 Micro 00:0b:b8 KihokuEl 00:0b:b9 Imsys 00:0b:ba Harmonic 00:0b:bb Etin 00:0b:bc EnGarde 00:0b:bd Connexio 00:0b:be Cisco 00:0b:bf Cisco 00:0b:c0 ChinaIwn 00:0b:c1 BayMicro 00:0b:c2 CorinexC 00:0b:c3 Multiple 00:0b:c4 Biotroni 00:0b:c5 SmcNetwo 00:0b:c6 Isac 00:0b:c7 IcetSPA 00:0b:c8 AirflowN 00:0b:c9 Electrol 00:0b:ca DatavanT 00:0b:cb FagorAut 00:0b:cc JusanSA 00:0b:cd HP 00:0b:ce Free2mov 00:0b:cf AgfaNdt 00:0b:d0 XimetaTe 00:0b:d1 Aeronix 00:0b:d2 RemoproT 00:0b:d3 Cd3o 00:0b:d4 BeijingW 00:0b:d5 Nvergenc 00:0b:d6 PaxtonAc 00:0b:d7 DormaTim 00:0b:d8 Industri 00:0b:d9 GeneralH 00:0b:da Eyecross 00:0b:db Dell 00:0b:dc Akcp 00:0b:dd TohokuRi 00:0b:de Teldix 00:0b:df Shenzhen 00:0b:e0 Serconet 00:0b:e1 NokiaNet 00:0b:e2 Lumenera 00:0b:e3 KeyStrea 00:0b:e4 Hosiden 00:0b:e5 HimsInte 00:0b:e6 DatelEle 00:0b:e7 ComfluxT 00:0b:e8 Aoip 00:0b:e9 Actel 00:0b:ea ZultysTe 00:0b:eb Systegra 00:0b:ec NipponEl 00:0b:ed Elm 00:0b:ee Jet 00:0b:ef Code 00:0b:f0 MotexPro 00:0b:f1 LapLaser 00:0b:f2 Chih-Kan 00:0b:f3 Bae 00:0b:f4 Private 00:0b:f5 Shanghai 00:0b:f6 Nitgen 00:0b:f7 Nidek 00:0b:f8 Infinera 00:0b:f9 Gemstone 00:0b:fa ExemysSr 00:0b:fb D-NetInt 00:0b:fc Cisco 00:0b:fd Cisco 00:0b:fe CastelBr 00:0b:ff Berkeley 00:0c:00 BebIndus 00:0c:01 Abatron 00:0c:02 AbbOy 00:0c:03 HdmiLice 00:0c:04 Tecnova 00:0c:05 RpaReser 00:0c:06 NixvuePt 00:0c:07 Iftest 00:0c:08 HumexTec 00:0c:09 HitachiI 00:0c:0a Guangdon 00:0c:0b Broadbus 00:0c:0c ApproTec 00:0c:0d Communic 00:0c:0e Xtremesp 00:0c:0f Techno-O 00:0c:10 Pni 00:0c:11 NipponDe 00:0c:12 Micro-Op 00:0c:13 Mediaq 00:0c:14 Diagnost 00:0c:15 Cyberpow 00:0c:16 Concorde 00:0c:17 AjaVideo 00:0c:18 ZenisuKe 00:0c:19 TelioCom 00:0c:1a QuestTec 00:0c:1b Oracom 00:0c:1c Microweb 00:0c:1d MettlerF 00:0c:1e GlobalCa 00:0c:1f Glimmerg 00:0c:20 FiWin 00:0c:21 FacultyO 00:0c:22 DoubleDE 00:0c:23 BeijingL 00:0c:24 Anator 00:0c:25 AlliedTe 00:0c:26 WeintekL 00:0c:27 Sammy 00:0c:28 Rifatron 00:0c:29 Vmware 00:0c:2a OcttelCo 00:0c:2b EliasTec 00:0c:2c Enwiser 00:0c:2d Fullwave 00:0c:2e OpenetIn 00:0c:2f Seorimte 00:0c:30 Cisco 00:0c:31 Cisco 00:0c:32 AvionicD 00:0c:33 Compucas 00:0c:34 Vixen 00:0c:35 KavoDent 00:0c:36 SharpTak 00:0c:37 Geomatio 00:0c:38 Telcobri 00:0c:39 Sentinel 00:0c:3a Oxance 00:0c:3b OrionEle 00:0c:3c Mediacho 00:0c:3d Glsystec 00:0c:3e CrestAud 00:0c:3f CogentDe 00:0c:40 AltechCo 00:0c:41 Cisco 00:0c:42 Routerbo 00:0c:43 RalinkTe 00:0c:44 Automate 00:0c:45 Animatio 00:0c:46 AlliedTe 00:0c:47 SkTelete 00:0c:48 Qostek 00:0c:49 Dangaard 00:0c:4a CygnusMi 00:0c:4b CheopsEl 00:0c:4c ArcorAg& 00:0c:4d Curtiss- 00:0c:4e WinbestT 00:0c:4f UdtechJa 00:0c:50 SeagateT 00:0c:51 Scientif 00:0c:52 Roll 00:0c:53 Private 00:0c:54 Pedestal 00:0c:55 Microlin 00:0c:56 MegatelC 00:0c:57 MackieEn 00:0c:58 M&S 00:0c:59 IndymeEl 00:0c:5a IbsmmEmb 00:0c:5b HanwangT 00:0c:5c GtnBV 00:0c:5d ChicTech 00:0c:5e CalypsoM 00:0c:5f Avtec 00:0c:60 Acm 00:0c:61 AcTechDb 00:0c:62 AbbCewe- 00:0c:63 ZenithEl 00:0c:64 X2MsaGro 00:0c:65 SuninTel 00:0c:66 ProntoNe 00:0c:67 OyoElect 00:0c:68 Sigmatel 00:0c:69 National 00:0c:6a Mbari 00:0c:6b KurzIndu 00:0c:6c ElgatoLl 00:0c:6d Edwards 00:0c:6e ASUS 00:0c:6f AmtekSys 00:0c:70 Acc 00:0c:71 Wybron 00:0c:72 Tempearl 00:0c:73 TelsonEl 00:0c:74 Rivertec 00:0c:75 Oriental 00:0c:76 Micro-St 00:0c:77 LifeRaci 00:0c:78 In-TechE 00:0c:79 ExtelCom 00:0c:7a Datarius 00:0c:7b AlphaPro 00:0c:7c Internet 00:0c:7d TeikokuE 00:0c:7e Tellium 00:0c:7f Synertro 00:0c:80 Opelcomm 00:0c:81 Schneide 00:0c:82 NetworkT 00:0c:83 LogicalS 00:0c:84 Eazix 00:0c:85 Cisco 00:0c:86 Cisco 00:0c:87 Amd 00:0c:88 ApacheMi 00:0c:89 AcElectr 00:0c:8a Bose 00:0c:8b ConnectT 00:0c:8c Kodicom 00:0c:8d MatrixVi 00:0c:8e MentorEn 00:0c:8f NergalSR 00:0c:90 Octasic 00:0c:91 Riverhea 00:0c:92 Wolfvisi 00:0c:93 Xeline 00:0c:94 UnitedEl 00:0c:95 Primenet 00:0c:96 Oqo 00:0c:97 NvAdbTtv 00:0c:98 LetekCom 00:0c:99 HitelLin 00:0c:9a HitechEl 00:0c:9b EeSoluti 00:0c:9c ChonghoI 00:0c:9d Ubeeairw 00:0c:9e Memoryli 00:0c:9f Nke 00:0c:a0 Storcase 00:0c:a1 Sigmacom 00:0c:a2 Harmonic 00:0c:a3 RanchoTe 00:0c:a4 Promptte 00:0c:a5 NamanNz 00:0c:a6 Mintera 00:0c:a7 MetroSuz 00:0c:a8 GarudaNe 00:0c:a9 Ebtron 00:0c:aa CubicTra 00:0c:ab CommendI 00:0c:ac CitizenW 00:0c:ad BtuInter 00:0c:ae AilocomO 00:0c:af TriTerm 00:0c:b0 StarSemi 00:0c:b1 SallandE 00:0c:b2 Union 00:0c:b3 Round 00:0c:b4 Autocell 00:0c:b5 PremierT 00:0c:b6 NanjingS 00:0c:b7 NanjingH 00:0c:b8 Medion 00:0c:b9 Lea 00:0c:ba Jamex 00:0c:bb Iskraeme 00:0c:bc Iscutum 00:0c:bd Interfac 00:0c:be Innomina 00:0c:bf HolySton 00:0c:c0 GeneraOy 00:0c:c1 Eaton 00:0c:c2 Controln 00:0c:c3 Bewan 00:0c:c4 Tiptel 00:0c:c5 Nextlink 00:0c:c6 Ka-RoEle 00:0c:c7 Intellig 00:0c:c8 Xytronix 00:0c:c9 IlwooDat 00:0c:ca HgstAWes 00:0c:cb DesignCo 00:0c:cc Aeroscou 00:0c:cd Iec-Tc57 00:0c:ce Cisco 00:0c:cf Cisco 00:0c:d0 Symetrix 00:0c:d1 SfomTech 00:0c:d2 Schaffne 00:0c:d3 PrettlEl 00:0c:d4 Positron 00:0c:d5 Passave 00:0c:d6 PartnerT 00:0c:d7 Nallatec 00:0c:d8 MKJuchhe 00:0c:d9 Itcare 00:0c:da Freehand 00:0c:db BrocadeC 00:0c:dc BecsTech 00:0c:dd AosTechn 00:0c:de AbbStotz 00:0c:df PulnixAm 00:0c:e0 TrekDiag 00:0c:e1 OpenGrou 00:0c:e2 Rolls-Ro 00:0c:e3 OptionIn 00:0c:e4 Neurocom 00:0c:e5 ArrisGro 00:0c:e6 MeruNetw 00:0c:e7 Mediatek 00:0c:e8 Guangzho 00:0c:e9 Bloomber 00:0c:ea AphonaKo 00:0c:eb CnmpNetw 00:0c:ec Spectrac 00:0c:ed RealDigi 00:0c:ee Jp-Embed 00:0c:ef OpenNetw 00:0c:f0 MN 00:0c:f1 Intel 00:0c:f2 GamesaEó 00:0c:f3 CallImag 00:0c:f4 Akatsuki 00:0c:f5 Infoexpr 00:0c:f6 SitecomE 00:0c:f7 NortelNe 00:0c:f8 NortelNe 00:0c:f9 XylemWat 00:0c:fa Digital 00:0c:fb KoreaNet 00:0c:fc S2ioTech 00:0c:fd HyundaiI 00:0c:fe GrandEle 00:0c:ff Mro-Tek 00:0d:00 SeawayNe 00:0d:01 P&EMicro 00:0d:02 NecPlatf 00:0d:03 Matrics 00:0d:04 FoxboroE 00:0d:05 Cybernet 00:0d:06 Compulog 00:0d:07 CalrecAu 00:0d:08 Abovecab 00:0d:09 YuehuaZh 00:0d:0a Projecti 00:0d:0b Buffalo 00:0d:0c MdiSecur 00:0d:0d Itsuppor 00:0d:0e Inqnet 00:0d:0f Finlux 00:0d:10 Embedtro 00:0d:11 Dentsply 00:0d:12 Axell 00:0d:13 WilhelmR 00:0d:14 VtechInn 00:0d:15 VoipacSR 00:0d:16 UhsPty 00:0d:17 TurboNet 00:0d:18 Mega-Tre 00:0d:19 RobeShow 00:0d:1a MustekSy 00:0d:1b KyotoEle 00:0d:1c AmesysDe 00:0d:1d High-Tek 00:0d:1e ControlT 00:0d:1f AvDigita 00:0d:20 Asahikas 00:0d:21 Wiscore 00:0d:22 Unitroni 00:0d:23 SmartSol 00:0d:24 SentecE& 00:0d:25 Sanden 00:0d:26 Primagra 00:0d:27 Microple 00:0d:28 Cisco 00:0d:29 Cisco 00:0d:2a Scanmati 00:0d:2b RacalIns 00:0d:2c Net2edge 00:0d:2d NctDeuts 00:0d:2e Matsushi 00:0d:2f AinCommT 00:0d:30 IcefyreS 00:0d:31 Compelle 00:0d:32 Dispense 00:0d:33 Prediwav 00:0d:34 ShellInt 00:0d:35 PacInter 00:0d:36 WuHanRou 00:0d:37 Wiplug 00:0d:38 Nissin 00:0d:39 NetworkE 00:0d:3a Microsoft 00:0d:3b Microele 00:0d:3c ITechDyn 00:0d:3d Hammerhe 00:0d:3e ApluxCom 00:0d:3f VtiInstr 00:0d:40 VerintLo 00:0d:41 SiemensI 00:0d:42 NewbestD 00:0d:43 DrsTacti 00:0d:44 AudioBu- 00:0d:45 TottoriS 00:0d:46 ParkerSs 00:0d:47 Collex 00:0d:48 AewinTec 00:0d:49 TritonOf 00:0d:4a SteagEta 00:0d:4b Roku 00:0d:4c OutlineE 00:0d:4d Ninelane 00:0d:4e Ndr 00:0d:4f Kenwood 00:0d:50 GalazarN 00:0d:51 Divr 00:0d:52 ComartSy 00:0d:53 Beijing5 00:0d:54 3Com 00:0d:55 SanycomT 00:0d:56 Dell 00:0d:57 Fujitsu 00:0d:58 Private 00:0d:59 Amity 00:0d:5a Tiesse 00:0d:5b SmartEmp 00:0d:5c RobertBo 00:0d:5d RaritanC 00:0d:5e NecPerso 00:0d:5f Minds 00:0d:60 IBM 00:0d:61 Giga-Byt 00:0d:62 Funkwerk 00:0d:63 DentInst 00:0d:64 ComagHan 00:0d:65 Cisco 00:0d:66 Cisco 00:0d:67 Ericsson 00:0d:68 Vinci 00:0d:69 Tmt&D 00:0d:6a RedwoodT 00:0d:6b Mita-Tek 00:0d:6c M-Audio 00:0d:6d K-TechDe 00:0d:6e K-Patent 00:0d:6f Ember 00:0d:70 Datamax 00:0d:71 Boca 00:0d:72 2wire 00:0d:73 Technica 00:0d:74 SandNetw 00:0d:75 KobianPt 00:0d:76 HokutoDe 00:0d:77 Falconst 00:0d:78 Engineer 00:0d:79 DynamicS 00:0d:7a DigattoA 00:0d:7b Consensy 00:0d:7c Codian 00:0d:7d Afco 00:0d:7e Axiowave 00:0d:7f MidasCom 00:0d:80 OnlineDe 00:0d:81 Pepperl+ 00:0d:82 PhsSrl 00:0d:83 Sanmina- 00:0d:84 Makus 00:0d:85 Tapwave 00:0d:86 Huber+Su 00:0d:87 Elitegro 00:0d:88 D-Link 00:0d:89 BilsTech 00:0d:8a WinnersE 00:0d:8b T&D 00:0d:8c Shanghai 00:0d:8d ProsoftT 00:0d:8e KodenEle 00:0d:8f KingTsus 00:0d:90 FactumEl 00:0d:91 EclipseH 00:0d:92 ArimaCom 00:0d:93 Apple 00:0d:94 AfarComm 00:0d:95 Opti-Cel 00:0d:96 VteraTec 00:0d:97 Abb/Trop 00:0d:98 SWACSchm 00:0d:99 OrbitalS 00:0d:9a Infotec 00:0d:9b HeraeusE 00:0d:9c Elan 00:0d:9d HP 00:0d:9e TokudenO 00:0d:9f RfMicroD 00:0d:a0 NedapNV 00:0d:a1 MiraeIts 00:0d:a2 InfrantT 00:0d:a3 Emerging 00:0d:a4 DoschAma 00:0d:a5 Fabric7 00:0d:a6 Universa 00:0d:a7 Private 00:0d:a8 Teletron 00:0d:a9 TEAMSL 00:0d:aa SATehnol 00:0d:ab ParkerHa 00:0d:ac JapanCbm 00:0d:ad Dataprob 00:0d:ae Samsung 00:0d:af PlexusUk 00:0d:b0 Olym-Tec 00:0d:b1 JapanNet 00:0d:b2 Ammasso 00:0d:b3 SdoCommu 00:0d:b4 Netasq 00:0d:b5 Globalsa 00:0d:b6 Broadcom 00:0d:b7 SankoEle 00:0d:b8 Schiller 00:0d:b9 PcEngine 00:0d:ba OcéDocum 00:0d:bb NipponDe 00:0d:bc Cisco 00:0d:bd Cisco 00:0d:be BelFuseE 00:0d:bf TektoneS 00:0d:c0 SpagatAs 00:0d:c1 Safeweb 00:0d:c2 Private 00:0d:c3 FirstCom 00:0d:c4 Emcore 00:0d:c5 Echostar 00:0d:c6 Digirose 00:0d:c7 CosmicEn 00:0d:c8 Airmagne 00:0d:c9 ThalesEl 00:0d:ca TaitElec 00:0d:cb Petcomko 00:0d:cc Neosmart 00:0d:cd GroupeTx 00:0d:ce DynavacT 00:0d:cf Cidra 00:0d:d0 Tetratec 00:0d:d1 Stryker 00:0d:d2 SimradOp 00:0d:d3 SamwooTe 00:0d:d4 Symantec 00:0d:d5 ORiteTec 00:0d:d6 Iti 00:0d:d7 Bright 00:0d:d8 Bbn 00:0d:d9 AntonPaa 00:0d:da AlliedTe 00:0d:db AirwaveT 00:0d:dc Vac 00:0d:dd ProfiloT 00:0d:de Joyteck 00:0d:df JapanIma 00:0d:e0 Icpdas 00:0d:e1 ControlP 00:0d:e2 CmzSiste 00:0d:e3 AtSweden 00:0d:e4 Diginics 00:0d:e5 Samsung 00:0d:e6 YoungboE 00:0d:e7 Snap-OnO 00:0d:e8 NasacoEl 00:0d:e9 Napatech 00:0d:ea KingtelT 00:0d:eb Compxs 00:0d:ec Cisco 00:0d:ed Cisco 00:0d:ee AndrewRf 00:0d:ef SocCoopB 00:0d:f0 QcomTech 00:0d:f1 Ionix 00:0d:f2 Private 00:0d:f3 AsmaxSol 00:0d:f4 Watertek 00:0d:f5 Teletron 00:0d:f6 Technolo 00:0d:f7 SpaceDyn 00:0d:f8 OrgaKart 00:0d:f9 Nds 00:0d:fa MicroCon 00:0d:fb Komax 00:0d:fc Itfor 00:0d:fd HugesHi- 00:0d:fe Hauppaug 00:0d:ff Chenming 00:0e:00 Atrie 00:0e:01 AsipTech 00:0e:02 Advantec 00:0e:03 Emulex 00:0e:04 Cma/Micr 00:0e:05 Wireless 00:0e:06 TeamSimo 00:0e:07 Sony 00:0e:08 Cisco 00:0e:09 Shenzhen 00:0e:0a SakumaDe 00:0e:0b NetacTec 00:0e:0c Intel 00:0e:0d HeschSch 00:0e:0e EsaElett 00:0e:0f Ermme 00:0e:10 C-Guys 00:0e:11 BdtBüroU 00:0e:12 Adaptive 00:0e:13 Accu-Sor 00:0e:14 Visionar 00:0e:15 Tadlys 00:0e:16 Southwin 00:0e:17 Private 00:0e:18 MyaTechn 00:0e:19 Logicacm 00:0e:1a JpsCommu 00:0e:1b Iav 00:0e:1c Hach 00:0e:1d ArionTec 00:0e:1e Qlogic 00:0e:1f TclNetwo 00:0e:20 AccessAm 00:0e:21 MtuFried 00:0e:22 Private 00:0e:23 Incipien 00:0e:24 HuwellTe 00:0e:25 HannaeTe 00:0e:26 GincomTe 00:0e:27 CrereNet 00:0e:28 DynamicR 00:0e:29 ShesterC 00:0e:2a Private 00:0e:2b SafariTe 00:0e:2c Netcodec 00:0e:2d HyundaiD 00:0e:2e EdimaxTe 00:0e:2f RocheDia 00:0e:30 AerasNet 00:0e:31 OlympusS 00:0e:32 KontronM 00:0e:33 ShukoEle 00:0e:34 NexgenCi 00:0e:35 Intel 00:0e:36 Heinesys 00:0e:37 HarmsWen 00:0e:38 Cisco 00:0e:39 Cisco 00:0e:3a CirrusLo 00:0e:3b HawkingT 00:0e:3c Transact 00:0e:3d TelevicN 00:0e:3e SunOptro 00:0e:3f Soronti 00:0e:40 NortelNe 00:0e:41 NihonMec 00:0e:42 MoticInc 00:0e:43 G-TekEle 00:0e:44 Digital5 00:0e:45 BeijingN 00:0e:46 NiigataS 00:0e:47 NciSyste 00:0e:48 LipmanTr 00:0e:49 ForswayS 00:0e:4a Changchu 00:0e:4b AtriumCA 00:0e:4c Bermai 00:0e:4d Numesa 00:0e:4e Waveplus 00:0e:4f Trajet 00:0e:50 ThomsonT 00:0e:51 TecnaEle 00:0e:52 Optium 00:0e:53 AvTech 00:0e:54 Alphacel 00:0e:55 Auvitran 00:0e:56 4g 00:0e:57 IworldNe 00:0e:58 Sonos 00:0e:59 Sagemcom 00:0e:5a Telefiel 00:0e:5b Parkervi 00:0e:5c ArrisGro 00:0e:5d TriplePl 00:0e:5e Raisecom 00:0e:5f Activ-Ne 00:0e:60 360sunDi 00:0e:61 Microtro 00:0e:62 NortelNe 00:0e:63 LemkeDia 00:0e:64 Elphel 00:0e:65 Transcor 00:0e:66 HitachiI 00:0e:67 EltisMic 00:0e:68 E-TopNet 00:0e:69 ChinaEle 00:0e:6a 3Com 00:0e:6b JanitzaE 00:0e:6c DeviceDr 00:0e:6d MurataMa 00:0e:6e MatSAMir 00:0e:6f IrisBerh 00:0e:70 In2Netwo 00:0e:71 GemstarT 00:0e:72 CtsElect 00:0e:73 Tpack 00:0e:74 SolarTel 00:0e:75 NewYorkA 00:0e:76 GemsocIn 00:0e:77 Decru 00:0e:78 Amtelco 00:0e:79 AmpleCom 00:0e:7a GemwonCo 00:0e:7b Toshiba 00:0e:7c TelevesS 00:0e:7d Electron 00:0e:7e IonsignO 00:0e:7f HP 00:0e:80 ThomsonT 00:0e:81 Devicesc 00:0e:82 Commtech 00:0e:83 Cisco 00:0e:84 Cisco 00:0e:85 Catalyst 00:0e:86 AlcatelN 00:0e:87 AdpGause 00:0e:88 Videotro 00:0e:89 Clematic 00:0e:8a AvaraTec 00:0e:8b AstarteT 00:0e:8c SiemensA 00:0e:8d InProgre 00:0e:8e Sparklan 00:0e:8f Sercomm 00:0e:90 Ponico 00:0e:91 NavicoAu 00:0e:92 OpenTele 00:0e:93 Milénio3 00:0e:94 MaasInte 00:0e:95 FujiyaDe 00:0e:96 CubicDef 00:0e:97 Ultracke 00:0e:98 HmeClear 00:0e:99 Spectrum 00:0e:9a BoeTechn 00:0e:9b AmbitMic 00:0e:9c Benchmar 00:0e:9d TiscaliU 00:0e:9e Topfield 00:0e:9f TemicSds 00:0e:a0 Netklass 00:0e:a1 FormosaT 00:0e:a2 Mcafee 00:0e:a3 Cncr-ItH 00:0e:a4 Certance 00:0e:a5 Blip 00:0e:a6 ASUS 00:0e:a7 EndaceTe 00:0e:a8 UnitedTe 00:0e:a9 Shanghai 00:0e:aa Scalent 00:0e:ab Cray 00:0e:ac MintronE 00:0e:ad Metanoia 00:0e:ae GawellTe 00:0e:af Castel 00:0e:b0 Solution 00:0e:b1 Newcotec 00:0e:b2 Micro-Re 00:0e:b3 HP 00:0e:b4 Guangzho 00:0e:b5 EcastleE 00:0e:b6 Riverbed 00:0e:b7 Knovativ 00:0e:b8 Iiga 00:0e:b9 Hashimot 00:0e:ba HanmiSem 00:0e:bb EverbeeN 00:0e:bc ParagonF 00:0e:bd BurdickA 00:0e:be B&BElect 00:0e:bf Remsdaq 00:0e:c0 NortelNe 00:0e:c1 MynahTec 00:0e:c2 Lowrance 00:0e:c3 LogicCon 00:0e:c4 IskraTra 00:0e:c5 DigitalM 00:0e:c6 AsixElec 00:0e:c7 Motorola 00:0e:c8 Zoran 00:0e:c9 YokoTech 00:0e:ca Wtss 00:0e:cb VinesysT 00:0e:cc TableauL 00:0e:cd Skov 00:0e:ce SITTISPA 00:0e:cf Profibus 00:0e:d0 Privaris 00:0e:d1 OsakaMic 00:0e:d2 Filtroni 00:0e:d3 Epicente 00:0e:d4 CresittI 00:0e:d5 Copan 00:0e:d6 Cisco 00:0e:d7 Cisco 00:0e:d8 Positron 00:0e:d9 Aksys 00:0e:da C-TechUn 00:0e:db Xincom 00:0e:dc Tellion 00:0e:dd Shure 00:0e:de Remec 00:0e:df PlxTechn 00:0e:e0 Mcharge 00:0e:e1 Extremes 00:0e:e2 CustomEn 00:0e:e3 ChiyuTec 00:0e:e4 BoeTechn 00:0e:e5 Bitwalle 00:0e:e6 Adimos 00:0e:e7 AacElect 00:0e:e8 ZioncomE 00:0e:e9 WaytechD 00:0e:ea ShadongL 00:0e:eb Sandmart 00:0e:ec Orban 00:0e:ed NokiaDan 00:0e:ee MucoIndu 00:0e:ef Private 00:0e:f0 Festo 00:0e:f1 Ezquest 00:0e:f2 Infinico 00:0e:f3 Smarthom 00:0e:f4 KasdaNet 00:0e:f5 IpacTech 00:0e:f6 E-TenInf 00:0e:f7 VulcanPo 00:0e:f8 SbcAsi 00:0e:f9 ReaElekt 00:0e:fa OptowayT 00:0e:fb MaceyEnt 00:0e:fc JtagTech 00:0e:fd Fujinon 00:0e:fe EndrunTe 00:0e:ff Megasolu 00:0f:00 Legra 00:0f:01 Digitalk 00:0f:02 Digicube 00:0f:03 Com&C 00:0f:04 Cim-Usa 00:0f:05 3bSystem 00:0f:06 NortelNe 00:0f:07 Mangrove 00:0f:08 IndagonO 00:0f:09 Private 00:0f:0a ClearEdg 00:0f:0b KentimaT 00:0f:0c Synchron 00:0f:0d HuntElec 00:0f:0e Wavespli 00:0f:0f RealIdTe 00:0f:10 Rdm 00:0f:11 Prodrive 00:0f:12 Panasoni 00:0f:13 Nisca 00:0f:14 Mindray 00:0f:15 Kjaerulf 00:0f:16 JayHowTe 00:0f:17 InstaEle 00:0f:18 Industri 00:0f:19 BostonSc 00:0f:1a GamingSu 00:0f:1b Ego 00:0f:1c Digitall 00:0f:1d CosmoTec 00:0f:1e ChengduK 00:0f:1f Dell 00:0f:20 HP 00:0f:21 Scientif 00:0f:22 Helius 00:0f:23 Cisco 00:0f:24 Cisco 00:0f:25 Aimvalle 00:0f:26 Worldacc 00:0f:27 TealElec 00:0f:28 Itronix 00:0f:29 Augmenti 00:0f:2a Cablewar 00:0f:2b Greenbel 00:0f:2c Uplogix 00:0f:2d Chung-Hs 00:0f:2e Megapowe 00:0f:2f W-LinxTe 00:0f:30 RazaMicr 00:0f:31 AlliedVi 00:0f:32 LootomTe 00:0f:33 Duali 00:0f:34 Cisco 00:0f:35 Cisco 00:0f:36 Accurate 00:0f:37 Xambala 00:0f:38 Netstar 00:0f:39 IrisSens 00:0f:3a Hisharp 00:0f:3b FujiSyst 00:0f:3c Endeleo 00:0f:3d D-Link 00:0f:3e Cardione 00:0f:3f BigBearN 00:0f:40 OpticalI 00:0f:41 Zipher 00:0f:42 Xalyo 00:0f:43 Wasabi 00:0f:44 Tivella 00:0f:45 Stretch 00:0f:46 Sinar 00:0f:47 Robox 00:0f:48 Polypix 00:0f:49 Northove 00:0f:4a Kyushu-K 00:0f:4b Oracle 00:0f:4c Elextech 00:0f:4d Talkswit 00:0f:4e Cellink 00:0f:4f PcsSyste 00:0f:50 Streamsc 00:0f:51 Azul 00:0f:52 YorkRefr 00:0f:53 Solarfla 00:0f:54 Entrelog 00:0f:55 Datawire 00:0f:56 Continuu 00:0f:57 Cablelog 00:0f:58 AdderTec 00:0f:59 Phonak 00:0f:5a PeribitN 00:0f:5b DeltaInf 00:0f:5c DayOneDi 00:0f:5d GenexisB 00:0f:5e Veo 00:0f:5f NicetyTe 00:0f:60 Lifetron 00:0f:61 HP 00:0f:62 AlcatelB 00:0f:63 ObzervTe 00:0f:64 D&RElect 00:0f:65 Icube 00:0f:66 Cisco 00:0f:67 WestInst 00:0f:68 VavicNet 00:0f:69 SewEurod 00:0f:6a NortelNe 00:0f:6b Gateware 00:0f:6c Addi-Dat 00:0f:6d MidasEng 00:0f:6e Bbox 00:0f:6f FtaCommu 00:0f:70 WintecIn 00:0f:71 SanmeiEl 00:0f:72 Sandburs 00:0f:73 RsAutoma 00:0f:74 QamcomTe 00:0f:75 FirstSil 00:0f:76 DigitalK 00:0f:77 Dentum 00:0f:78 Datacap 00:0f:79 Bluetoot 00:0f:7a BeijingN 00:0f:7b ArceSist 00:0f:7c Acti 00:0f:7d Xirrus 00:0f:7e AblerexE 00:0f:7f Ubstorag 00:0f:80 TrinityS 00:0f:81 PalPacif 00:0f:82 MortaraI 00:0f:83 Brainium 00:0f:84 AstuteNe 00:0f:85 Addo-Jap 00:0f:86 Blackber 00:0f:87 MaxcessI 00:0f:88 Ametek 00:0f:89 Winnerte 00:0f:8a Wideview 00:0f:8b OrionMul 00:0f:8c Gigawave 00:0f:8d FastTv-S 00:0f:8e Dongyang 00:0f:8f Cisco 00:0f:90 Cisco 00:0f:91 Aerotele 00:0f:92 Microhar 00:0f:93 Landis+G 00:0f:94 GenexisB 00:0f:95 ElecomLa 00:0f:96 Telco 00:0f:97 Avanex 00:0f:98 Avamax 00:0f:99 ApacOpto 00:0f:9a Synchron 00:0f:9b RossVide 00:0f:9c Panduit 00:0f:9d Displayl 00:0f:9e Murrelek 00:0f:9f ArrisGro 00:0f:a0 CanonKor 00:0f:a1 Gigabit 00:0f:a2 2xwirele 00:0f:a3 AlphaNet 00:0f:a4 Sprecher 00:0f:a5 BwaTechn 00:0f:a6 S2Securi 00:0f:a7 RaptorNe 00:0f:a8 Photomet 00:0f:a9 PcFabrik 00:0f:aa NexusTec 00:0f:ab KyushuEl 00:0f:ac IEEE8021 00:0f:ad FmnCommu 00:0f:ae E2oCommu 00:0f:af Dialog 00:0f:b0 CompalEl 00:0f:b1 Cognio 00:0f:b2 Broadban 00:0f:b3 Actionte 00:0f:b4 Timespac 00:0f:b5 Netgear 00:0f:b6 Europlex 00:0f:b7 Cavium 00:0f:b8 Callurl 00:0f:b9 Adaptive 00:0f:ba Tevebox 00:0f:bb NokiaSie 00:0f:bc OnkeyTec 00:0f:bd MrvCommu 00:0f:be E-W/You 00:0f:bf DgtSpZOO 00:0f:c0 Delcomp 00:0f:c1 Wave 00:0f:c2 Uniwell 00:0f:c3 Palmpalm 00:0f:c4 Nst 00:0f:c5 Keymed 00:0f:c6 EurocomI 00:0f:c7 DionicaR 00:0f:c8 ChantryN 00:0f:c9 Allnet 00:0f:ca A-JinTec 00:0f:cb 3Com 00:0f:cc ArrisGro 00:0f:cd NortelNe 00:0f:ce KikusuiE 00:0f:cf Datawind 00:0f:d0 Astri 00:0f:d1 AppliedW 00:0f:d2 EwaTechn 00:0f:d3 Digium 00:0f:d4 Soundcra 00:0f:d5 Schwecha 00:0f:d6 Sarotech 00:0f:d7 HarmanMu 00:0f:d8 Force 00:0f:d9 FlexdslT 00:0f:da Yazaki 00:0f:db WestellT 00:0f:dc UedaJapa 00:0f:dd Sordin 00:0f:de Sony 00:0f:df SolomonT 00:0f:e0 Ncomputi 00:0f:e1 IdDigita 00:0f:e2 Hangzhou 00:0f:e3 DammCell 00:0f:e4 Pantech 00:0f:e5 MercuryS 00:0f:e6 Mbtech 00:0f:e7 LutronEl 00:0f:e8 Lobos 00:0f:e9 GwTechno 00:0f:ea Giga-Byt 00:0f:eb CylonCon 00:0f:ec Arkus 00:0f:ed AnamElec 00:0f:ee Xtec 00:0f:ef ThalesE- 00:0f:f0 Sunray 00:0f:f1 Nex-GPte 00:0f:f2 LoudTech 00:0f:f3 JungMyou 00:0f:f4 Gunterma 00:0f:f5 Gn&S 00:0f:f6 DarfonLi 00:0f:f7 Cisco 00:0f:f8 Cisco 00:0f:f9 Valcrete 00:0f:fa Optinel 00:0f:fb NipponDe 00:0f:fc MeritLi- 00:0f:fd Glorytek 00:0f:fe G-ProCom 00:0f:ff Control4 00:10:00 CableLabs 00:10:01 Citel 00:10:02 Actia 00:10:03 Imatron 00:10:04 Brantley 00:10:05 UecComme 00:10:06 ThalesCo 00:10:07 Cisco 00:10:08 Vienna 00:10:09 HoroQuar 00:10:0a Williams 00:10:0b Cisco 00:10:0c Ito 00:10:0d Cisco 00:10:0e MicroLin 00:10:0f Industri 00:10:10 Initio 00:10:11 Cisco 00:10:12 Processo 00:10:13 KontronA 00:10:14 Cisco 00:10:15 Oomon 00:10:16 TSqware 00:10:17 BoschAcc 00:10:18 Broadcom 00:10:19 SironaDe 00:10:1a Picturet 00:10:1b CornetTe 00:10:1c OhmTechn 00:10:1d WinbondE 00:10:1e Matsushi 00:10:1f Cisco 00:10:20 HandHeld 00:10:21 EncantoN 00:10:22 SatcomMe 00:10:23 NetworkE 00:10:24 NagoyaEl 00:10:25 Grayhill 00:10:26 Accelera 00:10:27 L-3Commu 00:10:28 Computer 00:10:29 Cisco 00:10:2a ZfMicros 00:10:2b UmaxData 00:10:2c LasatNet 00:10:2d HitachiS 00:10:2e NetworkT 00:10:2f Cisco 00:10:30 Eion 00:10:31 Objectiv 00:10:32 AltaTech 00:10:33 Accessla 00:10:34 GnpCompu 00:10:35 Elitegro 00:10:36 Inter-Te 00:10:37 CyqVeTec 00:10:38 MicroRes 00:10:39 Vectron 00:10:3a DiamondN 00:10:3b HippiNet 00:10:3c IcEnsemb 00:10:3d Phasecom 00:10:3e Netschoo 00:10:3f Tollgrad 00:10:40 Intermec 00:10:41 BristolB 00:10:42 Alacrite 00:10:43 A2 00:10:44 Innolabs 00:10:45 NortelNe 00:10:46 AlcornMc 00:10:47 EchoElet 00:10:48 HtrcAuto 00:10:49 Shoretel 00:10:4a Parvus 00:10:4b 3com3c90 00:10:4c Teledyne 00:10:4d SurtecIn 00:10:4e Ceologic 00:10:4f Oracle 00:10:50 Rion 00:10:51 Cmicro 00:10:52 Mettler- 00:10:53 Computer 00:10:54 Cisco 00:10:55 Fujitsu 00:10:56 Sodick 00:10:57 RebelCom 00:10:58 Arrowpoi 00:10:59 DiabloRe 00:10:5a 3comFast 00:10:5b NetInsig 00:10:5c QuantumD 00:10:5d DraegerM 00:10:5e SpirentS 00:10:5f ZodiacDa 00:10:60 Billingt 00:10:61 Hostlink 00:10:62 NxServer 00:10:63 Starguid 00:10:64 DnpgLlc 00:10:65 Radyne 00:10:66 Advanced 00:10:67 Ericsson 00:10:68 ComosTel 00:10:69 HeliossC 00:10:6a DigitalM 00:10:6b SonusNet 00:10:6c Ednt 00:10:6d Axxceler 00:10:6e TadiranC 00:10:6f TrentonT 00:10:70 CaradonT 00:10:71 Advanet 00:10:72 GvnTechn 00:10:73 Technobo 00:10:74 AtenInte 00:10:75 SegateTe 00:10:76 Eurem 00:10:77 SafDrive 00:10:78 NueraCom 00:10:79 Cisco 00:10:7a AmbicomW 00:10:7b Cisco 00:10:7c P-Com 00:10:7d AuroraCo 00:10:7e Bachmann 00:10:7f Crestron 00:10:80 Metawave 00:10:81 Dps 00:10:82 JnaTelec 00:10:83 Hp-UxE90 00:10:84 K-BotCom 00:10:85 PolarisC 00:10:86 AttoTech 00:10:87 Xstreami 00:10:88 American 00:10:89 Websonic 00:10:8a Teralogi 00:10:8b Laserani 00:10:8c Fujitsu 00:10:8d JohnsonC 00:10:8e HughSymo 00:10:8f Raptor 00:10:90 Cimetric 00:10:91 NoWiresN 00:10:92 Netcore 00:10:93 CmsCompu 00:10:94 Performa 00:10:95 Thomson 00:10:96 Tracewel 00:10:97 WinnetMe 00:10:98 StarnetT 00:10:99 Innomedi 00:10:9a Netline 00:10:9b Emulex 00:10:9c M-System 00:10:9d Clarinet 00:10:9e Aware 00:10:9f Pavo 00:10:a0 InnovexT 00:10:a1 KendinSe 00:10:a2 Tns 00:10:a3 Omnitron 00:10:a4 XircomRe 00:10:a5 OxfordIn 00:10:a6 Cisco 00:10:a7 UnexTech 00:10:a8 Reliance 00:10:a9 AdhocTec 00:10:aa Media4 00:10:ab KoitoEle 00:10:ac ImciTech 00:10:ad Softroni 00:10:ae ShinkoEl 00:10:af Tac 00:10:b0 Meridian 00:10:b1 For-A 00:10:b2 Coactive 00:10:b3 NokiaMul 00:10:b4 Atmosphe 00:10:b5 AcctonTe 00:10:b6 EntrataC 00:10:b7 CoyoteTe 00:10:b8 Ishigaki 00:10:b9 Maxtor 00:10:ba Martinho 00:10:bb DataInfo 00:10:bc AastraTe 00:10:bd Telecomm 00:10:be MarchNet 00:10:bf Interair 00:10:c0 Arma 00:10:c1 OiElectr 00:10:c2 Willnet 00:10:c3 Csi-Cont 00:10:c4 MediaGlo 00:10:c5 Protocol 00:10:c6 Universa 00:10:c7 DataTran 00:10:c8 Communic 00:10:c9 Mitsubis 00:10:ca Telco 00:10:cb FacitKK 00:10:cc ClpCompu 00:10:cd Interfac 00:10:ce Volamp 00:10:cf Fiberlan 00:10:d0 Witcom 00:10:d1 TopLayer 00:10:d2 NittoTsu 00:10:d3 GripsEle 00:10:d4 StorageC 00:10:d5 ImasdeCa 00:10:d6 Exelis 00:10:d7 ArgosyEn 00:10:d8 Calista 00:10:d9 IBM 00:10:da Kollmorg 00:10:db Netscreen 00:10:dc Micro-St 00:10:dd EnableSe 00:10:de Internat 00:10:df RiseComp 00:10:e0 Oracle 00:10:e1 SITech 00:10:e2 Arraycom 00:10:e3 HP 00:10:e4 Nsi 00:10:e5 Solectro 00:10:e6 AppliedI 00:10:e7 Breezeco 00:10:e8 Telocity 00:10:e9 Raidtec 00:10:ea AdeptTec 00:10:eb Selsius 00:10:ec RpcgLlc 00:10:ed Sundance 00:10:ee CtiProdu 00:10:ef Dbtel 00:10:f0 Rittal-W 00:10:f1 I-O 00:10:f2 Antec 00:10:f3 NexcomIn 00:10:f4 Vertical 00:10:f5 Amherst 00:10:f6 Cisco 00:10:f7 IriichiT 00:10:f8 TexioTec 00:10:f9 Unique 00:10:fa Apple 00:10:fb ZidaTech 00:10:fc Broadban 00:10:fd Cocom 00:10:fe DigitalE 00:10:ff Cisco 00:11:00 Schneide 00:11:01 CetTechn 00:11:02 AuroraMu 00:11:03 Kawamura 00:11:04 Telexy 00:11:05 SunplusT 00:11:06 SiemensN 00:11:07 RgbNetwo 00:11:08 OrbitalD 00:11:09 Micro-St 00:11:0a HP 00:11:0b Franklin 00:11:0c AtmarkTe 00:11:0d Sanblaze 00:11:0e Tsurusak 00:11:0f Netplat 00:11:10 MaxannaT 00:11:11 Intel 00:11:12 Honeywel 00:11:13 Fraunhof 00:11:14 Everfocu 00:11:15 EpinTech 00:11:16 CoteauVe 00:11:17 Cesnet 00:11:18 BlxIcDes 00:11:19 Solteras 00:11:1a ArrisGro 00:11:1b TargaDiv 00:11:1c PleoraTe 00:11:1d Hectrix 00:11:1e EpsgEthe 00:11:1f DoremiLa 00:11:20 Cisco 00:11:21 Cisco 00:11:22 Cimsys 00:11:23 Appointe 00:11:24 Apple 00:11:25 IBM 00:11:26 Venstar 00:11:27 Tasi 00:11:28 Streamit 00:11:29 Paradise 00:11:2a NikoNv 00:11:2b Netmodul 00:11:2c Izt 00:11:2d Ipulse 00:11:2e Ceicom 00:11:2f ASUS 00:11:30 AlliedTe 00:11:31 Unatech 00:11:32 Synology 00:11:33 SiemensA 00:11:34 Mediacel 00:11:35 Grandeye 00:11:36 Goodrich 00:11:37 AichiEle 00:11:38 Taishin 00:11:39 StoeberA 00:11:3a Shinbora 00:11:3b Micronet 00:11:3c Micronas 00:11:3d KnSoltec 00:11:3e Jl 00:11:3f AlcatelD 00:11:40 Nanometr 00:11:41 Goodman 00:11:42 E-Smartc 00:11:43 Dell 00:11:44 Assuranc 00:11:45 Valuepoi 00:11:46 Telecard 00:11:47 Secom-In 00:11:48 ProlonCo 00:11:49 Proliphi 00:11:4a KayabaIn 00:11:4b Francoty 00:11:4c Caffeina 00:11:4d AtsumiEl 00:11:4e 690885On 00:11:4f UsDigita 00:11:50 Belkin 00:11:51 Mykotron 00:11:52 Eidsvoll 00:11:53 TridentT 00:11:54 WebproTe 00:11:55 Sevis 00:11:56 PharosNz 00:11:57 OkiElect 00:11:58 NortelNe 00:11:59 MatisseN 00:11:5a IvoclarV 00:11:5b Elitegro 00:11:5c Cisco 00:11:5d Cisco 00:11:5e Prominen 00:11:5f ItxSecur 00:11:60 Artdio 00:11:61 Netstrea 00:11:62 StarMicr 00:11:63 SystemDe 00:11:64 AcardTec 00:11:65 ZnyxNetw 00:11:66 TaelimEl 00:11:67 Integrat 00:11:68 Homelogi 00:11:69 EmsSatco 00:11:6a Domo 00:11:6b DigitalD 00:11:6c NanwangM 00:11:6d American 00:11:6e PeplinkI 00:11:6f Netforyo 00:11:70 GscSrl 00:11:71 DexterCo 00:11:72 Cotron 00:11:73 SmartSto 00:11:74 MojoNetw 00:11:75 Intel 00:11:76 Intellam 00:11:77 CoaxialN 00:11:78 ChironTe 00:11:79 Singular 00:11:7a SingimIn 00:11:7b BüchiLab 00:11:7c E-ZyNet 00:11:7d ZmdAmeri 00:11:7e Midmark 00:11:7f NeotuneI 00:11:80 ArrisGro 00:11:81 Interene 00:11:82 ImiNorgr 00:11:83 Datalogi 00:11:84 HumoLabo 00:11:85 HP 00:11:86 Prime 00:11:87 Category 00:11:88 Enterasy 00:11:89 Aerotech 00:11:8a Viewtran 00:11:8b Alcatel- 00:11:8c Missouri 00:11:8d Hanchang 00:11:8e Halytech 00:11:8f EutechIn 00:11:90 DigitalD 00:11:91 Cts-Clim 00:11:92 Cisco 00:11:93 Cisco 00:11:94 ChiMeiCo 00:11:95 D-Link 00:11:96 Actualit 00:11:97 Monitori 00:11:98 PrismMed 00:11:99 2wcom 00:11:9a AlkeriaS 00:11:9b Telesyne 00:11:9c Ep&TEner 00:11:9d DiginfoT 00:11:9e Solectro 00:11:9f NokiaDan 00:11:a0 VtechEng 00:11:a1 VisionNe 00:11:a2 Manufact 00:11:a3 Lanready 00:11:a4 JstreamT 00:11:a5 FortunaE 00:11:a6 SypixxNe 00:11:a7 InfilcoD 00:11:a8 QuestTec 00:11:a9 Moimston 00:11:aa Uniclass 00:11:ab Trustabl 00:11:ac SimtecEl 00:11:ad Shanghai 00:11:ae ArrisGro 00:11:af Medialin 00:11:b0 Fortelin 00:11:b1 Blueexpe 00:11:b2 2001Tech 00:11:b3 Yoshimiy 00:11:b4 Westermo 00:11:b5 Shenzhen 00:11:b6 OpenInte 00:11:b7 OctalixB 00:11:b8 Liebherr 00:11:b9 InnerRan 00:11:ba ElexolPt 00:11:bb Cisco 00:11:bc Cisco 00:11:bd Bombardi 00:11:be AgpTelec 00:11:bf AesysSPA 00:11:c0 AdayTech 00:11:c1 4pMobile 00:11:c2 UnitedFi 00:11:c3 Transcei 00:11:c4 Terminal 00:11:c5 TenTechn 00:11:c6 SeagateT 00:11:c7 Raymarin 00:11:c8 Powercom 00:11:c9 Mtt 00:11:ca LongRang 00:11:cb Jacobson 00:11:cc Guangzho 00:11:cd AxsunTec 00:11:ce Ubisense 00:11:cf ThraneTh 00:11:d0 Tandberg 00:11:d1 SoftImag 00:11:d2 Percepti 00:11:d3 Nextgent 00:11:d4 Netenric 00:11:d5 Hangzhou 00:11:d6 Handera 00:11:d7 Ewerks 00:11:d8 ASUS 00:11:d9 Tivo 00:11:da VivaasTe 00:11:db Land-Cel 00:11:dc GlunzJen 00:11:dd FromusTe 00:11:de Eurilogi 00:11:df CurrentE 00:11:e0 U-MediaC 00:11:e1 ArcelikA 00:11:e2 HuaJungC 00:11:e3 Thomson 00:11:e4 DanelecE 00:11:e5 Kcodes 00:11:e6 Scientif 00:11:e7 Worldsat 00:11:e8 TixiCom 00:11:e9 Starnex 00:11:ea Iwics 00:11:eb Innovati 00:11:ec Avix 00:11:ed 802Globa 00:11:ee Estari 00:11:ef ConitecD 00:11:f0 Wideful 00:11:f1 Qinetiq 00:11:f2 Institut 00:11:f3 Neomedia 00:11:f4 Woori-Ne 00:11:f5 AskeyCom 00:11:f6 AsiaPaci 00:11:f7 Shenzhen 00:11:f8 Airaya 00:11:f9 NortelNe 00:11:fa Rane 00:11:fb Heidelbe 00:11:fc HartingE 00:11:fd Korg 00:11:fe KeiyoSys 00:11:ff DigitroT 00:12:00 Cisco 00:12:01 Cisco 00:12:02 DecraneA 00:12:03 Activnet 00:12:04 U10Netwo 00:12:05 Terrasat 00:12:06 IquestNz 00:12:07 HeadStro 00:12:08 GantnerI 00:12:09 Fastrax 00:12:0a EmersonC 00:12:0b Chinasys 00:12:0c Ce-Infos 00:12:0d Advanced 00:12:0e Abocom 00:12:0f IEEE8023 00:12:10 Wideray 00:12:11 Protechn 00:12:12 Plus 00:12:13 Metrohm 00:12:14 KoenigBa 00:12:15 IstorNet 00:12:16 IcpInter 00:12:17 Cisco 00:12:18 Aruze 00:12:19 AheadCom 00:12:1a TechnoSo 00:12:1b SoundDev 00:12:1c ParrotSa 00:12:1d Netfabri 00:12:1e JuniperN 00:12:1f HardingI 00:12:20 Cadco 00:12:21 BBraunMe 00:12:22 SkardinU 00:12:23 Pixim 00:12:24 Nexql 00:12:25 ArrisGro 00:12:26 JapanDir 00:12:27 Franklin 00:12:28 Data 00:12:29 Broadeas 00:12:2a VtechTel 00:12:2b Virbiage 00:12:2c SoenenCo 00:12:2d Sinett 00:12:2e SignalTe 00:12:2f SaneiEle 00:12:30 PicasoIn 00:12:31 MotionCo 00:12:32 LewizCom 00:12:33 JrcTokki 00:12:34 CamilleB 00:12:35 Andrew 00:12:36 Consentr 00:12:37 TexasIns 00:12:38 SetaboxT 00:12:39 SNet 00:12:3a Posystec 00:12:3b KeroAps 00:12:3c SecondRu 00:12:3d Ges 00:12:3e EruneTec 00:12:3f Dell 00:12:40 AmoiElec 00:12:41 A2iMarke 00:12:42 Millenni 00:12:43 Cisco 00:12:44 Cisco 00:12:45 Zellwege 00:12:46 TOMTechn 00:12:47 Samsung 00:12:48 EmcKashy 00:12:49 DeltaEle 00:12:4a Dedicate 00:12:4b TexasIns 00:12:4c Bbwm 00:12:4d InduconB 00:12:4e XacAutom 00:12:4f PentairT 00:12:50 TokyoAir 00:12:51 Silink 00:12:52 Citronix 00:12:53 Audiodev 00:12:54 SpectraT 00:12:55 Neteffec 00:12:56 LG 00:12:57 Leapcomm 00:12:58 ActivisP 00:12:59 ThermoEl 00:12:5a Microsoft 00:12:5b KaimeiEl 00:12:5c GreenHil 00:12:5d Cybernet 00:12:5e Caen 00:12:5f Awind 00:12:60 StantonM 00:12:61 Adaptix 00:12:62 NokiaDan 00:12:63 DataVoic 00:12:64 DaumElec 00:12:65 Enerdyne 00:12:66 Swisscom 00:12:67 Panasoni 00:12:68 IpsDOO 00:12:69 ValueEle 00:12:6a Optoelec 00:12:6b Ascalade 00:12:6c VisonicT 00:12:6d Universi 00:12:6e SeidelEl 00:12:6f RaysonTe 00:12:70 NgesDenr 00:12:71 Measurem 00:12:72 ReduxCom 00:12:73 Stoke 00:12:74 NitLab 00:12:75 Sentilla 00:12:76 CgPowerI 00:12:77 KorenixT 00:12:78 Internat 00:12:79 HP 00:12:7a SanyuInd 00:12:7b ViaNetwo 00:12:7c Swegon 00:12:7d Mobilear 00:12:7e DigitalL 00:12:7f Cisco 00:12:80 Cisco 00:12:81 MarchNet 00:12:82 Qovia 00:12:83 NortelNe 00:12:84 Lab33Srl 00:12:85 Gizmondo 00:12:86 Endevco 00:12:87 DigitalE 00:12:88 2wire 00:12:89 AdvanceS 00:12:8a ArrisGro 00:12:8b SensoryN 00:12:8c Woodward 00:12:8d StbDaten 00:12:8e Q-FreeAs 00:12:8f Montilio 00:12:90 KyowaEle 00:12:91 KwsCompu 00:12:92 GriffinT 00:12:93 GeEnergy 00:12:94 Sumitomo 00:12:95 Aiware 00:12:96 Addlogix 00:12:97 O2micro 00:12:98 MicoElec 00:12:99 KtechTel 00:12:9a IrtElect 00:12:9b E2sElect 00:12:9c Yulinet 00:12:9d FirstInt 00:12:9e SurfComm 00:12:9f Rae 00:12:a0 Neomerid 00:12:a1 Bluepack 00:12:a2 Vita 00:12:a3 TrustInt 00:12:a4 Thingmag 00:12:a5 Stargen 00:12:a6 DolbyAus 00:12:a7 IsrTechn 00:12:a8 Intec 00:12:a9 3Com 00:12:aa Iee 00:12:ab Wilife 00:12:ac Ontimete 00:12:ad Ids 00:12:ae HlsHard- 00:12:af ElproTec 00:12:b0 EforeOyj 00:12:b1 DaiNippo 00:12:b2 Avolites 00:12:b3 AdvanceW 00:12:b4 WorkMicr 00:12:b5 Vialta 00:12:b6 SantaBar 00:12:b7 PtwFreib 00:12:b8 G2Micros 00:12:b9 FusionDi 00:12:ba Fsi 00:12:bb Telecomm 00:12:bc EcholabL 00:12:bd AvantecM 00:12:be Astek 00:12:bf Arcadyan 00:12:c0 Hotlava 00:12:c1 CheckPoi 00:12:c2 ApexElec 00:12:c3 WitSA 00:12:c4 Viseon 00:12:c5 V-ShowTe 00:12:c6 TgcAmeri 00:12:c7 SecurayT 00:12:c8 PerfectT 00:12:c9 ArrisGro 00:12:ca Mechatro 00:12:cb Css 00:12:cc Bitatek 00:12:cd Asem 00:12:ce Advanced 00:12:cf AcctonTe 00:12:d0 Gossen-M 00:12:d1 TexasIns 00:12:d2 TexasIns 00:12:d3 Zetta 00:12:d4 Princeto 00:12:d5 MotionRe 00:12:d6 JiangsuY 00:12:d7 InventoN 00:12:d8 Internat 00:12:d9 Cisco 00:12:da Cisco 00:12:db ZiehlInd 00:12:dc SuncorpI 00:12:dd ShengquI 00:12:de RadioCom 00:12:df Novomati 00:12:e0 Codan 00:12:e1 AlliantN 00:12:e2 AlaxalaN 00:12:e3 Agat-Rt 00:12:e4 ZiehlInd 00:12:e5 TimeAmer 00:12:e6 SpectecC 00:12:e7 Projecte 00:12:e8 Fraunhof 00:12:e9 Abbey 00:12:ea Trane 00:12:eb PdhSolut 00:12:ec Movacolo 00:12:ed AvgAdvan 00:12:ee Sony 00:12:ef Oneacces 00:12:f0 Intel 00:12:f1 Ifotec 00:12:f2 BrocadeC 00:12:f3 Connectb 00:12:f4 BelcoInt 00:12:f5 ImardaNe 00:12:f6 Mdk 00:12:f7 XiamenXi 00:12:f8 WniResou 00:12:f9 UryuSeis 00:12:fa Thx 00:12:fb Samsung 00:12:fc PlanetSy 00:12:fd OptimusI 00:12:fe LenovoMo 00:12:ff LelyIndu 00:13:00 It-Facto 00:13:01 Irongate 00:13:02 Intel 00:13:03 Gateconn 00:13:04 Flaircom 00:13:05 Epicom 00:13:06 AlwaysOn 00:13:07 Paravirt 00:13:08 NuveraFu 00:13:09 OceanBro 00:13:0a NortelNe 00:13:0b MextalBV 00:13:0c HfSystem 00:13:0d GalileoA 00:13:0e Focusrit 00:13:0f EgemenBi 00:13:10 Cisco 00:13:11 ArrisGro 00:13:12 AmediaNe 00:13:13 Guangzho 00:13:14 Asiamajo 00:13:15 Sony 00:13:16 L-S-BBro 00:13:17 GnNetcom 00:13:18 Dgstatio 00:13:19 Cisco 00:13:1a Cisco 00:13:1b BecellIn 00:13:1c Litetouc 00:13:1d Scanvaeg 00:13:1e PeikerAc 00:13:1f Nxtphase 00:13:20 Intel 00:13:21 HP 00:13:22 DaqElect 00:13:23 Cap 00:13:24 Schneide 00:13:25 Cortina 00:13:26 Ecm 00:13:27 DataAcqu 00:13:28 WestechK 00:13:29 Vsst 00:13:2a Sitronic 00:13:2b PhoenixD 00:13:2c MazBrand 00:13:2d IwiseCom 00:13:2e ItianCop 00:13:2f Interact 00:13:30 EuroProt 00:13:31 Cellpoin 00:13:32 BeijingT 00:13:33 Baudtec 00:13:34 Arkados 00:13:35 VsIndust 00:13:36 Tianjin7 00:13:37 OrientPo 00:13:38 Freseniu 00:13:39 CcvDeuts 00:13:3a Vadatech 00:13:3b SpeedDra 00:13:3c Quintron 00:13:3d MicroMem 00:13:3e Metaswit 00:13:3f Eppendor 00:13:40 AdElSRL 00:13:41 Shandong 00:13:42 VisionRe 00:13:43 Matsushi 00:13:44 FargoEle 00:13:45 Eaton 00:13:46 D-Link 00:13:47 RedLionC 00:13:48 ArtilaEl 00:13:49 ZyxelCom 00:13:4a Engim 00:13:4b Togolden 00:13:4c YdtTechn 00:13:4d IneproBv 00:13:4e Valox 00:13:4f TranzeoW 00:13:50 SilverSp 00:13:51 NilesAud 00:13:52 Naztec 00:13:53 HydacFil 00:13:54 ZcomaxTe 00:13:55 TomenCyb 00:13:56 FlirRadi 00:13:57 SoyalTec 00:13:58 Realm 00:13:59 Protelev 00:13:5a ProjectT 00:13:5b Panellin 00:13:5c Onsite 00:13:5d NttpcCom 00:13:5e Eab/Rwi/ 00:13:5f Cisco 00:13:60 Cisco 00:13:61 Biospace 00:13:62 Shinheun 00:13:63 Verascap 00:13:64 Paradigm 00:13:65 NortelNe 00:13:66 Neturity 00:13:67 Narayon 00:13:68 SaabDanm 00:13:69 HondaEle 00:13:6a HachLang 00:13:6b E-Tec 00:13:6c Tomtom 00:13:6d Tentacul 00:13:6e Techmetr 00:13:6f Packetmo 00:13:70 NokiaDan 00:13:71 ArrisGro 00:13:72 Dell 00:13:73 BlwaveEl 00:13:74 AtherosC 00:13:75 American 00:13:76 TaborEle 00:13:77 Samsung 00:13:78 QsanTech 00:13:79 PonderIn 00:13:7a NetvoxTe 00:13:7b Movon 00:13:7c Kaicom 00:13:7d Dynalab 00:13:7e CoredgeN 00:13:7f Cisco 00:13:80 Cisco 00:13:81 Chips 00:13:82 CetaceaN 00:13:83 Applicat 00:13:84 Advanced 00:13:85 Add-OnTe 00:13:86 Abb/Tota 00:13:87 27mTechn 00:13:88 WimediaA 00:13:89 RedesDeT 00:13:8a QingdaoG 00:13:8b PhantomT 00:13:8c Kumyoung 00:13:8d Kinghold 00:13:8e FoabElek 00:13:8f Asiarock 00:13:90 TermtekC 00:13:91 Ouen 00:13:92 RuckusWi 00:13:93 Panta 00:13:94 Infohand 00:13:95 Congatec 00:13:96 AcbelPol 00:13:97 Oracle 00:13:98 Traffics 00:13:99 Stac 00:13:9a K-Ubique 00:13:9b Ioimage 00:13:9c ExaveraT 00:13:9d MarvellH 00:13:9e CiaraTec 00:13:9f Electron 00:13:a0 Algosyst 00:13:a1 CrowElec 00:13:a2 Maxstrea 00:13:a3 SiemensC 00:13:a4 KeyeyeCo 00:13:a5 GeneralS 00:13:a6 Extricom 00:13:a7 Battelle 00:13:a8 TanisysT 00:13:a9 Sony 00:13:aa AlsTec 00:13:ab Telemoti 00:13:ac Sunmyung 00:13:ad Sendo 00:13:ae Radiance 00:13:af NumaTech 00:13:b0 Jablotro 00:13:b1 Intellig 00:13:b2 Carallon 00:13:b3 EcomComm 00:13:b4 AppearTv 00:13:b5 Wavesat 00:13:b6 SlingMed 00:13:b7 Scantech 00:13:b8 RycoElec 00:13:b9 Bm 00:13:ba Readylin 00:13:bb Smartvue 00:13:bc Artimi 00:13:bd HymatomS 00:13:be VirtualC 00:13:bf MediaSys 00:13:c0 TrixTecn 00:13:c1 AsokaUsa 00:13:c2 Wacom 00:13:c3 Cisco 00:13:c4 Cisco 00:13:c5 Lightron 00:13:c6 Opengear 00:13:c7 Ionos 00:13:c8 AdbBroad 00:13:c9 BeyondAc 00:13:ca PicoDigi 00:13:cb ZenitelN 00:13:cc TallMapl 00:13:cd Mti 00:13:ce Intel 00:13:cf 4accessC 00:13:d0 T+Medica 00:13:d1 KirkTele 00:13:d2 PageIber 00:13:d3 Micro-St 00:13:d4 ASUS 00:13:d5 Ruggedco 00:13:d6 TiiNetwo 00:13:d7 SpidcomT 00:13:d8 Princeto 00:13:d9 MatrixPr 00:13:da Diskware 00:13:db ShoeiEle 00:13:dc Ibtek 00:13:dd AbbottDi 00:13:de Adapt4Ll 00:13:df Ryvor 00:13:e0 MurataMa 00:13:e1 Iprobe 00:13:e2 Geovisio 00:13:e3 CoviTech 00:13:e4 Yangjae 00:13:e5 Tenosys 00:13:e6 Technolu 00:13:e7 Halcro 00:13:e8 Intel 00:13:e9 Veriwave 00:13:ea Kamstrup 00:13:eb Sysmaste 00:13:ec Netsnapp 00:13:ed Psia 00:13:ee JbxDesig 00:13:ef KingjonD 00:13:f0 Wavefron 00:13:f1 AmodTech 00:13:f2 Klas 00:13:f3 Giga-Byt 00:13:f4 PsitekPt 00:13:f5 Akimbi 00:13:f6 Cintech 00:13:f7 SmcNetwo 00:13:f8 DexSecur 00:13:f9 Cavera 00:13:fa Lifesize 00:13:fb RkcInstr 00:13:fc Sicortex 00:13:fd NokiaDan 00:13:fe Grandtec 00:13:ff Dage-Mti 00:14:00 MinervaK 00:14:01 Rivertre 00:14:02 Kk-Elect 00:14:03 RenasisL 00:14:04 ArrisGro 00:14:05 Openib 00:14:06 GoNetwor 00:14:07 SperianP 00:14:08 Eka 00:14:09 MagnetiM 00:14:0a Wepio 00:14:0b FirstInt 00:14:0c GkbCctv 00:14:0d NortelNe 00:14:0e NortelNe 00:14:0f FederalS 00:14:10 SuzhouKe 00:14:11 Deutschm 00:14:12 S-TecEle 00:14:13 TrebingH 00:14:14 Jumpnode 00:14:15 IntecAut 00:14:16 ScoscheI 00:14:17 RseInfor 00:14:18 C4line 00:14:19 Sidsa 00:14:1a Deicy 00:14:1b Cisco 00:14:1c Cisco 00:14:1d LtiDrive 00:14:1e PASemi 00:14:1f Sunkwang 00:14:20 G-LinksN 00:14:21 TotalWir 00:14:22 Dell 00:14:23 J-SNeuro 00:14:24 MerryEle 00:14:25 Galactic 00:14:26 NlTechno 00:14:27 Jazzmuta 00:14:28 Vocollec 00:14:29 VCenterT 00:14:2a Elitegro 00:14:2b EdataCom 00:14:2c KonceptI 00:14:2d Toradex 00:14:2e 77Elektr 00:14:2f Savvius 00:14:30 Vipower 00:14:31 PdlElect 00:14:32 Tarallax 00:14:33 EmpowerT 00:14:34 Keri 00:14:35 Citycom 00:14:36 QwertyEl 00:14:37 Gstelete 00:14:38 HP 00:14:39 BlonderT 00:14:3a RaytalkI 00:14:3b Sensovat 00:14:3c Rheinmet 00:14:3d Aevoe 00:14:3e AirlinkC 00:14:3f HotwayTe 00:14:40 Atomic 00:14:41 Innovati 00:14:42 Atto 00:14:43 Consultr 00:14:44 Grundfos 00:14:45 Telefon- 00:14:46 Supervis 00:14:47 Boaz 00:14:48 Inventec 00:14:49 SichuanC 00:14:4a TaiwanTh 00:14:4b Hifn 00:14:4c GeneralM 00:14:4d Intellig 00:14:4e Srisa 00:14:4f Oracle 00:14:50 Heim 00:14:51 Apple 00:14:52 Calculex 00:14:53 Advantec 00:14:54 Symwave 00:14:55 CoderEle 00:14:56 EdgeProd 00:14:57 T-VipsAs 00:14:58 HsAutoma 00:14:59 Moram 00:14:5a NeratecS 00:14:5b Seekerne 00:14:5c Intronic 00:14:5d WjCommun 00:14:5e IBM 00:14:5f Aditec 00:14:60 KyoceraW 00:14:61 Corona 00:14:62 Digiwell 00:14:63 IdcsNV 00:14:64 Cryptoso 00:14:65 NovoNord 00:14:66 Kleinhen 00:14:67 Arrowspa 00:14:68 CelplanI 00:14:69 Cisco 00:14:6a Cisco 00:14:6b Anagran 00:14:6c Netgear 00:14:6d RfTechno 00:14:6e HStoll 00:14:6f Kohler 00:14:70 ProkomSo 00:14:71 EasternA 00:14:72 ChinaBro 00:14:73 Bookham 00:14:74 K40Elect 00:14:75 WilineNe 00:14:76 Multicom 00:14:77 Nertec 00:14:78 TP-Link 00:14:79 NecMagnu 00:14:7a Eubus 00:14:7b Iteris 00:14:7c 3Com 00:14:7d AeonDigi 00:14:7e Innerwir 00:14:7f ThomsonT 00:14:80 Hitachi- 00:14:81 Multilin 00:14:82 AuroraNe 00:14:83 Exs 00:14:84 CermateT 00:14:85 Giga-Byt 00:14:86 EchoDigi 00:14:87 American 00:14:88 Akorri 00:14:89 B1540210 00:14:8a ElinEbgT 00:14:8b GloboEle 00:14:8c GeneralD 00:14:8d CubicDef 00:14:8e TelePowe 00:14:8f Protroni 00:14:90 Asp 00:14:91 DanielsE 00:14:92 LiteonMo 00:14:93 Systimax 00:14:94 Esu 00:14:95 2wire 00:14:96 Phonic 00:14:97 ZhiyuanE 00:14:98 VikingDe 00:14:99 Helicomm 00:14:9a ArrisGro 00:14:9b NokotaCo 00:14:9c Hf 00:14:9d SoundId 00:14:9e Ubone 00:14:9f SystemAn 00:14:a0 Accsense 00:14:a1 Synchron 00:14:a2 CoreMicr 00:14:a3 VitelecB 00:14:a4 HonHaiPr 00:14:a5 GemtekTe 00:14:a6 Teraneti 00:14:a7 NokiaDan 00:14:a8 Cisco 00:14:a9 Cisco 00:14:aa AshlyAud 00:14:ab SenhaiEl 00:14:ac Bountifu 00:14:ad GassnerW 00:14:ae Wizlogic 00:14:af DatasymP 00:14:b0 NaeilCom 00:14:b1 AxellWir 00:14:b2 Mcubelog 00:14:b3 Corestar 00:14:b4 GeneralD 00:14:b5 Physiome 00:14:b6 EnswerTe 00:14:b7 ArInfote 00:14:b8 Hill-Rom 00:14:b9 MstarSem 00:14:ba CarversS 00:14:bb OpenInte 00:14:bc Synectic 00:14:bd Incnetwo 00:14:be WinkComm 00:14:bf Cisco 00:14:c0 Symstrea 00:14:c1 USRoboti 00:14:c2 HP 00:14:c3 SeagateT 00:14:c4 Vitelcom 00:14:c5 AliveTec 00:14:c6 Quixant 00:14:c7 NortelNe 00:14:c8 Contempo 00:14:c9 BrocadeC 00:14:ca KeyRadio 00:14:cb Lifesync 00:14:cc Zetec 00:14:cd Digitalz 00:14:ce Nf 00:14:cf InvisioC 00:14:d0 Bti 00:14:d1 Trendnet 00:14:d2 KyudenTe 00:14:d3 Sepsa 00:14:d4 KTechnol 00:14:d5 DatangTe 00:14:d6 Jeongmin 00:14:d7 Datastor 00:14:d8 Bio-Logi 00:14:d9 IpFabric 00:14:da Huntleig 00:14:db ElmaTren 00:14:dc Communic 00:14:dd Covergen 00:14:de SageInst 00:14:df Hi-PTech 00:14:e0 LetS 00:14:e1 DataDisp 00:14:e2 Datacom 00:14:e3 Mm-Lab 00:14:e4 Infinias 00:14:e5 Alticast 00:14:e6 AimInfra 00:14:e7 Stolinx 00:14:e8 ArrisGro 00:14:e9 NortechI 00:14:ea SDigmSaf 00:14:eb Awarepoi 00:14:ec AcroTele 00:14:ed Airak 00:14:ee WesternD 00:14:ef TzeroTec 00:14:f0 Business 00:14:f1 Cisco 00:14:f2 Cisco 00:14:f3 Vixs 00:14:f4 DektecDi 00:14:f5 OsiSecur 00:14:f6 JuniperN 00:14:f7 Crevis 00:14:f8 Scientif 00:14:f9 VantageC 00:14:fa AsgaSA 00:14:fb Technica 00:14:fc Extandon 00:14:fd ThecusTe 00:14:fe ArtechEl 00:14:ff PreciseA 00:15:00 Intel 00:15:01 Lexbox 00:15:02 BetaTech 00:15:03 Proficom 00:15:04 GamePlus 00:15:05 Actionte 00:15:06 NeoPhoto 00:15:07 Renaissa 00:15:08 GlobalTa 00:15:09 PlusTech 00:15:0a Sonoa 00:15:0b SageInfo 00:15:0c Avm 00:15:0d HoanaMed 00:15:0e Openbrai 00:15:0f Mingjong 00:15:10 Techsphe 00:15:11 DataCent 00:15:12 ZurichUn 00:15:13 EfsSas 00:15:14 HuZhouNa 00:15:15 Leipold+ 00:15:16 Uriel 00:15:17 Intel 00:15:18 Shenzhen 00:15:19 Storeage 00:15:1a HunterEn 00:15:1b Isilon 00:15:1c Leneco 00:15:1d M2i 00:15:1e Ethernet 00:15:1f Multivis 00:15:20 Radiocra 00:15:21 Horoquar 00:15:22 DeaSecur 00:15:23 MeteorCo 00:15:24 Numatics 00:15:25 Chamberl 00:15:26 RemoteTe 00:15:27 BalboaIn 00:15:28 BeaconMe 00:15:29 N3 00:15:2a Nokia 00:15:2b Cisco 00:15:2c Cisco 00:15:2d TenxNetw 00:15:2e Packetho 00:15:2f ArrisGro 00:15:30 Emc 00:15:31 Kocom 00:15:32 Consumer 00:15:33 Nadam 00:15:34 ABeltrón 00:15:35 Ote 00:15:36 Powertec 00:15:37 VentusNe 00:15:38 Rfid 00:15:39 Technodr 00:15:3a Shenzhen 00:15:3b EmhMeter 00:15:3c Kprotech 00:15:3d ElimProd 00:15:3e Q-MaticS 00:15:3f AlcatelA 00:15:40 NortelNe 00:15:41 Stratali 00:15:42 Microhar 00:15:43 Aberdeen 00:15:44 ComSAT 00:15:45 Seecode 00:15:46 ItgWorld 00:15:47 AizenSol 00:15:48 CubeTech 00:15:49 DixtalBi 00:15:4a WanshihE 00:15:4b WondePro 00:15:4c Saunders 00:15:4d Netronom 00:15:4e Iec 00:15:4f OneRfTec 00:15:50 NitsTech 00:15:51 Radiopul 00:15:52 Wi-Gear 00:15:53 Cytyc 00:15:54 AtalumWi 00:15:55 Dfm 00:15:56 Sagemcom 00:15:57 Olivetti 00:15:58 Foxconn 00:15:59 Securapl 00:15:5a Dainippo 00:15:5b Sampo 00:15:5c DresserW 00:15:5d Microsoft 00:15:5e MorganSt 00:15:5f Greenpea 00:15:60 HP 00:15:61 Jjplus 00:15:62 Cisco 00:15:63 Cisco 00:15:64 Behringe 00:15:65 XiamenYe 00:15:66 A-FirstT 00:15:67 Radwin 00:15:68 Dilithiu 00:15:69 PecoIi 00:15:6a Dg2lTech 00:15:6b Perfisan 00:15:6c SaneSyst 00:15:6d Ubiquiti 00:15:6e AWCommun 00:15:6f XiranetC 00:15:70 ZebraTec 00:15:71 Nolan 00:15:72 Red-Lemo 00:15:73 NewsoftT 00:15:74 HorizonS 00:15:75 NevisNet 00:15:76 Labitec- 00:15:77 AlliedTe 00:15:78 Audio/Vi 00:15:79 Lunatone 00:15:7a TelefinS 00:15:7b LeuzeEle 00:15:7c DaveNetw 00:15:7d Posdata 00:15:7e Weidmüll 00:15:7f ChuangIn 00:15:80 U-Way 00:15:81 Makus 00:15:82 PulseEig 00:15:83 Ivt 00:15:84 SchenckP 00:15:85 Aonvisio 00:15:86 XiamenOv 00:15:87 Takenaka 00:15:88 Salutica 00:15:89 D-MaxTec 00:15:8a SurecomT 00:15:8b ParkAir 00:15:8c LiabAps 00:15:8d Jennic 00:15:8e Plustek 00:15:8f NttAdvan 00:15:90 Hectroni 00:15:91 Rlw 00:15:92 FacomUkM 00:15:93 U4eaTech 00:15:94 Bixolon 00:15:95 QuesterT 00:15:96 ArrisGro 00:15:97 AetaAudi 00:15:98 Kolektor 00:15:99 Samsung 00:15:9a ArrisGro 00:15:9b NortelNe 00:15:9c B-KyungS 00:15:9d TrippLit 00:15:9e MadCatzI 00:15:9f Terascal 00:15:a0 NokiaDan 00:15:a1 Eca-Sint 00:15:a2 ArrisGro 00:15:a3 ArrisGro 00:15:a4 ArrisGro 00:15:a5 Dci 00:15:a6 DigitalE 00:15:a7 Robatech 00:15:a8 ArrisGro 00:15:a9 KwangWoo 00:15:aa Rextechn 00:15:ab ProSound 00:15:ac Capelon 00:15:ad Accedian 00:15:ae KyungIl 00:15:af AzureWave 00:15:b0 Autotele 00:15:b1 Ambient 00:15:b2 Advanced 00:15:b3 Caretech 00:15:b4 PolymapW 00:15:b5 CiNetwor 00:15:b6 Shinmayw 00:15:b7 Toshiba 00:15:b8 Tahoe 00:15:b9 Samsung 00:15:ba Iba 00:15:bb SmaSolar 00:15:bc Develco 00:15:bd Group4Te 00:15:be Iqua 00:15:bf Technico 00:15:c0 DigitalT 00:15:c1 Sony 00:15:c2 3mGerman 00:15:c3 RufTelem 00:15:c4 Flovel 00:15:c5 Dell 00:15:c6 Cisco 00:15:c7 Cisco 00:15:c8 Flexipan 00:15:c9 Gumstix 00:15:ca Terareco 00:15:cb SurfComm 00:15:cc Uquest 00:15:cd Exartech 00:15:ce ArrisGro 00:15:cf ArrisGro 00:15:d0 ArrisGro 00:15:d1 ArrisGro 00:15:d2 Xantech 00:15:d3 Pantech& 00:15:d4 Emitor 00:15:d5 Nicevt 00:15:d6 OslinkSp 00:15:d7 Reti 00:15:d8 Interlin 00:15:d9 PkcElect 00:15:da IritelAD 00:15:db Canesta 00:15:dc Kt&C 00:15:dd IpContro 00:15:de NokiaDan 00:15:df ClivetSP 00:15:e0 Ericsson 00:15:e1 Picochip 00:15:e2 DrIngHer 00:15:e3 DreamTec 00:15:e4 ZimmerEl 00:15:e5 Cheertek 00:15:e6 MobileTe 00:15:e7 QuantecT 00:15:e8 NortelNe 00:15:e9 D-Link 00:15:ea Tellumat 00:15:eb Zte 00:15:ec BocaDevi 00:15:ed FulcrumM 00:15:ee OmnexCon 00:15:ef NecTokin 00:15:f0 EgoBv 00:15:f1 KylinkCo 00:15:f2 ASUS 00:15:f3 Peltor 00:15:f4 Eventide 00:15:f5 Sustaina 00:15:f6 ScienceA 00:15:f7 Wintecro 00:15:f8 Kingtron 00:15:f9 Cisco 00:15:fa Cisco 00:15:fb SetexSch 00:15:fc Littelfu 00:15:fd Complete 00:15:fe Schillin 00:15:ff NovatelW 00:16:00 Cellebri 00:16:01 Buffalo 00:16:02 CeyonTec 00:16:03 Coolksky 00:16:04 Sigpro 00:16:05 Yorkvill 00:16:06 IdealInd 00:16:07 CurvesIn 00:16:08 SequansC 00:16:09 UnitechE 00:16:0a SweexEur 00:16:0b TvworksL 00:16:0c LplDevel 00:16:0d BeHere 00:16:0e OpticaTe 00:16:0f BadgerMe 00:16:10 CarinaTe 00:16:11 AlteconS 00:16:12 OtsukaEl 00:16:13 Librestr 00:16:14 Picoseco 00:16:15 Nittan 00:16:16 BrowanCo 00:16:17 Msi 00:16:18 Hivion 00:16:19 Lancelan 00:16:1a Dametric 00:16:1b Micronet 00:16:1c E:Cue 00:16:1d Innovati 00:16:1e Woojinne 00:16:1f Sunwavet 00:16:20 Sony 00:16:21 Colorado 00:16:22 Bbh 00:16:23 Interval 00:16:24 Teneros 00:16:25 Impinj 00:16:26 ArrisGro 00:16:27 Embedded 00:16:28 Magicard 00:16:29 Nivus 00:16:2a AntikCom 00:16:2b TogamiEl 00:16:2c Xanboo 00:16:2d Stnet 00:16:2e SpaceShu 00:16:2f Geutebrü 00:16:30 VativTec 00:16:31 Xteam 00:16:32 Samsung 00:16:33 OxfordDi 00:16:34 Mathtech 00:16:35 HP 00:16:36 QuantaCo 00:16:37 Citel 00:16:38 Tecom 00:16:39 Ubiquam 00:16:3a YvesTech 00:16:3b Vertexrs 00:16:3c ReboxBV 00:16:3d Tsinghua 00:16:3e Xensourc 00:16:3f Crete 00:16:40 Asmobile 00:16:41 Universa 00:16:42 Pangolin 00:16:43 Sunhillo 00:16:44 Lite-OnT 00:16:45 PowerDis 00:16:46 Cisco 00:16:47 Cisco 00:16:48 Ssd 00:16:49 Setone 00:16:4a Vibratio 00:16:4b QuorionD 00:16:4c PlanetIn 00:16:4d Alcatel- 00:16:4e NokiaDan 00:16:4f WorldEth 00:16:50 KratosEp 00:16:51 Exeo 00:16:52 HoatechT 00:16:53 LegoSyst 00:16:54 Flex-PIn 00:16:55 FuhoTech 00:16:56 Nintendo 00:16:57 Aegate 00:16:58 Fusionte 00:16:59 ZMPRadwa 00:16:5a HarmanSp 00:16:5b GripAudi 00:16:5c Trackflo 00:16:5d Airdefen 00:16:5e Precisio 00:16:5f Fairmoun 00:16:60 NortelNe 00:16:61 Novatium 00:16:62 LiyuhTec 00:16:63 KbtMobil 00:16:64 Prod-El 00:16:65 CellonFr 00:16:66 Quantier 00:16:67 A-TecSub 00:16:68 EishinEl 00:16:69 MrvCommu 00:16:6a Tps 00:16:6b Samsung 00:16:6c Samsung 00:16:6d YulongCo 00:16:6e Arbitron 00:16:6f Intel 00:16:70 Sknet 00:16:71 SymphoxI 00:16:72 ZenwayEn 00:16:73 Bury 00:16:74 EurocbPh 00:16:75 ArrisGro 00:16:76 Intel 00:16:77 Bihl+Wie 00:16:78 Shenzhen 00:16:79 EonCommu 00:16:7a Skyworth 00:16:7b Haver&Bo 00:16:7c IrexTech 00:16:7d Sky-Line 00:16:7e Diboss 00:16:7f Bluebird 00:16:80 BallyGam 00:16:81 VectorIn 00:16:82 ProDex 00:16:83 WebioInt 00:16:84 Donjin 00:16:85 ElisaOyj 00:16:86 KarlStor 00:16:87 ChubbCsc 00:16:88 Serveren 00:16:89 PilkorEl 00:16:8a Id-Confi 00:16:8b Paralan 00:16:8c DslPartn 00:16:8d Korwin 00:16:8e Vimicro 00:16:8f GnNetcom 00:16:90 J-TekInc 00:16:91 Moser-Ba 00:16:92 Scientif 00:16:93 Powerlin 00:16:94 Sennheis 00:16:95 AvcTechn 00:16:96 QdiTechn 00:16:97 Nec 00:16:98 T&AMobil 00:16:99 TonicDvb 00:16:9a Quadrics 00:16:9b AlstomTr 00:16:9c Cisco 00:16:9d Cisco 00:16:9e TvOne 00:16:9f VimtronE 00:16:a0 Auto-Mas 00:16:a1 3leafNet 00:16:a2 Centrali 00:16:a3 Ingeteam 00:16:a4 Ezurio 00:16:a5 Tandberg 00:16:a6 DovadoFz 00:16:a7 AwetaG&P 00:16:a8 Cwt 00:16:a9 2ei 00:16:aa KeiCommu 00:16:ab Dansenso 00:16:ac TohoTech 00:16:ad Bt-Links 00:16:ae Inventel 00:16:af Shenzhen 00:16:b0 Vk 00:16:b1 Kbs 00:16:b2 Drivecam 00:16:b3 Photonic 00:16:b4 Private 00:16:b5 ArrisGro 00:16:b6 Cisco 00:16:b7 SeoulCom 00:16:b8 Sony 00:16:b9 Procurve 00:16:ba Weathern 00:16:bb Law-Chai 00:16:bc NokiaDan 00:16:bd AtiIndus 00:16:be Infranet 00:16:bf PalodexG 00:16:c0 Semtech 00:16:c1 Eleksen 00:16:c2 Avtec 00:16:c3 Ba 00:16:c4 SirfTech 00:16:c5 Shenzhen 00:16:c6 NorthAtl 00:16:c7 Cisco 00:16:c8 Cisco 00:16:c9 NatSeatt 00:16:ca NortelNe 00:16:cb Apple 00:16:cc XcuteMob 00:16:cd HijiHigh 00:16:ce HonHaiPr 00:16:cf HonHaiPr 00:16:d0 AtechEle 00:16:d1 ZatAS 00:16:d2 Caspian 00:16:d3 Wistron 00:16:d4 CompalCo 00:16:d5 Synccom 00:16:d6 TdaTechP 00:16:d7 Sunways 00:16:d8 Senea 00:16:d9 NingboBi 00:16:da Futronic 00:16:db Samsung 00:16:dc Archos 00:16:dd Gigabeam 00:16:de Fast 00:16:df Lundinov 00:16:e0 3Com 00:16:e1 Silicons 00:16:e2 American 00:16:e3 AskeyCom 00:16:e4 Vanguard 00:16:e5 FordleyD 00:16:e6 Giga-Byt 00:16:e7 DynamixP 00:16:e8 SigmaDes 00:16:e9 TibaMedi 00:16:ea Intel 00:16:eb Intel 00:16:ec Elitegro 00:16:ed DigitalS 00:16:ee Royaldig 00:16:ef KokoFitn 00:16:f0 Dell 00:16:f1 Omnisens 00:16:f2 DmobileS 00:16:f3 CastInfo 00:16:f4 Eidicom 00:16:f5 DalianGo 00:16:f6 VideoPro 00:16:f7 L-3Commu 00:16:f8 Aviqtech 00:16:f9 CetrtaPo 00:16:fa EciTelec 00:16:fb Shenzhen 00:16:fc Tohken 00:16:fd JatyElec 00:16:fe AlpsElec 00:16:ff WaminOpt 00:17:00 Kabel 00:17:01 Kde 00:17:02 OsungMid 00:17:03 MosdanIn 00:17:04 ShincoEl 00:17:05 MethodeE 00:17:06 Techfait 00:17:07 Ingrid 00:17:08 HP 00:17:09 ExaltCom 00:17:0a InewDigi 00:17:0b Contela 00:17:0c TwigCom 00:17:0d DustNetw 00:17:0e Cisco 00:17:0f Cisco 00:17:10 Casa 00:17:11 GeHealth 00:17:12 IscoInte 00:17:13 TigerNet 00:17:14 BrContro 00:17:15 Qstik 00:17:16 QnoTechn 00:17:17 LeicaGeo 00:17:18 VanscoEl 00:17:19 Audiocod 00:17:1a Winegard 00:17:1b Innovati 00:17:1c NtMicros 00:17:1d Digit 00:17:1e TheoBenn 00:17:1f Imv 00:17:20 ImageSen 00:17:21 FitreSPA 00:17:22 Hanazede 00:17:23 SummitDa 00:17:24 StuderPr 00:17:25 LiquidCo 00:17:26 M2cElect 00:17:27 ThermoRa 00:17:28 SelexCom 00:17:29 Ubicod 00:17:2a ProwareT 00:17:2b GlobalTe 00:17:2c TaejinIn 00:17:2d AxcenPho 00:17:2e Fxc 00:17:2f Neulion 00:17:30 Automati 00:17:31 ASUS 00:17:32 Science- 00:17:33 Sfr 00:17:34 AdcTelec 00:17:35 IntelWir 00:17:36 Iitron 00:17:37 Industri 00:17:38 Internat 00:17:39 BrightHe 00:17:3a Reach 00:17:3b Cisco 00:17:3c ExtremeE 00:17:3d Neology 00:17:3e Leucotro 00:17:3f BelkinIn 00:17:40 BluberiG 00:17:41 Defidev 00:17:42 Fujitsu 00:17:43 DeckSrl 00:17:44 Araneo 00:17:45 Innotz 00:17:46 Freedom9 00:17:47 Trimble 00:17:48 Neokoros 00:17:49 HyundaeY 00:17:4a Socomec 00:17:4b NokiaDan 00:17:4c Millipor 00:17:4d DynamicN 00:17:4e Parama-T 00:17:4f Icatch 00:17:50 GsiGroup 00:17:51 Online 00:17:52 Dags 00:17:53 NforeTec 00:17:54 ArkinoHi 00:17:55 GeSecuri 00:17:56 VinciLab 00:17:57 RixTechn 00:17:58 Thruvisi 00:17:59 Cisco 00:17:5a Cisco 00:17:5b AcsSolut 00:17:5c Sharp 00:17:5d DongseoS 00:17:5e Zed-3 00:17:5f Xenolink 00:17:60 NaitoDen 00:17:61 Private 00:17:62 SolarTec 00:17:63 Essentia 00:17:64 Atmedia 00:17:65 NortelNe 00:17:66 AccenseT 00:17:67 Earforce 00:17:68 Zinwave 00:17:69 Cymphoni 00:17:6a AvagoTec 00:17:6b Kiyon 00:17:6c Pivot3 00:17:6d Core 00:17:6e DucatiSi 00:17:6f PaxCompu 00:17:70 ArtiIndu 00:17:71 ApdCommu 00:17:72 AstroStr 00:17:73 Laketune 00:17:74 Elesta 00:17:75 TteGerma 00:17:76 MesoScal 00:17:77 Obsidian 00:17:78 CentralM 00:17:79 Quicktel 00:17:7a AssaAblo 00:17:7b AzaleaNe 00:17:7c Smartlin 00:17:7d IdtTechn 00:17:7e MeshcomT 00:17:7f Worldsma 00:17:80 AppliedB 00:17:81 Greyston 00:17:82 Lobenn 00:17:83 TexasIns 00:17:84 ArrisGro 00:17:85 SparrEle 00:17:86 Wisembed 00:17:87 BrotherB 00:17:88 Philips 00:17:89 Zenitron 00:17:8a DartsTec 00:17:8b Teledyne 00:17:8c Independ 00:17:8d Checkpoi 00:17:8e GunneboC 00:17:8f NingboYi 00:17:90 HyundaiD 00:17:91 Lintech 00:17:92 FalcomWi 00:17:93 Tigi 00:17:94 Cisco 00:17:95 Cisco 00:17:96 Rittmeye 00:17:97 TelsyEle 00:17:98 AzonicTe 00:17:99 Smartire 00:17:9a D-Link 00:17:9b ChantSin 00:17:9c DepragSc 00:17:9d Kelman 00:17:9e Sirit 00:17:9f Apricorn 00:17:a0 Robotech 00:17:a1 3soft 00:17:a2 Camrivox 00:17:a3 MixSRL 00:17:a4 HP 00:17:a5 RalinkTe 00:17:a6 YosinEle 00:17:a7 MobileCo 00:17:a8 Edm 00:17:a9 Sentivis 00:17:aa Elab-Exp 00:17:ab Nintendo 00:17:ac ONeilPro 00:17:ad Acenet 00:17:ae Gai-Tron 00:17:af Enermet 00:17:b0 NokiaDan 00:17:b1 AcistMed 00:17:b2 SkTelesy 00:17:b3 AftekInf 00:17:b4 RemoteSe 00:17:b5 Peerless 00:17:b6 Aquantia 00:17:b7 TonzeTec 00:17:b8 Novatron 00:17:b9 GambroLu 00:17:ba Sedo 00:17:bb SyrinxIn 00:17:bc Touchtun 00:17:bd Tibetsys 00:17:be TratecTe 00:17:bf Coherent 00:17:c0 Puretech 00:17:c1 CmPrecis 00:17:c2 AdbBroad 00:17:c3 KtfTechn 00:17:c4 QuantaMi 00:17:c5 Sonicwal 00:17:c6 CrossMat 00:17:c7 MaraCons 00:17:c8 KyoceraD 00:17:c9 Samsung 00:17:ca Qisda 00:17:cb JuniperN 00:17:cc Alcatel- 00:17:cd CecWirel 00:17:ce ScreenSe 00:17:cf Imca-Gmb 00:17:d0 OpticomC 00:17:d1 NortelNe 00:17:d2 Thinlinx 00:17:d3 Etymotic 00:17:d4 MonsoonM 00:17:d5 Samsung 00:17:d6 Bluechip 00:17:d7 IonGeoph 00:17:d8 MagnumSe 00:17:d9 Aai 00:17:da SpansLog 00:17:db CankoTec 00:17:dc Daemyung 00:17:dd ClipsalA 00:17:de Advantag 00:17:df Cisco 00:17:e0 Cisco 00:17:e1 DacosTec 00:17:e2 ArrisGro 00:17:e3 TexasIns 00:17:e4 TexasIns 00:17:e5 TexasIns 00:17:e6 TexasIns 00:17:e7 TexasIns 00:17:e8 TexasIns 00:17:e9 TexasIns 00:17:ea TexasIns 00:17:eb TexasIns 00:17:ec TexasIns 00:17:ed Woojooit 00:17:ee ArrisGro 00:17:ef IBM 00:17:f0 SzcomBro 00:17:f1 RenuElec 00:17:f2 Apple 00:17:f3 HarrisCo 00:17:f4 ZeronAll 00:17:f5 LigNeopt 00:17:f6 PyramidM 00:17:f7 CemSolut 00:17:f8 MotechIn 00:17:f9 ForcomSp 00:17:fa Microsoft 00:17:fb Fa 00:17:fc Suprema 00:17:fd AmuletHo 00:17:fe TalosSys 00:17:ff Playline 00:18:00 Unigrand 00:18:01 Actionte 00:18:02 AlphaNet 00:18:03 ArcsoftS 00:18:04 E-TekDig 00:18:05 BeijingI 00:18:06 HokkeiIn 00:18:07 Fanstel 00:18:08 Sightlog 00:18:09 Cresyn 00:18:0a Cisco 00:18:0b Brillian 00:18:0c Optelian 00:18:0d Terabyte 00:18:0e Avega 00:18:0f NokiaDan 00:18:10 IptradeS 00:18:11 NeurosTe 00:18:12 BeijingX 00:18:13 Sony 00:18:14 Mitutoyo 00:18:15 GzTechno 00:18:16 Ubixon 00:18:17 DEShawRe 00:18:18 Cisco 00:18:19 Cisco 00:18:1a Avermedi 00:18:1b TaijinMe 00:18:1c Exterity 00:18:1d AsiaElec 00:18:1e GdxTechn 00:18:1f Palmmicr 00:18:20 W5networ 00:18:21 Sindoric 00:18:22 CecTelec 00:18:23 DeltaEle 00:18:24 KimaldiE 00:18:25 Private 00:18:26 CaleAcce 00:18:27 NecUnifi 00:18:28 E2vTechn 00:18:29 Gatsomet 00:18:2a TaiwanVi 00:18:2b Softier 00:18:2c AscendNe 00:18:2d ArtecDes 00:18:2e Xstreamh 00:18:2f TexasIns 00:18:30 TexasIns 00:18:31 TexasIns 00:18:32 TexasIns 00:18:33 TexasIns 00:18:34 TexasIns 00:18:35 Thoratec 00:18:36 Reliance 00:18:37 Universa 00:18:38 Panacces 00:18:39 Cisco 00:18:3a WestellT 00:18:3b Cenits 00:18:3c EncoreSo 00:18:3d VertexLi 00:18:3e Digilent 00:18:3f 2wire 00:18:40 3Phoenix 00:18:41 HighTech 00:18:42 NokiaDan 00:18:43 Dawevisi 00:18:44 HeadsUpT 00:18:45 Pulsar-T 00:18:46 CryptoSA 00:18:47 AcenetTe 00:18:48 VecimaNe 00:18:49 PigeonPo 00:18:4a Catcher 00:18:4b LasVegas 00:18:4c BogenCom 00:18:4d Netgear 00:18:4e LianheTe 00:18:4f 8WaysTec 00:18:50 SecfoneK 00:18:51 Swsoft 00:18:52 Storlink 00:18:53 AteraNet 00:18:54 Argard 00:18:55 Aeromari 00:18:56 Eyefi 00:18:57 Unilever 00:18:58 Tagmaste 00:18:59 Strawber 00:18:5a Ucontrol 00:18:5b NetworkC 00:18:5c EdslabTe 00:18:5d TaiguenT 00:18:5e Nexterm 00:18:5f Tac 00:18:60 SimTechn 00:18:61 Ooma 00:18:62 SeagateT 00:18:63 Veritech 00:18:64 Eaton 00:18:65 SiemensH 00:18:66 LeutronV 00:18:67 Datalogi 00:18:68 Cisco 00:18:69 Kingjim 00:18:6a GlobalLi 00:18:6b SambuCom 00:18:6c Neonode 00:18:6d Zhenjian 00:18:6e 3Com 00:18:6f SethaInd 00:18:70 E28Shang 00:18:71 HP 00:18:72 Expertis 00:18:73 Cisco 00:18:74 Cisco 00:18:75 AnaciseT 00:18:76 Wowwee 00:18:77 Amplex 00:18:78 Mackware 00:18:79 Dsys 00:18:7a Wiremold 00:18:7b 4nsys 00:18:7c Intercro 00:18:7d Armorlin 00:18:7e RgbSpect 00:18:7f Zodianet 00:18:80 MaximInt 00:18:81 BuyangEl 00:18:82 Huawei 00:18:83 Formosa2 00:18:84 FonTechn 00:18:85 Avigilon 00:18:86 El-Tech 00:18:87 Metasyst 00:18:88 GotiveAS 00:18:89 WinnetSo 00:18:8a Infinova 00:18:8b Dell 00:18:8c MobileAc 00:18:8d NokiaDan 00:18:8e Ekahau 00:18:8f Montgome 00:18:90 Radiocom 00:18:91 Zhongsha 00:18:92 Ads-Tec 00:18:93 Shenzhen 00:18:94 Npcore 00:18:95 HansunTe 00:18:96 GreatWel 00:18:97 Jess-Lin 00:18:98 Kingstat 00:18:99 Shenzhen 00:18:9a HanaMicr 00:18:9b Thomson 00:18:9c Weldex 00:18:9d Navcast 00:18:9e Omnikey 00:18:9f Lenntek 00:18:a0 CiermaAs 00:18:a1 TiqitCom 00:18:a2 XipTechn 00:18:a3 ZippyTec 00:18:a4 ArrisGro 00:18:a5 AdigitTe 00:18:a6 Persiste 00:18:a7 YoggieSe 00:18:a8 AnnealTe 00:18:a9 Ethernet 00:18:aa ProtecFi 00:18:ab BeijingL 00:18:ac Shanghai 00:18:ad NidecSan 00:18:ae Tvt 00:18:af Samsung 00:18:b0 NortelNe 00:18:b1 IBM 00:18:b2 AdeunisR 00:18:b3 TecWizho 00:18:b4 DawonMed 00:18:b5 MagnaCar 00:18:b6 S3c 00:18:b7 D3LedLlc 00:18:b8 NewVoice 00:18:b9 Cisco 00:18:ba Cisco 00:18:bb EliwellC 00:18:bc ZaoNvpBo 00:18:bd Shenzhen 00:18:be Ansa 00:18:bf EssenceT 00:18:c0 ArrisGro 00:18:c1 AlmitecI 00:18:c2 Firetide 00:18:c3 Cs 00:18:c4 RabaTech 00:18:c5 NokiaDan 00:18:c6 OpwFuelM 00:18:c7 RealTime 00:18:c8 Isonas 00:18:c9 EopsTech 00:18:ca Viprinet 00:18:cb Tecobest 00:18:cc AxiohmSa 00:18:cd EraeElec 00:18:ce Dreamtec 00:18:cf BaldorEl 00:18:d0 AtroadAT 00:18:d1 SiemensH 00:18:d2 High-Gai 00:18:d3 Teamcast 00:18:d4 UnifiedD 00:18:d5 Reigncom 00:18:d6 Swirlnet 00:18:d7 JavadGns 00:18:d8 ArchMete 00:18:d9 Santosha 00:18:da AmberWir 00:18:db EplTechn 00:18:dc Prostar 00:18:dd Silicond 00:18:de Intel 00:18:df Morey 00:18:e0 Anaveo 00:18:e1 VerkerkS 00:18:e2 TopdataS 00:18:e3 Visualga 00:18:e4 Yiguang 00:18:e5 Adhoco 00:18:e6 Computer 00:18:e7 CameoCom 00:18:e8 Hacetron 00:18:e9 Numata 00:18:ea Alltec 00:18:eb BlueZenE 00:18:ec WeldingT 00:18:ed Accutech 00:18:ee Videolog 00:18:ef EscapeCo 00:18:f0 Joytoto 00:18:f1 Chunichi 00:18:f2 BeijingT 00:18:f3 ASUS 00:18:f4 EoTechni 00:18:f5 Shenzhen 00:18:f6 ThomsonT 00:18:f7 Kameleon 00:18:f8 Cisco 00:18:f9 Vvond 00:18:fa YushinPr 00:18:fb ComproTe 00:18:fc AltecEle 00:18:fd OptimalT 00:18:fe HP 00:18:ff Powerqua 00:19:00 Intelliv 00:19:01 F1media 00:19:02 Cambridg 00:19:03 BigfootN 00:19:04 WbElectr 00:19:05 SchrackS 00:19:06 Cisco 00:19:07 Cisco 00:19:08 Duaxes 00:19:09 Devi-Dan 00:19:0a Hasware 00:19:0b Southern 00:19:0c EncoreEl 00:19:0d IEEE1394 00:19:0e AtechTec 00:19:0f Advansus 00:19:10 KnickEle 00:19:11 JustInMo 00:19:12 Welcat 00:19:13 Chuang-Y 00:19:14 Winix 00:19:15 Tecom 00:19:16 Paytec 00:19:17 Posiflex 00:19:18 Interact 00:19:19 Astel 00:19:1a Irlink 00:19:1b SputnikE 00:19:1c Sensicas 00:19:1d Nintendo 00:19:1e Beyondwi 00:19:1f Microlin 00:19:20 KumeElec 00:19:21 Elitegro 00:19:22 CmComand 00:19:23 PhonexKo 00:19:24 LbnlEngi 00:19:25 Intelici 00:19:26 Bitsgen 00:19:27 Imcosys 00:19:28 SiemensT 00:19:29 2m2bMont 00:19:2a AntiopeA 00:19:2b AclaraRf 00:19:2c ArrisGro 00:19:2d Nokia 00:19:2e Spectral 00:19:2f Cisco 00:19:30 Cisco 00:19:31 Balluff 00:19:32 GudeAnal 00:19:33 Strix 00:19:34 TrendonT 00:19:35 DuerrDen 00:19:36 Sterlite 00:19:37 Commerce 00:19:38 UmbCommu 00:19:39 Gigamips 00:19:3a Oesoluti 00:19:3b WiliboxD 00:19:3c Highpoin 00:19:3d GmcGuard 00:19:3e AdbBroad 00:19:3f RdiTechn 00:19:40 Rackable 00:19:41 PitneyBo 00:19:42 OnSoftwa 00:19:43 Belden 00:19:44 FossilPa 00:19:45 RfConcep 00:19:46 CianetIn 00:19:47 Cisco 00:19:48 Airespid 00:19:49 TentelCo 00:19:4a Testo 00:19:4b Sagemcom 00:19:4c FujianSt 00:19:4d AvagoTec 00:19:4e UltraEle 00:19:4f NokiaDan 00:19:50 HarmanMu 00:19:51 NetconsS 00:19:52 Acogito 00:19:53 Chainlea 00:19:54 Leaf 00:19:55 Cisco 00:19:56 Cisco 00:19:57 SaafnetC 00:19:58 Bluetoot 00:19:59 Staccato 00:19:5a JenaerAn 00:19:5b D-Link 00:19:5c Innotech 00:19:5d Shenzhen 00:19:5e ArrisGro 00:19:5f Valemoun 00:19:60 Docomo 00:19:61 Blaupunk 00:19:62 Commerci 00:19:63 Sony 00:19:64 Doorking 00:19:65 YuhuaTel 00:19:66 Asiarock 00:19:67 TeldatSp 00:19:68 DigitalV 00:19:69 NortelNe 00:19:6a Mikrom 00:19:6b Danpex 00:19:6c Etrovisi 00:19:6d RaybitKo 00:19:6e MetacomP 00:19:6f Sensopar 00:19:70 Z-Com 00:19:71 Guangzho 00:19:72 PlexusXi 00:19:73 Zeugma 00:19:74 16063 00:19:75 BeijingH 00:19:76 XipherTe 00:19:77 Aerohive 00:19:78 Datum 00:19:79 NokiaDan 00:19:7a Mazet 00:19:7b Picotest 00:19:7c RiedelCo 00:19:7d HonHaiPr 00:19:7e HonHaiPr 00:19:7f Plantron 00:19:80 Gridpoin 00:19:81 Vivox 00:19:82 Smardtv 00:19:83 CctR&D 00:19:84 Estic 00:19:85 ItWatchd 00:19:86 ChengHon 00:19:87 Panasoni 00:19:88 Wi2wi 00:19:89 Sonitrol 00:19:8a Northrop 00:19:8b NoveraOp 00:19:8c Ixsea 00:19:8d OceanOpt 00:19:8e Oticon 00:19:8f AlcatelB 00:19:90 ElmData 00:19:91 Avinfo 00:19:92 Adtran 00:19:93 Changshu 00:19:94 JorjinTe 00:19:95 JurongHi 00:19:96 Turboche 00:19:97 SoftDevi 00:19:98 Sato 00:19:99 Fujitsu 00:19:9a Edo-Evi 00:19:9b Diversif 00:19:9c Ctring 00:19:9d Vizio 00:19:9e Nifty 00:19:9f Dkt 00:19:a0 NihonDat 00:19:a1 LG 00:19:a2 OrdynTec 00:19:a3 AsteelEl 00:19:a4 AustarTe 00:19:a5 Radarfin 00:19:a6 ArrisGro 00:19:a7 Itu-T 00:19:a8 WiquestC 00:19:a9 Cisco 00:19:aa Cisco 00:19:ab Raycom 00:19:ac Gsp 00:19:ad BobstSa 00:19:ae HoplingT 00:19:af RigolTec 00:19:b0 HanyangS 00:19:b1 Arrow7 00:19:b2 Xynetsof 00:19:b3 Stanford 00:19:b4 Intellio 00:19:b5 FamarFue 00:19:b6 EuroEmme 00:19:b7 NokiaDan 00:19:b8 Boundary 00:19:b9 Dell 00:19:ba ParadoxS 00:19:bb HP 00:19:bc ElectroC 00:19:bd NewMedia 00:19:be AltaiTec 00:19:bf CitiwayT 00:19:c0 ArrisGro 00:19:c1 AlpsElec 00:19:c2 Equustek 00:19:c3 Qualitro 00:19:c4 Infocryp 00:19:c5 Sony 00:19:c6 Zte 00:19:c7 Cambridg 00:19:c8 Anydata 00:19:c9 S&CElect 00:19:ca Broadata 00:19:cb ZyxelCom 00:19:cc RcgHk 00:19:cd ChengduE 00:19:ce Progress 00:19:cf SalicruS 00:19:d0 Cathexis 00:19:d1 Intel 00:19:d2 Intel 00:19:d3 TrakMicr 00:19:d4 IcxTechn 00:19:d5 IpInnova 00:19:d6 LsCableA 00:19:d7 Fortunet 00:19:d8 Maxfor 00:19:d9 Zeutsche 00:19:da Welltran 00:19:db Micro-St 00:19:dc EnensysT 00:19:dd Fei-Zyfe 00:19:de Mobitek 00:19:df Thomson 00:19:e0 TP-Link 00:19:e1 NortelNe 00:19:e2 JuniperN 00:19:e3 Apple 00:19:e4 2wire 00:19:e5 LynxStud 00:19:e6 ToyoMedi 00:19:e7 Cisco 00:19:e8 Cisco 00:19:e9 S-Inform 00:19:ea Teramage 00:19:eb Pyronix 00:19:ec Sagamore 00:19:ed Axesstel 00:19:ee CarloGav 00:19:ef Shenzhen 00:19:f0 Unionman 00:19:f1 StarComm 00:19:f2 Teradyne 00:19:f3 Cetis 00:19:f4 Converge 00:19:f5 Imaginat 00:19:f6 AcconetP 00:19:f7 OnsetCom 00:19:f8 Embedded 00:19:f9 Tdk-Lamb 00:19:fa CableVis 00:19:fb Bskyb 00:19:fc PtUfoaks 00:19:fd Nintendo 00:19:fe Shenzhen 00:19:ff Finnzyme 00:1a:00 Matrix 00:1a:01 SmithsMe 00:1a:02 SecureCa 00:1a:03 AngelEle 00:1a:04 InterayS 00:1a:05 Optibase 00:1a:06 Opvista 00:1a:07 ArecontV 00:1a:08 Simoco 00:1a:09 Wayfarer 00:1a:0a Adaptive 00:1a:0b BonaTech 00:1a:0c Swe-Dish 00:1a:0d Handheld 00:1a:0e ChengUei 00:1a:0f Sistemas 00:1a:10 LucentTr 00:1a:11 Google 00:1a:12 Essilor 00:1a:13 WanlidaG 00:1a:14 XinHuaCo 00:1a:15 GemaltoE 00:1a:16 NokiaDan 00:1a:17 TeakTech 00:1a:18 Advanced 00:1a:19 Computer 00:1a:1a GentexCo 00:1a:1b ArrisGro 00:1a:1c Gt&TEngi 00:1a:1d PchomeOn 00:1a:1e ArubaNet 00:1a:1f CoastalE 00:1a:20 Cmotech 00:1a:21 Brookhui 00:1a:22 Eq-3Entw 00:1a:23 IceQube 00:1a:24 GalaxyTe 00:1a:25 DeltaDor 00:1a:26 Deltanod 00:1a:27 Ubistar 00:1a:28 AswtTaiw 00:1a:29 JohnsonO 00:1a:2a Arcadyan 00:1a:2b AyecomTe 00:1a:2c Satec 00:1a:2d NavvoGro 00:1a:2e ZiovaCop 00:1a:2f Cisco 00:1a:30 Cisco 00:1a:31 ScanCoin 00:1a:32 ActivaMu 00:1a:33 AsiCommu 00:1a:34 KonkaGro 00:1a:35 Bartec 00:1a:36 Aipermon 00:1a:37 Lear 00:1a:38 Sanmina- 00:1a:39 MertenGm 00:1a:3a Dongahel 00:1a:3b DoahElec 00:1a:3c Technowa 00:1a:3d AjinVisi 00:1a:3e FasterTe 00:1a:3f Intelbra 00:1a:40 A-FourTe 00:1a:41 Inocova 00:1a:42 Techcity 00:1a:43 LogicalL 00:1a:44 Jwtradin 00:1a:45 GnNetcom 00:1a:46 DigitalM 00:1a:47 Agami 00:1a:48 Takacom 00:1a:49 MicroVis 00:1a:4a Qumranet 00:1a:4b HP 00:1a:4c Crossbow 00:1a:4d Giga-Byt 00:1a:4e Nti/Linm 00:1a:4f Avm 00:1a:50 PheenetT 00:1a:51 AlfredMa 00:1a:52 Meshlinx 00:1a:53 Zylaya 00:1a:54 HipShing 00:1a:55 Aca-Digi 00:1a:56 Viewtel 00:1a:57 MatrixDe 00:1a:58 CcvDeuts 00:1a:59 Ircona 00:1a:5a KoreaEle 00:1a:5b NetcareS 00:1a:5c EuchnerG 00:1a:5d Mobinnov 00:1a:5e ThincomT 00:1a:5f Kitworks 00:1a:60 WaveElec 00:1a:61 Pacstar 00:1a:62 DataRobo 00:1a:63 ElsterSo 00:1a:64 IBM 00:1a:65 Seluxit 00:1a:66 ArrisGro 00:1a:67 Infinite 00:1a:68 WeltecEn 00:1a:69 WuhanYan 00:1a:6a Tranzas 00:1a:6b Universa 00:1a:6c Cisco 00:1a:6d Cisco 00:1a:6e ImproTec 00:1a:6f MiTelSRL 00:1a:70 Cisco 00:1a:71 Diostech 00:1a:72 MosartSe 00:1a:73 GemtekTe 00:1a:74 ProcareI 00:1a:75 Sony 00:1a:76 SdtInfor 00:1a:77 ArrisGro 00:1a:78 Ubtos 00:1a:79 Telecomu 00:1a:7a LismoreI 00:1a:7b Teleco 00:1a:7c Hirschma 00:1a:7d Cyber-Bl 00:1a:7e LnSritha 00:1a:7f GciScien 00:1a:80 Sony 00:1a:81 Zelax 00:1a:82 ProbaBui 00:1a:83 PegasusT 00:1a:84 VOneMult 00:1a:85 NvMichel 00:1a:86 Advanced 00:1a:87 CanholdI 00:1a:88 Venergy 00:1a:89 NokiaDan 00:1a:8a Samsung 00:1a:8b ChunilEl 00:1a:8c Sophos 00:1a:8d AvecsBer 00:1a:8e 3wayNetw 00:1a:8f NortelNe 00:1a:90 TrópicoS 00:1a:91 Fusiondy 00:1a:92 ASUS 00:1a:93 ErcoLeuc 00:1a:94 Votronic 00:1a:95 HisenseM 00:1a:96 EclerSA 00:1a:97 Fitivisi 00:1a:98 AsotelCo 00:1a:99 SmartyHz 00:1a:9a Skyworth 00:1a:9b AdecPart 00:1a:9c Righthan 00:1a:9d SkipperW 00:1a:9e IconDigi 00:1a:9f A-Link 00:1a:a0 Dell 00:1a:a1 Cisco 00:1a:a2 Cisco 00:1a:a3 Delorme 00:1a:a4 FutureUn 00:1a:a5 BrnPhoen 00:1a:a6 Telefunk 00:1a:a7 TorianWi 00:1a:a8 MamiyaDi 00:1a:a9 FujianSt 00:1a:aa Analogic 00:1a:ab EwingsSR 00:1a:ac Corelatu 00:1a:ad ArrisGro 00:1a:ae SavantLl 00:1a:af BlusensT 00:1a:b0 SignalNe 00:1a:b1 AsiaPaci 00:1a:b2 CyberSol 00:1a:b3 Visionit 00:1a:b4 Ffei 00:1a:b5 HomeNetw 00:1a:b6 TexasIns 00:1a:b7 EthosNet 00:1a:b8 Anseri 00:1a:b9 Pmc 00:1a:ba CatonOve 00:1a:bb FontalTe 00:1a:bc U4eaTech 00:1a:bd Impatica 00:1a:be Computer 00:1a:bf TrumpfLa 00:1a:c0 JoybienT 00:1a:c1 3Com 00:1a:c2 Yec 00:1a:c3 Scientif 00:1a:c4 2wire 00:1a:c5 Breaking 00:1a:c6 MicroCon 00:1a:c7 Unipoint 00:1a:c8 IslInstr 00:1a:c9 Suzuken 00:1a:ca Tilera 00:1a:cb AutocomP 00:1a:cc Celestia 00:1a:cd TidelEng 00:1a:ce Yupiteru 00:1a:cf CTElettr 00:1a:d0 AlbisTec 00:1a:d1 Fargo 00:1a:d2 Eletroni 00:1a:d3 Vamp 00:1a:d4 IpoxTech 00:1a:d5 KmcChain 00:1a:d6 JiagnsuA 00:1a:d7 Christie 00:1a:d8 Alsterae 00:1a:d9 Internat 00:1a:da Biz-2-Me 00:1a:db ArrisGro 00:1a:dc NokiaDan 00:1a:dd Pepwave 00:1a:de ArrisGro 00:1a:df Interact 00:1a:e0 Mytholog 00:1a:e1 EdgeAcce 00:1a:e2 Cisco 00:1a:e3 Cisco 00:1a:e4 MedicisT 00:1a:e5 MvoxTech 00:1a:e6 AtlantaA 00:1a:e7 AztekNet 00:1a:e8 UnifySof 00:1a:e9 Nintendo 00:1a:ea RadioTer 00:1a:eb AlliedTe 00:1a:ec KeumbeeE 00:1a:ed Incotec 00:1a:ee Shenztec 00:1a:ef Loopcomm 00:1a:f0 Alcatel- 00:1a:f1 Embedded 00:1a:f2 Dynavisi 00:1a:f3 Samyoung 00:1a:f4 Handream 00:1a:f5 Pentaone 00:1a:f6 Woven 00:1a:f7 Datascha 00:1a:f8 CopleyCo 00:1a:f9 Aeroviro 00:1a:fa WelchAll 00:1a:fb Joby 00:1a:fc Moduslin 00:1a:fd Evolis 00:1a:fe Sofacrea 00:1a:ff Wizyoung 00:1b:00 NeopostT 00:1b:01 AppliedR 00:1b:02 Ed 00:1b:03 ActionTe 00:1b:04 Affinity 00:1b:05 Ymc 00:1b:06 Ateliers 00:1b:07 Mendocin 00:1b:08 DanfossD 00:1b:09 MatrixTe 00:1b:0a Intellig 00:1b:0b Phidgets 00:1b:0c Cisco 00:1b:0d Cisco 00:1b:0e InotecOr 00:1b:0f Petratec 00:1b:10 Shenzhen 00:1b:11 D-Link 00:1b:12 Apprion 00:1b:13 IcronTec 00:1b:14 CarexLig 00:1b:15 Voxtel 00:1b:16 Celtro 00:1b:17 PaloAlto 00:1b:18 TsukenEl 00:1b:19 IEEEI&MS 00:1b:1a E-TreesJ 00:1b:1b Siemens 00:1b:1c Coherent 00:1b:1d PhoenixI 00:1b:1e HartComm 00:1b:1f Delta-Da 00:1b:20 TpineTec 00:1b:21 Intel 00:1b:22 PalitMic 00:1b:23 Simpleco 00:1b:24 QuantaCo 00:1b:25 NortelNe 00:1b:26 Ron-Tele 00:1b:27 MerlinCs 00:1b:28 PolygonJ 00:1b:29 Avantis 00:1b:2a Cisco 00:1b:2b Cisco 00:1b:2c AtronEle 00:1b:2d Med-Eng 00:1b:2e SinkyoEl 00:1b:2f Netgear 00:1b:30 Solitech 00:1b:31 NeuralIm 00:1b:32 Qlogic 00:1b:33 NokiaDan 00:1b:34 FocusSys 00:1b:35 Chongqin 00:1b:36 TsubataE 00:1b:37 Computec 00:1b:38 CompalIn 00:1b:39 Proxicas 00:1b:3a Sims 00:1b:3b Yi-Qing 00:1b:3c Software 00:1b:3d Eurotel 00:1b:3e Curtis 00:1b:3f Procurve 00:1b:40 NetworkA 00:1b:41 GeneralI 00:1b:42 WiseBlue 00:1b:43 BeijingD 00:1b:44 Sandisk 00:1b:45 AbbAsDiv 00:1b:46 BlueoneT 00:1b:47 Futarque 00:1b:48 Shenzhen 00:1b:49 RobertsR 00:1b:4a W&WCommu 00:1b:4b Sanion 00:1b:4c Signtech 00:1b:4d ArecaTec 00:1b:4e NavmanNe 00:1b:4f Avaya 00:1b:50 NizhnyNo 00:1b:51 VectorTe 00:1b:52 ArrisGro 00:1b:53 Cisco 00:1b:54 Cisco 00:1b:55 HurcoAut 00:1b:56 TehutiNe 00:1b:57 Semindia 00:1b:58 AceCadEn 00:1b:59 Sony 00:1b:5a ApolloIm 00:1b:5b 2wire 00:1b:5c Azuretec 00:1b:5d Vololink 00:1b:5e Bpl 00:1b:5f AlienTec 00:1b:60 Navigon 00:1b:61 DigitalA 00:1b:62 JhtOptoe 00:1b:63 Apple 00:1b:64 Isaaclan 00:1b:65 ChinaGri 00:1b:66 Sennheis 00:1b:67 Cisco 00:1b:68 Modnnet 00:1b:69 Equaline 00:1b:6a Powerwav 00:1b:6b SwyxSolu 00:1b:6c LookxDig 00:1b:6d Midtroni 00:1b:6e Anue 00:1b:6f Teletrak 00:1b:70 IriUbite 00:1b:71 Telular 00:1b:72 SicepSPA 00:1b:73 DtlBroad 00:1b:74 Miralink 00:1b:75 Hypermed 00:1b:76 Ripcode 00:1b:77 Intel 00:1b:78 HP 00:1b:79 Faiveley 00:1b:7a Nintendo 00:1b:7b Tintomet 00:1b:7c ARCambri 00:1b:7d CxrAnder 00:1b:7e Beckmann 00:1b:7f TmnTechn 00:1b:80 Lord 00:1b:81 DataqIns 00:1b:82 TaiwanSe 00:1b:83 Finsoft 00:1b:84 ScanEngi 00:1b:85 ManDiese 00:1b:86 BoschAcc 00:1b:87 Deepsoun 00:1b:88 DivinetA 00:1b:89 EmzaVisu 00:1b:8a 2mElectr 00:1b:8b NecPlatf 00:1b:8c JmicronT 00:1b:8d Electron 00:1b:8e HuluSwed 00:1b:8f Cisco 00:1b:90 Cisco 00:1b:91 Efkon 00:1b:92 L-Acoust 00:1b:93 JcDecaux 00:1b:94 TEMASPA 00:1b:95 VideoSrl 00:1b:96 GeneralS 00:1b:97 ViolinTe 00:1b:98 Samsung 00:1b:99 KsSystem 00:1b:9a ApolloFi 00:1b:9b Hose-Mcc 00:1b:9c SatelSpZ 00:1b:9d NovusSec 00:1b:9e AskeyCom 00:1b:9f Calyptec 00:1b:a0 Awox 00:1b:a1 Åmic 00:1b:a2 IdsImagi 00:1b:a3 FlexitGr 00:1b:a4 SAEAfiki 00:1b:a5 Myungmin 00:1b:a6 Intotech 00:1b:a7 LoricaSo 00:1b:a8 Ubi&Mobi 00:1b:a9 BrotherI 00:1b:aa XenicsNv 00:1b:ab Telchemy 00:1b:ac CurtissW 00:1b:ad Icontrol 00:1b:ae MicroCon 00:1b:af NokiaDan 00:1b:b0 BharatEl 00:1b:b1 WistronN 00:1b:b2 Intellec 00:1b:b3 Condalo 00:1b:b4 Airvod 00:1b:b5 Cherry 00:1b:b6 BirdElec 00:1b:b7 AltaHeig 00:1b:b8 BluewayE 00:1b:b9 Elitegro 00:1b:ba NortelNe 00:1b:bb Rftech 00:1b:bc SilverPe 00:1b:bd FmcKongs 00:1b:be IcopDigi 00:1b:bf Sagemcom 00:1b:c0 JuniperN 00:1b:c1 HoluxTec 00:1b:c2 Integrat 00:1b:c3 Mobisolu 00:1b:c4 Ultratec 00:1b:c5 IEEERegi 00:1b:c6 StratoRe 00:1b:c7 Starvedi 00:1b:c8 Miura 00:1b:c9 FsnDispl 00:1b:ca BeijingR 00:1b:cb PempekPt 00:1b:cc KingtekC 00:1b:cd Daviscom 00:1b:ce Measurem 00:1b:cf Dataupia 00:1b:d0 IdentecS 00:1b:d1 Sogestma 00:1b:d2 Ultra-XA 00:1b:d3 Panasoni 00:1b:d4 Cisco 00:1b:d5 Cisco 00:1b:d6 KelvinHu 00:1b:d7 Cisco 00:1b:d8 Dvtel 00:1b:d9 Edgewate 00:1b:da Utstarco 00:1b:db ValeoVec 00:1b:dc Vencer 00:1b:dd ArrisGro 00:1b:de Renkus-H 00:1b:df IskraSis 00:1b:e0 TelenotE 00:1b:e1 Vialogy 00:1b:e2 Ahnlab 00:1b:e3 HealthHe 00:1b:e4 TownetSr 00:1b:e5 802autom 00:1b:e6 Vr 00:1b:e7 PostekEl 00:1b:e8 Ultratro 00:1b:e9 Broadcom 00:1b:ea Nintendo 00:1b:eb DmpElect 00:1b:ec NetioTec 00:1b:ed BrocadeC 00:1b:ee NokiaDan 00:1b:ef Blossoms 00:1b:f0 ValuePla 00:1b:f1 NanjingS 00:1b:f2 KworldCo 00:1b:f3 Transrad 00:1b:f4 KenwinIn 00:1b:f5 TellinkS 00:1b:f6 ConwiseT 00:1b:f7 LundIpPr 00:1b:f8 Digitrax 00:1b:f9 Intellit 00:1b:fa GINMbh 00:1b:fb AlpsElec 00:1b:fc ASUS 00:1b:fd Dignsys 00:1b:fe Zavio 00:1b:ff Millenni 00:1c:00 EntryPoi 00:1c:01 AbbOyDri 00:1c:02 PanoLogi 00:1c:03 BettyTvT 00:1c:04 Airgain 00:1c:05 NoninMed 00:1c:06 SiemensN 00:1c:07 Cwlinux 00:1c:08 Echo360 00:1c:09 SaeElect 00:1c:0a Shenzhen 00:1c:0b Smartant 00:1c:0c Tanita 00:1c:0d G-Techno 00:1c:0e Cisco 00:1c:0f Cisco 00:1c:10 Cisco 00:1c:11 ArrisGro 00:1c:12 ArrisGro 00:1c:13 OptsysTe 00:1c:14 Vmware 00:1c:15 Iphotoni 00:1c:16 Thyssenk 00:1c:17 NortelNe 00:1c:18 SicertSR 00:1c:19 SecunetS 00:1c:1a ThomasIn 00:1c:1b Hypersto 00:1c:1c CenterCo 00:1c:1d Chenzhou 00:1c:1e Emtrion 00:1c:1f QuestRet 00:1c:20 ClbBenel 00:1c:21 Nucsafe 00:1c:22 AerisEle 00:1c:23 Dell 00:1c:24 FormosaW 00:1c:25 HonHaiPr 00:1c:26 HonHaiPr 00:1c:27 SunellEl 00:1c:28 Sphairon 00:1c:29 CoreDigi 00:1c:2a Envisaco 00:1c:2b AlertmeC 00:1c:2c Synapse 00:1c:2d Flexradi 00:1c:2e HpnSuppl 00:1c:2f Pfister 00:1c:30 ModeLigh 00:1c:31 MobileXp 00:1c:32 Telian 00:1c:33 Sutron 00:1c:34 HueyChia 00:1c:35 NokiaDan 00:1c:36 InewitNv 00:1c:37 Callpod 00:1c:38 Bio-RadL 00:1c:39 SNetsyst 00:1c:3a ElementL 00:1c:3b AmroadTe 00:1c:3c SeonDesi 00:1c:3d Wavestor 00:1c:3e Eckey 00:1c:3f Internat 00:1c:40 Vdg-Secu 00:1c:41 ScemtecT 00:1c:42 Parallel 00:1c:43 Samsung 00:1c:44 BoschSec 00:1c:45 ChenbroM 00:1c:46 Qtum 00:1c:47 Hangzhou 00:1c:48 Widefi 00:1c:49 ZoltanTe 00:1c:4a Avm 00:1c:4b Gener8 00:1c:4c Petrotes 00:1c:4d AplixIpH 00:1c:4e TasaInte 00:1c:4f Macab 00:1c:50 TclTechn 00:1c:51 CelenoCo 00:1c:52 Visionee 00:1c:53 SynergyL 00:1c:54 Hillston 00:1c:55 Shenzhen 00:1c:56 Pado 00:1c:57 Cisco 00:1c:58 Cisco 00:1c:59 DevonIt 00:1c:5a Advanced 00:1c:5b ChubbEle 00:1c:5c Integrat 00:1c:5d LeicaMic 00:1c:5e AstonFra 00:1c:5f WinlandE 00:1c:60 CspFront 00:1c:61 GalaxyMi 00:1c:62 LG 00:1c:63 Truen 00:1c:64 Landis+G 00:1c:65 Joescan 00:1c:66 Ucamp 00:1c:67 PumpkinN 00:1c:68 AnhuiSun 00:1c:69 PacketVi 00:1c:6a WeissEng 00:1c:6b Covax 00:1c:6c 30805 00:1c:6d Kyohrits 00:1c:6e NewburyN 00:1c:6f Emfit 00:1c:70 Novacomm 00:1c:71 Emergent 00:1c:72 MayerCie 00:1c:73 AristaNe 00:1c:74 SyswanTe 00:1c:75 Segnet 00:1c:76 Wandswor 00:1c:77 Prodys 00:1c:78 WyplaySa 00:1c:79 Cohesive 00:1c:7a Perfecto 00:1c:7b Castlene 00:1c:7c Perq 00:1c:7d Excelpoi 00:1c:7e Toshiba 00:1c:7f CheckPoi 00:1c:80 NewBusin 00:1c:81 NextgenV 00:1c:82 GenewTec 00:1c:83 NewLevel 00:1c:84 StlSolut 00:1c:85 Eunicorn 00:1c:86 Cranite 00:1c:87 Uriver 00:1c:88 Transyst 00:1c:89 ForceCom 00:1c:8a Cirrasca 00:1c:8b MjInnova 00:1c:8c DialTech 00:1c:8d MesaImag 00:1c:8e Alcatel- 00:1c:8f Advanced 00:1c:90 Empacket 00:1c:91 Gefen 00:1c:92 Tervela 00:1c:93 Exadigm 00:1c:94 Li-CorBi 00:1c:95 Opticomm 00:1c:96 Linkwise 00:1c:97 EnzytekT 00:1c:98 LuckyTec 00:1c:99 ShunraSo 00:1c:9a NokiaDan 00:1c:9b FeigElec 00:1c:9c NortelNe 00:1c:9d Liecthi 00:1c:9e Dualtech 00:1c:9f Razorstr 00:1c:a0 Producti 00:1c:a1 AkamaiTe 00:1c:a2 AdbBroad 00:1c:a3 Terra 00:1c:a4 Sony 00:1c:a5 Zygo 00:1c:a6 Win4net 00:1c:a7 Internat 00:1c:a8 AirtiesW 00:1c:a9 Audiomat 00:1c:aa BellonPt 00:1c:ab MeyerSou 00:1c:ac QniqTech 00:1c:ad WuhanTel 00:1c:ae Wichorus 00:1c:af PlatoNet 00:1c:b0 Cisco 00:1c:b1 Cisco 00:1c:b2 Bpt 00:1c:b3 Apple 00:1c:b4 IridiumS 00:1c:b5 NeihuaNe 00:1c:b6 DuzonCnt 00:1c:b7 UscDigia 00:1c:b8 Cbc 00:1c:b9 KwangSun 00:1c:ba Verscien 00:1c:bb Musician 00:1c:bc Castgrab 00:1c:bd EzzeMobi 00:1c:be Nintendo 00:1c:bf Intel 00:1c:c0 Intel 00:1c:c1 ArrisGro 00:1c:c2 PartIiRe 00:1c:c3 ArrisGro 00:1c:c4 HP 00:1c:c5 3Com 00:1c:c6 Prostor 00:1c:c7 Rembrand 00:1c:c8 Industro 00:1c:c9 KaiseEle 00:1c:ca Shanghai 00:1c:cb ForthPub 00:1c:cc Blackber 00:1c:cd Alektron 00:1c:ce ByTechde 00:1c:cf Limetek 00:1c:d0 Circleon 00:1c:d1 WavesAud 00:1c:d2 KingCham 00:1c:d3 ZpEngine 00:1c:d4 NokiaDan 00:1c:d5 Zeevee 00:1c:d6 NokiaDan 00:1c:d7 Harman/B 00:1c:d8 BlueantW 00:1c:d9 Globalto 00:1c:da ExeginTe 00:1c:db Carpoint 00:1c:dc CustomCo 00:1c:dd CowbellE 00:1c:de Interact 00:1c:df BelkinIn 00:1c:e0 DasanTps 00:1c:e1 IndraSis 00:1c:e2 AtteroTe 00:1c:e3 Optimedi 00:1c:e4 ElesyJsc 00:1c:e5 MbsElect 00:1c:e6 Innes 00:1c:e7 RoconRes 00:1c:e8 Cummins 00:1c:e9 GalaxyTe 00:1c:ea Scientif 00:1c:eb NortelNe 00:1c:ec Mobileso 00:1c:ed Environn 00:1c:ee Sharp 00:1c:ef PrimaxEl 00:1c:f0 D-Link 00:1c:f1 SupoxTec 00:1c:f2 TenlonTe 00:1c:f3 EvsBroad 00:1c:f4 MediaTec 00:1c:f5 Wiseblue 00:1c:f6 Cisco 00:1c:f7 Audiosci 00:1c:f8 ParadeTe 00:1c:f9 Cisco 00:1c:fa AlarmCom 00:1c:fb ArrisGro 00:1c:fc Sumitomo 00:1c:fd Universa 00:1c:fe Quartics 00:1c:ff NaperaNe 00:1d:00 BrivoLlc 00:1d:01 NeptuneD 00:1d:02 Cybertec 00:1d:03 DesignSo 00:1d:04 ZipitWir 00:1d:05 Eaton 00:1d:06 HmElectr 00:1d:07 Shenzhen 00:1d:08 JiangsuY 00:1d:09 Dell 00:1d:0a DavisIns 00:1d:0b PowerSta 00:1d:0c Mobileco 00:1d:0d Sony 00:1d:0e AgaphaTe 00:1d:0f TP-Link 00:1d:10 Lighthau 00:1d:11 Analogue 00:1d:12 Rohm 00:1d:13 Nextgtv 00:1d:14 Speradto 00:1d:15 Shenzhen 00:1d:16 Sfr 00:1d:17 DigitalS 00:1d:18 PowerInn 00:1d:19 Arcadyan 00:1d:1a Ovislink 00:1d:1b SangeanE 00:1d:1c GennetSA 00:1d:1d Inter-M 00:1d:1e KyushuTe 00:1d:1f SiauliuT 00:1d:20 Comtrend 00:1d:21 AlcadSl 00:1d:22 FossAnal 00:1d:23 Sensus 00:1d:24 AclaraPo 00:1d:25 Samsung 00:1d:26 Rockridg 00:1d:27 Nac-Inte 00:1d:28 Sony 00:1d:29 Doro 00:1d:2a Shenzhen 00:1d:2b WuhanPon 00:1d:2c Wavetren 00:1d:2d Pylone 00:1d:2e RuckusWi 00:1d:2f Quantumv 00:1d:30 YxWirele 00:1d:31 HighproI 00:1d:32 LongkayC 00:1d:33 Maverick 00:1d:34 SyrisTec 00:1d:35 Viconics 00:1d:36 Electron 00:1d:37 Thales-P 00:1d:38 SeagateT 00:1d:39 Moohadig 00:1d:3a MhAcoust 00:1d:3b NokiaDan 00:1d:3c Muscle 00:1d:3d Avidyne 00:1d:3e SakaTech 00:1d:3f MitronPt 00:1d:40 Intel–Ge 00:1d:41 HardyIns 00:1d:42 NortelNe 00:1d:43 Shenzhen 00:1d:44 Krohne 00:1d:45 Cisco 00:1d:46 Cisco 00:1d:47 Covote 00:1d:48 Sensor-T 00:1d:49 Innovati 00:1d:4a Carestre 00:1d:4b GridConn 00:1d:4c Alcatel- 00:1d:4d Adaptive 00:1d:4e TcmMobil 00:1d:4f Apple 00:1d:50 Spinetix 00:1d:51 BabcockW 00:1d:52 DefzoneB 00:1d:53 S&OElect 00:1d:54 SunnicTe 00:1d:55 Zantaz 00:1d:56 KramerEl 00:1d:57 CaetecMe 00:1d:58 Cq 00:1d:59 MitraEne 00:1d:5a 2wire 00:1d:5b TecvanIn 00:1d:5c TomCommu 00:1d:5d ControlD 00:1d:5e ComingMe 00:1d:5f Overspee 00:1d:60 ASUS 00:1d:61 Bij 00:1d:62 InphaseT 00:1d:63 MieleCie 00:1d:64 AdamComm 00:1d:65 Microwav 00:1d:66 HyundaiT 00:1d:67 Amec 00:1d:68 ThomsonT 00:1d:69 Knorr-Br 00:1d:6a AlphaNet 00:1d:6b ArrisGro 00:1d:6c Clariphy 00:1d:6d Confidan 00:1d:6e NokiaDan 00:1d:6f Chainzon 00:1d:70 Cisco 00:1d:71 Cisco 00:1d:72 Wistron 00:1d:73 Buffalo 00:1d:74 TianjinC 00:1d:75 Radiosca 00:1d:76 Eyeheigh 00:1d:77 Nsgate 00:1d:78 InvengoI 00:1d:79 Signamax 00:1d:7a Wideband 00:1d:7b IceEnerg 00:1d:7c AbeElett 00:1d:7d Giga-Byt 00:1d:7e Cisco 00:1d:7f TekronIn 00:1d:80 BeijingH 00:1d:81 Guangzho 00:1d:82 GnNetcom 00:1d:83 Emitech 00:1d:84 Gateway 00:1d:85 CallDire 00:1d:86 ShinwaIn 00:1d:87 VigtechL 00:1d:88 Clearwir 00:1d:89 Vaultsto 00:1d:8a Techtrex 00:1d:8b AdbBroad 00:1d:8c LaCrosse 00:1d:8d Raytek 00:1d:8e Alereon 00:1d:8f Purewave 00:1d:90 EmcoFlow 00:1d:91 Digitize 00:1d:92 Micro-St 00:1d:93 Modacom 00:1d:94 ClimaxTe 00:1d:95 Flash 00:1d:96 Watchgua 00:1d:97 AlertusT 00:1d:98 NokiaDan 00:1d:99 CyanOpti 00:1d:9a GodexInt 00:1d:9b HokuyoAu 00:1d:9c Rockwell 00:1d:9d ArtjoyIn 00:1d:9e AxionTec 00:1d:9f MattRPTr 00:1d:a0 HengYuEl 00:1d:a1 Cisco 00:1d:a2 Cisco 00:1d:a3 Sabioso 00:1d:a4 Hangzhou 00:1d:a5 WbElectr 00:1d:a6 MediaNum 00:1d:a7 Seamless 00:1d:a8 Takahata 00:1d:a9 CastlesT 00:1d:aa Draytek 00:1d:ab Swissqua 00:1d:ac GigamonL 00:1d:ad Sinotech 00:1d:ae ChangTse 00:1d:af NortelNe 00:1d:b0 FujianHe 00:1d:b1 Crescend 00:1d:b2 Hokkaido 00:1d:b3 HpnSuppl 00:1d:b4 KumhoEng 00:1d:b5 JuniperN 00:1d:b6 Bestcomm 00:1d:b7 TendrilN 00:1d:b8 Intoto 00:1d:b9 Wellspri 00:1d:ba Sony 00:1d:bb DynamicS 00:1d:bc Nintendo 00:1d:bd Versamed 00:1d:be ArrisGro 00:1d:bf Radiient 00:1d:c0 EnphaseE 00:1d:c1 Audinate 00:1d:c2 XortecOy 00:1d:c3 RikorTv 00:1d:c4 Aioi 00:1d:c5 BeijingJ 00:1d:c6 Snr 00:1d:c7 L-3Commu 00:1d:c8 Navionic 00:1d:c9 Gainspan 00:1d:ca PavElect 00:1d:cb ExénsDev 00:1d:cc AyonCybe 00:1d:cd ArrisGro 00:1d:ce ArrisGro 00:1d:cf ArrisGro 00:1d:d0 ArrisGro 00:1d:d1 ArrisGro 00:1d:d2 ArrisGro 00:1d:d3 ArrisGro 00:1d:d4 ArrisGro 00:1d:d5 ArrisGro 00:1d:d6 ArrisGro 00:1d:d7 Algolith 00:1d:d8 Microsoft 00:1d:d9 HonHaiPr 00:1d:da Mikroele 00:1d:db C-Bel 00:1d:dc Hangzhou 00:1d:dd DatHK 00:1d:de Zhejiang 00:1d:df SunitecE 00:1d:e0 Intel 00:1d:e1 Intel 00:1d:e2 Radionor 00:1d:e3 Intuicom 00:1d:e4 Visionee 00:1d:e5 Cisco 00:1d:e6 Cisco 00:1d:e7 MarineSo 00:1d:e8 NikkoDen 00:1d:e9 NokiaDan 00:1d:ea Commtest 00:1d:eb DinecInt 00:1d:ec Marusys 00:1d:ed GridNet 00:1d:ee Nextvisi 00:1d:ef Trimm 00:1d:f0 Vidient 00:1d:f1 Intego 00:1d:f2 Netflix 00:1d:f3 SbsScien 00:1d:f4 Magellan 00:1d:f5 Sunshine 00:1d:f6 Samsung 00:1d:f7 RStahlSc 00:1d:f8 WebproVi 00:1d:f9 Cybiotro 00:1d:fa FujianLa 00:1d:fb Netcleus 00:1d:fc Ksic 00:1d:fd NokiaDan 00:1d:fe Palm 00:1d:ff NetworkC 00:1e:00 ShantouI 00:1e:01 RenesasT 00:1e:02 SougouKe 00:1e:03 Licomm 00:1e:04 HansonRe 00:1e:05 XseedTec 00:1e:06 Wibrain 00:1e:07 WinyTech 00:1e:08 CentecNe 00:1e:09 Zefatek 00:1e:0a SybaTech 00:1e:0b HP 00:1e:0c Sherwood 00:1e:0d Micran 00:1e:0e MaxiView 00:1e:0f BriotInt 00:1e:10 Huawei 00:1e:11 EleluxIn 00:1e:12 Ecolab 00:1e:13 Cisco 00:1e:14 Cisco 00:1e:15 BeechHil 00:1e:16 Keytroni 00:1e:17 StnBv 00:1e:18 RadioAct 00:1e:19 Gtri 00:1e:1a BestSour 00:1e:1b DigitalS 00:1e:1c SwsAustr 00:1e:1d EastCoas 00:1e:1e Honeywel 00:1e:1f NortelNe 00:1e:20 Intertai 00:1e:21 Qisda 00:1e:22 ArvooIma 00:1e:23 Electron 00:1e:24 Zhejiang 00:1e:25 IntekDig 00:1e:26 Digifrie 00:1e:27 SbnTech 00:1e:28 Lumexis 00:1e:29 Hyperthe 00:1e:2a Netgear 00:1e:2b RadioDes 00:1e:2c Cyverse 00:1e:2d Stim 00:1e:2e SirtiSPA 00:1e:2f DimotoPt 00:1e:30 Shireen 00:1e:31 Infomark 00:1e:32 Zensys 00:1e:33 Inventec 00:1e:34 Cryptome 00:1e:35 Nintendo 00:1e:36 Ipte 00:1e:37 Universa 00:1e:38 Bluecard 00:1e:39 ComsysCo 00:1e:3a NokiaDan 00:1e:3b NokiaDan 00:1e:3c LyngboxM 00:1e:3d AlpsElec 00:1e:3e Kmw 00:1e:3f Trellisw 00:1e:40 Shanghai 00:1e:41 Microwav 00:1e:42 Teltonik 00:1e:43 AisinAw 00:1e:44 Santec 00:1e:45 Sony 00:1e:46 ArrisGro 00:1e:47 PtHariff 00:1e:48 Wi-Links 00:1e:49 Cisco 00:1e:4a Cisco 00:1e:4b CityThea 00:1e:4c HonHaiPr 00:1e:4d WelkinSc 00:1e:4e DakoEdv- 00:1e:4f Dell 00:1e:50 Battisto 00:1e:51 Converte 00:1e:52 Apple 00:1e:53 FurtherT 00:1e:54 ToyoElec 00:1e:55 Cowon 00:1e:56 BallyWul 00:1e:57 AlcomaSp 00:1e:58 D-Link 00:1e:59 SiliconT 00:1e:5a ArrisGro 00:1e:5b Unitron 00:1e:5c RbGenera 00:1e:5d HolosysD 00:1e:5e Computim 00:1e:5f Kwikbyte 00:1e:60 DigitalL 00:1e:61 Itec 00:1e:62 Siemon 00:1e:63 Vibro-Me 00:1e:64 Intel 00:1e:65 Intel 00:1e:66 ResolEle 00:1e:67 Intel 00:1e:68 QuantaCo 00:1e:69 Thomson 00:1e:6a BeijingB 00:1e:6b Cisco 00:1e:6c Opaque 00:1e:6d ItR&DCen 00:1e:6e Shenzhen 00:1e:6f Magna-Po 00:1e:70 CobhamDe 00:1e:71 MircomGr 00:1e:72 Pcs 00:1e:73 Zte 00:1e:74 Sagemcom 00:1e:75 LG 00:1e:76 ThermoFi 00:1e:77 Air2app 00:1e:78 OwitekTe 00:1e:79 Cisco 00:1e:7a Cisco 00:1e:7b RISRL 00:1e:7c Taiwick 00:1e:7d Samsung 00:1e:7e NortelNe 00:1e:7f CbmOfAme 00:1e:80 LastMile 00:1e:81 CnbTechn 00:1e:82 Sandisk 00:1e:83 Lan/ManS 00:1e:84 PikaTech 00:1e:85 Lagotek 00:1e:86 Mel 00:1e:87 Realease 00:1e:88 AndorSys 00:1e:89 Crfs 00:1e:8a Ecopy 00:1e:8b InfraAcc 00:1e:8c ASUS 00:1e:8d ArrisGro 00:1e:8e Hunkeler 00:1e:8f Canon 00:1e:90 Elitegro 00:1e:91 KiminEle 00:1e:92 JeulinSA 00:1e:93 Ciritech 00:1e:94 Supercom 00:1e:95 Sigmalin 00:1e:96 Sepura 00:1e:97 MediumLi 00:1e:98 Greenlin 00:1e:99 Vantanol 00:1e:9a Hamilton 00:1e:9b San-Eish 00:1e:9c Fidustro 00:1e:9d RecallTe 00:1e:9e DdmHopt+ 00:1e:9f Visionee 00:1e:a0 Xln-T 00:1e:a1 Brunata 00:1e:a2 Symx 00:1e:a3 NokiaDan 00:1e:a4 NokiaDan 00:1e:a5 Robotous 00:1e:a6 BestItWo 00:1e:a7 Actionte 00:1e:a8 DatangMo 00:1e:a9 Nintendo 00:1e:aa E-SenzaT 00:1e:ab Telewell 00:1e:ac Armadeus 00:1e:ad Wingtech 00:1e:ae Continen 00:1e:af OphirOpt 00:1e:b0 ImesdEle 00:1e:b1 Cryptsof 00:1e:b2 LG 00:1e:b3 PrimexWi 00:1e:b4 UnifatTe 00:1e:b5 EverSpar 00:1e:b6 TagHeuer 00:1e:b7 Tbtech 00:1e:b8 Fortis 00:1e:b9 SingFaiT 00:1e:ba HighDens 00:1e:bb Blueligh 00:1e:bc WintechA 00:1e:bd Cisco 00:1e:be Cisco 00:1e:bf HaasAuto 00:1e:c0 Microchi 00:1e:c1 3comEuro 00:1e:c2 Apple 00:1e:c3 Kozio 00:1e:c4 Celio 00:1e:c5 MiddleAt 00:1e:c6 ObviusHo 00:1e:c7 2wire 00:1e:c8 RapidMob 00:1e:c9 Dell 00:1e:ca NortelNe 00:1e:cb RpcEnerg 00:1e:cc Cdvi 00:1e:cd KylandTe 00:1e:ce BisaTech 00:1e:cf Philips 00:1e:d0 Ingespac 00:1e:d1 Keyproce 00:1e:d2 RayShine 00:1e:d3 DotTechn 00:1e:d4 DobleEng 00:1e:d5 Tekon-Au 00:1e:d6 AlentecO 00:1e:d7 H-Stream 00:1e:d8 DigitalU 00:1e:d9 Mitsubis 00:1e:da Wesemann 00:1e:db GikenTra 00:1e:dc Sony 00:1e:dd WaskoSA 00:1e:de Byd 00:1e:df MasterIn 00:1e:e0 UrmetDom 00:1e:e1 Samsung 00:1e:e2 Samsung 00:1e:e3 T&WElect 00:1e:e4 AcsSolut 00:1e:e5 Cisco 00:1e:e6 Shenzhen 00:1e:e7 Epic 00:1e:e8 Mytek 00:1e:e9 Stonerid 00:1e:ea SensorSw 00:1e:eb Talk-A-P 00:1e:ec CompalIn 00:1e:ed Adventiq 00:1e:ee Etl 00:1e:ef Cantroni 00:1e:f0 GigafinN 00:1e:f1 Servimat 00:1e:f2 MicroMot 00:1e:f3 From2 00:1e:f4 L-3Commu 00:1e:f5 HitekAut 00:1e:f6 Cisco 00:1e:f7 Cisco 00:1e:f8 Emfinity 00:1e:f9 PascomKo 00:1e:fa Protei 00:1e:fb TrioMoti 00:1e:fc JscMassa 00:1e:fd Microbit 00:1e:fe LevelSRO 00:1e:ff Mueller- 00:1f:00 NokiaDan 00:1f:01 NokiaDan 00:1f:02 Pixelmet 00:1f:03 Num 00:1f:04 Granch 00:1f:05 ItasTech 00:1f:06 Integrat 00:1f:07 AzteqMob 00:1f:08 Risco 00:1f:09 Jastec 00:1f:0a NortelNe 00:1f:0b FederalS 00:1f:0c Intellig 00:1f:0d L3Commun 00:1f:0e JapanKya 00:1f:0f SelectEn 00:1f:10 ToledoDo 00:1f:11 Openmoko 00:1f:12 JuniperN 00:1f:13 SAS 00:1f:14 Nexg 00:1f:15 Bioscryp 00:1f:16 Wistron 00:1f:17 Idx 00:1f:18 HakusanM 00:1f:19 Ben-RiEl 00:1f:1a Prominve 00:1f:1b Royaltek 00:1f:1c KobishiE 00:1f:1d AtlasMat 00:1f:1e AstecTec 00:1f:1f EdimaxTe 00:1f:20 Logitech 00:1f:21 InnerMon 00:1f:22 SourcePh 00:1f:23 Interaco 00:1f:24 Digitvie 00:1f:25 Mbs 00:1f:26 Cisco 00:1f:27 Cisco 00:1f:28 HpnSuppl 00:1f:29 HP 00:1f:2a Accm 00:1f:2b OrangeLo 00:1f:2c Starbrid 00:1f:2d Electro- 00:1f:2e Triangle 00:1f:2f Berker 00:1f:30 Travelpi 00:1f:31 Radiocom 00:1f:32 Nintendo 00:1f:33 Netgear 00:1f:34 LungHwaE 00:1f:35 Air802Ll 00:1f:36 BellwinI 00:1f:37 GenesisI 00:1f:38 Positron 00:1f:39 Construc 00:1f:3a HonHaiPr 00:1f:3b Intel 00:1f:3c Intel 00:1f:3d Qbit 00:1f:3e Rp-Techn 00:1f:3f Avm 00:1f:40 Speakerc 00:1f:41 RuckusWi 00:1f:42 Ethersta 00:1f:43 EntesEle 00:1f:44 GeTransp 00:1f:45 Enterasy 00:1f:46 NortelNe 00:1f:47 McsLogic 00:1f:48 Mojix 00:1f:49 Manhatta 00:1f:4a Albentia 00:1f:4b LineageP 00:1f:4c RosemanE 00:1f:4d Segnetic 00:1f:4e ConmedLi 00:1f:4f Thinkwar 00:1f:50 Swissdis 00:1f:51 HdCommun 00:1f:52 UvtUnter 00:1f:53 GemacGes 00:1f:54 LorexTec 00:1f:55 Honeywel 00:1f:56 DigitalF 00:1f:57 PhonikIn 00:1f:58 EmhEnerg 00:1f:59 Kronback 00:1f:5a Beckwith 00:1f:5b Apple 00:1f:5c NokiaDan 00:1f:5d NokiaDan 00:1f:5e DynaTech 00:1f:5f Blatand 00:1f:60 Compass 00:1f:61 TalentCo 00:1f:62 JscStils 00:1f:63 JscGoodw 00:1f:64 BeijingA 00:1f:65 KoreaEle 00:1f:66 PlanarLl 00:1f:67 Hitachi 00:1f:68 Martinss 00:1f:69 PingoodT 00:1f:6a Packetfl 00:1f:6b LG 00:1f:6c Cisco 00:1f:6d Cisco 00:1f:6e VtechEng 00:1f:6f FujianSu 00:1f:70 BotikTec 00:1f:71 XgTechno 00:1f:72 QingdaoH 00:1f:73 Teraview 00:1f:74 EigenDev 00:1f:75 GibahnMe 00:1f:76 Airlogic 00:1f:77 HeolDesi 00:1f:78 BlueFoxP 00:1f:79 LodamEle 00:1f:7a Wiwide 00:1f:7b Technexi 00:1f:7c Witelcom 00:1f:7d Embedded 00:1f:7e ArrisGro 00:1f:7f Phabrix 00:1f:80 LucasBv 00:1f:81 AccelSem 00:1f:82 Cal-Comp 00:1f:83 Teleplan 00:1f:84 GigleSem 00:1f:85 AprivaIs 00:1f:86 Digecor 00:1f:87 Skydigit 00:1f:88 FmsForce 00:1f:89 Signalio 00:1f:8a EllionDi 00:1f:8b CacheIq 00:1f:8c Ccs 00:1f:8d Ingenieu 00:1f:8e MetrisUs 00:1f:8f Shanghai 00:1f:90 Actionte 00:1f:91 DbsLodgi 00:1f:92 Videoiq 00:1f:93 Xiotech 00:1f:94 LascarEl 00:1f:95 Sagemcom 00:1f:96 Aprotech 00:1f:97 BertanaS 00:1f:98 Daiichi- 00:1f:99 Seronics 00:1f:9a NortelNe 00:1f:9b Posbro 00:1f:9c Ledco 00:1f:9d Cisco 00:1f:9e Cisco 00:1f:9f ThomsonT 00:1f:a0 A10Netwo 00:1f:a1 Gtran 00:1f:a2 DatronWo 00:1f:a3 T&WElect 00:1f:a4 Shenzhen 00:1f:a5 Blue-Whi 00:1f:a6 StiloSrl 00:1f:a7 Sony 00:1f:a8 SmartEne 00:1f:a9 AtlantaD 00:1f:aa Taseon 00:1f:ab ISHighTe 00:1f:ac Goodmill 00:1f:ad BrownInn 00:1f:ae BlickSou 00:1f:af Nextio 00:1f:b0 Timeips 00:1f:b1 Cybertec 00:1f:b2 Sontheim 00:1f:b3 2wire 00:1f:b4 Smartsha 00:1f:b5 I/OInter 00:1f:b6 ChiLinTe 00:1f:b7 WimateTe 00:1f:b8 Universa 00:1f:b9 Paltroni 00:1f:ba BoyoungT 00:1f:bb Xenatech 00:1f:bc Evga 00:1f:bd KyoceraW 00:1f:be Shenzhen 00:1f:bf FulhuaMi 00:1f:c0 ControlE 00:1f:c1 HanlongT 00:1f:c2 JowTongT 00:1f:c3 Smartsyn 00:1f:c4 ArrisGro 00:1f:c5 Nintendo 00:1f:c6 ASUS 00:1f:c7 CasioHit 00:1f:c8 Up-Today 00:1f:c9 Cisco 00:1f:ca Cisco 00:1f:cb NiwSolut 00:1f:cc Samsung 00:1f:cd Samsung 00:1f:ce QtechLlc 00:1f:cf MsiTechn 00:1f:d0 Giga-Byt 00:1f:d1 Optex 00:1f:d2 Commtech 00:1f:d3 RivaNetw 00:1f:d4 4ipnet 00:1f:d5 Microris 00:1f:d6 Shenzhen 00:1f:d7 TeleradS 00:1f:d8 A-TrustC 00:1f:d9 RsdCommu 00:1f:da NortelNe 00:1f:db NetworkS 00:1f:dc MobileSa 00:1f:dd GdiLlc 00:1f:de NokiaDan 00:1f:df NokiaDan 00:1f:e0 Edgevelo 00:1f:e1 HonHaiPr 00:1f:e2 HonHaiPr 00:1f:e3 LG 00:1f:e4 Sony 00:1f:e5 In-Circu 00:1f:e6 Alphion 00:1f:e7 Simet 00:1f:e8 Kurusuga 00:1f:e9 Printrex 00:1f:ea AppliedM 00:1f:eb TrioData 00:1f:ec SynapseÉ 00:1f:ed Tecan 00:1f:ee UbisysTe 00:1f:ef ShinseiI 00:1f:f0 AudioPar 00:1f:f1 ParadoxH 00:1f:f2 ViaTechn 00:1f:f3 Apple 00:1f:f4 PowerMon 00:1f:f5 Kongsber 00:1f:f6 PsAudioI 00:1f:f7 Nakajima 00:1f:f8 SiemensS 00:1f:f9 Advanced 00:1f:fa Coretree 00:1f:fb GreenPac 00:1f:fc Riccius+ 00:1f:fd IndigoMo 00:1f:fe HpnSuppl 00:1f:ff Respiron 00:20:00 LexmarkP 00:20:01 DspSolut 00:20:02 Seritech 00:20:03 PixelPow 00:20:04 Yamatake 00:20:05 Simplete 00:20:06 GarrettC 00:20:07 Sfa 00:20:08 CableCom 00:20:09 PackardB 00:20:0a Source-C 00:20:0b Octagon 00:20:0c Adastra 00:20:0d CarlZeis 00:20:0e Satellit 00:20:0f Ebrains 00:20:10 JeolSyst 00:20:11 Canopus 00:20:12 Camtroni 00:20:13 Diversif 00:20:14 GlobalVi 00:20:15 ActisCom 00:20:16 ShowaEle 00:20:17 Orbotech 00:20:18 Realtek 00:20:19 Ohler 00:20:1a Nbase 00:20:1b Northern 00:20:1c Excel 00:20:1d KatanaPr 00:20:1e Netquest 00:20:1f BestPowe 00:20:20 Megatron 00:20:21 Algorith 00:20:22 NmsCommu 00:20:23 TCTechno 00:20:24 PacificC 00:20:25 ControlT 00:20:26 Amkly 00:20:27 MingFort 00:20:28 Bloomber 00:20:29 Teleproc 00:20:2a NVDzine 00:20:2b AtmlAdva 00:20:2c Welltron 00:20:2d Taiyo 00:20:2e DaystarD 00:20:2f ZetaComm 00:20:30 AnalogDi 00:20:31 TattileS 00:20:32 AlcatelT 00:20:33 SynapseT 00:20:34 RotecInd 00:20:35 IBM 00:20:36 BmcSoftw 00:20:37 SeagateT 00:20:38 VmeMicro 00:20:39 Scinets 00:20:3a DigitalB 00:20:3b Wisdm 00:20:3c Eurotime 00:20:3d Honeywel 00:20:3e LogicanT 00:20:3f Juki 00:20:40 ArrisGro 00:20:41 DataNet 00:20:42 Datametr 00:20:43 Neuron 00:20:44 Genitech 00:20:45 Solcom 00:20:46 Ciprico 00:20:47 Steinbre 00:20:48 Fore 00:20:49 Comtron 00:20:4a Pronet 00:20:4b Autocomp 00:20:4c MitronCo 00:20:4d Inovis 00:20:4e NetworkS 00:20:4f Deutsche 00:20:50 KoreaCom 00:20:51 Verilink 00:20:52 Ragula 00:20:53 Huntsvil 00:20:54 Sycamore 00:20:55 Altech 00:20:56 Neoprodu 00:20:57 TitzeDat 00:20:58 AlliedSi 00:20:59 MiroComp 00:20:5a Computer 00:20:5b KentroxL 00:20:5c Internet 00:20:5d Nanomati 00:20:5e CastleRo 00:20:5f Gammadat 00:20:60 AlcatelI 00:20:61 Dynatech 00:20:62 Scorpion 00:20:63 WiproInf 00:20:64 ProtecMi 00:20:65 Supernet 00:20:66 GeneralM 00:20:67 NodeRunn 00:20:68 Isdyne 00:20:69 Isdn 00:20:6a OsakaCom 00:20:6b MinoltaL 00:20:6c Evergree 00:20:6d DataRace 00:20:6e Xact 00:20:6f Flowpoin 00:20:70 Hynet 00:20:71 Ibr 00:20:72 Worklink 00:20:73 Fusion 00:20:74 Sungwoon 00:20:75 Motorola 00:20:76 Reudo 00:20:77 Kardios 00:20:78 Runtop 00:20:79 Mikron 00:20:7a WiseComm 00:20:7b Intel 00:20:7c Autec 00:20:7d Advanced 00:20:7e Finecom 00:20:7f KyoeiSan 00:20:80 SynergyU 00:20:81 TitanEle 00:20:82 Oneac 00:20:83 Prestico 00:20:84 OcePrint 00:20:85 3Com 00:20:86 Microtec 00:20:87 Memotec 00:20:88 GlobalVi 00:20:89 T3plusNe 00:20:8a SonixCom 00:20:8b FocusEnh 00:20:8c GalaxyNe 00:20:8d CmdTechn 00:20:8e ChevinSo 00:20:8f EciTelec 00:20:90 Advanced 00:20:91 J125Nati 00:20:92 ChessEng 00:20:93 Landings 00:20:94 Cubix 00:20:95 RivaElec 00:20:96 Invensys 00:20:97 AppliedS 00:20:98 Hectroni 00:20:99 BonElect 00:20:9a 3do 00:20:9b ErsatEle 00:20:9c PrimaryA 00:20:9d LippertA 00:20:9e BrownSOp 00:20:9f MercuryC 00:20:a0 OaLabora 00:20:a1 Dovatron 00:20:a2 GalcomNe 00:20:a3 Harmonic 00:20:a4 Multipoi 00:20:a5 NewerTec 00:20:a6 Proxim 00:20:a7 Pairgain 00:20:a8 SastTech 00:20:a9 WhiteHor 00:20:aa Ericsson 00:20:ab MicroInd 00:20:ac Interfle 00:20:ad Linq 00:20:ae OrnetDat 00:20:af 3Com 00:20:b0 GatewayD 00:20:b1 ComtechR 00:20:b2 CspPrint 00:20:b3 TattileS 00:20:b4 TermaEle 00:20:b5 YaskawaE 00:20:b6 AgileNet 00:20:b7 NamaquaC 00:20:b8 PrimeOpt 00:20:b9 Metricom 00:20:ba CenterFo 00:20:bb Zax 00:20:bc LongReac 00:20:bd Niobrara 00:20:be LanAcces 00:20:bf AehrTest 00:20:c0 PulseEle 00:20:c1 Saxa 00:20:c2 TexasMem 00:20:c3 CounterS 00:20:c4 Inet 00:20:c5 EagleNe2 00:20:c6 Nectec 00:20:c7 AkaiProf 00:20:c8 Larscom 00:20:c9 VictronB 00:20:ca DigitalO 00:20:cb PretecEl 00:20:cc DigitalS 00:20:cd HybridNe 00:20:ce LogicalD 00:20:cf TestMeas 00:20:d0 Versalyn 00:20:d1 Microcom 00:20:d2 RadDataC 00:20:d3 OstOuetS 00:20:d4 Cabletro 00:20:d5 Vipa 00:20:d6 Breezeco 00:20:d7 JapanMin 00:20:d8 Netwave 00:20:d9 Panasoni 00:20:da Xylan 00:20:db XnetTech 00:20:dc Densitro 00:20:dd Cybertec 00:20:de JapanDig 00:20:df KyosanEl 00:20:e0 PremaxPe 00:20:e1 AlamarEl 00:20:e2 Informat 00:20:e3 McdKenco 00:20:e4 HsingTec 00:20:e5 ApexData 00:20:e6 Lidkopin 00:20:e7 B&WNucle 00:20:e8 Datatrek 00:20:e9 Dantel 00:20:ea Efficien 00:20:eb Cincinna 00:20:ec Techware 00:20:ed Giga-Byt 00:20:ee Gtech 00:20:ef Usc 00:20:f0 Universa 00:20:f1 AltosInd 00:20:f2 Oracle 00:20:f3 Raynet 00:20:f4 Spectrix 00:20:f5 Pandatel 00:20:f6 NetTekKa 00:20:f7 Cyberdat 00:20:f8 CarreraC 00:20:f9 Paralink 00:20:fa Gde 00:20:fb OctelCom 00:20:fc Matrox 00:20:fd ItvTechn 00:20:fe Topware/ 00:20:ff Symmetri 00:21:00 GemtekTe 00:21:01 Aplicaci 00:21:02 Updatelo 00:21:03 GhiElect 00:21:04 GigasetC 00:21:05 Alcatel- 00:21:06 RimTesti 00:21:07 Seowonin 00:21:08 NokiaDan 00:21:09 NokiaDan 00:21:0a Byd:Sign 00:21:0b GeminiTr 00:21:0c Cymtec 00:21:0d SamsinIn 00:21:0e OrpakLTD 00:21:0f Cernium 00:21:10 Clearbox 00:21:11 Uniphone 00:21:12 WiscomSy 00:21:13 Padtec 00:21:14 HylabTec 00:21:15 PhyweSys 00:21:16 Transcon 00:21:17 Tellord 00:21:18 AthenaTe 00:21:19 Samsung 00:21:1a Lintech 00:21:1b Cisco 00:21:1c Cisco 00:21:1d Dataline 00:21:1e ArrisGro 00:21:1f Shinsung 00:21:20 SequelTe 00:21:21 Vrmagic 00:21:22 Chip-Pro 00:21:23 AerosatA 00:21:24 Optos 00:21:25 KukJeTon 00:21:26 Shenzhen 00:21:27 TP-Link 00:21:28 Oracle 00:21:29 Cisco 00:21:2a Audiovox 00:21:2b MsaAuer 00:21:2c Semindia 00:21:2d Scimolex 00:21:2e Dresden- 00:21:2f PhoebeMi 00:21:30 KeicoHig 00:21:31 Blynke 00:21:32 Mastercl 00:21:33 Building 00:21:34 Brandywi 00:21:35 Alcatel- 00:21:36 ArrisGro 00:21:37 BayContr 00:21:38 Cepheid 00:21:39 Escherlo 00:21:3a Winchest 00:21:3b Berkshir 00:21:3c Aliphcom 00:21:3d Cermetek 00:21:3e Tomtom 00:21:3f A-TeamTe 00:21:40 EnTechno 00:21:41 Radlive 00:21:42 Advanced 00:21:43 ArrisGro 00:21:44 SsTeleco 00:21:45 Semptian 00:21:46 Sanmina- 00:21:47 Nintendo 00:21:48 KacoSola 00:21:49 ChinaDah 00:21:4a PixelVel 00:21:4b Shenzhen 00:21:4c Samsung 00:21:4d Guangzho 00:21:4e GsYuasaP 00:21:4f AlpsElec 00:21:50 EyeviewE 00:21:51 Millinet 00:21:52 GeneralS 00:21:53 Seamicro 00:21:54 D-TacqSo 00:21:55 Cisco 00:21:56 Cisco 00:21:57 National 00:21:58 StyleFly 00:21:59 JuniperN 00:21:5a HP 00:21:5b Senseany 00:21:5c Intel 00:21:5d Intel 00:21:5e IBM 00:21:5f Ihse 00:21:60 HideaSol 00:21:61 Yournet 00:21:62 NortelNe 00:21:63 AskeyCom 00:21:64 SpecialD 00:21:65 Presstek 00:21:66 Novatel 00:21:67 HwaJinT& 00:21:68 IveiaLlc 00:21:69 Prologix 00:21:6a Intel 00:21:6b Intel 00:21:6c Odva 00:21:6d Soltech 00:21:6e Function 00:21:6f Symcom 00:21:70 Dell 00:21:71 WesungTn 00:21:72 Seoultek 00:21:73 IonTorre 00:21:74 AvalanWi 00:21:75 PacificS 00:21:76 YmaxTele 00:21:77 WLGoreAs 00:21:78 Matusche 00:21:79 Iogear 00:21:7a SejinEle 00:21:7b Bastec 00:21:7c 2wire 00:21:7d PyxisSRL 00:21:7e TelitCom 00:21:7f IntracoT 00:21:80 ArrisGro 00:21:81 Si2Micro 00:21:82 Sandlink 00:21:83 AndritzH 00:21:84 Powersof 00:21:85 Micro-St 00:21:86 Universa 00:21:87 Imacs 00:21:88 Emc 00:21:89 Apptech 00:21:8a Electron 00:21:8b WesconTe 00:21:8c Topcontr 00:21:8d ApRouter 00:21:8e Mekics 00:21:8f Avantgar 00:21:90 GoliathS 00:21:91 D-Link 00:21:92 BaodingG 00:21:93 Videofon 00:21:94 PingComm 00:21:95 GwdMedia 00:21:96 TelseySP 00:21:97 Elitegro 00:21:98 ThaiRadi 00:21:99 Vacon 00:21:9a Cambridg 00:21:9b Dell 00:21:9c Honeywld 00:21:9d AdesysBv 00:21:9e Sony 00:21:9f SatelOy 00:21:a0 Cisco 00:21:a1 Cisco 00:21:a2 Eke-Elec 00:21:a3 Micromin 00:21:a4 DbiiNetw 00:21:a5 Erlphase 00:21:a6 Videotec 00:21:a7 HantleSy 00:21:a8 Telephon 00:21:a9 Mobilink 00:21:aa NokiaDan 00:21:ab NokiaDan 00:21:ac Infrared 00:21:ad NordicId 00:21:ae Alcatel- 00:21:af RadioFre 00:21:b0 TycoTele 00:21:b1 DigitalS 00:21:b2 Fiberbla 00:21:b3 RossCont 00:21:b4 AproMedi 00:21:b5 Galvanic 00:21:b6 TriactaP 00:21:b7 LexmarkI 00:21:b8 Inphi 00:21:b9 Universa 00:21:ba TexasIns 00:21:bb RikenKei 00:21:bc ZalaComp 00:21:bd Nintendo 00:21:be Cisco 00:21:bf HitachiH 00:21:c0 MobileAp 00:21:c1 AbbOy/Me 00:21:c2 GlCommun 00:21:c3 CornellC 00:21:c4 Consiliu 00:21:c5 3dsp 00:21:c6 CsjGloba 00:21:c7 Russound 00:21:c8 LohuisNe 00:21:c9 WavecomA 00:21:ca ArtSyste 00:21:cb SmsTecno 00:21:cc Flextron 00:21:cd Livetv 00:21:ce Ntc-Metr 00:21:cf CryptoGr 00:21:d0 GlobalDi 00:21:d1 Samsung 00:21:d2 Samsung 00:21:d3 BocomSec 00:21:d4 VollmerW 00:21:d5 X2e 00:21:d6 LxiConso 00:21:d7 Cisco 00:21:d8 Cisco 00:21:d9 Sekonic 00:21:da Automati 00:21:db Santachi 00:21:dc Tecnoala 00:21:dd Northsta 00:21:de FireproW 00:21:df MartinCh 00:21:e0 Commagil 00:21:e1 NortelNe 00:21:e2 VisagoCo 00:21:e3 Serialte 00:21:e4 I-Win 00:21:e5 DisplayS 00:21:e6 Starligh 00:21:e7 Informat 00:21:e8 MurataMa 00:21:e9 Apple 00:21:ea Bystroni 00:21:eb EspLlc 00:21:ec Solutron 00:21:ed Telegesi 00:21:ee FullSpec 00:21:ef Kapsys 00:21:f0 Ew3Techn 00:21:f1 TutusDat 00:21:f2 Easy3cal 00:21:f3 Si14 00:21:f4 Inrange 00:21:f5 WesternE 00:21:f6 Oracle 00:21:f7 HpnSuppl 00:21:f8 Enseo 00:21:f9 WirecomT 00:21:fa A4spTech 00:21:fb LG 00:21:fc NokiaDan 00:21:fd LacroixT 00:21:fe NokiaDan 00:21:ff CyfrowyP 00:22:00 IBM 00:22:01 AksysNet 00:22:02 ExcitoEl 00:22:03 Glensoun 00:22:04 Koratek 00:22:05 WelinkSo 00:22:06 Cyberdyn 00:22:07 IntenoBr 00:22:08 Certicom 00:22:09 OmronHea 00:22:0a Onlive 00:22:0b National 00:22:0c Cisco 00:22:0d Cisco 00:22:0e IndigoSe 00:22:0f MocaMult 00:22:10 ArrisGro 00:22:11 Rohati 00:22:12 CaiNetwo 00:22:13 Pci 00:22:14 RinnaiKo 00:22:15 ASUS 00:22:16 Shibaura 00:22:17 NeatElec 00:22:18 Verivue 00:22:19 Dell 00:22:1a AudioPre 00:22:1b Morega 00:22:1c Private 00:22:1d Freegene 00:22:1e MediaDev 00:22:1f EsangTec 00:22:20 MitacTec 00:22:21 ItohDenk 00:22:22 Schaffne 00:22:23 Timekeep 00:22:24 GoodWill 00:22:25 ThalesAv 00:22:26 Avaak 00:22:27 Uv-Elect 00:22:28 BreezeIn 00:22:29 Compumed 00:22:2a Soundear 00:22:2b Nucomm 00:22:2c Ceton 00:22:2d SmcNetwo 00:22:2e Maintech 00:22:2f OpenGrid 00:22:30 Futurelo 00:22:31 Smt&C 00:22:32 DesignDe 00:22:33 AdbBroad 00:22:34 Corventi 00:22:35 Strukton 00:22:36 VectorSp 00:22:37 Shinhint 00:22:38 Logiplus 00:22:39 IndianaL 00:22:3a Cisco 00:22:3b Communic 00:22:3c RatioEnt 00:22:3d JumpgenL 00:22:3e Irtrans 00:22:3f Netgear 00:22:40 Universa 00:22:41 Apple 00:22:42 Alacron 00:22:43 AzureWave 00:22:44 ChengduL 00:22:45 LeineLin 00:22:46 EvocInte 00:22:47 DacEngin 00:22:48 Microsoft 00:22:49 HomeMult 00:22:4a Raylase 00:22:4b AirtechT 00:22:4c Nintendo 00:22:4d MitacInt 00:22:4e Seenergy 00:22:4f ByzoroNe 00:22:50 PointSix 00:22:51 Lumasens 00:22:52 ZollLife 00:22:53 Entorian 00:22:54 BigelowA 00:22:55 Cisco 00:22:56 Cisco 00:22:57 3comEuro 00:22:58 TaiyoYud 00:22:59 Guangzho 00:22:5a GardeSec 00:22:5b Teradici 00:22:5c Multimed 00:22:5d Digicabl 00:22:5e UwinTech 00:22:5f LiteonTe 00:22:60 Afreey 00:22:61 Frontier 00:22:62 BepMarin 00:22:63 KoosTech 00:22:64 HP 00:22:65 NokiaDan 00:22:66 NokiaDan 00:22:67 NortelNe 00:22:68 HonHaiPr 00:22:69 HonHaiPr 00:22:6a Honeywel 00:22:6b Cisco 00:22:6c Linkspri 00:22:6d Shenzhen 00:22:6e GowellEl 00:22:6f 3onedata 00:22:70 AbkNorth 00:22:71 JägerCom 00:22:72 American 00:22:73 Techway 00:22:74 Familyph 00:22:75 BelkinIn 00:22:76 TripleEy 00:22:77 NecAustr 00:22:78 Shenzhen 00:22:79 NipponCo 00:22:7a TelecomD 00:22:7b ApogeeLa 00:22:7c WooriSmt 00:22:7d YeData 00:22:7e Chengdu3 00:22:7f RuckusWi 00:22:80 A2bElect 00:22:81 Daintree 00:22:82 8086Cons 00:22:83 JuniperN 00:22:84 DesayA&V 00:22:85 NomusCom 00:22:86 Astron 00:22:87 TitanWir 00:22:88 Sagrad 00:22:89 Optosecu 00:22:8a Teratron 00:22:8b Kensingt 00:22:8c PhotonEu 00:22:8d GbsLabor 00:22:8e Tv-Numer 00:22:8f Cnrs 00:22:90 Cisco 00:22:91 Cisco 00:22:92 Cinetal 00:22:93 Zte 00:22:94 Kyocera 00:22:95 SgmTechn 00:22:96 Linowave 00:22:97 XmosSemi 00:22:98 Sony 00:22:99 Seamicro 00:22:9a Lastar 00:22:9b Averlogi 00:22:9c VerismoN 00:22:9d Pyung-Hw 00:22:9e SocialAi 00:22:9f SensysTr 00:22:a0 Delphi 00:22:a1 HuaweiSy 00:22:a2 XtramusT 00:22:a3 Californ 00:22:a4 2wire 00:22:a5 TexasIns 00:22:a6 Sony 00:22:a7 TycoElec 00:22:a8 OumanOy 00:22:a9 LG 00:22:aa Nintendo 00:22:ab Shenzhen 00:22:ac Hangzhou 00:22:ad TelesisT 00:22:ae Mattel 00:22:af SafetyVi 00:22:b0 D-Link 00:22:b1 Elbit 00:22:b2 4rfCommu 00:22:b3 SeiSPA 00:22:b4 ArrisGro 00:22:b5 Novita 00:22:b6 Superflo 00:22:b7 GssGrund 00:22:b8 Norcott 00:22:b9 Analogix 00:22:ba HuthElek 00:22:bb Beyerdyn 00:22:bc JdsuFran 00:22:bd Cisco 00:22:be Cisco 00:22:bf SieampGr 00:22:c0 Shenzhen 00:22:c1 ActiveSt 00:22:c2 ProviewE 00:22:c3 ZeeportT 00:22:c4 Epro 00:22:c5 Inforson 00:22:c6 Sutus 00:22:c7 SeggerMi 00:22:c8 AppliedI 00:22:c9 LenordBa 00:22:ca AnvizBio 00:22:cb Ionodes 00:22:cc Scilog 00:22:cd AredTech 00:22:ce Cisco 00:22:cf PlanexCo 00:22:d0 PolarEle 00:22:d1 Albrecht 00:22:d2 AllEarth 00:22:d3 Hub-Tech 00:22:d4 Comworth 00:22:d5 EatonEle 00:22:d6 Cypak 00:22:d7 Nintendo 00:22:d8 Shenzhen 00:22:d9 FortexIn 00:22:da AnatekLl 00:22:db Translog 00:22:dc VigilHea 00:22:dd Protecta 00:22:de OppoDigi 00:22:df TamuzMon 00:22:e0 Atlantic 00:22:e1 ZortLabs 00:22:e2 WabtecTr 00:22:e3 Amerigon 00:22:e4 ApassTec 00:22:e5 Fisher-R 00:22:e6 Intellig 00:22:e7 WpsParki 00:22:e8 Applitio 00:22:e9 Provisio 00:22:ea Rustelco 00:22:eb DataResp 00:22:ec IdealbtT 00:22:ed TsiPower 00:22:ee AlgoComm 00:22:ef IwdlTech 00:22:f0 3GreensA 00:22:f1 Private 00:22:f2 Sunpower 00:22:f3 Sharp 00:22:f4 AmpakTec 00:22:f5 Advanced 00:22:f6 Syracuse 00:22:f7 Conceptr 00:22:f8 PimaElec 00:22:f9 PollinEl 00:22:fa Intel 00:22:fb Intel 00:22:fc NokiaDan 00:22:fd NokiaDan 00:22:fe Advanced 00:22:ff NivisLlc 00:23:00 CayeeCom 00:23:01 WitronTe 00:23:02 CobaltDi 00:23:03 Lite-OnI 00:23:04 Cisco 00:23:05 Cisco 00:23:06 AlpsElec 00:23:07 FutureIn 00:23:08 Arcadyan 00:23:09 JanamTec 00:23:0a Arburg 00:23:0b ArrisGro 00:23:0c CloverEl 00:23:0d NortelNe 00:23:0e Gorba 00:23:0f HirschEl 00:23:10 LncTechn 00:23:11 Gloscom 00:23:12 Apple 00:23:13 QoolTech 00:23:14 Intel 00:23:15 Intel 00:23:16 KisanEle 00:23:17 Lasercra 00:23:18 Toshiba 00:23:19 SieloxLl 00:23:1a Itf 00:23:1b DanaherM 00:23:1c Fourier 00:23:1d Deltacom 00:23:1e CezzerMu 00:23:1f GuangdaE 00:23:20 NiciraNe 00:23:21 AvitechI 00:23:22 KissTekn 00:23:23 ZylinAs 00:23:24 G-ProCom 00:23:25 Iolan 00:23:26 Fujitsu 00:23:27 ShouyoEl 00:23:28 AlconTel 00:23:29 Ddrdrive 00:23:2a EonasIt- 00:23:2b Ird 00:23:2c Senticar 00:23:2d Sandforc 00:23:2e KedahEle 00:23:2f Advanced 00:23:30 Dizipia 00:23:31 Nintendo 00:23:32 Apple 00:23:33 Cisco 00:23:34 Cisco 00:23:35 Linkflex 00:23:36 MetelSRO 00:23:37 GlobalSt 00:23:38 Oj-Elect 00:23:39 Samsung 00:23:3a Samsung 00:23:3b C-Matic 00:23:3c Alflex 00:23:3d NoveroBV 00:23:3e Alcatel- 00:23:3f Purechoi 00:23:40 Mixtelem 00:23:41 Vanderbi 00:23:42 CoffeeEq 00:23:43 Tem 00:23:44 Objectiv 00:23:45 Sony 00:23:46 Vestac 00:23:47 Procurve 00:23:48 Sagemcom 00:23:49 Helmholt 00:23:4a Private 00:23:4b InyuanTe 00:23:4c Ktc 00:23:4d HonHaiPr 00:23:4e HonHaiPr 00:23:4f Luminous 00:23:50 Lyntec 00:23:51 2wire 00:23:52 Datasens 00:23:53 FETElett 00:23:54 ASUS 00:23:55 KincoAut 00:23:56 PacketFo 00:23:57 Pitronot 00:23:58 SystelSa 00:23:59 Benchmar 00:23:5a CompalIn 00:23:5b Gulfstre 00:23:5c Aprius 00:23:5d Cisco 00:23:5e Cisco 00:23:5f SiliconM 00:23:60 LookitTe 00:23:61 Unigen 00:23:62 Goldline 00:23:63 ZhuhaiRa 00:23:64 PowerIns 00:23:65 InstaEle 00:23:66 BeijingS 00:23:67 Unicontr 00:23:68 ZebraTec 00:23:69 Cisco 00:23:6a Smartrg 00:23:6b Xembedde 00:23:6c Apple 00:23:6d Resmed 00:23:6e Burster 00:23:6f DaqSyste 00:23:70 Snell 00:23:71 SoamSyst 00:23:72 MoreStar 00:23:73 Gridiron 00:23:74 ArrisGro 00:23:75 ArrisGro 00:23:76 HTC 00:23:77 IsotekEl 00:23:78 GnNetcom 00:23:79 UnionBus 00:23:7a Rim 00:23:7b WhdiLlc 00:23:7c Neotion 00:23:7d HP 00:23:7e Elster 00:23:7f Plantron 00:23:80 Nanoteq 00:23:81 LengdaTe 00:23:82 LihRongE 00:23:83 Inmage 00:23:84 GghEngin 00:23:85 Antipode 00:23:86 TourAnde 00:23:87 Thinkflo 00:23:88 VTTelema 00:23:89 Hangzhou 00:23:8a Ciena 00:23:8b QuantaCo 00:23:8c Private 00:23:8d TechnoDe 00:23:8e AdbBroad 00:23:8f NidecCop 00:23:90 Algolwar 00:23:91 Maxian 00:23:92 ProteusI 00:23:93 Ajinexte 00:23:94 Samjeon 00:23:95 ArrisGro 00:23:96 AndesTec 00:23:97 WestellT 00:23:98 VutlanSr 00:23:99 Samsung 00:23:9a Easydata 00:23:9b ElsterSo 00:23:9c JuniperN 00:23:9d MapowerE 00:23:9e JiangsuL 00:23:9f Institut 00:23:a0 HanaCns 00:23:a1 TrendEle 00:23:a2 ArrisGro 00:23:a3 ArrisGro 00:23:a4 NewConce 00:23:a5 SagetvLl 00:23:a6 E-Mon 00:23:a7 RedpineS 00:23:a8 Marshall 00:23:a9 BeijingD 00:23:aa Hfr 00:23:ab Cisco 00:23:ac Cisco 00:23:ad Xmark 00:23:ae Dell 00:23:af ArrisGro 00:23:b0 ComxionT 00:23:b1 Longchee 00:23:b2 Intellig 00:23:b3 Lyyn 00:23:b4 NokiaDan 00:23:b5 Ortana 00:23:b6 Securite 00:23:b7 Q-Light 00:23:b8 SichuanJ 00:23:b9 AirbusDe 00:23:ba Chroma 00:23:bb SchmittI 00:23:bc Eq-Sys 00:23:bd DigitalA 00:23:be Cisco 00:23:bf Mainpine 00:23:c0 Broadway 00:23:c1 Securita 00:23:c2 Samsung 00:23:c3 Logmein 00:23:c4 LuxLumen 00:23:c5 Radiatio 00:23:c6 Smc 00:23:c7 Avsystem 00:23:c8 Team-R 00:23:c9 SichuanT 00:23:ca BehindSe 00:23:cb Shenzhen 00:23:cc Nintendo 00:23:cd TP-Link 00:23:ce KitaDens 00:23:cf Cummins- 00:23:d0 UnilocUs 00:23:d1 Trg 00:23:d2 InhandEl 00:23:d3 AirlinkW 00:23:d4 TexasIns 00:23:d5 WaremaEl 00:23:d6 Samsung 00:23:d7 Samsung 00:23:d8 Ball-ItO 00:23:d9 BannerEn 00:23:da Industri 00:23:db Saxnet 00:23:dc Benein 00:23:dd ElginSA 00:23:de Ansync 00:23:df Apple 00:23:e0 InoThera 00:23:e1 CavenaIm 00:23:e2 SeaSigna 00:23:e3 Microtro 00:23:e4 Ipnect 00:23:e5 IpaxiomN 00:23:e6 Pirkus 00:23:e7 Hinke 00:23:e8 Demco 00:23:e9 F5Networ 00:23:ea Cisco 00:23:eb Cisco 00:23:ec Algorith 00:23:ed ArrisGro 00:23:ee ArrisGro 00:23:ef ZuendSys 00:23:f0 Shanghai 00:23:f1 Sony 00:23:f2 Tvlogic 00:23:f3 Glocom 00:23:f4 Masterna 00:23:f5 WiloSe 00:23:f6 Softwell 00:23:f7 Private 00:23:f8 ZyxelCom 00:23:f9 Double-T 00:23:fa RgNets 00:23:fb IpDatate 00:23:fc UltraSte 00:23:fd AftAtlas 00:23:fe Biodevic 00:23:ff BeijingH 00:24:00 NortelNe 00:24:01 D-Link 00:24:02 Op-Tecti 00:24:03 NokiaDan 00:24:04 NokiaDan 00:24:05 DilogNor 00:24:06 Pointmob 00:24:07 TelemSas 00:24:08 PacificB 00:24:09 Toro 00:24:0a UsBevera 00:24:0b VirtualC 00:24:0c Delec 00:24:0d OnepathN 00:24:0e Inventec 00:24:0f IshiiToo 00:24:10 NueteqTe 00:24:11 Pharmasm 00:24:12 BenignTe 00:24:13 Cisco 00:24:14 Cisco 00:24:15 Magnetic 00:24:16 AnyUse 00:24:17 ThomsonT 00:24:18 Nextwave 00:24:19 Private 00:24:1a RedBeetl 00:24:1b IwowComm 00:24:1c FugangEl 00:24:1d Giga-Byt 00:24:1e Nintendo 00:24:1f Dct-Delt 00:24:20 Netup 00:24:21 Micro-St 00:24:22 KnappLog 00:24:23 AzureWave 00:24:24 AxisNetw 00:24:25 Shenzhen 00:24:26 NohmiBos 00:24:27 SsiCompu 00:24:28 Energyic 00:24:29 MkMaster 00:24:2a HittiteM 00:24:2b HonHaiPr 00:24:2c HonHaiPr 00:24:2e Datastri 00:24:2f Micron 00:24:30 RubyTech 00:24:31 Uni-V 00:24:32 NeostarT 00:24:33 AlpsElec 00:24:34 Lectroso 00:24:35 Wide 00:24:36 Apple 00:24:37 Motorola 00:24:38 BrocadeC 00:24:39 DigitalB 00:24:3a LudlElec 00:24:3b CssiSPte 00:24:3c SAAA 00:24:3d EmersonA 00:24:3f Storwize 00:24:40 HaloMoni 00:24:41 WanzlMet 00:24:42 Axona 00:24:43 NortelNe 00:24:44 Nintendo 00:24:45 Adtran 00:24:46 MmbResea 00:24:47 Kaztek 00:24:48 Spidercl 00:24:49 ShenZhen 00:24:4a VoyantIn 00:24:4b Perceptr 00:24:4c Solartro 00:24:4d Hokkaido 00:24:4e Radchips 00:24:4f Asantron 00:24:50 Cisco 00:24:51 Cisco 00:24:52 SiliconS 00:24:53 InitraDO 00:24:54 Samsung 00:24:55 MulogicB 00:24:56 2wire 00:24:58 PaBastio 00:24:59 AbbAutom 00:24:5a NanjingP 00:24:5b RaidonTe 00:24:5c Design-C 00:24:5d TerbergB 00:24:5e Hivision 00:24:5f VineTele 00:24:60 GiavalSc 00:24:61 ShinWang 00:24:62 Rayzone 00:24:63 Phybridg 00:24:64 BridgeTe 00:24:65 Elentec 00:24:66 UnitronN 00:24:67 AocInter 00:24:68 Sumavisi 00:24:69 SmartDoo 00:24:6a SolidYea 00:24:6b Covia 00:24:6c ArubaNet 00:24:6d Weinzier 00:24:6e PhihongU 00:24:6f OndaComm 00:24:70 Aurotech 00:24:71 FusionMu 00:24:72 Redriven 00:24:73 3comEuro 00:24:74 Autronic 00:24:75 CompassS 00:24:76 TapTv 00:24:77 TibboTec 00:24:78 MagTechE 00:24:79 OptecDis 00:24:7a FuYiChen 00:24:7b Actionte 00:24:7c NokiaDan 00:24:7d NokiaDan 00:24:7e Universa 00:24:7f NortelNe 00:24:80 Meteocon 00:24:81 HP 00:24:82 RuckusWi 00:24:83 LG 00:24:84 BangAndO 00:24:85 Contextr 00:24:86 Designar 00:24:87 Blackboa 00:24:88 CentreFo 00:24:89 Vodafone 00:24:8a KagaElec 00:24:8b Hybus 00:24:8c ASUS 00:24:8d Sony 00:24:8e Infoware 00:24:8f Do-Monix 00:24:90 Samsung 00:24:91 Samsung 00:24:92 Motorola 00:24:93 ArrisGro 00:24:94 Shenzhen 00:24:95 ArrisGro 00:24:96 Ginzinge 00:24:97 Cisco 00:24:98 Cisco 00:24:99 AquilaTe 00:24:9a BeijingZ 00:24:9b ActionSt 00:24:9c BimengCo 00:24:9d NesTechn 00:24:9e Adc-Elek 00:24:9f RimTesti 00:24:a0 ArrisGro 00:24:a1 ArrisGro 00:24:a2 HongKong 00:24:a3 SonimTec 00:24:a4 SikluCom 00:24:a5 Buffalo 00:24:a6 Telestar 00:24:a7 Advanced 00:24:a8 Procurve 00:24:a9 LeaderTe 00:24:aa DycorTec 00:24:ab A7Engine 00:24:ac Hangzhou 00:24:ad AdolfThi 00:24:ae Morpho 00:24:af Echostar 00:24:b0 Esab 00:24:b1 CoulombT 00:24:b2 Netgear 00:24:b3 Graf-Syt 00:24:b4 Escatron 00:24:b5 NortelNe 00:24:b6 SeagateT 00:24:b7 Gridpoin 00:24:b8 FreeAlli 00:24:b9 WuhanHig 00:24:ba TexasIns 00:24:bb Central 00:24:bc Hurob 00:24:bd HainzlIn 00:24:be Sony 00:24:bf Ciat 00:24:c0 NtiComod 00:24:c1 ArrisGro 00:24:c2 Asumo 00:24:c3 Cisco 00:24:c4 Cisco 00:24:c5 Meridian 00:24:c6 HagerEle 00:24:c7 Mobilarm 00:24:c8 Broadban 00:24:c9 Broadban 00:24:ca TobiiTec 00:24:cb AutonetM 00:24:cc Fascinat 00:24:cd WillowGa 00:24:ce Exeltech 00:24:cf InscapeD 00:24:d0 Shenzhen 00:24:d1 Thomson 00:24:d2 AskeyCom 00:24:d3 Qualica 00:24:d4 FreeboxS 00:24:d5 WinwardI 00:24:d6 Intel 00:24:d7 Intel 00:24:d8 IlsungPr 00:24:d9 Bicom 00:24:da Innovar 00:24:db AlcoholM 00:24:dc JuniperN 00:24:dd Centrak 00:24:de GlobalTe 00:24:df Digitalb 00:24:e0 DsTechLl 00:24:e1 ConveyCo 00:24:e2 Hasegawa 00:24:e3 CaoGroup 00:24:e4 Withings 00:24:e5 SeerTech 00:24:e6 InMotion 00:24:e7 PlasterN 00:24:e8 Dell 00:24:e9 Samsung 00:24:ea Iris-Gmb 00:24:eb Clearpat 00:24:ec UnitedIn 00:24:ed YtElec 00:24:ee Wynmax 00:24:ef Sony 00:24:f0 Seanodes 00:24:f1 Shenzhen 00:24:f2 Uniphone 00:24:f3 Nintendo 00:24:f4 Kaminari 00:24:f5 NdsSurgi 00:24:f6 MiyoshiE 00:24:f7 Cisco 00:24:f8 Technica 00:24:f9 Cisco 00:24:fa HilgerUK 00:24:fb Private 00:24:fc Quopin 00:24:fd Accedian 00:24:fe Avm 00:24:ff Qlogic 00:25:00 Apple 00:25:01 JscSuper 00:25:02 Naturalp 00:25:03 IBM 00:25:04 ValiantC 00:25:05 EksEngel 00:25:06 AIAntita 00:25:07 Astak 00:25:08 MaquetCa 00:25:09 Sharetro 00:25:0a Security 00:25:0b Centrofa 00:25:0c Enertrac 00:25:0d GztTelko 00:25:0e GtGerman 00:25:0f On-RampW 00:25:10 Pico-Tes 00:25:11 Elitegro 00:25:12 Zte 00:25:13 CxpDigit 00:25:14 PcWorthI 00:25:15 Sfr 00:25:16 Integrat 00:25:17 VenntisL 00:25:18 PowerPlu 00:25:19 Viaas 00:25:1a PsiberDa 00:25:1b Philips 00:25:1c Edt 00:25:1d DsaEncor 00:25:1e RotelTec 00:25:1f ZynusVis 00:25:20 SmaRailw 00:25:21 LogitekE 00:25:22 AsrockIn 00:25:23 Ocp 00:25:24 Lightcom 00:25:25 CteraNet 00:25:26 GenuineT 00:25:27 Bitrode 00:25:28 DaidoSig 00:25:29 ComelitG 00:25:2a ChengduG 00:25:2b Stirling 00:25:2c Entourag 00:25:2d KiryungE 00:25:2e Cisco 00:25:2f Energy 00:25:30 Aetas 00:25:31 CloudEng 00:25:32 DigitalR 00:25:33 Wittenst 00:25:35 Minimax 00:25:36 OkiElect 00:25:37 RuncomTe 00:25:38 Samsung 00:25:39 Ifta 00:25:3a Ceva 00:25:3b DinDietm 00:25:3c 2wire 00:25:3d DrsConso 00:25:3e SensusMe 00:25:40 QuasarTe 00:25:41 MaquetCr 00:25:42 Pittasof 00:25:43 Moneytec 00:25:44 Lojack 00:25:45 Cisco 00:25:46 Cisco 00:25:47 NokiaDan 00:25:48 NokiaDan 00:25:49 JeorichT 00:25:4a Ringcube 00:25:4b Apple 00:25:4c VideonCe 00:25:4d Singapor 00:25:4e VertexWi 00:25:4f Elettrol 00:25:50 Riverbed 00:25:51 Se-Elekt 00:25:52 Vxi 00:25:53 AdbBroad 00:25:54 Pixel8Ne 00:25:55 VisonicT 00:25:56 HonHaiPr 00:25:57 Blackber 00:25:58 Mpedia 00:25:59 SyphanTe 00:25:5a Tantalus 00:25:5b Coachcom 00:25:5c Nec 00:25:5d Mornings 00:25:5e Shanghai 00:25:5f Sentec 00:25:60 IbridgeN 00:25:61 Procurve 00:25:62 Interbro 00:25:63 Luxtera 00:25:64 Dell 00:25:65 Vizimax 00:25:66 Samsung 00:25:67 Samsung 00:25:68 Huawei 00:25:69 Sagemcom 00:25:6a Init-Ins 00:25:6b AtenixEE 00:25:6c AzimutPr 00:25:6d Broadban 00:25:6e VanBreda 00:25:6f Dantherm 00:25:70 EasternC 00:25:71 Zhejiang 00:25:72 Nemo-QIn 00:25:73 StElectr 00:25:74 KunimiMe 00:25:75 Fiberple 00:25:76 NeliTech 00:25:77 D-BoxTec 00:25:78 JscConce 00:25:79 JFLabs 00:25:7a CamcoPro 00:25:7b StjElect 00:25:7c Huachent 00:25:7d Pointred 00:25:7e NewPosTe 00:25:7f Calltech 00:25:80 Equipson 00:25:81 X-StarNe 00:25:82 MaksatTe 00:25:83 Cisco 00:25:84 Cisco 00:25:85 KokuyoS& 00:25:86 TP-Link 00:25:87 Vitality 00:25:88 GenieInd 00:25:89 HillsInd 00:25:8a Pole/Zer 00:25:8b Mellanox 00:25:8c EsusElek 00:25:8d Haier 00:25:8e WeatherC 00:25:8f TridentM 00:25:90 SuperMic 00:25:91 Nextek 00:25:92 Guangzho 00:25:93 DatnetIn 00:25:94 Eurodesi 00:25:95 Northwes 00:25:96 Gigavisi 00:25:97 KalkiCom 00:25:98 ZhongSha 00:25:99 HedonEDB 00:25:9a Cestroni 00:25:9b BeijingP 00:25:9c Cisco 00:25:9d Private 00:25:9e Huawei 00:25:9f Technodi 00:25:a0 Nintendo 00:25:a1 Enalasys 00:25:a2 AltaDefi 00:25:a3 TrimaxWi 00:25:a4 Eurodesi 00:25:a5 WalnutMe 00:25:a6 CentralN 00:25:a7 Comverge 00:25:a8 KontronB 00:25:a9 Shanghai 00:25:aa BeijingS 00:25:ab AioLcdPc 00:25:ac I-Tech 00:25:ad Manufact 00:25:ae Microsoft 00:25:af ComfileT 00:25:b0 Schmartz 00:25:b1 Maya-Cre 00:25:b2 MbdaDeut 00:25:b3 HP 00:25:b4 Cisco 00:25:b5 Cisco 00:25:b6 TelecomF 00:25:b7 CostarEl 00:25:b8 AgileCom 00:25:b9 CypressS 00:25:ba Alcatel- 00:25:bb Innerint 00:25:bc Apple 00:25:bd Italdata 00:25:be Tektrap 00:25:bf Wireless 00:25:c0 Zilliont 00:25:c1 NawooKor 00:25:c2 Ringbell 00:25:c3 21168 00:25:c4 RuckusWi 00:25:c5 StarLink 00:25:c6 Kasercor 00:25:c7 Altek 00:25:c8 S-Access 00:25:c9 Shenzhen 00:25:ca LsResear 00:25:cb ReinerSc 00:25:cc MobileCo 00:25:cd SkylaneO 00:25:ce Innerspa 00:25:cf NokiaDan 00:25:d0 NokiaDan 00:25:d1 EasternA 00:25:d2 Inpegvis 00:25:d3 AzureWave 00:25:d4 GeneralD 00:25:d5 Robonica 00:25:d6 Kroger 00:25:d7 Cedo 00:25:d8 KoreaMai 00:25:d9 Datafab 00:25:da SecuraKe 00:25:db AtiElect 00:25:dc Sumitomo 00:25:dd Sunnytek 00:25:de Probits 00:25:df Private 00:25:e0 CeedtecS 00:25:e1 Shanghai 00:25:e2 Everspri 00:25:e3 Hanshini 00:25:e4 Omni-Wif 00:25:e5 LG 00:25:e6 BelgianM 00:25:e7 Sony 00:25:e8 IdahoTec 00:25:e9 I-MateDe 00:25:ea IphionBv 00:25:eb ReutechR 00:25:ec Humanwar 00:25:ed NuvoTech 00:25:ee Avtex 00:25:ef I-Tec 00:25:f0 SugaElec 00:25:f1 ArrisGro 00:25:f2 ArrisGro 00:25:f3 Nordwest 00:25:f4 KocoConn 00:25:f5 DvsKorea 00:25:f6 NettalkC 00:25:f7 AnsaldoS 00:25:f9 GmkElect 00:25:fa J&MAnaly 00:25:fb Tunstall 00:25:fc EndaEndu 00:25:fd ObrCentr 00:25:fe PilotEle 00:25:ff CrenovaM 00:26:00 TeacAust 00:26:01 Cutera 00:26:02 SmartTem 00:26:03 Shenzhen 00:26:04 AudioPro 00:26:05 Cc 00:26:06 Raumfeld 00:26:07 Enabling 00:26:08 Apple 00:26:09 Phyllis 00:26:0a Cisco 00:26:0b Cisco 00:26:0c Dataram 00:26:0d Mercury 00:26:0e AblazeLl 00:26:0f LinnProd 00:26:10 Apacewav 00:26:11 Licera 00:26:12 SpaceExp 00:26:13 EngelAxi 00:26:14 Ktnf 00:26:15 Teracom 00:26:16 Rosemoun 00:26:17 OemWorld 00:26:18 ASUS 00:26:19 Frc 00:26:1a Femtocom 00:26:1b LaurelBa 00:26:1c Neovia 00:26:1d CopSecur 00:26:1e Qingbang 00:26:1f SaeMagne 00:26:20 Isgus 00:26:21 Intelicl 00:26:22 CompalIn 00:26:23 JrdCommu 00:26:24 Thomson 00:26:25 Mediaspu 00:26:26 Geophysi 00:26:27 Truesell 00:26:28 Companyt 00:26:29 JuphoonS 00:26:2a Proxense 00:26:2b WongsEle 00:26:2c IktAdvan 00:26:2d Wistron 00:26:2e ChengduJ 00:26:2f Hamamats 00:26:30 AcorelSA 00:26:31 Commtact 00:26:32 Instrume 00:26:33 Mir-Medi 00:26:34 Infineta 00:26:35 Bluetech 00:26:36 ArrisGro 00:26:37 Samsung 00:26:38 XiaMenJo 00:26:39 TMElectr 00:26:3a Digitec 00:26:3b Onbnetec 00:26:3c Bachmann 00:26:3d Mia 00:26:3e TrapezeN 00:26:3f LiosTech 00:26:40 BaustemB 00:26:41 ArrisGro 00:26:42 ArrisGro 00:26:43 AlpsElec 00:26:44 ThomsonT 00:26:45 Circontr 00:26:46 Shenyang 00:26:47 WfeTechn 00:26:48 Emitech 00:26:4a Apple 00:26:4c Shanghai 00:26:4d Arcadyan 00:26:4e RailRoad 00:26:4f Krüger&G 00:26:50 2wire 00:26:51 Cisco 00:26:52 Cisco 00:26:53 Dayseque 00:26:54 3Com 00:26:55 HP 00:26:56 Sansonic 00:26:57 OooNppEk 00:26:58 T-Platfo 00:26:59 Nintendo 00:26:5a D-Link 00:26:5b HitronTe 00:26:5c HonHaiPr 00:26:5d Samsung 00:26:5e HonHaiPr 00:26:5f Samsung 00:26:60 Logiways 00:26:61 Irumtek 00:26:62 Actionte 00:26:63 Shenzhen 00:26:64 CoreSyst 00:26:65 Protecte 00:26:66 EfmNetwo 00:26:67 Carecom 00:26:68 NokiaDan 00:26:69 NokiaDan 00:26:6a Essensiu 00:26:6b ShineUni 00:26:6c Inventec 00:26:6d Mobileac 00:26:6e Nissho-D 00:26:6f Coordiwi 00:26:70 CinchCon 00:26:71 Autovisi 00:26:72 AampOfAm 00:26:73 Ricoh 00:26:74 Electron 00:26:75 AztechEl 00:26:76 CommidtA 00:26:77 Deif 00:26:78 LogicIns 00:26:79 Euphonic 00:26:7a WuhanHon 00:26:7b GsiHelmh 00:26:7c Metz-Wer 00:26:7d A-MaxTec 00:26:7e ParrotSa 00:26:7f Zenterio 00:26:80 Sil3Pty 00:26:81 Interspi 00:26:82 GemtekTe 00:26:83 AjohoEnt 00:26:84 KisanSys 00:26:85 DigitalI 00:26:86 Quantenn 00:26:87 CoregaKK 00:26:88 JuniperN 00:26:89 GeneralD 00:26:8a TerrierS 00:26:8b Guangzho 00:26:8c Starleaf 00:26:8d CelltelS 00:26:8e AltaSolu 00:26:8f Mta 00:26:90 IDoIt 00:26:91 Sagemcom 00:26:92 Mitsubis 00:26:93 QvidiumT 00:26:94 Senscien 00:26:95 ZtGroupI 00:26:96 Noolix 00:26:97 AlphaTec 00:26:98 Cisco 00:26:99 Cisco 00:26:9a CarinaSy 00:26:9b Sokrat 00:26:9c ItusJapa 00:26:9d M2mnet 00:26:9e QuantaCo 00:26:9f Private 00:26:a0 Moblic 00:26:a1 Megger 00:26:a2 Instrume 00:26:a3 FqIngeni 00:26:a4 NovusPro 00:26:a5 Microrob 00:26:a6 Trixell 00:26:a7 ConnectS 00:26:a8 DaehapHy 00:26:a9 StrongTe 00:26:aa KenmecMe 00:26:ab SeikoEps 00:26:ac Shanghai 00:26:ad Arada 00:26:ae Wireless 00:26:af Duelco 00:26:b0 Apple 00:26:b1 NavisAut 00:26:b2 Setrix 00:26:b3 ThalesCo 00:26:b4 FordMoto 00:26:b5 IcommTel 00:26:b6 AskeyCom 00:26:b7 Kingston 00:26:b8 Actionte 00:26:b9 Dell 00:26:ba ArrisGro 00:26:bb Apple 00:26:bc GeneralJ 00:26:bd JtecCard 00:26:be Schoonde 00:26:bf Shenzhen 00:26:c0 Energyhu 00:26:c1 Artray 00:26:c2 Scdi 00:26:c3 Insighte 00:26:c4 CadmosMi 00:26:c5 Guangdon 00:26:c6 Intel 00:26:c7 Intel 00:26:c8 SystemSe 00:26:c9 Proventi 00:26:ca Cisco 00:26:cb Cisco 00:26:cc NokiaDan 00:26:cd Purpleco 00:26:ce KozumiUs 00:26:cf DekaR&D 00:26:d0 Semihalf 00:26:d1 SSquared 00:26:d2 Pcube 00:26:d3 ZenoInfo 00:26:d4 Irca 00:26:d5 OrySoluc 00:26:d6 NingboAn 00:26:d7 KmElecto 00:26:d8 MagicPoi 00:26:d9 ArrisGro 00:26:da Universa 00:26:db IonicsEm 00:26:dc OpticalD 00:26:dd FivalSci 00:26:de FdiMatel 00:26:df TaidocTe 00:26:e0 Asiteq 00:26:e1 Stanford 00:26:e2 LG 00:26:e3 Dti 00:26:e4 Canal+ 00:26:e5 AegPower 00:26:e6 Visionhi 00:26:e7 Shanghai 00:26:e8 MurataMa 00:26:e9 Sp 00:26:ea Cheerchi 00:26:eb Advanced 00:26:ec LegrandH 00:26:ed Zte 00:26:ee Tkm 00:26:ef Technolo 00:26:f0 CtrixsIn 00:26:f1 Procurve 00:26:f2 Netgear 00:26:f3 SmcNetwo 00:26:f4 Nesslab 00:26:f5 Xrplus 00:26:f6 Military 00:26:f7 NivettiP 00:26:f8 GoldenHi 00:26:f9 SEMSrl 00:26:fa Bandrich 00:26:fb AirdioWi 00:26:fc AcsipTec 00:26:fd Interact 00:26:fe MkdTechn 00:26:ff Blackber 00:27:00 Shenzhen 00:27:01 Incostar 00:27:02 Solaredg 00:27:03 TestechE 00:27:04 Accelera 00:27:05 Sectroni 00:27:06 Yoisys 00:27:07 LiftComp 00:27:08 NordiagA 00:27:09 Nintendo 00:27:0a IeeSA 00:27:0b AduraTec 00:27:0c Cisco 00:27:0d Cisco 00:27:0e Intel 00:27:0f Envision 00:27:10 Intel 00:27:11 Lanpro 00:27:12 Maxvisio 00:27:13 Universa 00:27:14 Grainmus 00:27:15 ReboundT 00:27:16 Adachi-S 00:27:17 CeDigita 00:27:18 SuzhouNe 00:27:19 TP-Link 00:27:1a GeenovoT 00:27:1b AlecSich 00:27:1c Mercury 00:27:1d CombaTel 00:27:1e XagylCom 00:27:1f MiproEle 00:27:20 New-SolC 00:27:21 Shenzhen 00:27:22 Ubiquiti 00:27:e3 Cisco 00:27:f8 BrocadeC 00:28:f8 Intel 00:29:26 AppliedO 00:2a:10 Cisco 00:2a:6a Cisco 00:2a:af Larsys-A 00:2c:c8 Cisco 00:2d:76 Titech 00:30:00 AllwellT 00:30:01 Smp 00:30:02 ExpandNe 00:30:03 Phasys 00:30:04 LeadtekR 00:30:05 Fujitsu 00:30:06 Superpow 00:30:07 Opti 00:30:08 AvioDigi 00:30:09 TachionN 00:30:0a AztechEl 00:30:0b MphaseTe 00:30:0c Congruen 00:30:0d MmcTechn 00:30:0e KlotzDig 00:30:0f Imt-Info 00:30:10 Visionet 00:30:11 HmsIndus 00:30:12 DigitalE 00:30:13 Nec 00:30:14 Divio 00:30:15 CpClare 00:30:16 Ishida 00:30:17 BluearcU 00:30:18 JetwayIn 00:30:19 Cisco 00:30:1a Smartbri 00:30:1b Shuttle 00:30:1c Altvater 00:30:1d Skystrea 00:30:1e 3comEuro 00:30:1f OpticalN 00:30:20 Tsi 00:30:21 HsingTec 00:30:22 FongKaiI 00:30:23 CogentCo 00:30:24 Cisco 00:30:25 Checkout 00:30:26 HeitelDi 00:30:27 Kerbango 00:30:28 FaseSald 00:30:29 Opicom 00:30:2a Southern 00:30:2b InalpNet 00:30:2c Sylantro 00:30:2d QuantumB 00:30:2e HoftWess 00:30:2f GeAviati 00:30:30 Harmonix 00:30:31 Lightwav 00:30:32 Magicram 00:30:33 OrientTe 00:30:34 SetEngin 00:30:35 Corning 00:30:36 RmpElekt 00:30:37 PackardB 00:30:38 Xcp 00:30:39 Softbook 00:30:3a Maatel 00:30:3b Powercom 00:30:3c Onnto 00:30:3d Iva 00:30:3e Radcom 00:30:3f Turbocom 00:30:40 Cisco 00:30:41 SaejinTM 00:30:42 Detewe-D 00:30:43 IdreamTe 00:30:44 Cradlepo 00:30:45 VillageN 00:30:46 Controll 00:30:47 NisseiEl 00:30:48 SuperMic 00:30:49 BryantTe 00:30:4a Fraunhof 00:30:4b Orbacom 00:30:4c AppianCo 00:30:4d Esi 00:30:4e BustecPr 00:30:4f PlanetTe 00:30:50 VersaTec 00:30:51 OrbitAvi 00:30:52 ElasticN 00:30:53 Basler 00:30:54 Castlene 00:30:55 RenesasT 00:30:56 BeckIpc 00:30:57 Qtelnet 00:30:58 ApiMotio 00:30:59 KontronC 00:30:5a Telgen 00:30:5b Toko 00:30:5c SmarLabo 00:30:5d Digitra 00:30:5e AbelkoIn 00:30:5f Hasselbl 00:30:60 Powerfil 00:30:61 Mobytel 00:30:62 IpVideoN 00:30:63 Santera 00:30:64 AdlinkTe 00:30:65 Apple 00:30:66 Rfm 00:30:67 BiostarM 00:30:68 Cybernet 00:30:69 ImpacctT 00:30:6a PentaMed 00:30:6b Cmos 00:30:6c Hitex 00:30:6d LucentTe 00:30:6e HP 00:30:6f SeyeonTe 00:30:70 1net 00:30:71 Cisco 00:30:72 Intellib 00:30:73 Internat 00:30:74 Equiinet 00:30:75 Adtech 00:30:76 Akamba 00:30:77 OnpremNe 00:30:78 Cisco 00:30:79 Cqos 00:30:7a Advanced 00:30:7b Cisco 00:30:7c AdidSa 00:30:7d GreAmeri 00:30:7e RedflexC 00:30:7f Irlan 00:30:80 Cisco 00:30:81 AltosC&C 00:30:82 TaihanEl 00:30:83 Ivron 00:30:84 AlliedTe 00:30:85 Cisco 00:30:86 Transist 00:30:87 VegaGrie 00:30:88 Ericsson 00:30:89 Spectrap 00:30:8a NicotraS 00:30:8b BrixNetw 00:30:8c Quantum 00:30:8d Pinnacle 00:30:8e CrossMat 00:30:8f Micrilor 00:30:90 CyraTech 00:30:91 TaiwanFi 00:30:92 Modunorm 00:30:93 SonnetTe 00:30:94 Cisco 00:30:95 ProcompI 00:30:96 Cisco 00:30:97 Regin 00:30:98 GlobalCo 00:30:99 BoenigUn 00:30:9a AstroTer 00:30:9b Smartwar 00:30:9c TimingAp 00:30:9d NimbleMi 00:30:9e Workbit 00:30:9f AmberNet 00:30:a0 TycoSubm 00:30:a1 Webgate 00:30:a2 Lightner 00:30:a3 Cisco 00:30:a4 Woodwind 00:30:a5 ActivePo 00:30:a6 VianetTe 00:30:a7 Schweitz 00:30:a8 OlECommu 00:30:a9 Netivers 00:30:aa AxusMicr 00:30:ab DeltaNet 00:30:ac SystemeL 00:30:ad Shanghai 00:30:ae TimesNSy 00:30:af Honeywel 00:30:b0 Converge 00:30:b1 Trunknet 00:30:b2 L-3Sonom 00:30:b3 SanValle 00:30:b4 Intersil 00:30:b5 TadiranM 00:30:b6 Cisco 00:30:b7 Teletrol 00:30:b8 Riverdel 00:30:b9 Ectel 00:30:ba Ac&TSyst 00:30:bb Cacheflo 00:30:bc Optronic 00:30:bd BelkinCo 00:30:be City-Net 00:30:bf Multidat 00:30:c0 LaraTech 00:30:c1 HP 00:30:c2 Comone 00:30:c3 Flueckig 00:30:c4 CanonIma 00:30:c5 CadenceD 00:30:c6 ControlS 00:30:c7 Macromat 00:30:c8 GadLine 00:30:c9 LuxnN 00:30:ca Discover 00:30:cb OmniFlow 00:30:cc TenorNet 00:30:cd Conexant 00:30:ce Zaffire 00:30:cf TwoTechn 00:30:d0 Tellabs 00:30:d1 Inova 00:30:d2 WinTechn 00:30:d3 AgilentT 00:30:d4 Aae 00:30:d5 Dresearc 00:30:d6 MscVertr 00:30:d7 Innovati 00:30:d8 Sitek 00:30:d9 Datacore 00:30:da Comtrend 00:30:db Mindread 00:30:dc Rightech 00:30:dd Indigita 00:30:de WagoKont 00:30:df Kb/TelTe 00:30:e0 OxfordSe 00:30:e1 NetworkE 00:30:e2 Garnet 00:30:e3 SedonaNe 00:30:e4 ChiyodaS 00:30:e5 AmperDat 00:30:e6 DraegerM 00:30:e7 CnfMobil 00:30:e8 Ensim 00:30:e9 GmaCommu 00:30:ea Teraforc 00:30:eb Turbonet 00:30:ec Borgardt 00:30:ed ExpertMa 00:30:ee DsgTechn 00:30:ef NeonTech 00:30:f0 UniformI 00:30:f1 AcctonTe 00:30:f2 Cisco 00:30:f3 AtWorkCo 00:30:f4 StardotT 00:30:f5 WildLab 00:30:f6 Securelo 00:30:f7 Ramix 00:30:f8 Dynapro 00:30:f9 Sollae 00:30:fa Telica 00:30:fb AzsTechn 00:30:fc Terawave 00:30:fd Integrat 00:30:fe Dsa 00:30:ff Datafab 00:31:46 JuniperN 00:32:3a So-Logic 00:33:6c Synapsen 00:34:da LG 00:34:f1 RadicomR 00:34:fe Huawei 00:35:1a Cisco 00:35:32 Electro- 00:35:60 RosenAvi 00:36:76 ArrisGro 00:36:f8 ContiTem 00:36:fe Supervis 00:37:6d MurataMa 00:37:b7 Sagemcom 00:38:df Cisco 00:3a:7d Cisco 00:3a:98 Cisco 00:3a:99 Cisco 00:3a:9a Cisco 00:3a:9b Cisco 00:3a:9c Cisco 00:3a:9d NecPlatf 00:3a:af Bluebit 00:3c:c5 WonwooEn 00:3d:41 Hattelan 00:3e:e1 Apple 00:40:00 PciCompo 00:40:01 ZeroOneT 00:40:02 Perle 00:40:03 EmersonP 00:40:04 Icm 00:40:05 Trendwar 00:40:06 SampoTec 00:40:07 TelmatIn 00:40:08 APlusInf 00:40:09 Tachiban 00:40:0a PivotalT 00:40:0b Cresc 00:40:0c GeneralM 00:40:0d LannetDa 00:40:0e Memotec 00:40:0f DatacomT 00:40:10 SonicMac 00:40:11 Faciliti 00:40:12 Windata 00:40:13 NttDataC 00:40:14 Comsoft 00:40:15 Ascom 00:40:16 Adc-Glob 00:40:17 XcdXjet- 00:40:18 Adobe 00:40:19 Aeon 00:40:1a FujiElec 00:40:1b Printer 00:40:1c AstPenti 00:40:1d Invisibl 00:40:1e Icc 00:40:1f Colorgra 00:40:20 Pilkingt 00:40:21 RasterGr 00:40:22 KleverCo 00:40:23 Logic 00:40:24 Compac 00:40:25 Molecula 00:40:26 Melco 00:40:27 SmcMassa 00:40:28 Netcomm 00:40:29 Compex 00:40:2a Canoga-P 00:40:2b Trigem 00:40:2c IsisDist 00:40:2d HarrisAd 00:40:2e Precisio 00:40:2f XlntDesi 00:40:30 GkComput 00:40:31 KokusaiE 00:40:32 DigitalC 00:40:33 AddtronT 00:40:34 Bustek 00:40:35 Opcom 00:40:36 Tribesta 00:40:37 Sea-Ilan 00:40:38 TalentEl 00:40:39 OptecDai 00:40:3a ImpactTe 00:40:3b Synerjet 00:40:3c Forks 00:40:3d Teradata 00:40:3e RasterOp 00:40:3f Ssangyon 00:40:40 RingAcce 00:40:41 Fujikura 00:40:42 NAT 00:40:43 NokiaDat 00:40:44 QnixComp 00:40:45 Twinhead 00:40:46 UdcResea 00:40:47 WindRive 00:40:48 SmdInfor 00:40:49 RocheDia 00:40:4a WestAust 00:40:4b MapleCom 00:40:4c Hypertec 00:40:4d Telecomm 00:40:4e Fluent 00:40:4f SpaceNav 00:40:50 Ironics 00:40:51 Gracilis 00:40:52 StarTech 00:40:53 Datum[Ba 00:40:54 Thinking 00:40:55 Metronix 00:40:56 McmJapan 00:40:57 Lockheed 00:40:58 Kronos 00:40:59 YoshidaK 00:40:5a Goldstar 00:40:5b Funasset 00:40:5c Future 00:40:5d Star-Tek 00:40:5e NorthHil 00:40:5f AfeCompu 00:40:60 Comendec 00:40:61 Datatech 00:40:62 E-System 00:40:63 ViaTechn 00:40:64 KlaInstr 00:40:65 GteSpace 00:40:66 HitachiC 00:40:67 Omnibyte 00:40:68 Extended 00:40:69 Lemcom 00:40:6a KentekIn 00:40:6b Sysgen 00:40:6c Coperniq 00:40:6d Lanco 00:40:6e Corollar 00:40:6f SyncRese 00:40:70 Interwar 00:40:71 AtmCompu 00:40:72 AppliedI 00:40:73 BassAsso 00:40:74 CableAnd 00:40:75 TattileS 00:40:76 Amp 00:40:77 MaxtonTe 00:40:78 WearnesA 00:40:79 JukoManu 00:40:7a SocieteD 00:40:7b Scientif 00:40:7c Qume 00:40:7d Extensio 00:40:7e Evergree 00:40:7f AgemaInf 00:40:80 Athenix 00:40:81 Mannesma 00:40:82 Laborato 00:40:83 TdaIndus 00:40:84 Honeywel 00:40:85 SaabInst 00:40:86 MichelsK 00:40:87 Ubitrex 00:40:88 MobuisNu 00:40:89 Meidensh 00:40:8a TpsTelep 00:40:8b Raylan 00:40:8c AxisComm 00:40:8d Goodyear 00:40:8e Cxr/Digi 00:40:8f Wm-DataM 00:40:90 AnselCom 00:40:91 ProcompI 00:40:92 AspCompu 00:40:93 PaxdataN 00:40:94 Shograph 00:40:95 EagleTec 00:40:96 Aironet 00:40:97 DatexDiv 00:40:98 Dressler 00:40:99 Newgen 00:40:9a NetworkE 00:40:9b HalCompu 00:40:9c Transwar 00:40:9d Digiboar 00:40:9e Concurre 00:40:9f Lancast/ 00:40:a0 Goldstar 00:40:a1 ErgoComp 00:40:a2 Kingstar 00:40:a3 Microuni 00:40:a4 RoseElec 00:40:a5 Clinicom 00:40:a6 CrayRese 00:40:a7 ItautecP 00:40:a8 ImfInter 00:40:a9 Datacom 00:40:aa ValmetAu 00:40:ab RolandDg 00:40:ac SuperWor 00:40:ad SmaRegel 00:40:ae DeltaCon 00:40:af DigitalP 00:40:b0 BytexEng 00:40:b1 Codonics 00:40:b2 Systemfo 00:40:b3 Partech 00:40:b4 3comKK 00:40:b5 VideoTec 00:40:b6 Computer 00:40:b7 StealthC 00:40:b8 IdeaAsso 00:40:b9 MacqElec 00:40:ba AlliantC 00:40:bb Goldstar 00:40:bc Algorith 00:40:bd Starligh 00:40:be BoeingDe 00:40:bf ChannelI 00:40:c0 VistaCon 00:40:c1 Bizerba- 00:40:c2 AppliedC 00:40:c3 FischerA 00:40:c4 KinkeiSy 00:40:c5 MicomCom 00:40:c6 Fibernet 00:40:c7 Danpex 00:40:c8 MilanTec 00:40:c9 Ncube 00:40:ca FirstInt 00:40:cb LanwanTe 00:40:cc SilcomMa 00:40:cd TeraMicr 00:40:ce Net-Sour 00:40:cf Strawber 00:40:d0 Dec/Comp 00:40:d1 FukudaDe 00:40:d2 Pagine 00:40:d3 Kimpsion 00:40:d4 GageTalk 00:40:d5 Sartoriu 00:40:d6 Locamati 00:40:d7 StudioGe 00:40:d8 OceanOff 00:40:d9 American 00:40:da Telspec 00:40:db Advanced 00:40:dc TritecEl 00:40:dd HongTech 00:40:de ElsagDat 00:40:df Digalog 00:40:e0 Atomwide 00:40:e1 MarnerIn 00:40:e2 MesaRidg 00:40:e3 Quin 00:40:e4 E-MTechn 00:40:e5 Sybus 00:40:e6 CAEN 00:40:e7 ArnosIns 00:40:e8 CharlesR 00:40:e9 Accord 00:40:ea Plaintre 00:40:eb MartinMa 00:40:ec MikasaSy 00:40:ed NetworkC 00:40:ee Optimem 00:40:ef Hypercom 00:40:f0 Micro 00:40:f1 ChuoElec 00:40:f2 JanichKl 00:40:f3 Netcor 00:40:f4 CameoCom 00:40:f5 OemEngin 00:40:f6 KatronCo 00:40:f7 Polaroid 00:40:f8 Systemha 00:40:f9 Combinet 00:40:fa Microboa 00:40:fb CascadeC 00:40:fc IbrCompu 00:40:fd Lxe 00:40:fe SymplexC 00:40:ff TelebitC 00:41:b4 WuxiZhon 00:41:d2 Cisco 00:42:52 RlxTechn 00:42:5a Cisco 00:42:68 Cisco 00:43:ff KetronSR 00:45:01 VersusTe 00:46:4b Huawei 00:48:54 DigitalS 00:4a:77 Zte 00:4b:f3 Shenzhen 00:4d:32 AndonHea 00:4f:49 Realtek 00:4f:4b PineTech 00:50:00 NexoComm 00:50:01 Yamashit 00:50:02 Omnisec 00:50:03 Xrite 00:50:04 3com3c90 00:50:06 Tac 00:50:07 SiemensT 00:50:08 TivaMicr 00:50:09 Philips 00:50:0a IrisTech 00:50:0b Cisco 00:50:0c E-TekLab 00:50:0d SatoriEl 00:50:0e Chromati 00:50:0f Cisco 00:50:10 NovanetL 00:50:12 Cbl- 00:50:13 Chaparra 00:50:14 Cisco 00:50:15 BrightSt 00:50:16 MolexCan 00:50:17 RsrSRL 00:50:18 Amit 00:50:19 SpringTi 00:50:1a Iqinvisi 00:50:1b AblCanad 00:50:1c Jatom 00:50:1e GrassVal 00:50:1f Mrg 00:50:20 Mediasta 00:50:21 EisInter 00:50:22 ZonetTec 00:50:23 PgDesign 00:50:24 Navic 00:50:26 Cosystem 00:50:27 Genicom 00:50:28 AvalComm 00:50:29 1394Prin 00:50:2a Cisco 00:50:2b Genrad 00:50:2c SoyoComp 00:50:2d Accel 00:50:2e Cambex 00:50:2f Tollbrid 00:50:30 FuturePl 00:50:31 Aeroflex 00:50:32 PicazoCo 00:50:33 MayanNet 00:50:36 Netcam 00:50:37 KogaElec 00:50:38 DainTele 00:50:39 MarinerN 00:50:3a DatongEl 00:50:3b Mediafir 00:50:3c Tsinghua 00:50:3e Cisco 00:50:3f AnchorGa 00:50:40 Panasoni 00:50:41 Coretron 00:50:42 SciManuf 00:50:43 MarvellS 00:50:44 Asaca 00:50:45 Rioworks 00:50:46 MenicxIn 00:50:47 Private 00:50:48 Infolibr 00:50:49 ArborNet 00:50:4a EltecoAS 00:50:4b Barconet 00:50:4c GalilMot 00:50:4d RepotecG 00:50:4e UmcUm900 00:50:4f OlencomE 00:50:50 Cisco 00:50:51 IwatsuEl 00:50:52 TiaraNet 00:50:53 Cisco 00:50:54 Cisco 00:50:55 Doms 00:50:56 Vmware 00:50:57 Broadban 00:50:58 SangomaT 00:50:59 Ibahn 00:50:5a NetworkA 00:50:5b Kawasaki 00:50:5c Tundo 00:50:5e DigitekM 00:50:5f BrandInn 00:50:60 Tandberg 00:50:62 KouwellE 00:50:63 OyComsel 00:50:64 CaeElect 00:50:65 Tdk-Lamb 00:50:66 AtecomAd 00:50:67 Aerocomm 00:50:68 Electron 00:50:69 Pixstrea 00:50:6a Edeva 00:50:6b Spx-Ateg 00:50:6c BeijerEl 00:50:6d Videojet 00:50:6e CorderEn 00:50:6f G-Connec 00:50:70 Chaintec 00:50:71 Aiwa 00:50:72 Corvis 00:50:73 Cisco 00:50:74 Advanced 00:50:75 KestrelS 00:50:76 IBM 00:50:77 Prolific 00:50:78 MegatonH 00:50:79 Private 00:50:7a Xpeed 00:50:7b MerlotCo 00:50:7c Videocon 00:50:7d Ifp 00:50:7e NewerTec 00:50:7f Draytek 00:50:80 Cisco 00:50:81 MurataMa 00:50:82 Foresson 00:50:83 Gilbarco 00:50:84 AtlProdu 00:50:86 TelkomSa 00:50:87 Terasaki 00:50:88 Amano 00:50:89 SafetyMa 00:50:8b HP 00:50:8c Rsi 00:50:8d AbitComp 00:50:8e Optimati 00:50:8f AsitaTec 00:50:90 Dctri 00:50:91 Netacces 00:50:92 RigakuOs 00:50:93 Boeing 00:50:94 ArrisGro 00:50:95 PeracomN 00:50:96 SalixTec 00:50:97 Mmc-Embe 00:50:98 Globaloo 00:50:99 3comEuro 00:50:9a TagElect 00:50:9b Switchco 00:50:9c BetaRese 00:50:9d Industre 00:50:9e LesTechn 00:50:9f HorizonC 00:50:a0 DeltaCom 00:50:a1 CarloGav 00:50:a2 Cisco 00:50:a3 Transmed 00:50:a4 IoTech 00:50:a5 CapitolB 00:50:a6 Optronic 00:50:a7 Cisco 00:50:a8 Opencon 00:50:a9 MoldatWi 00:50:aa KonicaMi 00:50:ab Naltec 00:50:ac MapleCom 00:50:ad Communiq 00:50:ae Fdk 00:50:af Intergon 00:50:b0 Technolo 00:50:b1 Giddings 00:50:b2 Brodel 00:50:b3 Voiceboa 00:50:b4 Satchwel 00:50:b5 Fichet-B 00:50:b6 GoodWayI 00:50:b7 BoserTec 00:50:b8 InovaCom 00:50:b9 XitronTe 00:50:ba D-Link 00:50:bb CmsTechn 00:50:bc HammerSt 00:50:bd Cisco 00:50:be FastMult 00:50:bf Metallig 00:50:c0 Gatan 00:50:c1 GemflexN 00:50:c2 IEEERegi 00:50:c4 Imd 00:50:c5 AdsTechn 00:50:c6 LoopTele 00:50:c7 Private 00:50:c8 Addonics 00:50:c9 MasproDe 00:50:ca NetToNet 00:50:cb Jetter 00:50:cc Xyratex 00:50:cd Digiansw 00:50:ce LG 00:50:cf VanlinkC 00:50:d0 Minerva 00:50:d1 Cisco 00:50:d2 CmcElect 00:50:d3 DigitalA 00:50:d4 JoohongI 00:50:d5 Ad 00:50:d6 AtlasCop 00:50:d7 Telstrat 00:50:d8 UnicornC 00:50:d9 Engetron 00:50:da 3Com 00:50:db Contempo 00:50:dc TasTelef 00:50:dd SerraSol 00:50:de Signum 00:50:df Airfiber 00:50:e1 NsTechEl 00:50:e2 Cisco 00:50:e3 ArrisGro 00:50:e4 Apple 00:50:e6 Hakusan 00:50:e7 Paradise 00:50:e8 Nomadix 00:50:ea XelCommu 00:50:eb Alpha-To 00:50:ec Olicom 00:50:ed AndaNetw 00:50:ee TekDigit 00:50:ef SpeSyste 00:50:f0 Cisco 00:50:f1 Intel 00:50:f2 Microsoft 00:50:f3 GlobalNe 00:50:f4 Sigmatek 00:50:f6 Pan-Inte 00:50:f7 VentureM 00:50:f8 EntregaT 00:50:f9 Sensorma 00:50:fa Oxtel 00:50:fb VskElect 00:50:fc EdimaxTe 00:50:fd Visionco 00:50:fe PctvnetA 00:50:ff HakkoEle 00:52:18 WuxiKebo 00:54:9f Avaya 00:54:af Continen 00:54:bd Swelaser 00:55:00 Xerox 00:55:da IEEERegi 00:56:2b Cisco 00:56:cd Apple 00:57:d2 Cisco 00:59:07 Lenovoem 00:59:79 Networke 00:59:ac KpnBV 00:59:dc Cisco 00:5a:13 Huawei 00:5a:39 Shenzhen 00:5b:a1 Shanghai 00:5c:b1 GospellD 00:5d:03 Xilinx 00:5f:86 Cisco 00:60:00 Xycom 00:60:01 Innosys 00:60:02 ScreenSu 00:60:03 TeraokaW 00:60:04 Computad 00:60:05 Feedback 00:60:06 Sotec 00:60:07 AcresGam 00:60:08 3com3com 00:60:09 Cisco 00:60:0a SordComp 00:60:0b Logware 00:60:0c Eurotech 00:60:0d DigitalL 00:60:0e WavenetI 00:60:0f WestellT 00:60:10 NetworkM 00:60:11 CrystalS 00:60:12 PowerCom 00:60:13 NetstalM 00:60:14 Edec 00:60:15 Net2net 00:60:16 Clariion 00:60:17 Tokimec 00:60:18 StellarO 00:60:19 RocheDia 00:60:1a Keithley 00:60:1b MesaElec 00:60:1c Telxon 00:60:1d LucentTe 00:60:1e Softlab 00:60:1f Stallion 00:60:20 PivotalN 00:60:21 Dsc 00:60:22 Vicom 00:60:23 PericomS 00:60:24 Gradient 00:60:25 ActiveIm 00:60:26 VikingMo 00:60:27 Superior 00:60:28 Macrovis 00:60:29 CaryPeri 00:60:2a Symicron 00:60:2b PeakAudi 00:60:2c LinxData 00:60:2d AlertonT 00:60:2e Cyclades 00:60:2f Cisco 00:60:30 Villaget 00:60:31 Hrk 00:60:32 I-Cube 00:60:33 AcuityIm 00:60:34 RobertBo 00:60:35 DallasSe 00:60:36 AitAustr 00:60:37 NxpSemic 00:60:38 NortelNe 00:60:39 SancomTe 00:60:3a QuickCon 00:60:3b Amtec 00:60:3c Hagiwara 00:60:3d 3cx 00:60:3e Cisco 00:60:3f Patapsco 00:60:40 Netro 00:60:41 Yokogawa 00:60:42 TksUsa 00:60:43 Idirect 00:60:44 Litton/P 00:60:45 Pathligh 00:60:46 Vmetro 00:60:47 Cisco 00:60:48 Emc 00:60:49 VinaTech 00:60:4a SaicIdea 00:60:4b Safe-Com 00:60:4c Sagemcom 00:60:4d MmcNetwo 00:60:4e CycleCom 00:60:4f TattileS 00:60:50 Internix 00:60:51 QualityS 00:60:52 RealtekR 00:60:53 ToyodaMa 00:60:54 Controlw 00:60:55 CornellU 00:60:56 NetworkT 00:60:57 MurataMa 00:60:58 CopperMo 00:60:59 Technica 00:60:5a Celcore 00:60:5b Intraser 00:60:5c Cisco 00:60:5d Scanival 00:60:5e LibertyT 00:60:5f NipponUn 00:60:60 DataInno 00:60:61 WhistleC 00:60:62 Telesync 00:60:63 PsionDac 00:60:64 Netcomm 00:60:65 Bernecke 00:60:66 LacroixT 00:60:67 AcerLan 00:60:68 Dialogic 00:60:69 BrocadeC 00:60:6a Mitsubis 00:60:6b Synclaye 00:60:6c Arescom 00:60:6d DigitalE 00:60:6e DavicomS 00:60:6f ClarionO 00:60:70 Cisco 00:60:71 MidasLab 00:60:72 VxlInstr 00:60:73 Redcreek 00:60:74 QscLlc 00:60:75 Pentek 00:60:76 Schlumbe 00:60:77 PrisaNet 00:60:78 PowerMea 00:60:79 Mainstre 00:60:7a Dvs 00:60:7b Fore 00:60:7c Waveacce 00:60:7d Sentient 00:60:7e Gigalabs 00:60:7f AuroraTe 00:60:80 Microtro 00:60:81 Tv/ComIn 00:60:82 Novalink 00:60:83 Cisco 00:60:84 DigitalV 00:60:85 StorageC 00:60:86 LogicRep 00:60:87 KansaiEl 00:60:88 WhiteMou 00:60:89 Xata 00:60:8a CitadelC 00:60:8b Conferte 00:60:8c 3com1990 00:60:8d Unipulse 00:60:8e HeElectr 00:60:8f TekramTe 00:60:90 ArtizaNe 00:60:91 FirstPac 00:60:92 Micro/Sy 00:60:93 Varian 00:60:94 AmdPcnet 00:60:95 Accu-Tim 00:60:96 TSMicrot 00:60:97 3Com 00:60:98 HTC 00:60:99 Sbe 00:60:9a NjkTechn 00:60:9b Astronov 00:60:9c Perkin-E 00:60:9d PmiFoodE 00:60:9e AscX3-In 00:60:9f Phast 00:60:a0 Switched 00:60:a1 Vpnet 00:60:a2 NihonUni 00:60:a3 Continuu 00:60:a4 GewTechn 00:60:a5 Performa 00:60:a6 Particle 00:60:a7 Microsen 00:60:a8 Tidomat 00:60:a9 GesytecM 00:60:aa Intellig 00:60:ab Larscom 00:60:ac Resilien 00:60:ad Megachip 00:60:ae TrioInfo 00:60:af PacificM 00:60:b0 HP 00:60:b1 Input/Ou 00:60:b2 ProcessC 00:60:b3 Z-Com 00:60:b4 Glenayre 00:60:b5 Keba 00:60:b6 LandComp 00:60:b7 Channelm 00:60:b8 Corelis 00:60:b9 NecPlatf 00:60:ba SaharaNe 00:60:bb Cabletro 00:60:bc Keunyoun 00:60:bd Enginuit 00:60:be Webtroni 00:60:bf Macraigo 00:60:c0 NeraNetw 00:60:c1 Wavespan 00:60:c2 Mpl 00:60:c3 Netvisio 00:60:c4 SolitonK 00:60:c5 Ancot 00:60:c6 Dcs 00:60:c7 AmatiCom 00:60:c8 KukaWeld 00:60:c9 Controln 00:60:ca Harmonic 00:60:cb HitachiZ 00:60:cc Emtrak 00:60:cd Videoser 00:60:ce AcclaimC 00:60:cf AlteonNe 00:60:d0 SnmpRese 00:60:d1 CascadeC 00:60:d2 LucentTe 00:60:d3 At&T 00:60:d4 EldatCom 00:60:d5 AmadaMiy 00:60:d6 Novatel 00:60:d7 EcolePol 00:60:d8 Elmic 00:60:d9 TransysN 00:60:da RedLionC 00:60:db NtpElekt 00:60:dc NecMagnu 00:60:dd Myricom 00:60:de Kayser-T 00:60:df BrocadeC 00:60:e0 AxiomTec 00:60:e1 OrckitCo 00:60:e2 QuestEng 00:60:e3 ArbinIns 00:60:e4 Compuser 00:60:e5 FujiAuto 00:60:e6 Shomiti 00:60:e7 Randata 00:60:e8 HitachiC 00:60:e9 AtopTech 00:60:ea Streamlo 00:60:eb Fourthtr 00:60:ec HermaryO 00:60:ed RicardoT 00:60:ee Apollo 00:60:ef FlytechT 00:60:f0 JohnsonJ 00:60:f1 ExpCompu 00:60:f2 Lasergra 00:60:f3 Performa 00:60:f4 Advanced 00:60:f5 PhobosFa 00:60:f6 NextestC 00:60:f7 Datafusi 00:60:f8 LoranInt 00:60:f9 DiamondL 00:60:fa Educatio 00:60:fb Packetee 00:60:fc Conserva 00:60:fd Netics 00:60:fe LynxSyst 00:60:ff Quvis 00:61:71 Apple 00:62:ec Cisco 00:64:40 Cisco 00:64:a6 MaquetCa 00:66:4b Huawei 00:6b:8e Shanghai 00:6b:9e Vizio 00:6b:a0 Shenzhen 00:6b:f1 Cisco 00:6c:bc Cisco 00:6c:fd SichuanC 00:6d:52 Apple 00:6d:fb VutrixTe 00:6f:64 Samsung 00:70:b0 M/A-ComC 00:70:b3 DataReca 00:71:c2 Pegatron 00:71:cc HonHaiPr 00:73:8d Shenzhen 00:73:e0 Samsung 00:74:9c RuijieNe 00:75:32 InidBv 00:75:e1 AmptLlc 00:76:86 Cisco 00:78:88 Cisco 00:78:9e Sagemcom 00:78:cd Ignition 00:7b:18 Sentry 00:7d:fa Volkswag 00:7e:56 ChinaDra 00:7f:28 Actionte 00:80:00 Multitec 00:80:01 Periphon 00:80:02 Satelcom 00:80:03 HytecEle 00:80:04 AntlowCo 00:80:05 CactusCo 00:80:06 Compuadd 00:80:07 DlogNc-S 00:80:08 Dynatech 00:80:09 JupiterO 00:80:0a JapanCom 00:80:0b Csk 00:80:0c Videcom 00:80:0d Vosswink 00:80:0e Atlantix 00:80:0f SMC 00:80:10 Commodor 00:80:11 DigitalI 00:80:12 ImsImsFa 00:80:13 ThomasCo 00:80:14 Esprit 00:80:15 Seiko 00:80:16 WandelGo 00:80:17 Pfu 00:80:18 KobeStee 00:80:19 DaynaCom 00:80:1a BellAtla 00:80:1b KodiakTe 00:80:1c Cisco 00:80:1d Integrat 00:80:1e Xinetron 00:80:1f KruppAtl 00:80:20 NetworkP 00:80:21 Newbridg 00:80:22 Scan-Opt 00:80:23 Integrat 00:80:24 Kalpana 00:80:25 TelitWir 00:80:26 NetworkP 00:80:27 Adaptive 00:80:28 Tradpost 00:80:29 Microdyn 00:80:2a TestSimu 00:80:2b Integrat 00:80:2c SageGrou 00:80:2d Xylogics 00:80:2e Plexcom 00:80:2f National 00:80:30 NexusEle 00:80:31 Basys 00:80:32 Access 00:80:33 Formatio 00:80:34 Smt-Goup 00:80:35 Technolo 00:80:36 ReflexMa 00:80:37 Ericsson 00:80:38 DataRese 00:80:39 AlcatelS 00:80:3a Varitype 00:80:3b AptCommu 00:80:3c TvsElect 00:80:3d Surigike 00:80:3e Synernet 00:80:3f HyundaiE 00:80:40 JohnFluk 00:80:41 VebKombi 00:80:42 ForceCom 00:80:43 Networld 00:80:44 SystechC 00:80:45 Matsushi 00:80:46 Universi 00:80:47 In-Net 00:80:48 CompexUs 00:80:49 NissinEl 00:80:4a Pro-Log 00:80:4b EagleTec 00:80:4c Contec 00:80:4d CycloneM 00:80:4e ApexComp 00:80:4f DaikinIn 00:80:50 Ziatech 00:80:51 AdcFiber 00:80:52 NetworkP 00:80:53 Intellic 00:80:54 Frontier 00:80:55 Fermilab 00:80:56 SphinxEl 00:80:57 Adsoft 00:80:58 Printer 00:80:59 StanleyE 00:80:5a TulipCom 00:80:5b Condor 00:80:5c Agilis? 00:80:5d Canstar 00:80:5e LsiLogic 00:80:5f CompaqCo 00:80:60 NetworkI 00:80:61 Litton 00:80:62 Interfac 00:80:63 RichardH 00:80:64 Wyse 00:80:65 Cybergra 00:80:66 ArcomCon 00:80:67 SquareD 00:80:68 Yamatech 00:80:69 Computon 00:80:6a EriEmpac 00:80:6b SchmidTe 00:80:6c CegelecP 00:80:6d Century 00:80:6e NipponSt 00:80:6f Onelan 00:80:70 Computad 00:80:71 SaiTechn 00:80:72 Microple 00:80:73 DwbAssoc 00:80:74 FisherCo 00:80:75 Parsytec 00:80:76 Mcnc 00:80:77 BrotherI 00:80:78 Practica 00:80:79 Microbus 00:80:7a Aitech 00:80:7b ArtelCom 00:80:7c Fibercom 00:80:7d Equinox 00:80:7e Southern 00:80:7f Dy-4 00:80:80 Datamedi 00:80:81 KendallS 00:80:82 PepModul 00:80:83 Amdahl 00:80:84 Cloud 00:80:85 H-Three 00:80:86 Computer 00:80:87 Okidata 00:80:88 VictorOf 00:80:89 Tecnetic 00:80:8a Summit? 00:80:8b Dacoll 00:80:8c Netscout 00:80:8d Westcove 00:80:8e Radstone 00:80:8f CItohEle 00:80:90 Microtek 00:80:91 TokyoEle 00:80:92 JapanCom 00:80:93 Xyron 00:80:94 Sattcont 00:80:95 BasicMer 00:80:96 HDS 00:80:97 Centralp 00:80:98 Tdk 00:80:99 EatonInd 00:80:9a NovusNet 00:80:9b Justsyst 00:80:9c Luxcom 00:80:9d Datacraf 00:80:9e Datus 00:80:9f AlcatelB 00:80:a0 HP 00:80:a1 Microtes 00:80:a2 Creative 00:80:a3 Lantroni 00:80:a4 LibertyE 00:80:a5 SpeedInt 00:80:a6 Republic 00:80:a7 Measurex 00:80:a8 Vitacom 00:80:a9 Clearpoi 00:80:aa Maxpeed 00:80:ab DukaneNe 00:80:ac ImlogixD 00:80:ad Telebit 00:80:ae HughesNe 00:80:af Allumer 00:80:b0 Advanced 00:80:b1 Softcom 00:80:b2 NetNetwo 00:80:b3 AvalData 00:80:b4 Sophia 00:80:b5 UnitedNe 00:80:b6 Themis 00:80:b7 StellarC 00:80:b8 DmgMoriB 00:80:b9 ArcheTec 00:80:ba Speciali 00:80:bb HughesLa 00:80:bc HitachiE 00:80:bd Furukawa 00:80:be AriesRes 00:80:bf TakaokaE 00:80:c0 PenrilDa 00:80:c1 Lanex 00:80:c2 IEEE8021 00:80:c3 BiccInfo 00:80:c4 Document 00:80:c5 Novellco 00:80:c6 Soho 00:80:c7 Xircom 00:80:c8 D-Link 00:80:c9 AlbertaM 00:80:ca NetcomRe 00:80:cb FalcoDat 00:80:cc Microwav 00:80:cd Micronic 00:80:ce Broadcas 00:80:cf Embedded 00:80:d0 Computer 00:80:d1 Kimtron 00:80:d2 Shinniho 00:80:d3 ShivaApp 00:80:d4 Chase 00:80:d5 CadreTec 00:80:d6 AppleMac 00:80:d7 FantumEl 00:80:d8 NetworkP 00:80:d9 EmkElekt 00:80:da BruelKja 00:80:db Graphon 00:80:dc PickerIn 00:80:dd GmxInc/G 00:80:de GipsiSA 00:80:df AdcCoden 00:80:e0 Xtp 00:80:e1 Stmicroe 00:80:e2 TDI 00:80:e3 Coral? 00:80:e4 Northwes 00:80:e5 Netapp 00:80:e6 PeerNetw 00:80:e7 LynwoodS 00:80:e8 CumulusC 00:80:e9 Madge 00:80:ea Fiber 00:80:eb Compcont 00:80:ec Supercom 00:80:ed IqTechno 00:80:ee ThomsonC 00:80:ef Rational 00:80:f0 KyushuMa 00:80:f1 Opus 00:80:f2 Raycom 00:80:f3 SunElect 00:80:f4 Telemech 00:80:f5 Quantel 00:80:f6 SynergyM 00:80:f7 ZenithCo 00:80:f8 Mizar 00:80:f9 Heurikon 00:80:fa Rwt 00:80:fb Bvm 00:80:fc Avatar 00:80:fd ExsceedC 00:80:fe AzureTec 00:80:ff SocDeTel 00:81:c4 Cisco 00:84:ed Private 00:86:a0 Private 00:87:01 Samsung 00:87:31 Cisco 00:88:65 Apple 00:8a:96 Cisco 00:8b:43 Rftech 00:8c:10 BlackBox 00:8c:54 AdbBroad 00:8c:fa Inventec 00:8d:4e CjscNiiS 00:8d:da LinkOne 00:8e:73 Cisco 00:8e:f2 Netgear 00:90:00 DiamondM 00:90:01 NishimuE 00:90:02 Allgon 00:90:03 Aplio 00:90:04 3Com 00:90:05 Protech 00:90:06 Hamamats 00:90:07 DomexTec 00:90:08 Hana 00:90:09 IControl 00:90:0a ProtonEl 00:90:0b LannerEl 00:90:0c Cisco 00:90:0d Overland 00:90:0e Handlink 00:90:0f Kawasaki 00:90:10 Simulati 00:90:11 Wavtrace 00:90:12 Globespa 00:90:13 Samsan 00:90:14 RotorkIn 00:90:15 Centigra 00:90:16 Zac 00:90:17 Zypcom 00:90:18 ItoElect 00:90:19 HermesEl 00:90:1a Unispher 00:90:1b DigitalC 00:90:1c MpsSoftw 00:90:1d PecNz 00:90:1e SelestaI 00:90:1f AdtecPro 00:90:20 Philips 00:90:21 Cisco 00:90:22 Ivex 00:90:23 Zilog 00:90:24 Pipelink 00:90:25 BaeAustr 00:90:26 Advanced 00:90:27 Intel 00:90:28 NipponSi 00:90:29 Crypto 00:90:2a Communic 00:90:2b Cisco 00:90:2c DataCont 00:90:2d DataElec 00:90:2e Namco 00:90:2f Netcore 00:90:30 Honeywel 00:90:31 Mysticom 00:90:32 Pelcombe 00:90:33 Innovaph 00:90:34 Imagic 00:90:35 AlphaTel 00:90:36 Ens 00:90:37 Acucomm 00:90:38 Fountain 00:90:39 ShastaNe 00:90:3a NihonMed 00:90:3b TriemsRe 00:90:3c Atlantic 00:90:3d Biopac 00:90:3e NVPhilip 00:90:3f AztecRad 00:90:40 SiemensN 00:90:41 AppliedD 00:90:42 Eccs 00:90:43 TattileS 00:90:44 AssuredD 00:90:45 MarconiC 00:90:46 Dexdyne 00:90:47 GigaFast 00:90:48 Zeal 00:90:49 Entridia 00:90:4a ConcurSy 00:90:4b GemtekTe 00:90:4c Epigram 00:90:4d SpecSA 00:90:4e DelemBv 00:90:4f AbbPower 00:90:50 Teleste 00:90:51 Ultimate 00:90:52 SelcomEl 00:90:53 DaewooEl 00:90:54 Innovati 00:90:55 ParkerHa 00:90:56 Telestre 00:90:57 Aanetcom 00:90:58 UltraEle 00:90:59 TelecomD 00:90:5a Dearborn 00:90:5b RaymondA 00:90:5c Edmi 00:90:5d NetcomSi 00:90:5e Rauland- 00:90:5f Cisco 00:90:60 SystemCr 00:90:61 PacificR 00:90:62 IcpVorte 00:90:63 Coherent 00:90:64 Thomson 00:90:65 Finisar 00:90:66 TroikaNe 00:90:67 Walkabou 00:90:68 Dvt 00:90:69 JuniperN 00:90:6a Turnston 00:90:6b AppliedR 00:90:6c Sartoriu 00:90:6d Cisco 00:90:6e Praxon 00:90:6f Cisco 00:90:70 NeoNetwo 00:90:71 AppliedI 00:90:72 SimradAs 00:90:73 GaioTech 00:90:74 ArgonNet 00:90:75 NecDoBra 00:90:76 FmtAircr 00:90:77 Advanced 00:90:78 MerTelem 00:90:79 Clearone 00:90:7a Spectral 00:90:7b E-Tech 00:90:7c Digitalc 00:90:7d LakeComm 00:90:7e Vetronix 00:90:7f Watchgua 00:90:80 Not 00:90:81 AlohaNet 00:90:82 ForceIns 00:90:83 TurboCom 00:90:84 AtechSys 00:90:85 GoldenEn 00:90:86 Cisco 00:90:87 Itis 00:90:88 BaxallSe 00:90:89 SoftcomM 00:90:8a BaylyCom 00:90:8b TattileS 00:90:8c EtrendEl 00:90:8d VickersE 00:90:8e NortelNe 00:90:8f AudioCod 00:90:90 I-Bus 00:90:91 Digitals 00:90:92 Cisco 00:90:93 Nanao 00:90:94 OspreyTe 00:90:95 Universa 00:90:96 AskeyCom 00:90:97 Sycamore 00:90:98 SbcDesig 00:90:99 AlliedTe 00:90:9a OneWorld 00:90:9b Markem-I 00:90:9c ArrisGro 00:90:9d Novatech 00:90:9e Critical 00:90:9f Digi-Dat 00:90:a0 8x8 00:90:a1 FlyingPi 00:90:a2 Cybertan 00:90:a3 Corecess 00:90:a4 AltigaNe 00:90:a5 SpectraL 00:90:a6 Cisco 00:90:a7 Clientec 00:90:a8 Ninetile 00:90:a9 WesternD 00:90:aa IndigoAc 00:90:ab Cisco 00:90:ac Optivisi 00:90:ad AspectEl 00:90:ae ItaltelS 00:90:af JMoritaM 00:90:b0 Vadem 00:90:b1 Cisco 00:90:b2 Avici 00:90:b3 Agranat 00:90:b4 Willowbr 00:90:b5 Nikon 00:90:b6 Fibex 00:90:b7 DigitalL 00:90:b8 RohdeSch 00:90:b9 BeranIns 00:90:ba ValidNet 00:90:bb TainetCo 00:90:bc Telemann 00:90:bd OmniaCom 00:90:be Ibc/Inte 00:90:bf Cisco 00:90:c0 KJLawEng 00:90:c1 PecoIi 00:90:c2 JkMicros 00:90:c3 TopicSem 00:90:c4 Javelin 00:90:c5 Internet 00:90:c6 Optim 00:90:c7 Icom 00:90:c8 Waveride 00:90:c9 DpacTech 00:90:ca AccordVi 00:90:cb Wireless 00:90:cc PlanexCo 00:90:cd Ent-Empr 00:90:ce Tetra 00:90:cf Nortel 00:90:d0 ThomsonT 00:90:d1 LeichuEn 00:90:d2 ArtelVid 00:90:d3 Giesecke 00:90:d4 Bindview 00:90:d5 Euphonix 00:90:d6 CrystalG 00:90:d7 Netboost 00:90:d8 Whitecro 00:90:d9 Cisco 00:90:da Dynarc 00:90:db NextLeve 00:90:dc TecoInfo 00:90:dd MiharuCo 00:90:de Cardkey 00:90:df Mitsubis 00:90:e0 Systran 00:90:e1 TelenaSP 00:90:e2 Distribu 00:90:e3 AvexElec 00:90:e4 NecAmeri 00:90:e5 Teknema 00:90:e6 Ali 00:90:e7 HorschEl 00:90:e8 MoxaTech 00:90:e9 JanzComp 00:90:ea AlphaTec 00:90:eb SentryTe 00:90:ec Pyrescom 00:90:ed CentralS 00:90:ee Personal 00:90:ef Integrix 00:90:f0 Harmonic 00:90:f1 DotHill 00:90:f2 Cisco 00:90:f3 AspectCo 00:90:f4 Lightnin 00:90:f5 Clevo 00:90:f6 Escalate 00:90:f7 NbaseCom 00:90:f8 Mediatri 00:90:f9 ImagineC 00:90:fa Emulex 00:90:fb Portwell 00:90:fc NetworkC 00:90:fd Copperco 00:90:fe ElecomLa 00:90:ff TellusTe 00:91:d6 CrystalG 00:91:fa SynapseP 00:92:fa Shenzhen 00:93:63 Uni-Link 00:95:69 LsdScien 00:97:ff HeimannS 00:9a:cd Huawei 00:9a:d2 Cisco 00:9c:02 HP 00:9d:8e CardiacR 00:9e:1e Cisco 00:9e:c8 XiaomiCo 00:a0:00 BayNetwo 00:a0:01 DrsSigna 00:a0:02 LeedsNor 00:a0:03 SiemensS 00:a0:04 Netpower 00:a0:05 DanielIn 00:a0:06 ImageDat 00:a0:07 ApexxTec 00:a0:08 Netcorp 00:a0:09 Whitetre 00:a0:0a Airspan 00:a0:0b Computex 00:a0:0c KingmaxT 00:a0:0d PandaPro 00:a0:0e Netscout 00:a0:0f Broadban 00:a0:10 Syslogic 00:a0:11 MutohInd 00:a0:12 Telco 00:a0:13 Teltrend 00:a0:14 Csir 00:a0:15 Wyle 00:a0:16 Micropol 00:a0:17 JBM 00:a0:18 Creative 00:a0:19 NebulaCo 00:a0:1a BinarEle 00:a0:1b Premisys 00:a0:1c NascentN 00:a0:1d RedLionC 00:a0:1e Est 00:a0:1f Tricord 00:a0:20 Citicorp 00:a0:21 GeneralD 00:a0:22 CentreFo 00:a0:23 AppliedC 00:a0:24 3Com 00:a0:25 RedcomLa 00:a0:26 TeldatSA 00:a0:27 Firepowe 00:a0:28 ConnerPe 00:a0:29 Coulter 00:a0:2a Trancell 00:a0:2b Transiti 00:a0:2c Interwav 00:a0:2d 1394Trad 00:a0:2e BrandCom 00:a0:2f AdbBroad 00:a0:30 CaptorNv 00:a0:31 Hazeltin 00:a0:32 GesSinga 00:a0:33 ImcMebsy 00:a0:34 Axel 00:a0:35 Cylink 00:a0:36 AppliedN 00:a0:37 MindrayD 00:a0:38 EmailEle 00:a0:39 RossTech 00:a0:3a Kubotek 00:a0:3b ToshinEl 00:a0:3c Eg&GNucl 00:a0:3d Opto-22 00:a0:3e AtmForum 00:a0:3f Computer 00:a0:40 ApplePci 00:a0:41 Inficon 00:a0:42 SpurProd 00:a0:43 American 00:a0:44 NttIt 00:a0:45 PhoenixC 00:a0:46 Scitex 00:a0:47 Integrat 00:a0:48 Questech 00:a0:49 Digitech 00:a0:4a NisshinE 00:a0:4b SonicEth 00:a0:4c Innovati 00:a0:4d EdaInstr 00:a0:4e VoelkerT 00:a0:4f Ameritec 00:a0:50 CypressS 00:a0:51 AngiaCom 00:a0:52 Stanilit 00:a0:53 CompactD 00:a0:54 Private 00:a0:55 DataDevi 00:a0:56 Micropro 00:a0:57 Lancom 00:a0:58 Glory 00:a0:59 Hamilton 00:a0:5a KofaxIma 00:a0:5b Marquip 00:a0:5c Inventor 00:a0:5d CsComput 00:a0:5e MyriadLo 00:a0:5f BtgElect 00:a0:60 AcerPeri 00:a0:61 PuritanB 00:a0:62 AesProda 00:a0:63 Jrl 00:a0:64 Kvb/Anal 00:a0:65 Symantec 00:a0:66 Isa 00:a0:67 NetworkS 00:a0:68 Bhp 00:a0:69 Symmetri 00:a0:6a Verilink 00:a0:6b DmsDorsc 00:a0:6c Shindeng 00:a0:6d Mannesma 00:a0:6e Austron 00:a0:6f ColorSen 00:a0:70 Coastcom 00:a0:71 VideoLot 00:a0:72 Ovation 00:a0:73 Com21 00:a0:74 Percepti 00:a0:75 MicronTe 00:a0:76 Cardware 00:a0:77 Fujitsu 00:a0:78 MarconiC 00:a0:79 AlpsElec 00:a0:7a Advanced 00:a0:7b DawnComp 00:a0:7c TonyangN 00:a0:7d SeeqTech 00:a0:7e AvidTech 00:a0:7f Gsm-Synt 00:a0:80 TattileS 00:a0:81 AlcatelD 00:a0:82 NktElekt 00:a0:83 Intel 00:a0:84 Dataplex 00:a0:85 Private 00:a0:86 AmberWav 00:a0:87 Microsem 00:a0:88 Essentia 00:a0:89 XpointTe 00:a0:8a Brooktro 00:a0:8b AstonEle 00:a0:8c Multimed 00:a0:8d Jacomo 00:a0:8e CheckPoi 00:a0:8f Desknet 00:a0:90 Timestep 00:a0:91 Applicom 00:a0:92 Intermat 00:a0:93 B/EAeros 00:a0:94 Comsat 00:a0:95 AcaciaNe 00:a0:96 MitsumiE 00:a0:97 JcInform 00:a0:98 Netapp 00:a0:99 K-Net 00:a0:9a NihonKoh 00:a0:9b QpsxComm 00:a0:9c Xyplex 00:a0:9d Johnatho 00:a0:9e Ictv 00:a0:9f Commvisi 00:a0:a0 CompactD 00:a0:a1 EpicData 00:a0:a2 DigicomS 00:a0:a3 Reliable 00:a0:a4 Oracle 00:a0:a5 TeknorMi 00:a0:a6 MIKK 00:a0:a7 Vorax 00:a0:a8 Renex 00:a0:a9 NavtelCo 00:a0:aa Spacelab 00:a0:ab NetcsInf 00:a0:ac GilatSat 00:a0:ad Marconi 00:a0:ae NetworkP 00:a0:af WmsIndus 00:a0:b0 I-ODataD 00:a0:b1 FirstVir 00:a0:b2 ShimaSei 00:a0:b3 Zykronix 00:a0:b4 TexasMic 00:a0:b5 3hTechno 00:a0:b6 SanritzA 00:a0:b7 Cordant 00:a0:b8 Netapp 00:a0:b9 EagleTec 00:a0:ba PattonEl 00:a0:bb Hilan 00:a0:bc Viasat 00:a0:bd I-Tech 00:a0:be Integrat 00:a0:bf Wireless 00:a0:c0 DigitalL 00:a0:c1 OrtivusM 00:a0:c2 RA 00:a0:c3 Unicompu 00:a0:c4 CristieE 00:a0:c5 ZyxelCom 00:a0:c6 Qualcomm 00:a0:c7 TadiranT 00:a0:c8 Adtran 00:a0:c9 IntelPro 00:a0:ca Fujitsu 00:a0:cb ArkTelec 00:a0:cc Lite-OnU 00:a0:cd DrJohann 00:a0:ce Ecessa 00:a0:cf Sotas 00:a0:d0 TenXTech 00:a0:d1 National 00:a0:d2 AlliedTe 00:a0:d3 InstemCo 00:a0:d4 Radiolan 00:a0:d5 SierraWi 00:a0:d6 Sbe 00:a0:d7 KastenCh 00:a0:d8 Spectra- 00:a0:d9 ConvexCo 00:a0:da Integrat 00:a0:db FisherPa 00:a0:dc ONElectr 00:a0:dd Azonix 00:a0:de Yamaha 00:a0:df StsTechn 00:a0:e0 Tennyson 00:a0:e1 Westport 00:a0:e2 Keisokug 00:a0:e3 Xkl 00:a0:e4 Optiques 00:a0:e5 NhcCommu 00:a0:e6 Dialogic 00:a0:e7 CentralD 00:a0:e8 ReutersH 00:a0:e9 Electron 00:a0:ea Ethercom 00:a0:eb EncoreNe 00:a0:ec Transmit 00:a0:ed BrooksAu 00:a0:ee NashobaN 00:a0:ef Lucidata 00:a0:f0 TorontoM 00:a0:f1 Mti 00:a0:f2 InfotekC 00:a0:f3 Staubli 00:a0:f4 Ge 00:a0:f5 Radguard 00:a0:f6 Autogas 00:a0:f7 VIComput 00:a0:f8 ZebraTec 00:a0:f9 BintecCo 00:a0:fa MarconiC 00:a0:fb TorayEng 00:a0:fc ImageSci 00:a0:fd ScitexDi 00:a0:fe BostonTe 00:a0:ff TellabsO 00:a1:de Shenzhen 00:a2:89 Cisco 00:a2:da Inat 00:a2:ee Cisco 00:a2:f5 Guangzho 00:a2:ff AbatecGr 00:a3:8e Cisco 00:a3:d1 Cisco 00:a5:09 Wigwag 00:a6:ca Cisco 00:a7:42 Cisco 00:a7:84 ItxSecur 00:aa:00 Intel 00:aa:01 Intel 00:aa:02 Intel 00:aa:3c Olivetti 00:aa:70 LG 00:ac:e0 ArrisGro 00:ae:fa MurataMa 00:af:1f Cisco 00:b0:09 GrassVal 00:b0:17 Infogear 00:b0:19 UtcCcs 00:b0:1c Westport 00:b0:1e RanticLa 00:b0:2a Orsys 00:b0:2d ViagateT 00:b0:33 OaoIzhev 00:b0:3b HiqNetwo 00:b0:48 MarconiC 00:b0:4a Cisco 00:b0:52 AtherosC 00:b0:64 Cisco 00:b0:69 Honewell 00:b0:6d JonesFut 00:b0:80 Mannesma 00:b0:86 Locsoft 00:b0:8e Cisco 00:b0:91 Transmet 00:b0:94 Alaris 00:b0:9a MorrowTe 00:b0:9d PointGre 00:b0:ac Siae-Mic 00:b0:ae Symmetri 00:b0:b3 Xstreami 00:b0:c2 Cisco 00:b0:c7 TellabsO 00:b0:ce ViverisT 00:b0:d0 Computer 00:b0:db Nextcell 00:b0:df Starboar 00:b0:e1 Cisco 00:b0:e7 BritishF 00:b0:ec Eacem 00:b0:ee Ajile 00:b0:f0 CalyNetw 00:b0:f5 Networth 00:b3:38 KontronD 00:b3:42 Macrosan 00:b3:62 Apple 00:b5:6d DavidEle 00:b5:d6 Omnibit 00:b7:8d NanjingS 00:b9:f6 Shenzhen 00:ba:c0 Biometri 00:bb:01 Octothor 00:bb:3a Private 00:bb:8e Hme 00:bb:c1 Canon 00:bb:f0 Ungerman 00:bd:27 Exar 00:bd:3a Nokia 00:bd:82 Shenzhen 00:bf:15 Genetec 00:c0:00 Lanoptic 00:c0:01 DiatekPa 00:c0:02 Sercomm 00:c0:03 Globalne 00:c0:04 JapanBus 00:c0:05 Livingst 00:c0:06 NipponAv 00:c0:07 Pinnacle 00:c0:08 SecoSrl 00:c0:09 KtTechno 00:c0:0a MicroCra 00:c0:0b Norcontr 00:c0:0c ArkPcTec 00:c0:0d Advanced 00:c0:0e Psitech 00:c0:0f QnxSoftw 00:c0:10 Hirakawa 00:c0:11 Interact 00:c0:12 Netspan 00:c0:13 Netrix 00:c0:14 Telemati 00:c0:15 NewMedia 00:c0:16 Electron 00:c0:17 Fluke 00:c0:18 Lanart 00:c0:19 LeapTech 00:c0:1a Corometr 00:c0:1b SocketCo 00:c0:1c Interlin 00:c0:1d GrandJun 00:c0:1e LaFranca 00:c0:1f SERCEL 00:c0:20 ArcoElec 00:c0:21 Netexpre 00:c0:22 Lasermas 00:c0:23 Tutankha 00:c0:24 EdenSist 00:c0:25 Dataprod 00:c0:26 LansTech 00:c0:27 Cipher 00:c0:28 Jasco 00:c0:29 KabelRhe 00:c0:2a OhkuraEl 00:c0:2b GerloffG 00:c0:2c CentrumC 00:c0:2d FujiPhot 00:c0:2e Netwiz 00:c0:2f Okuma 00:c0:30 Integrat 00:c0:31 DesignRe 00:c0:32 I-Cubed 00:c0:33 Telebit 00:c0:34 DaleComp 00:c0:35 Quintar 00:c0:36 RaytechE 00:c0:37 Dynatem 00:c0:38 RasterIm 00:c0:39 Silicon 00:c0:3a Men-Mikr 00:c0:3b Multiacc 00:c0:3c TowerTec 00:c0:3d Wieseman 00:c0:3e FaGebrHe 00:c0:3f StoresAu 00:c0:40 Ecci 00:c0:41 DigitalT 00:c0:42 Datalux 00:c0:43 Strataco 00:c0:44 Emcom 00:c0:45 Isolatio 00:c0:46 Kemitron 00:c0:47 Unimicro 00:c0:48 BayTechn 00:c0:49 UsRoboti 00:c0:4a Group200 00:c0:4b Creative 00:c0:4c Departme 00:c0:4d Mitec 00:c0:4e Comtrol 00:c0:4f Dell 00:c0:50 ToyoDenk 00:c0:51 Advanced 00:c0:52 Burr-Bro 00:c0:53 AspectSo 00:c0:54 NetworkP 00:c0:55 ModularC 00:c0:56 Somelec 00:c0:57 MycoElec 00:c0:58 Dataexpe 00:c0:59 Nipponde 00:c0:5a Semaphor 00:c0:5b Networks 00:c0:5c Elonex 00:c0:5d L&NTechn 00:c0:5e Vari-Lit 00:c0:5f Fine-Pal 00:c0:60 IdScandi 00:c0:61 Solectek 00:c0:62 ImpulseT 00:c0:63 MorningS 00:c0:64 GeneralD 00:c0:65 ScopeCom 00:c0:66 Docupoin 00:c0:67 UnitedBa 00:c0:68 PhilpDra 00:c0:69 Californ 00:c0:6a Zahner-E 00:c0:6b OsiPlus 00:c0:6c SvecComp 00:c0:6d BocaRese 00:c0:6e HaftTech 00:c0:6f Komatsu 00:c0:70 SectraSe 00:c0:71 AreanexC 00:c0:72 Knx 00:c0:73 Xedia 00:c0:74 ToyodaAu 00:c0:75 XanteCor 00:c0:76 I-DataIn 00:c0:77 DaewooTe 00:c0:78 Computer 00:c0:79 Fonsys 00:c0:7a PrivaBv 00:c0:7b AscendCo 00:c0:7c Hightech 00:c0:7d RiscDeve 00:c0:7e KubotaEl 00:c0:7f NuponCom 00:c0:80 Netstar 00:c0:81 Metrodat 00:c0:82 MoorePro 00:c0:83 TraceMou 00:c0:84 DataLink 00:c0:85 Canon 00:c0:86 Lynk 00:c0:87 UunetTec 00:c0:88 EkfElekt 00:c0:89 Telindus 00:c0:8a Lauterba 00:c0:8b RisqModu 00:c0:8c Performa 00:c0:8d TronixPr 00:c0:8e NetworkI 00:c0:8f Matsushi 00:c0:90 PraimSRL 00:c0:91 JabilCir 00:c0:92 MennenMe 00:c0:93 AltaRese 00:c0:94 Vmx 00:c0:95 ZnyxNetw 00:c0:96 Tamura 00:c0:97 Archipel 00:c0:98 ChuntexE 00:c0:99 YoshikiI 00:c0:9a Photonic 00:c0:9b Reliance 00:c0:9c ToaElect 00:c0:9d Distribu 00:c0:9e CacheCom 00:c0:9f QuantaCo 00:c0:a0 AdvanceM 00:c0:a1 TokyoDen 00:c0:a2 Intermed 00:c0:a3 DualEnte 00:c0:a4 UnigrafO 00:c0:a5 DickensD 00:c0:a6 ExicomAu 00:c0:a7 Seel 00:c0:a8 Gvc 00:c0:a9 BarronMc 00:c0:aa SiliconV 00:c0:ab JupiterT 00:c0:ac GambitCo 00:c0:ad Computer 00:c0:ae Towercom 00:c0:af Teklogix 00:c0:b0 GccTechn 00:c0:b1 GeniusNe 00:c0:b2 Norand 00:c0:b3 ComstatD 00:c0:b4 MysonTec 00:c0:b5 Corporat 00:c0:b6 Meridian 00:c0:b7 American 00:c0:b8 FraserSH 00:c0:b9 FunkSoft 00:c0:ba Netvanta 00:c0:bb ForvalCr 00:c0:bc TelecomA 00:c0:bd InexTech 00:c0:be Alcatel- 00:c0:bf Technolo 00:c0:c0 ShoreMic 00:c0:c1 Quad/Gra 00:c0:c2 Infinite 00:c0:c3 AcusonCo 00:c0:c4 Computer 00:c0:c5 SidInfor 00:c0:c6 Personal 00:c0:c7 Sparktru 00:c0:c8 MicroByt 00:c0:c9 BaileyCo 00:c0:ca Alfa 00:c0:cb ControlT 00:c0:cc Telescie 00:c0:cd ComeltaS 00:c0:ce CeiEngin 00:c0:cf ImatranV 00:c0:d0 RatocSys 00:c0:d1 ComtreeT 00:c0:d2 Syntelle 00:c0:d3 OlympusI 00:c0:d4 AxonNetw 00:c0:d5 QuancomE 00:c0:d6 J1 00:c0:d7 TaiwanTr 00:c0:d8 Universa 00:c0:d9 QuinteNe 00:c0:da Nice 00:c0:db IpcPte 00:c0:dc EosTechn 00:c0:dd Qlogic 00:c0:de Zcomm 00:c0:df Kye 00:c0:e0 DscCommu 00:c0:e1 SonicSol 00:c0:e2 Calcomp 00:c0:e3 OsitechC 00:c0:e4 LandisGy 00:c0:e5 GespacSA 00:c0:e6 Txport 00:c0:e7 Fiberdat 00:c0:e8 Plexcom 00:c0:e9 OakSolut 00:c0:ea ArrayTec 00:c0:eb SehCompu 00:c0:ec DauphinT 00:c0:ed UsArmyEl 00:c0:ee Kyocera 00:c0:ef Abit 00:c0:f0 Kingston 00:c0:f1 ShinkoEl 00:c0:f2 Transiti 00:c0:f3 NetworkC 00:c0:f4 Interlin 00:c0:f5 Metacomp 00:c0:f6 CelanTec 00:c0:f7 EngageCo 00:c0:f8 AboutCom 00:c0:f9 ArtesynE 00:c0:fa CanaryCo 00:c0:fb Advanced 00:c0:fc Asdg 00:c0:fd Prosum 00:c0:fe AptecCom 00:c0:ff BoxHill 00:c1:4f Ddl 00:c1:64 Cisco 00:c1:b1 Cisco 00:c2:c6 Intel 00:c5:db Datatech 00:c6:10 Apple 00:c8:8b Cisco 00:ca:e5 Cisco 00:cb:00 Private 00:cb:bd Cambridg 00:cc:fc Cisco 00:cd:90 MasElekt 00:cd:fe Apple 00:cf:1c Communic 00:d0:00 FerranSc 00:d0:01 VstTechn 00:d0:02 Ditech 00:d0:03 ComdaEnt 00:d0:04 Pentacom 00:d0:05 ZhsZeitm 00:d0:06 Cisco 00:d0:07 MicAssoc 00:d0:08 Mactell 00:d0:09 HsingTec 00:d0:0a Lanacces 00:d0:0b RhkTechn 00:d0:0c SnijderM 00:d0:0d Micromer 00:d0:0e Pluris 00:d0:0f SpeechDe 00:d0:10 Converge 00:d0:11 PrismVid 00:d0:12 Gatework 00:d0:13 PrimexAe 00:d0:14 Root 00:d0:15 UnivexMi 00:d0:16 ScmMicro 00:d0:17 SyntechI 00:d0:18 QwesCom 00:d0:19 Dainippo 00:d0:1a UrmetTlc 00:d0:1b MimakiEn 00:d0:1c SbsTechn 00:d0:1d FurunoEl 00:d0:1e Pingtel 00:d0:1f Senetas 00:d0:20 AimSyste 00:d0:21 RegentEl 00:d0:22 Incredib 00:d0:23 Infortre 00:d0:24 Cognex 00:d0:25 Xrosstec 00:d0:26 Hirschma 00:d0:27 AppliedA 00:d0:28 Harmonic 00:d0:29 Wakefern 00:d0:2a Voxent 00:d0:2b Jetcell 00:d0:2c Campbell 00:d0:2d Ademco 00:d0:2e Communic 00:d0:2f VlsiTech 00:d0:30 Safetran 00:d0:31 Industri 00:d0:32 YanoElec 00:d0:33 DalianDa 00:d0:34 Ormec 00:d0:35 Behavior 00:d0:36 Technolo 00:d0:37 ArrisGro 00:d0:38 Fivemere 00:d0:39 Utilicom 00:d0:3a Zoneworx 00:d0:3b VisionPr 00:d0:3c Vieo 00:d0:3d GalileoT 00:d0:3e Rocketch 00:d0:3f American 00:d0:40 Sysmate 00:d0:41 AmigoTec 00:d0:42 MahloUg 00:d0:43 ZonalRet 00:d0:44 AlidianN 00:d0:45 Kvaser 00:d0:46 DolbyLab 00:d0:47 XnTechno 00:d0:48 Ecton 00:d0:49 Impresst 00:d0:4a Presence 00:d0:4b LaCieGro 00:d0:4c EurotelT 00:d0:4d DivOfRes 00:d0:4e Logibag 00:d0:4f Bitronic 00:d0:50 Iskratel 00:d0:51 O2Micro 00:d0:52 AscendCo 00:d0:53 Connecte 00:d0:54 SasInsti 00:d0:55 Kathrein 00:d0:56 Somat 00:d0:57 Ultrak 00:d0:58 Cisco 00:d0:59 AmbitMic 00:d0:5a Symbioni 00:d0:5b Acroloop 00:d0:5c Kathrein 00:d0:5d Intelliw 00:d0:5e Stratabe 00:d0:5f Valcom 00:d0:60 Panasoni 00:d0:61 TremonEn 00:d0:62 Digigram 00:d0:63 Cisco 00:d0:64 Multitel 00:d0:65 TokoElec 00:d0:66 Wintriss 00:d0:67 CampioCo 00:d0:68 Iwill 00:d0:69 Technolo 00:d0:6a Linkup 00:d0:6b SrTeleco 00:d0:6c Sharewav 00:d0:6d Acrison 00:d0:6e Trendvie 00:d0:6f KmcContr 00:d0:70 LongWell 00:d0:71 Echelon 00:d0:72 Broadlog 00:d0:73 AcnAdvan 00:d0:74 Taqua 00:d0:75 AlarisMe 00:d0:76 BankOfAm 00:d0:77 LucentTe 00:d0:78 EltexOfS 00:d0:79 Cisco 00:d0:7a Amaquest 00:d0:7b ComcamIn 00:d0:7c KoyoElec 00:d0:7d CosineCo 00:d0:7e Keycorp 00:d0:7f Strategy 00:d0:80 Exabyte 00:d0:81 RtdEmbed 00:d0:82 Iowave 00:d0:83 Invertex 00:d0:84 Nexcomm 00:d0:85 OtisElev 00:d0:86 Foveon 00:d0:87 Microfir 00:d0:88 ArrisGro 00:d0:89 Dynacolo 00:d0:8a PhotronU 00:d0:8b AdvaOpti 00:d0:8c GenoaTec 00:d0:8d PhoenixG 00:d0:8e GrassVal 00:d0:8f ArdentTe 00:d0:90 Cisco 00:d0:91 Smartsan 00:d0:92 Glenayre 00:d0:93 Tq-Compo 00:d0:94 SeeionCo 00:d0:95 Alcatel- 00:d0:96 3comEuro 00:d0:97 Cisco 00:d0:98 PhotonDy 00:d0:99 ElcardWi 00:d0:9a Filanet 00:d0:9b Spectel 00:d0:9c KapadiaC 00:d0:9d VerisInd 00:d0:9e 2wire 00:d0:9f NovtekTe 00:d0:a0 MipsDenm 00:d0:a1 OskarVie 00:d0:a2 Integrat 00:d0:a3 VocalDat 00:d0:a4 AlantroC 00:d0:a5 American 00:d0:a6 LanbirdT 00:d0:a7 TokyoSok 00:d0:a8 NetworkE 00:d0:a9 ShinanoK 00:d0:aa ChaseCom 00:d0:ab Deltakab 00:d0:ac Commscop 00:d0:ad TlIndust 00:d0:ae OresisCo 00:d0:af Cutler-H 00:d0:b0 Bitswitc 00:d0:b1 OmegaEle 00:d0:b2 Xiotech 00:d0:b3 DrsTechn 00:d0:b4 Katsujim 00:d0:b5 IpricotF 00:d0:b6 Crescent 00:d0:b7 Intel 00:d0:b8 Iomega 00:d0:b9 Microtek 00:d0:ba Cisco 00:d0:bb Cisco 00:d0:bc Cisco 00:d0:bd LatticeS 00:d0:be Emutec 00:d0:bf PivotalT 00:d0:c0 Cisco 00:d0:c1 Harmonic 00:d0:c2 Balthaza 00:d0:c3 VividTec 00:d0:c4 Teratech 00:d0:c5 Computat 00:d0:c6 ThomasBe 00:d0:c7 Pathway 00:d0:c8 Prevas 00:d0:c9 Advantec 00:d0:ca Intrinsy 00:d0:cb Dasan 00:d0:cc Technolo 00:d0:cd AtanTech 00:d0:ce AsystEle 00:d0:cf MoretonB 00:d0:d0 Zhongxin 00:d0:d1 Sycamore 00:d0:d2 Epilog 00:d0:d3 Cisco 00:d0:d4 V-Bits 00:d0:d5 Grundig 00:d0:d6 AethraTe 00:d0:d7 B2c2 00:d0:d8 3Com 00:d0:d9 Dedicate 00:d0:da TaicomDa 00:d0:db McquayIn 00:d0:dc ModularM 00:d0:dd SunriseT 00:d0:de Philips 00:d0:df KuzumiEl 00:d0:e0 DooinEle 00:d0:e1 Avionite 00:d0:e2 MrtMicro 00:d0:e3 Ele-Chem 00:d0:e4 Cisco 00:d0:e5 Solidum 00:d0:e6 Ibond 00:d0:e7 VconTele 00:d0:e8 MacSyste 00:d0:e9 Advantag 00:d0:ea NextoneC 00:d0:eb Lightera 00:d0:ec Nakayo 00:d0:ed Xiox 00:d0:ee Dictapho 00:d0:ef Igt 00:d0:f0 Convisio 00:d0:f1 SegaEnte 00:d0:f2 Monterey 00:d0:f3 SolariDi 00:d0:f4 Carinthi 00:d0:f5 OrangeMi 00:d0:f6 Nokia 00:d0:f7 NextNets 00:d0:f8 FujianSt 00:d0:f9 AcuteCom 00:d0:fa ThalesE- 00:d0:fb TekMicro 00:d0:fc GraniteM 00:d0:fd OptimaTe 00:d0:fe AstralPo 00:d0:ff Cisco 00:d1:1c Acetel 00:d3:18 SpgContr 00:d3:8d HotelTec 00:d6:32 GeEnergy 00:d7:8f Cisco 00:d9:d1 Sony 00:da:55 Cisco 00:db:1e AlbedoTe 00:db:45 Thamway 00:db:df Intel 00:dd:00 Ungerman 00:dd:01 Ungerman 00:dd:02 Ungerman 00:dd:03 Ungerman 00:dd:04 Ungerman 00:dd:05 Ungerman 00:dd:06 Ungerman 00:dd:07 Ungerman 00:dd:08 Ungerman 00:dd:09 Ungerman 00:dd:0a Ungerman 00:dd:0b Ungerman 00:dd:0c Ungerman 00:dd:0d Ungerman 00:dd:0e Ungerman 00:dd:0f Ungerman 00:de:fb Cisco 00:e0:00 Fujitsu 00:e0:01 StrandLi 00:e0:02 Crossroa 00:e0:03 NokiaWir 00:e0:04 Pmc-Sier 00:e0:05 Technica 00:e0:06 SiliconI 00:e0:07 AvayaEcs 00:e0:08 AmazingC 00:e0:09 Marathon 00:e0:0a Diba 00:e0:0b RooftopC 00:e0:0c Motorola 00:e0:0d Radiant 00:e0:0e AvalonIm 00:e0:0f Shanghai 00:e0:10 HessSb-A 00:e0:11 Uniden 00:e0:12 PlutoTec 00:e0:13 EasternE 00:e0:14 Cisco 00:e0:15 Heiwa 00:e0:16 Rapid-Ci 00:e0:17 Exxact 00:e0:18 ASUS 00:e0:19 IngGiord 00:e0:1a Comtec 00:e0:1b SphereCo 00:e0:1c Cradlepo 00:e0:1d WebtvNet 00:e0:1e Cisco 00:e0:1f Avidia 00:e0:20 Tecnomen 00:e0:21 Freegate 00:e0:22 AnalogDe 00:e0:23 Telrad 00:e0:24 GadzooxN 00:e0:25 Dit 00:e0:26 RedlakeM 00:e0:27 Dux 00:e0:28 Aptix 00:e0:29 SmcEther 00:e0:2a Tandberg 00:e0:2b ExtremeN 00:e0:2c Ast-Buil 00:e0:2d Innomedi 00:e0:2e SpcElect 00:e0:2f McnsHold 00:e0:30 MelitaIn 00:e0:31 Hagiwara 00:e0:32 MisysFin 00:e0:33 EEPD 00:e0:34 Cisco 00:e0:35 ArtesynE 00:e0:36 Pioneer 00:e0:37 Century 00:e0:38 Proxima 00:e0:39 Paradyne 00:e0:3a Cabletro 00:e0:3b Prominet 00:e0:3c Advansys 00:e0:3d FoconEle 00:e0:3e Alfatech 00:e0:3f Jaton 00:e0:40 Deskstat 00:e0:41 Cspi 00:e0:42 Pacom 00:e0:43 Vitalcom 00:e0:44 Lsics 00:e0:45 Touchwav 00:e0:46 BentlyNe 00:e0:47 Infocus 00:e0:48 SdlCommu 00:e0:49 MicrowiE 00:e0:4a ZxTechno 00:e0:4b JumpIndu 00:e0:4c RealtekS 00:e0:4d Internet 00:e0:4e SanyoDen 00:e0:4f Cisco 00:e0:50 Executon 00:e0:51 Talx 00:e0:52 BrocadeC 00:e0:53 Cellport 00:e0:54 KodaiHit 00:e0:55 Ingenier 00:e0:56 Holontec 00:e0:57 HanMicro 00:e0:58 PhaseOne 00:e0:59 Controll 00:e0:5a GaleaNet 00:e0:5b WestEnd 00:e0:5c Panasoni 00:e0:5d Unitec 00:e0:5e JapanAvi 00:e0:5f E-Net 00:e0:60 Sherwood 00:e0:61 Edgepoin 00:e0:62 HostEngi 00:e0:63 Cabletro 00:e0:64 Samsung 00:e0:65 OpticalA 00:e0:66 Promax 00:e0:67 EacAutom 00:e0:68 Merrimac 00:e0:69 Jaycor 00:e0:6a Kapsch 00:e0:6b W&GSpeci 00:e0:6c UltraEle 00:e0:6d Compuwar 00:e0:6e FarSPA 00:e0:6f ArrisGro 00:e0:70 DhTechno 00:e0:71 EpisMicr 00:e0:72 Lynk 00:e0:73 National 00:e0:74 TiernanC 00:e0:75 Verilink 00:e0:76 Developm 00:e0:77 Webgear 00:e0:78 Berkeley 00:e0:79 ATNR 00:e0:7a Mikrodid 00:e0:7b BayNetwo 00:e0:7c Mettler- 00:e0:7d EncoreNe 00:e0:7e WaltDisn 00:e0:7f Logistis 00:e0:80 ControlR 00:e0:81 TyanComp 00:e0:82 Anerma 00:e0:83 JatoTech 00:e0:84 Compulit 00:e0:85 GlobalMa 00:e0:86 EmersonN 00:e0:87 Lecroy-N 00:e0:88 Ltx-Cred 00:e0:89 IonNetwo 00:e0:8a GecAvery 00:e0:8b Qlogic 00:e0:8c Neoparad 00:e0:8d Pressure 00:e0:8e Utstarco 00:e0:8f Cisco 00:e0:90 BeckmanL 00:e0:91 LG 00:e0:92 Admtek 00:e0:93 AckfinNe 00:e0:94 OsaiSrl 00:e0:95 Advanced 00:e0:96 Shimadzu 00:e0:97 CarrierA 00:e0:98 Trend 00:e0:99 Samson 00:e0:9a Positron 00:e0:9b EngageNe 00:e0:9c Mii 00:e0:9d Sarnoff 00:e0:9e Quantum 00:e0:9f PixelVis 00:e0:a0 Wiltron 00:e0:a1 HimaPaul 00:e0:a2 Microsla 00:e0:a3 Cisco 00:e0:a4 EsaoteSP 00:e0:a5 ComcoreS 00:e0:a6 TelogyNe 00:e0:a7 IpcInfor 00:e0:a8 Sat 00:e0:a9 FunaiEle 00:e0:aa Electros 00:e0:ab DimatSA 00:e0:ac Midsco 00:e0:ad EesTechn 00:e0:ae Xaqti 00:e0:af GeneralD 00:e0:b0 Cisco 00:e0:b1 Alcatel- 00:e0:b2 TelmaxCo 00:e0:b3 Etherwan 00:e0:b4 TechnoSc 00:e0:b5 ArdentCo 00:e0:b6 EntradaN 00:e0:b7 PiGroup 00:e0:b8 AmdPcnet 00:e0:b9 Byas 00:e0:ba BerghofA 00:e0:bb Nbx 00:e0:bc SymonCom 00:e0:bd Interfac 00:e0:be GenrocoI 00:e0:bf TorrentN 00:e0:c0 SeiwaEle 00:e0:c1 MemorexT 00:e0:c2 NecsySPA 00:e0:c3 SakaiSys 00:e0:c4 HornerEl 00:e0:c5 BcomElec 00:e0:c6 Link2itL 00:e0:c7 Eurotech 00:e0:c8 VirtualA 00:e0:c9 Automate 00:e0:ca BestData 00:e0:cb Reson 00:e0:cc Hero 00:e0:cd SaabSens 00:e0:ce Arn 00:e0:cf Integrat 00:e0:d0 Netspeed 00:e0:d1 Telsis 00:e0:d2 Versanet 00:e0:d3 Datentec 00:e0:d4 Excellen 00:e0:d5 Emulex 00:e0:d6 Computer 00:e0:d7 Sunshine 00:e0:d8 LanbitCo 00:e0:d9 Tazmo 00:e0:da Alcatel- 00:e0:db Viavideo 00:e0:dc Nexware 00:e0:dd ZenithEl 00:e0:de DataxNv 00:e0:df Keymile 00:e0:e0 SiElectr 00:e0:e1 G2Networ 00:e0:e2 Innova 00:e0:e3 Sk-Elekt 00:e0:e4 FanucRob 00:e0:e5 CincoNet 00:e0:e6 IncaaCom 00:e0:e7 Raytheon 00:e0:e8 Gretacod 00:e0:e9 DataLabs 00:e0:ea InnovatC 00:e0:eb Digicom 00:e0:ec Celestic 00:e0:ed NewLink 00:e0:ee MarelHf 00:e0:ef Dionex 00:e0:f0 AblerTec 00:e0:f1 That 00:e0:f2 ArlottoC 00:e0:f3 Websprin 00:e0:f4 InsideTe 00:e0:f5 Teles 00:e0:f6 Decision 00:e0:f7 Cisco 00:e0:f8 DicnaCon 00:e0:f9 Cisco 00:e0:fa TrlTechn 00:e0:fb Leightro 00:e0:fc Huawei 00:e0:fd A-TrendT 00:e0:fe Cisco 00:e0:ff Security 00:e1:6d Cisco 00:e1:75 Ak-Syste 00:e1:8c Intel 00:e3:b2 Samsung 00:e4:00 SichuanC 00:e6:66 ArimaCom 00:e6:d3 NixdorfC 00:e6:e8 NetzinTe 00:e8:ab MeggittT 00:eb:2d Sony 00:eb:d5 Cisco 00:ec:0a XiaomiCo 00:ee:bd HTC 00:f0:51 Kwb 00:f2:2c Shanghai 00:f2:8b Cisco 00:f3:db WooSport 00:f4:03 OrbisOy 00:f4:6f Samsung 00:f4:b9 Apple 00:f6:63 Cisco 00:f7:6f Apple 00:f8:1c Huawei 00:f8:2c Cisco 00:f8:60 PtPanggu 00:f8:71 DgsDenma 00:fa:3b CloosEle 00:fc:58 Websilic 00:fc:70 Intrepid 00:fc:8d HitronTe 00:fd:45 HP 00:fd:4c Nevatec 00:fe:c8 Cisco 01:0e:cf PN-MC 02:04:06 BbnInter 02:07:01 Interlan 02:1c:7c Perq 02:20:48 Marconi 02:60:60 3Com 02:60:86 Satelcom 02:60:8c 3comIbmP 02:70:01 Racal-Da 02:70:b0 M/A-ComC 02:70:b3 DataReca 02:9d:8e CardiacR 02:a0:c9 Intel 02:aa:3c Olivetti 02:bb:01 Octothor 02:c0:8c 3Com 02:cf:1c Communic 02:cf:1f CMC 02:e0:3b Prominet 02:e6:d3 BtiBus-T 04:02:1f Huawei 04:03:d6 Nintendo 04:04:ea ValensSe 04:0a:83 Alcatel- 04:0a:e0 XmitComp 04:0c:ce Apple 04:0e:c2 Viewsoni 04:15:52 Apple 04:18:0f Samsung 04:18:b6 Private 04:18:d6 Ubiquiti 04:1a:04 Waveip 04:1b:6d LG 04:1b:94 HostMobi 04:1b:ba Samsung 04:1d:10 DreamWar 04:1e:64 Apple 04:1e:7a Dspworks 04:20:9a Panasoni 04:21:4c InsightE 04:22:34 Wireless 04:25:c5 Huawei 04:26:05 GfrGesel 04:26:65 Apple 04:27:58 Huawei 04:2a:e2 Cisco 04:2b:bb Picocela 04:2d:b4 FirstPro 04:2f:56 AtocsShe 04:31:10 InspurGr 04:32:f4 Partron 04:33:89 Huawei 04:36:04 Gyeyoung 04:3d:98 Chongqin 04:41:69 Gopro 04:44:a1 TeleconG 04:46:65 MurataMa 04:48:9a Apple 04:4a:50 RamaxelT 04:4b:ed Apple 04:4b:ff Guangzho 04:4c:ef FujianSa 04:4e:06 Ericsson 04:4e:5a ArrisGro 04:4f:8b Adapteva 04:4f:aa RuckusWi 04:52:c7 Bose 04:52:f3 Apple 04:53:d5 SysorexG 04:54:53 Apple 04:55:ca BriviewX 04:56:04 GioneeCo 04:57:2f SertelEl 04:58:6f SichuanW 04:5a:95 Nokia 04:5c:06 ZmodoTec 04:5c:8e GosundGr 04:5d:4b Sony 04:5d:56 CamtronI 04:5f:a7 Shenzhen 04:61:69 MediaGlo 04:62:73 Cisco 04:62:d7 AlstomHy 04:63:e0 NomeOy 04:65:65 Testop 04:67:85 ScemtecH 04:69:f8 Apple 04:6c:9d Cisco 04:6d:42 Bryston 04:6e:02 Openrtls 04:6e:49 TaiyearE 04:70:bc Globalst 04:71:4b IEEERegi 04:74:a1 AligeraE 04:75:03 Huawei 04:75:f5 Csst 04:76:6e AlpsElec 04:78:63 Shanghai 04:7d:50 Shenzhen 04:7d:7b QuantaCo 04:7e:4a Moobox 04:81:ae Clack 04:84:8a 7inovaTe 04:88:45 BayNetwo 04:88:8c Eifelwer 04:88:e2 BeatsEle 04:8a:15 Avaya 04:8b:42 Skspruce 04:8c:03 ThinpadT 04:8d:38 NetcoreT 04:92:ee Iway 04:94:6b TecnoMob 04:94:a1 CatchWin 04:95:73 Zte 04:95:e6 TendaTec 04:96:45 WuxiSkyC 04:97:90 LartechT 04:98:f3 AlpsElec 04:99:e6 Shenzhen 04:9b:9c Eadingco 04:9c:62 BmtMedic 04:9f:06 Smobile 04:9f:81 Netscout 04:9f:ca Huawei 04:a1:51 Netgear 04:a3:16 TexasIns 04:a3:f3 Emicon 04:a8:2a Nokia 04:b0:e7 Huawei 04:b3:b6 SeamapUk 04:b4:66 Bsp 04:b6:48 Zenner 04:ba:36 LiSengTe 04:bb:f9 Pavilion 04:bd:70 Huawei 04:bd:88 ArubaNet 04:bf:6d ZyxelCom 04:bf:a8 Isb 04:c0:5b TigoEner 04:c0:6f Huawei 04:c0:9c Tellabs 04:c1:03 CloverNe 04:c1:b9 Fiberhom 04:c2:3e HTC 04:c5:a4 Cisco 04:c8:80 Samtec 04:c9:91 Phistek 04:c9:d9 Echostar 04:cb:1d Traka 04:ce:14 Wilocity 04:cf:25 Manycolo 04:d3:cf Apple 04:d4:37 Znv 04:d7:83 Y&HE&C 04:da:d2 Cisco 04:db:56 Apple 04:db:8a SuntechI 04:dd:4c Velocyte 04:de:db Rockport 04:de:f2 Shenzhen 04:df:69 CarConne 04:e0:c4 Triumph- 04:e1:c8 ImsSoluç 04:e2:f8 AepTicke 04:e4:51 TexasIns 04:e5:36 Apple 04:e5:48 CohdaWir 04:e6:62 Acroname 04:e6:76 AmpakTec 04:e9:e5 PjrcComL 04:ee:91 X-Fabric 04:f0:21 CompexPt 04:f1:3e Apple 04:f1:7d TaranaWi 04:f4:bc XenaNetw 04:f7:e4 Apple 04:f8:c2 Flaircom 04:f9:38 Huawei 04:fe:31 Samsung 04:fe:7f Cisco 04:fe:8d Huawei 04:fe:a1 Fihonest 04:ff:51 Novamedi 08:00:01 Computer 08:00:02 3Com 08:00:03 ACC 08:00:04 Cromemco 08:00:05 Symbolic 08:00:06 SiemensN 08:00:07 Apple 08:00:08 BBN 08:00:09 HP 08:00:0a Nestar 08:00:0b UnisysAl 08:00:0c MiklynDe 08:00:0d IclInter 08:00:0e Ncr/At&T 08:00:0f SmcStand 08:00:10 At&T[Mis 08:00:11 Tektroni 08:00:12 BellAtla 08:00:13 Exxon 08:00:14 ExcelanB 08:00:15 StcBusin 08:00:16 Barriste 08:00:17 National 08:00:18 PirelliF 08:00:19 GeneralE 08:00:1a DataGenl 08:00:1b DataGene 08:00:1c Kdd-Koku 08:00:1d AbleComm 08:00:1e Apollo 08:00:1f Sharp 08:00:20 Sun 08:00:21 3m 08:00:22 NbiNothi 08:00:23 Matsushi 08:00:24 10netCom 08:00:25 Cdc 08:00:26 NorskDat 08:00:27 PcsCompu 08:00:28 TiExplor 08:00:29 Megatek 08:00:2a MosaicTe 08:00:2b Dec 08:00:2c BrittonL 08:00:2d Lan-Tec 08:00:2e Metaphor 08:00:2f PrimeCom 08:00:30 Cern 08:00:31 LittleMa 08:00:32 Tigan 08:00:33 BauschLo 08:00:34 Filenet 08:00:35 Microfiv 08:00:36 Intergra 08:00:37 FujiXero 08:00:38 Bull 08:00:39 Spider 08:00:3a Orcatech 08:00:3b Torus 08:00:3c Schlumbe 08:00:3d Cadnetix 08:00:3e Motorola 08:00:3f FredKosc 08:00:40 Ferranti 08:00:41 DcaDigit 08:00:42 JapanMac 08:00:43 PixelCom 08:00:44 DsiDavid 08:00:45 ????Mayb 08:00:46 Sony 08:00:47 Sequent 08:00:48 Eurother 08:00:49 Univatio 08:00:4a Banyan 08:00:4b Planning 08:00:4c Encore 08:00:4d Corvus 08:00:4e Bicc[3co 08:00:4f Cygnet 08:00:50 Daisy 08:00:51 Experdat 08:00:52 Insystec 08:00:53 MiddleEa 08:00:55 Stanford 08:00:56 Stanford 08:00:57 EvansSut 08:00:58 ???Decsy 08:00:59 Mycron 08:00:5a IBM 08:00:5b VtaTechn 08:00:5c FourPhas 08:00:5d Gould 08:00:5e Counterp 08:00:5f SaberTec 08:00:60 Industri 08:00:61 Jarogate 08:00:62 GeneralD 08:00:63 Plessey 08:00:64 Sitasys 08:00:65 Genrad 08:00:66 AgfaPrin 08:00:67 Comdesig 08:00:68 Ridge 08:00:69 SGI 08:00:6a Attst? 08:00:6b AccelTec 08:00:6c SuntekTe 08:00:6d Whitecha 08:00:6e Excelan 08:00:6f Philips 08:00:70 Mitsubis 08:00:71 MatraDsi 08:00:72 XeroxUni 08:00:73 Tecmar 08:00:74 Casio 08:00:75 DdeDanis 08:00:76 PcLanTec 08:00:77 TslNowRe 08:00:78 Accell 08:00:79 SGI 08:00:7a Indata 08:00:7b SanyoEle 08:00:7c Vitalink 08:00:7e Amalgama 08:00:7f Carnegie 08:00:80 Xios 08:00:81 Crosfiel 08:00:82 VeritasS 08:00:83 SeikoDen 08:00:84 TomenEle 08:00:85 Elxsi 08:00:86 Imagen/Q 08:00:87 XyplexTe 08:00:88 Mcdata 08:00:89 Kinetics 08:00:8a Perftech 08:00:8b Pyramid 08:00:8c NetworkR 08:00:8d Xyvision 08:00:8e Tandem/S 08:00:8f Chipcom 08:00:90 Retix 08:01:0f SichuanT 08:02:8e Netgear 08:03:71 KrgCorpo 08:05:81 Roku 08:05:cd Dongguan 08:08:c2 Samsung 08:08:ea Amsc 08:09:b6 Masimo 08:0a:4e PlanetBi 08:0c:0b SysmikDr 08:0c:c9 MissionT 08:0d:84 Geco 08:0e:a8 VelexSRL 08:0f:fa Ksp 08:11:5e Bitel 08:11:96 Intel 08:14:43 Unibrain 08:16:51 Shenzhen 08:17:35 Cisco 08:17:f4 IBM 08:18:1a Zte 08:18:4c ASThomas 08:19:a6 Huawei 08:1d:fb Shanghai 08:1f:3f Wondalin 08:1f:71 TP-Link 08:1f:eb Bincube 08:1f:f3 Cisco 08:21:ef Samsung 08:23:b2 VivoMobi 08:25:22 Advansee 08:27:19 ApsSyste 08:27:ce NaganoKe 08:2a:d0 SrdInnov 08:2c:b0 NetworkI 08:2e:5f HP 08:30:6b PaloAlto 08:35:71 Caswell 08:37:3d Samsung 08:37:9c Topaz 08:38:a5 Funkwerk 08:3a:5c Junilab 08:3a:b8 ShinodaP 08:3d:88 Samsung 08:3e:0c ArrisGro 08:3e:5d Sagemcom 08:3e:8e HonHaiPr 08:3f:3e Wsh 08:3f:76 Intellia 08:3f:bc Zte 08:40:27 Gridstor 08:46:56 Veo-Labs 08:48:2c RaycoreT 08:4e:1c H2aLlc 08:4e:bf BroadNet 08:51:14 QingdaoT 08:51:2e OrionDia 08:52:40 EbvElekt 08:57:00 TP-Link 08:5a:e0 Recovisi 08:5b:0e Fortinet 08:5b:da Clinicar 08:5d:dd Mercury 08:60:6e ASUS 08:62:66 ASUS 08:63:61 Huawei 08:66:98 Apple 08:68:d0 JapanSys 08:68:ea EitoElec 08:6a:0a AskeyCom 08:6d:41 Apple 08:6d:f2 Shenzhen 08:70:45 Apple 08:74:02 Apple 08:74:f6 Winterha 08:75:72 ObeluxOy 08:76:18 VieTechn 08:76:95 AutoIndu 08:76:ff ThomsonT 08:79:99 Aim 08:7a:4c Huawei 08:7b:aa Svyazkom 08:7c:be Quintic 08:7d:21 AltasecT 08:80:39 Cisco 08:81:bc Hongkong 08:81:f4 JuniperN 08:86:20 TecnoMob 08:86:3b BelkinIn 08:8c:2c Samsung 08:8d:c8 RyowaEle 08:8e:4f SfSoftwa 08:8f:2c HillsSou 08:94:ef WistronI 08:95:2a Technico 08:96:ad Cisco 08:96:d7 Avm 08:97:58 Shenzhen 08:9b:4b IkuaiNet 08:9e:01 QuantaCo 08:9e:08 Google 08:9f:97 LeroyAut 08:a1:2b Shenzhen 08:a5:c8 SunnovoI 08:a9:5a AzureWave 08:ac:a5 BenuVide 08:af:78 TotusSol 08:b2:58 JuniperN 08:b2:a3 CynnyIta 08:b4:cf AbicomIn 08:b7:38 Lite-OnT 08:b7:ec Wireless 08:bb:cc Ak-NordE 08:bd:43 Netgear 08:be:09 AstrolEl 08:be:77 GreenEle 08:c0:21 Huawei 08:c6:b3 QtechLlc 08:ca:45 ToyouFei 08:cc:68 Cisco 08:cc:a7 Cisco 08:cd:9b SamtecAu 08:d0:9f Cisco 08:d0:b7 QingdaoH 08:d2:9a Proforma 08:d3:4b TechmanE 08:d4:0c Intel 08:d4:2b Samsung 08:d5:c0 SeersTec 08:d8:33 Shenzhen 08:df:1f Bose 08:e5:da NanjingF 08:e6:72 JebseeEl 08:e8:4f Huawei 08:ea:40 Shenzhen 08:ea:44 Aerohive 08:eb:29 JiangsuH 08:eb:74 Humax 08:eb:ed WorldEli 08:ec:a9 Samsung 08:ed:02 IEEERegi 08:ed:b9 HonHaiPr 08:ee:8b Samsung 08:ef:3b McsLogic 08:ef:ab SaymeWir 08:f1:b7 Towerstr 08:f2:f4 NetOnePa 08:f6:f8 GetEngin 08:f7:28 GloboMul 08:fa:e0 FohhnAud 08:fc:52 OpenxsBv 08:fc:88 Samsung 08:fd:0e Samsung 09:00:6a AT&T 0c:02:27 Technico 0c:04:00 JantarDO 0c:05:35 Juniper 0c:11:05 Ringslin 0c:11:67 Cisco 0c:12:62 Zte 0c:13:0b Uniqoteq 0c:14:20 Samsung 0c:15:39 Apple 0c:15:c5 Sdtec 0c:17:f1 Telecsys 0c:19:1f InformEl 0c:1a:10 Acoustic 0c:1d:af XiaomiCo 0c:1d:c2 SeahNetw 0c:20:26 NoaxTech 0c:25:76 Longchee 0c:27:24 Cisco 0c:27:55 Valuable 0c:2a:69 Electric 0c:2a:e7 BeijingG 0c:2d:89 QiiqComm 0c:30:21 Apple 0c:37:dc Huawei 0c:38:3e FanvilTe 0c:39:56 Observat 0c:3c:65 DomeImag 0c:3c:cd Universa 0c:3e:9f Apple 0c:41:3e Microsoft 0c:45:ba Huawei 0c:46:9d MsSedco 0c:47:3d HitronTe 0c:47:c9 AmazonTe 0c:48:85 LG 0c:49:33 SichuanJ 0c:4c:39 Mitrasta 0c:4d:e9 Apple 0c:4f:5a Asa-RtSR 0c:51:01 Apple 0c:51:f7 ChauvinA 0c:54:a5 Pegatron 0c:54:b9 Nokia 0c:55:21 Axiros 0c:56:5c HybroadV 0c:57:eb Mueller 0c:5a:19 AxtionSd 0c:5a:9e Wi-SunAl 0c:5c:d8 DoliElek 0c:5f:35 NiagaraV 0c:60:76 HonHaiPr 0c:61:27 Actionte 0c:61:cf TexasIns 0c:63:fc NanjingS 0c:68:03 Cisco 0c:6a:e6 StanleyS 0c:6e:4f Primevol 0c:6f:9c ShawComm 0c:71:5d Samsung 0c:72:2c TP-Link 0c:73:be Dongguan 0c:74:c2 Apple 0c:75:23 BeijingG 0c:75:6c AnarenMi 0c:75:bd Cisco 0c:77:1a Apple 0c:7d:7c KexiangI 0c:81:12 Private 0c:82:30 Shenzhen 0c:82:68 TP-Link 0c:82:6a WuhanHua 0c:84:11 AOSmithW 0c:84:84 ZenoviaE 0c:84:dc HonHaiPr 0c:85:25 Cisco 0c:86:10 JuniperN 0c:89:10 Samsung 0c:8a:87 Aglogica 0c:8b:fd Intel 0c:8c:8f KamoTech 0c:8c:dc SuuntoOy 0c:8d:98 TopEight 0c:8d:db Cisco 0c:91:60 HuiZhouG 0c:92:4e RiceLake 0c:93:01 PtPrasim 0c:93:fb BnsSolut 0c:96:bf Huawei 0c:9b:13 Shanghai 0c:9d:56 ConsortC 0c:9e:91 Sankosha 0c:a1:38 BlinqWir 0c:a2:f4 Chameleo 0c:a4:02 Alcatel- 0c:a4:2a ObTeleco 0c:a6:94 SunitecE 0c:ac:05 UnitendT 0c:af:5a GenusPow 0c:b3:19 Samsung 0c:b4:ef Digience 0c:b5:de AlcatelL 0c:b9:12 Jm-Data 0c:bc:9f Apple 0c:bd:51 TctMobil 0c:bf:15 Genetec 0c:bf:3f Shenzhen 0c:c0:c0 MagnetiM 0c:c3:a7 Meritec 0c:c4:7a SuperMic 0c:c4:7e Eucast 0c:c6:55 WuxiYste 0c:c6:6a Nokia 0c:c6:ac Dags 0c:c7:31 Currant 0c:c8:1f SummerIn 0c:c9:c6 SamwinHo 0c:cb:8d AscoNuma 0c:cc:26 Airenetw 0c:cd:d3 Eastrive 0c:cd:fb Edic 0c:cf:d1 Springwa 0c:d2:92 Intel 0c:d2:b5 Binatone 0c:d5:02 WestellT 0c:d6:96 Amimon 0c:d6:bd Huawei 0c:d7:46 Apple 0c:d7:c2 AxiumTec 0c:d8:6c Shenzhen 0c:d9:96 Cisco 0c:d9:c1 Visteon 0c:da:41 Hangzhou 0c:dc:cc InalaTec 0c:dd:ef Nokia 0c:df:a4 Samsung 0c:e0:e4 Plantron 0c:e5:d3 DhElectr 0c:e7:09 FoxCrypt 0c:e7:25 Microsoft 0c:e8:2f Bonfigli 0c:e9:36 ElimosSr 0c:ee:e6 HonHaiPr 0c:ef:7c Anacom 0c:ef:af IEEERegi 0c:f0:19 MalgnTec 0c:f0:b4 Globalsa 0c:f3:61 JavaInfo 0c:f3:ee EmMicroe 0c:f4:05 BeijingS 0c:f4:d5 RuckusWi 0c:f5:a4 Cisco 0c:f8:93 ArrisGro 0c:f9:c0 Bskyb 0c:fc:83 AirohaTe 0c:fd:37 SuseLinu 0c:fe:45 Sony 10:00:00 Private 10:00:5a IBM 10:00:90 HP 10:00:d4 DEC 10:00:e0 AppleA/U 10:00:e8 National 10:00:fd Laonpeop 10:01:ca AshleyBu 10:02:b5 Intel 10:05:01 Pegatron 10:05:b1 ArrisGro 10:05:ca Cisco 10:07:23 IEEERegi 10:08:b1 HonHaiPr 10:09:0c JanomeSe 10:0b:a9 Intel 10:0c:24 Pomdevic 10:0d:2f OnlineSe 10:0d:32 Embedian 10:0d:7f Netgear 10:0e:2b NecCasio 10:0e:7e JuniperN 10:0f:18 FuGangEl 10:10:b6 Mccain 10:12:12 VivoInte 10:12:18 Korins 10:12:48 Itg 10:12:50 Integrat 10:13:31 Technico 10:13:ee JustecIn 10:18:9e ElmoMoti 10:1b:54 Huawei 10:1c:0c Apple 10:1d:51 On-QLlcD 10:1d:c0 Samsung 10:1f:74 HP 10:22:79 Zerodesk 10:27:be Tvip 10:28:31 Morion 10:2a:b3 XiaomiCo 10:2c:83 Ximea 10:2d:96 Looxcie 10:2e:af TexasIns 10:2f:6b Microsoft 10:30:47 Samsung 10:33:78 Flectron 10:37:11 SimlinkA 10:3b:59 Samsung 10:3d:ea HfcTechn 10:40:f3 Apple 10:41:7f Apple 10:43:69 Soundmax 10:44:5a ShaanxiH 10:45:be Norphoni 10:45:f8 Lnt-Auto 10:47:80 Huawei 10:48:b1 BeijingD 10:4a:7d Intel 10:4b:46 Mitsubis 10:4d:77 Innovati 10:4e:07 Shanghai 10:4f:a8 Sony 10:51:72 Huawei 10:56:11 ArrisGro 10:56:ca PeplinkI 10:58:87 Fiberhom 10:5a:f7 AdbItali 10:5c:3b Perma-Pi 10:5c:bf Durobyte 10:5f:06 Actionte 10:5f:49 Cisco 10:60:4b HP 10:62:c9 Adatis 10:62:eb D-Link 10:64:e2 AdfwebCo 10:65:a3 CoreBran 10:65:cf Iqsim 10:66:82 NecPlatf 10:68:3f LG 10:6f:3f Buffalo 10:6f:ef Ad-SolNi 10:71:f9 CloudTel 10:72:23 Tellesco 10:76:8a Eocell 10:77:b0 Fiberhom 10:77:b1 Samsung 10:78:5b Actionte 10:78:73 Shenzhen 10:78:ce HanvitSi 10:78:d2 Elitegro 10:7a:86 U&UEngin 10:7b:ef ZyxelCom 10:7d:1a Dell 10:83:d2 Microsev 10:86:8c ArrisGro 10:88:0f DarumaTe 10:88:ce Fiberhom 10:8a:1b Raonix 10:8c:cf Cisco 10:92:66 Samsung 10:93:e9 Apple 10:95:4b Megabyte 10:98:36 Dell 10:9a:b9 TosiboxO 10:9a:dd Apple 10:9f:a9 Actionte 10:a1:3b Fujikura 10:a5:d0 MurataMa 10:a6:59 MobileCr 10:a7:43 SkMtek 10:a9:32 BeijingC 10:ae:60 Private 10:af:78 Shenzhen 10:b1:f8 Huawei 10:b2:6b Base 10:b7:13 Private 10:b7:f6 Plastofo 10:b9:fe LikaSrl 10:ba:a5 GanaI&C 10:bd:18 Cisco 10:bd:55 Q-Lab 10:be:f5 D-Link 10:bf:48 ASUS 10:c0:7c Blu-RayD 10:c2:ba Utt 10:c3:7b ASUS 10:c5:86 BioSound 10:c6:0c DominoUk 10:c6:1f Huawei 10:c6:7e Shenzhen 10:c6:fc GarminIn 10:c7:3f MidasKla 10:ca:81 Precia 10:cc:1b Liverock 10:cc:db AximumPr 10:cd:ae Avaya 10:cd:b6 Essentia 10:d0:7a AmpakTec 10:d0:ab Zte 10:d1:dc InstarDe 10:d3:8a Samsung 10:d5:42 Samsung 10:da:43 Netgear 10:dd:b1 Apple 10:dd:f4 MaxwayEl 10:de:e4 Automati 10:df:8b Shenzhen 10:e2:d5 QiHardwa 10:e3:c7 SeohwaTe 10:e4:af AprLlc 10:e6:8f Kwangsun 10:e6:ae SourceTe 10:e8:78 Nokia 10:e8:ee Phasespa 10:ea:59 Cisco 10:ee:d9 CanogaPe 10:f0:05 Intel 10:f3:11 Cisco 10:f3:db Gridco 10:f4:9a T3Innova 10:f6:81 VivoMobi 10:f9:6f LG 10:f9:ee Nokia 10:fa:ce Reacheng 10:fb:f0 Kangshen 10:fc:54 ShanyEle 10:fe:ed TP-Link 11:00:aa Private 11:11:11 Private 14:02:ec HP 14:04:67 SnkTechn 14:07:08 Private 14:07:e0 Abrantix 14:0c:5b Plnetwor 14:0c:76 FreeboxS 14:0d:4f Flextron 14:10:9f Apple 14:13:30 Anakreon 14:13:57 AtpElect 14:14:4b RuijieNe 14:14:e6 NingboSa 14:15:7c TokyoCos 14:18:77 Dell 14:1a:51 Treetech 14:1a:a3 Motorola 14:1b:bd Volex 14:1b:f0 Intellim 14:1f:78 Samsung 14:1f:ba IEEERegi 14:22:db Eero 14:23:d7 Eutronix 14:29:71 NemoaEle 14:2b:d2 Armtel 14:2b:d6 Guangdon 14:2d:27 HonHaiPr 14:2d:8b IncipioT 14:2d:f5 Amphitec 14:2f:fd LtSecuri 14:30:04 Huawei 14:30:7a Avermetr 14:30:c6 Motorola 14:32:d1 Samsung 14:33:65 TemMobil 14:35:8b Mediabri 14:35:b3 FutureDe 14:36:05 Nokia 14:36:c6 LenovoMo 14:37:3b Procom 14:3a:ea Dynapowe 14:3d:f2 BeijingS 14:3e:60 Nokia 14:3e:bf Zte 14:3f:27 NoccelaO 14:41:46 Honeywel 14:41:e2 MonacoEn 14:43:19 Creative 14:46:e4 Avistel 14:48:8b Shenzhen 14:49:78 DigitalC 14:49:e0 Samsung 14:4c:1a MaxCommu 14:4d:67 ZioncomE 14:4f:d7 IEEERegi 14:54:12 Entis 14:56:45 Savitech 14:56:8e Samsung 14:58:d0 HP 14:5a:05 Apple 14:5a:83 Logi-D 14:5b:d1 ArrisGro 14:5b:e1 NyantecU 14:5e:45 Kaleao 14:5f:94 Huawei 14:60:80 Zte 14:61:02 AlpineEl 14:61:2f Avaya 14:63:08 JabilCir 14:6a:0b CypressE 14:6b:72 Shenzhen 14:6e:0a Private 14:73:73 TubitakU 14:74:11 Rim 14:75:90 TP-Link 14:78:0b Perkinel 14:7d:b3 JoaTelec 14:7d:c5 MurataMa 14:82:5b HefeiRad 14:86:92 TP-Link 14:89:3e VixtelTe 14:89:51 LcfcHefe 14:89:fd Samsung 14:8a:70 Ads 14:8f:21 GarminIn 14:8f:c6 Apple 14:90:90 KongtopI 14:91:82 BelkinIn 14:94:48 BluCastl 14:98:7d Technico 14:99:e2 Apple 14:9a:10 Microsoft 14:9d:09 Huawei 14:9e:cf Dell 14:9f:e8 LenovoMo 14:a0:f8 Huawei 14:a3:64 Samsung 14:a5:1a Huawei 14:a6:2c SMDezacS 14:a7:8b Zhejiang 14:a8:6b Shenzhen 14:a9:e3 Mst 14:ab:c5 Intel 14:ab:f0 ArrisGro 14:ae:db VtechTel 14:b1:26 Industri 14:b1:c8 Infiniwi 14:b3:1f Dell 14:b3:70 GigasetD 14:b4:84 Samsung 14:b7:3d ArcheanT 14:b7:f8 Technico 14:b8:37 Shenzhen 14:b9:68 Huawei 14:bb:6e Samsung 14:bd:61 Apple 14:c0:89 DuneHd 14:c1:26 Nokia 14:c1:ff Shenzhen 14:c2:1d SabtechI 14:c3:c2 KASchmer 14:c9:13 LG 14:cc:20 TP-Link 14:cf:8d OhsungEl 14:cf:92 TP-Link 14:cf:e2 ArrisGro 14:d1:1f Huawei 14:d4:fe ArrisGro 14:d6:4d D-Link 14:d7:6e ConchEle 14:da:e9 ASUS 14:db:85 SNetMedi 14:dd:a9 ASUS 14:dd:e5 Mpmkvvcl 14:e4:ec MlogicLl 14:e6:e4 TP-Link 14:e7:c8 Integrat 14:eb:33 Bsmedias 14:ed:a5 Wächter 14:ed:bb 2wire 14:ed:e4 Kaiam 14:ee:9d AirnavLl 14:f0:c5 Xtremio 14:f2:8e Shenyang 14:f4:2a Samsung 14:f6:5a XiaomiCo 14:f8:93 WuhanFib 14:fe:af Sagittar 14:fe:b5 Dell 18:00:2d Sony 18:00:db Fitbit 18:01:7d HarbinAr 18:01:e3 BittiumW 18:03:73 Dell 18:03:fa IbtInter 18:06:75 DilaxInt 18:0b:52 Nanotron 18:0c:14 Isonea 18:0c:77 Westingh 18:0c:ac Canon 18:10:4e Cedint-U 18:12:12 CeptonTe 18:14:20 TebSas 18:14:56 Nokia 18:16:c9 Samsung 18:17:14 Daewoois 18:17:25 CameoCom 18:19:3f TamtronO 18:1b:eb Actionte 18:1e:78 Sagemcom 18:1e:b0 Samsung 18:20:12 AztechAs 18:20:32 Apple 18:20:4c Kummler+ 18:20:a6 Sage 18:21:95 Samsung 18:22:7e Samsung 18:26:66 Samsung 18:28:61 AirtiesW 18:2a:7b Nintendo 18:2b:05 8dTechno 18:2c:91 ConceptD 18:2c:b4 Nectarso 18:30:09 WoojinIn 18:32:a2 LaonTech 18:33:9d Cisco 18:34:51 Apple 18:35:d1 ArrisGro 18:36:fc ElecsysI 18:38:25 WuhanLin 18:38:64 Cap-Tech 18:39:19 Unicoi 18:3a:2d Samsung 18:3b:d2 BydPreci 18:3d:a2 Intel 18:3f:47 Samsung 18:40:a4 Shenzhen 18:42:1d Private 18:42:2f AlcatelL 18:44:62 RiavaNet 18:44:e6 Zte 18:46:17 Samsung 18:48:d8 Fastback 18:4a:6f Alcatel- 18:4e:94 MessoaTe 18:4f:32 HonHaiPr 18:52:07 SichuanT 18:52:53 Pixord 18:53:e0 HanyangD 18:55:0f Cisco 18:59:33 Cisco 18:59:36 XiaomiCo 18:5a:e8 Zenotech 18:5d:9a Bobjgear 18:5e:0f Intel 18:61:c7 Lemonbea 18:62:2c Sagemcom 18:64:72 ArubaNet 18:65:71 TopVicto 18:65:90 Apple 18:66:da Dell 18:66:e3 Veros 18:67:3f HanoverD 18:67:51 KomegInd 18:67:b0 Samsung 18:68:6a Zte 18:68:82 BewardR& 18:68:cb Hangzhou 18:6d:99 Adanis 18:71:17 EtaPlusE 18:75:32 SichuanT 18:79:a2 GmjElect 18:7a:93 AmiccomE 18:7c:81 ValeoVis 18:7e:d5 Shenzhen 18:80:ce Barberry 18:80:f5 Alcatel- 18:82:19 AlibabaC 18:83:31 Samsung 18:83:bf Arcadyan 18:84:10 Coretrus 18:86:3a DigitalA 18:86:ac NokiaDan 18:87:96 HTC 18:88:57 BeijingJ 18:89:5b Samsung 18:89:df Cerebrex 18:8b:15 Shenzhen 18:8b:45 Cisco 18:8b:9d Cisco 18:8e:d5 TpVision 18:8e:f9 G2c 18:92:2c VirtualI 18:93:d7 TexasIns 18:97:ff Techfait 18:99:f5 SichuanC 18:9a:67 Cse-Serv 18:9c:5d Cisco 18:9e:fc Apple 18:a3:e8 Fiberhom 18:a6:f7 TP-Link 18:a9:05 HP 18:a9:58 Provisio 18:a9:9b Dell 18:aa:45 FonTechn 18:ab:f5 UltraEle 18:ad:4d Polostar 18:ae:bb SiemensC 18:af:61 Apple 18:af:8f Apple 18:af:9f Digitron 18:b1:69 Sonicwal 18:b2:09 TorreyPi 18:b3:ba Netlogic 18:b4:30 NestLabs 18:b5:91 I-Storm 18:b7:9e Invoxia 18:bd:ad L-Tech 18:c0:86 Broadcom 18:c4:51 TucsonEm 18:c5:01 Shenzhen 18:c5:8a Huawei 18:c8:e7 Shenzhen 18:cc:23 PhilioTe 18:cf:5e LiteonTe 18:d0:71 Dasan 18:d2:25 Fiberhom 18:d2:76 Huawei 18:d5:b6 SmgHoldi 18:d6:6a Inmarsat 18:d6:c7 TP-Link 18:d6:cf KurthEle 18:d9:49 QvisLabs 18:db:f2 Dell 18:dc:56 YulongCo 18:de:d7 Huawei 18:e2:88 SttCondi 18:e2:9f VivoMobi 18:e2:c2 Samsung 18:e3:bc TctMobil 18:e7:28 Cisco 18:e7:f4 Apple 18:e8:0f VikingEl 18:e8:dd Modulete 18:ee:69 Apple 18:ef:63 Cisco 18:f1:45 NetcommW 18:f2:92 Shannon 18:f4:6a HonHaiPr 18:f6:43 Apple 18:f6:50 Multimed 18:f7:6b Zhejiang 18:f8:7a I3Intern 18:fa:6f IscAppli 18:fb:7b Dell 18:fc:9f ChangheE 18:fe:34 Espressi 18:ff:0f Intel 18:ff:2e Shenzhen 1c:06:56 Idy 1c:08:c1 LG 1c:0b:52 EpicomSA 1c:0f:cf SyproOpt 1c:11:e1 Wartsila 1c:12:9d IEEEPesP 1c:14:48 ArrisGro 1c:14:b3 AirwireT 1c:17:d3 Cisco 1c:18:4a Shenzhen 1c:19:de Eyevis 1c:1a:c0 Apple 1c:1b:0d Giga-Byt 1c:1b:68 ArrisGro 1c:1c:fd DalianHi 1c:1d:67 Huawei 1c:1d:86 Cisco 1c:1e:e3 HuiZhouG 1c:1f:d4 Lifebeam 1c:21:d1 IEEERegi 1c:23:2c Samsung 1c:23:4f EdmiEuro 1c:25:e1 ChinaMob 1c:33:0e Pernixda 1c:33:4d ItsTelec 1c:34:77 Innovati 1c:35:f1 NewLiftN 1c:37:bf Cloudium 1c:39:47 CompalIn 1c:39:8a Fiberhom 1c:3a:4f Accuspec 1c:3a:de Samsung 1c:3d:e7 SigmaKok 1c:3e:84 HonHaiPr 1c:40:24 Dell 1c:40:e8 Shenzhen 1c:41:58 GemaltoM 1c:43:ec JapanCir 1c:44:19 TP-Link 1c:45:93 TexasIns 1c:48:40 ImsMesss 1c:48:ce Guangdon 1c:48:f9 GnNetcom 1c:49:7b GemtekTe 1c:4a:f7 Amon 1c:4b:b9 SmgEnter 1c:4b:d6 AzureWave 1c:4d:70 Intel 1c:51:b5 Techaya 1c:52:16 Dongguan 1c:52:d6 FlatDisp 1c:55:3a Qiangua 1c:56:fe Motorola 1c:57:d8 Kraftway 1c:5a:0b Tegile 1c:5a:3e Samsung 1c:5a:6b Philips 1c:5c:55 PrimaCin 1c:5c:60 Shenzhen 1c:5c:f2 Apple 1c:5f:2b D-Link 1c:5f:ff BeijingE 1c:60:de Shenzhen 1c:62:b8 Samsung 1c:63:b7 Openprod 1c:65:9d LiteonTe 1c:66:6d HonHaiPr 1c:66:aa Samsung 1c:67:58 Huawei 1c:69:a5 Blackber 1c:6a:7a Cisco 1c:6b:ca Mitsunam 1c:6e:4c Logistic 1c:6e:76 QuarionT 1c:6f:65 Giga-Byt 1c:73:70 Neotech 1c:74:0d ZyxelCom 1c:75:08 CompalIn 1c:76:ca TerasicT 1c:77:f6 Guangdon 1c:78:39 Shenzhen 1c:7b:21 Sony 1c:7b:23 QingdaoH 1c:7c:11 Eid 1c:7c:45 VitekInd 1c:7c:c7 Coriant 1c:7d:22 FujiXero 1c:7e:51 3bumenCo 1c:7e:e5 D-Link 1c:83:41 HefeiBit 1c:83:b0 LinkedIp 1c:84:64 FormosaW 1c:86:ad Mct 1c:87:2c ASUS 1c:8e:5c Huawei 1c:8e:8e DbCommun 1c:8f:8a PhaseMot 1c:91:48 Apple 1c:91:79 Integrat 1c:94:92 RuagSchw 1c:95:5d I-LaxEle 1c:95:9f Veethree 1c:96:5a WeifangG 1c:97:3d PricomDe 1c:98:ec HP 1c:99:4c MurataMa 1c:9c:26 ZoovelTe 1c:9d:3e Integrat 1c:9e:46 Apple 1c:9e:cb BeijingN 1c:a0:d3 IEEERegi 1c:a2:b1 RuwidoAu 1c:a5:32 Shenzhen 1c:a7:70 Shenzhen 1c:aa:07 Cisco 1c:ab:01 Innovolt 1c:ab:a7 Apple 1c:ab:c0 HitronTe 1c:ad:d1 BosungEl 1c:af:05 Samsung 1c:af:f7 D-Link 1c:b0:94 HTC 1c:b1:7f NecPlatf 1c:b2:43 Tdc 1c:b7:2c ASUS 1c:b8:57 BeconTec 1c:b9:c4 RuckusWi 1c:ba:8c TexasIns 1c:bb:a8 OjscUfim 1c:bd:0e Amplifie 1c:bd:b9 D-Link 1c:c0:35 PlanexCo 1c:c0:e1 IEEERegi 1c:c1:1a Wavetron 1c:c1:de HP 1c:c3:16 Milesigh 1c:c5:86 Absolute 1c:c6:3c Arcadyan 1c:c7:2d Shenzhen 1c:ca:e3 IEEERegi 1c:cb:99 TctMobil 1c:cd:e5 Shanghai 1c:d4:0c KriwanIn 1c:d6:bd Leedarso 1c:da:27 VivoMobi 1c:de:a7 Cisco 1c:df:0f Cisco 1c:e1:65 Marshal 1c:e1:92 Qisda 1c:e2:cc TexasIns 1c:e6:2b Apple 1c:e6:c7 Cisco 1c:e8:5d Cisco 1c:ea:1b Nokia 1c:ee:c9 EloTouch 1c:ee:e8 IlshinEl 1c:ef:ce BebroEle 1c:f0:3e Wearhaus 1c:f0:61 Scaps 1c:f4:ca Private 1c:f5:e7 TurtleIn 1c:fa:68 TP-Link 1c:fc:bb Realfict 1c:fe:a7 Identyte 20:01:4f LineaRes 20:02:af MurataMa 20:05:05 RadmaxCo 20:05:e8 OooInpro 20:08:ed Huawei 20:0a:5e Xiangsha 20:0b:c7 Huawei 20:0c:c8 Netgear 20:0e:95 Iec–Tc9W 20:10:7a GemtekTe 20:12:57 MostLuck 20:12:d5 Scientec 20:13:e0 Samsung 20:16:d8 LiteonTe 20:18:0e Shenzhen 20:1a:06 CompalIn 20:1d:03 Elatec 20:21:a5 LG 20:25:64 Pegatron 20:25:98 Teleview 20:28:bc Visionsc 20:2b:c1 Huawei 20:2c:b7 KongYueE 20:2d:07 Samsung 20:2d:f8 DigitalM 20:31:eb Hdsn 20:37:06 Cisco 20:37:bc KuipersE 20:3a:07 Cisco 20:3a:ef Sivantos 20:3c:ae Apple 20:3d:66 ArrisGro 20:3d:b2 Huawei 20:40:05 Feno 20:41:5a SmartehD 20:44:3a Schneide 20:46:a1 Vecow 20:46:f9 Advanced 20:47:47 Dell 20:47:ed Bskyb 20:4a:aa HanscanS 20:4c:03 ArubaNet 20:4c:6d HugoBren 20:4c:9e Cisco 20:4e:6b AxxanaIs 20:4e:71 JuniperN 20:4e:7f Netgear 20:53:ca RiskTech 20:54:76 Sony 20:55:31 Samsung 20:55:32 GotechIn 20:57:21 SalixTec 20:57:af Shenzhen 20:59:a0 ParagonT 20:5a:00 Coval 20:5b:2a Private 20:5b:5e Shenzhen 20:5c:fa Yangzhou 20:5d:47 VivoMobi 20:5e:f7 Samsung 20:62:74 Microsoft 20:63:5f Abeeway 20:64:32 Samsung 20:67:b1 Pluto 20:68:9d LiteonTe 20:6a:8a WistronI 20:6a:ff AtlasEle 20:6b:e7 TP-Link 20:6c:8a Aerohive 20:6e:9c Samsung 20:6f:ec BraemacC 20:71:9e SfTechno 20:73:55 ArrisGro 20:74:cf Shenzhen 20:76:00 Actionte 20:76:8f Apple 20:76:93 LenovoBe 20:78:0b DeltaFau 20:78:f0 Apple 20:7c:8f QuantaMi 20:7d:74 Apple 20:82:c0 XiaomiCo 20:85:8c Assa 20:87:56 Siemens 20:87:ac AesMotom 20:89:6f Fiberhom 20:89:84 CompalIn 20:89:86 Zte 20:8b:37 Skyworth 20:90:6f Shenzhen 20:91:48 TexasIns 20:91:8a Profalux 20:91:d9 IM 20:93:4d FujianSt 20:9a:e9 Volacomm 20:9b:a5 JiaxingG 20:9b:cd Apple 20:a2:e4 Apple 20:a2:e7 Lee-Dick 20:a6:80 Huawei 20:a7:83 Micontro 20:a7:87 BointecT 20:a8:b9 Siemens 20:a9:0e TctMobil 20:a9:9b Microsoft 20:aa:25 Ip-NetLl 20:aa:4b Cisco 20:ab:37 Apple 20:b0:f7 Enclustr 20:b3:99 Enterasy 20:b5:c6 MimosaNe 20:b7:c0 OmicronE 20:bb:76 ColGiova 20:bb:c0 Cisco 20:bb:c6 JabilCir 20:bf:db Dvl 20:c0:47 Verizon 20:c0:6d Shenzhen 20:c1:af IWitDigi 20:c3:8f TexasIns 20:c3:a4 Retailne 20:c6:0d Shanghai 20:c6:eb Panasoni 20:c8:b3 Shenzhen 20:c9:d0 Apple 20:cd:39 TexasIns 20:ce:c4 PerasoTe 20:cf:30 ASUS 20:d1:60 Private 20:d2:1f WincalTe 20:d2:5f Smartcap 20:d3:90 Samsung 20:d5:ab KoreaInf 20:d5:bf Samsung 20:d6:07 Nokia 20:d7:5a PoshMobi 20:d9:06 Iota 20:db:ab Samsung 20:dc:93 CheetahH 20:dc:e6 TP-Link 20:df:3f NanjingS 20:e4:07 SparkSrl 20:e5:2a Netgear 20:e5:64 ArrisGro 20:e7:91 SiemensH 20:ea:c7 Shenzhen 20:ed:74 AbilityE 20:ee:c6 Elefirst 20:f0:02 MtdataDe 20:f1:7c Huawei 20:f3:a3 Huawei 20:f4:1b Shenzhen 20:f4:52 Shanghai 20:f5:10 CodexDig 20:f5:43 HuiZhouG 20:f8:5e DeltaEle 20:fa:bb Cambridg 20:fd:f1 3comEuro 20:fe:cd SystemIn 20:fe:db M2mSolut 24:00:ba Huawei 24:01:c7 Cisco 24:05:0f MtnElect 24:05:f5 Integrat 24:09:17 DevlinEl 24:09:95 Huawei 24:0a:11 TctMobil 24:0a:64 AzureWave 24:0a:c4 Espressi 24:0b:0a PaloAlto 24:0b:2a ViettelG 24:0b:b1 KostalIn 24:0d:65 Shenzhen 24:0d:c2 TctMobil 24:10:64 Shenzhen 24:11:25 Hutek 24:11:48 Entropix 24:11:d0 Chongqin 24:1a:8c Squarehe 24:1b:13 Shanghai 24:1b:44 Hangzhou 24:1c:04 Shenzhen 24:1e:eb Apple 24:1f:2c Calsys 24:1f:a0 Huawei 24:20:c7 Sagemcom 24:21:ab Sony 24:24:0e Apple 24:26:42 Sharp 24:2f:fa ToshibaG 24:31:84 Sharp 24:33:6c Private 24:35:cc Zhongsha 24:37:4c Cisco 24:37:ef EmcElect 24:3c:20 Dynamode 24:42:bc Alinco 24:44:27 Huawei 24:45:97 GemueGeb 24:47:0e Pentroni 24:49:7b Innovati 24:4b:03 Samsung 24:4b:81 Samsung 24:4c:07 Huawei 24:4e:7b IEEERegi 24:4f:1d IruleLlc 24:59:0b WhiteSky 24:5b:a7 Apple 24:5b:f0 Liteon 24:5c:bf Ncse 24:5e:be Qnap 24:5f:df Kyocera 24:60:81 RazberiT 24:61:5a ChinaMob 24:62:78 Sysmocom 24:64:ef CygSunri 24:65:11 Avm 24:69:3e Innodisk 24:69:4a Jasmine 24:69:68 TP-Link 24:69:a5 Huawei 24:6a:ab It-IsInt 24:6c:8a YukaiEng 24:6e:96 Dell 24:71:89 TexasIns 24:72:60 Iottech 24:76:56 Shanghai 24:76:7d Cisco 24:77:03 Intel 24:79:2a RuckusWi 24:7c:4c HermanMi 24:7f:20 Sagemcom 24:7f:3c Huawei 24:80:00 Westcont 24:81:aa KshInter 24:82:8a ProwaveT 24:86:f4 Ctek 24:87:07 Senergy 24:88:94 Shenzhen 24:8a:07 Mellanox 24:92:0e Samsung 24:93:ca Voxtroni 24:94:42 OpenRoad 24:95:04 Sfr 24:97:ed Techvisi 24:9e:ab Huawei 24:a0:74 Apple 24:a2:e1 Apple 24:a4:2c KoukaamA 24:a4:3c Ubiquiti 24:a4:95 ThalesCa 24:a7:dc Bskyb 24:a8:7d Panasoni 24:a9:37 PureStor 24:ab:81 Apple 24:af:4a Alcatel- 24:af:54 NexgenMe 24:b0:a9 Shanghai 24:b6:57 Cisco 24:b6:b8 Friem 24:b6:fd Dell 24:b8:8c Crenus 24:b8:d2 OpzoonTe 24:ba:13 RisoKaga 24:ba:30 Technica 24:bb:c1 Absolute 24:bc:82 DaliWire 24:bc:f8 Huawei 24:be:05 HP 24:bf:74 Private 24:c0:b3 Rsf 24:c1:bd CrrcDali 24:c3:f9 Securita 24:c4:4a Zte 24:c6:96 Samsung 24:c8:48 MywerkSy 24:c8:6e ChaneyIn 24:c9:a1 RuckusWi 24:c9:de Genoray 24:cb:e7 Myk 24:cf:21 Shenzhen 24:d1:3f Mexus 24:d2:cc Smartdri 24:d5:1c Zhongtia 24:d9:21 Avaya 24:da:11 NoNda 24:da:9b Motorola 24:da:b6 Sistemas 24:db:ac Huawei 24:db:ad Shoppert 24:db:ed Samsung 24:de:c6 ArubaNet 24:df:6a Huawei 24:e2:71 QingdaoH 24:e3:14 Apple 24:e4:3f WenzhouK 24:e5:aa Philips 24:e6:ba JscZavod 24:e9:b3 Cisco 24:ea:40 Helmholz 24:eb:65 SaetISSR 24:ec:99 AskeyCom 24:ec:d6 CsgScien 24:ee:3a ChengduY 24:f0:94 Apple 24:f0:ff Ght 24:f2:dd RadiantZ 24:f5:7e Hwh 24:f5:aa Samsung 24:fd:52 LiteonTe 24:fd:5b Smartthi 28:04:e0 FermaxEl 28:06:1e NingboGl 28:06:8d ItlLlc 28:07:0d Guangzho 28:0b:5c Apple 28:0c:28 UnigenDa 28:0c:b8 Mikrosay 28:0d:fc Sony 28:0e:8b BeijingS 28:10:1b Magnacom 28:10:7b D-Link 28:14:71 Lantis 28:16:2e 2wire 28:16:ad Intel 28:17:ce Omnisens 28:18:78 Microsoft 28:18:fd AdityaIn 28:22:46 BeijingS 28:24:ff WistronN 28:25:36 Shenzhen 28:26:a6 PbrElect 28:27:bf Samsung 28:28:5d ZyxelCom 28:29:cc CorsaTec 28:29:d9 Globalbe 28:2c:b2 TP-Link 28:31:52 Huawei 28:32:c5 Humax 28:34:10 EnigmaDi 28:34:a2 Cisco 28:36:38 IEEERegi 28:37:13 Shenzhen 28:37:37 Apple 28:38:cf Gen2wave 28:39:5e Samsung 28:39:e7 PrecenoT 28:3b:96 CoolCont 28:3c:e4 Huawei 28:3f:69 Sony 28:40:1a C8Medise 28:41:21 Optisens 28:44:30 Genesist 28:47:aa Nokia 28:48:46 Gridcent 28:4c:53 IntuneNe 28:4d:92 Luminato 28:4e:d7 Outsmart 28:4f:ce Liaoning 28:51:32 Shenzhen 28:52:61 Cisco 28:52:e0 LayonInt 28:56:5a HonHaiPr 28:57:67 Echostar 28:57:be Hangzhou 28:5a:eb Apple 28:5f:2f Rnware 28:5f:db Huawei 28:60:46 LantechC 28:60:94 Capelec 28:63:36 Siemens- 28:65:6b Keystone 28:6a:b8 Apple 28:6a:ba Apple 28:6c:07 XiaomiEl 28:6d:97 Samjin 28:6e:d4 Huawei 28:6f:7f Cisco 28:71:84 SpirePay 28:72:c5 Smartmat 28:72:f0 Athena 28:76:10 Ignitene 28:76:cd Funshion 28:79:94 Realplay 28:7a:ee ArrisGro 28:7b:09 Zte 28:7c:db HefeiToy 28:80:23 HP 28:83:35 Samsung 28:84:fa Sharp 28:85:2d TouchNet 28:89:15 Cashguar 28:8a:1c JuniperN 28:91:d0 StageTec 28:92:4a HP 28:93:fe Cisco 28:94:0f Cisco 28:94:af SamhwaTe 28:98:7b Samsung 28:99:3a AristaNe 28:9a:4b Steelser 28:9a:fa TctMobil 28:9e:df DanfossT 28:a0:2b Apple 28:a1:83 AlpsElec 28:a1:86 Enblink 28:a1:92 GerpSolu 28:a1:eb EtekTech 28:a2:41 Exlar 28:a2:4b JuniperN 28:a5:74 MillerEl 28:a5:ee Shenzhen 28:a6:db Huawei 28:ac:67 MachPowe 28:af:0a SiriusXm 28:b0:cc XenyaDOO 28:b2:bd Intel 28:b3:ab GenmarkA 28:b4:48 Huawei 28:b9:d9 Radisys 28:ba:18 NextnavL 28:ba:b5 Samsung 28:bb:59 RnetTech 28:bc:18 Sourcing 28:bc:56 Emac 28:be:03 TctMobil 28:be:9b Technico 28:c0:da JuniperN 28:c2:dd AzureWave 28:c6:3f Intel 28:c6:71 YotaDevi 28:c6:8e Netgear 28:c7:18 Altierre 28:c7:ce Cisco 28:c8:25 Dellking 28:c8:7a ArrisGro 28:c9:14 Taimag 28:ca:09 Thyssenk 28:cb:eb One 28:cc:01 Samsung 28:cc:ff Corporac 28:cd:1c EspotelO 28:cd:4c Individu 28:cd:9c Shenzhen 28:cf:da Apple 28:cf:e9 Apple 28:d1:af Nokia 28:d2:44 LcfcHefe 28:d5:76 PremierW 28:d9:3e Telecor 28:d9:8a Hangzhou 28:d9:97 YuduanMo 28:db:81 Shanghai 28:de:f6 Biomerie 28:e0:2c Apple 28:e1:4c Apple 28:e2:97 Shanghai 28:e3:1f XiaomiCo 28:e3:47 LiteonTe 28:e4:76 Pi-Coral 28:e6:08 Tokheim 28:e6:e9 SisSatIn 28:e7:94 Microtim 28:e7:cf Apple 28:ed:58 JagJakob 28:ed:6a Apple 28:ee:2c Frontlin 28:ee:52 TP-Link 28:ee:d3 Shenzhen 28:ef:01 Private 28:f0:76 Apple 28:f1:0e Dell 28:f3:58 2c-Trifo 28:f3:66 Shenzhen 28:f5:32 Add-Engi 28:f6:06 SyesSrl 28:fa:a0 VivoMobi 28:fb:d3 Ragentek 28:fc:51 Electric 28:fc:f6 Shenzhen 28:fd:80 IEEERegi 28:fe:cd Lemobile 28:ff:3e Zte 2c:00:2c Unowhy 2c:00:33 Econtrol 2c:00:f7 Xos 2c:01:0b NascentT 2c:02:9f 3alogics 2c:06:23 WinLeade 2c:07:3c Devline 2c:08:1c Ovh 2c:08:8c Humax 2c:09:4d RaptorEn 2c:09:cb Cobs 2c:0b:e9 Cisco 2c:0e:3d Samsung 2c:10:c1 Nintendo 2c:18:ae TrendEle 2c:19:84 IdnTelec 2c:1a:31 Electron 2c:1b:c8 HunanTop 2c:1d:b8 ArrisGro 2c:1e:ea Aerodev 2c:1f:23 Apple 2c:20:0b Apple 2c:21:31 JuniperN 2c:21:72 JuniperN 2c:21:d7 Imax 2c:22:8b CtrSrl 2c:23:3a HP 2c:24:5f BabolatV 2c:26:17 OculusVr 2c:26:5f IEEERegi 2c:26:c5 Zte 2c:27:d7 HP 2c:28:2d BbkEduca 2c:29:97 Microsoft 2c:2d:48 BctElect 2c:30:33 Netgear 2c:30:68 Pantech 2c:31:24 Cisco 2c:33:11 Cisco 2c:33:61 Apple 2c:33:7a HonHaiPr 2c:34:27 ErcoGene 2c:35:57 ElliyPow 2c:36:a0 Capisco 2c:36:f8 Cisco 2c:37:31 Shenzhen 2c:37:96 Cybo 2c:39:96 Sagemcom 2c:39:c1 Ciena 2c:3a:28 FagorEle 2c:3a:e8 Espressi 2c:3b:fd NetstorT 2c:3e:cf Cisco 2c:3f:38 Cisco 2c:3f:3e Alge-Tim 2c:40:2b SmartIbl 2c:41:38 HP 2c:41:a1 Bose 2c:44:01 Samsung 2c:44:1b Spectrum 2c:44:fd HP 2c:4d:54 ASUS 2c:4d:79 Goertek 2c:50:89 Shenzhen 2c:53:4a Shenzhen 2c:54:2d Cisco 2c:54:cf LG 2c:55:3c Gainspee 2c:55:d3 Huawei 2c:56:dc ASUS 2c:57:31 Wingtech 2c:59:8a LG 2c:59:e5 HP 2c:5a:05 Nokia 2c:5a:0f Cisco 2c:5a:8d Systroni 2c:5a:a3 PromateE 2c:5b:b8 Guangdon 2c:5b:e1 Centripe 2c:5d:93 RuckusWi 2c:5f:f3 Pertroni 2c:60:0c QuantaCo 2c:62:5a FinestSe 2c:62:89 Regeners 2c:63:73 SichuanT 2c:67:98 Intaltec 2c:67:fb Shenzhen 2c:69:ba RfContro 2c:6a:6f IEEERegi 2c:6b:f5 JuniperN 2c:6e:85 Intel 2c:6f:c9 HonHaiPr 2c:71:55 Hivemoti 2c:72:c3 Soundmat 2c:75:0f Shanghai 2c:76:8a HP 2c:7b:5a Milper 2c:7b:84 OooPetrT 2c:7e:81 ArrisGro 2c:7e:cf Onzo 2c:80:65 HartingO 2c:81:58 HonHaiPr 2c:86:d2 Cisco 2c:8a:72 HTC 2c:8b:f2 HitachiM 2c:91:27 Eintechn 2c:92:2c KishuGik 2c:94:64 Cincoze 2c:95:7f Zte 2c:96:62 InvenitB 2c:97:17 ICYBV 2c:99:24 ArrisGro 2c:9a:a4 Eolo 2c:9d:1e Huawei 2c:9e:5f ArrisGro 2c:9e:ec JabilCir 2c:9e:fc Canon 2c:a1:57 Acromate 2c:a1:7d ArrisGro 2c:a2:b4 FortifyT 2c:a3:0e PowerDra 2c:a5:39 Parallel 2c:a7:80 TrueTech 2c:a8:35 Rim 2c:ab:00 Huawei 2c:ab:25 Shenzhen 2c:ab:a4 Cisco 2c:ab:eb Cisco 2c:ac:44 Conextop 2c:ad:13 Shenzhen 2c:ae:2b Samsung 2c:b0:5d Netgear 2c:b0:df SolitonT 2c:b1:15 Integrat 2c:b4:3a Apple 2c:b6:93 Radware 2c:b6:9d RedDigit 2c:ba:ba Samsung 2c:be:08 Apple 2c:be:97 Ingenieu 2c:c2:60 Oracle 2c:c5:48 Iadea 2c:c5:d3 RuckusWi 2c:cc:15 Nokia 2c:cd:27 Precor 2c:cd:43 SummitTe 2c:cd:69 AqaviCom 2c:cf:58 Huawei 2c:d0:2d Cisco 2c:d0:5a LiteonTe 2c:d1:41 IEEERegi 2c:d1:da Sanjole 2c:d2:e7 Nokia 2c:d4:44 Fujitsu 2c:dc:ad WistronN 2c:dd:0c Discover 2c:dd:95 TaicangT 2c:dd:a3 PointGre 2c:e2:a8 Devicede 2c:e4:12 Sagemcom 2c:e6:cc RuckusWi 2c:e8:71 AlertMet 2c:ed:eb AlpheusD 2c:ee:26 Petroleu 2c:f0:a2 Apple 2c:f0:ee Apple 2c:f2:03 EmkoElek 2c:f4:c5 Avaya 2c:f7:f1 SeeedTec 2c:fa:a2 Alcatel- 2c:fc:e4 CtekSwed 2c:fd:37 BlueCaly 2c:ff:65 OkiElect 2e:2e:2e LaaLocal 30:05:5c BrotherI 30:07:4d Samsung 30:0b:9c DeltaMob 30:0c:23 Zte 30:0d:2a Zhejiang 30:0d:43 Microsoft 30:0e:d5 HonHaiPr 30:0e:e3 Aquantia 30:10:b3 LiteonTe 30:10:e4 Apple 30:14:2d Piciorgr 30:14:4a WistronN 30:15:18 Ubiquito 30:16:8d Prolon 30:17:c8 Sony 30:18:cf DeosCont 30:19:66 Samsung 30:1a:28 MakoNetw 30:21:5b Shenzhen 30:29:be Shanghai 30:2d:e8 JdaLlcJd 30:32:94 W-Ie-Ne- 30:32:d4 Hanilstm 30:33:35 Boosty 30:34:d2 Availink 30:37:a6 Cisco 30:38:55 Nokia 30:39:26 Sony 30:39:55 Shenzhen 30:39:f2 AdbBroad 30:3a:64 Intel 30:3d:08 GlinttTe 30:3e:ad SonavoxC 30:41:74 AltecLan 30:42:25 Burg-Wäc 30:44:49 Plath 30:44:87 HefeiRad 30:44:a1 Shanghai 30:46:9a Netgear 30:49:3b NanjingZ 30:4c:7e Panasoni 30:4e:c3 TianjinT 30:51:f8 Byk-Gard 30:52:5a Nst 30:52:cb LiteonTe 30:55:ed TrexNetw 30:57:ac Irlab 30:58:90 Frontier 30:59:5b Streamno 30:59:b7 Microsoft 30:5a:3a ASUS 30:5d:38 Beissbar 30:60:23 ArrisGro 30:61:12 Pav 30:61:18 Paradom 30:63:6b Apple 30:65:ec WistronC 30:68:8c ReachTec 30:69:4b Rim 30:6c:be Skymotio 30:6e:5c ValidusT 30:71:b2 Hangzhou 30:73:50 InpecoSa 30:74:96 Huawei 30:75:12 Sony 30:76:6f LG 30:77:cb MaikeInd 30:78:5c PartowTa 30:78:6b TianjinG 30:78:c2 Innowire 30:7c:30 Rim 30:7c:5e JuniperN 30:7c:b2 AnovFran 30:7e:cb Sfr 30:85:a9 ASUS 30:87:30 Huawei 30:87:d9 RuckusWi 30:89:76 DalianLa 30:89:99 Guangdon 30:89:d3 Hongkong 30:8c:fb Dropcam 30:8d:99 HP 30:90:ab Apple 30:91:8f Technico 30:92:f6 Shanghai 30:95:e3 Shanghai 30:96:fb Samsung 30:9b:ad BbkEduca 30:9c:23 Micro-St 30:a2:20 ArgTelec 30:a2:43 Shenzhen 30:a8:db Sony 30:a9:de LG 30:aa:bd Shanghai 30:ae:7b DeqingDu 30:ae:a4 Espressi 30:ae:f6 RadioMob 30:b1:64 PowerEle 30:b2:16 HytecGer 30:b3:a2 Shenzhen 30:b4:9e TP-Link 30:b5:c2 TP-Link 30:b5:f1 AitexinT 30:b6:2d MojoNetw 30:b6:4f JuniperN 30:c3:d9 AlpsElec 30:c7:50 MicTechn 30:c7:ae Samsung 30:c8:2a Wi-BizSr 30:cb:f8 Samsung 30:cd:a7 Samsung 30:d1:7e Huawei 30:d3:2d Devolo 30:d3:57 Logosol 30:d3:86 Zte 30:d4:6a Autosale 30:d5:87 Samsung 30:d6:c9 Samsung 30:de:86 CedacSof 30:e0:90 Linctron 30:e1:71 HP 30:e3:7a Intel 30:e4:8e Vodafone 30:e4:db Cisco 30:eb:25 IntekDig 30:ef:d1 AlstomSt 30:f3:1d Zte 30:f3:35 Huawei 30:f3:3a +PluggSr 30:f4:2f Esp 30:f6:b9 Ecocentr 30:f7:0d Cisco 30:f7:72 HonHaiPr 30:f7:c5 Apple 30:f7:d7 ThreadTe 30:f9:ed Sony 30:fa:b7 TunaiCre 30:fc:68 TP-Link 30:fd:11 Macrotec 30:fe:31 Nokia 30:ff:f6 Hangzhou 34:00:a3 Huawei 34:02:86 Intel 34:02:9b Cloudber 34:04:9e IEEERegi 34:07:4f Accelsto 34:07:fb Ericsson 34:08:04 D-Link 34:0a:22 Top-Acce 34:0a:ff QingdaoH 34:0b:40 MiosElet 34:0c:ed Moduel 34:12:90 Treeview 34:12:98 Apple 34:13:a8 Mediplan 34:13:e8 Intel 34:14:5f Samsung 34:15:9e Apple 34:17:eb Dell 34:1a:35 Fiberhom 34:1a:4c Shenzhen 34:1b:22 Grandbei 34:1e:6b Huawei 34:1f:e4 ArrisGro 34:21:09 JensenSc 34:23:87 HonHaiPr 34:23:ba Samsung 34:25:5d Shenzhen 34:26:06 Carepred 34:28:f0 AtnInter 34:29:ea McdElect 34:2f:6e Anywire 34:31:11 Samsung 34:31:c4 Avm 34:36:3b Apple 34:37:59 Zte 34:38:af InlabSof 34:38:b7 Humax 34:3d:98 Jinqianm 34:3d:c4 Buffalo 34:40:b5 IBM 34:46:6f HitemEng 34:4b:3d Fiberhom 34:4b:50 Zte 34:4c:a4 Amazipoi 34:4c:c8 Echodyne 34:4d:ea Zte 34:4d:f7 LG 34:4f:3f Io-Power 34:4f:5c R&Amp;M 34:4f:69 EkinopsS 34:51:aa JidGloba 34:51:c9 Apple 34:54:3c TakaokaT 34:57:60 Mitrasta 34:5b:11 EviHeat 34:5b:bb GdMideaA 34:5c:40 CargtHol 34:5d:10 Wytek 34:61:78 Boeing 34:62:88 Cisco 34:64:a9 HP 34:68:4a Terawork 34:68:95 HonHaiPr 34:69:87 Zte 34:6a:c2 Huawei 34:6b:d3 Huawei 34:6c:0f PramodTe 34:6e:8a Ecosense 34:6e:9d Ericsson 34:6f:90 Cisco 34:6f:92 WhiteRod 34:75:c7 Avaya 34:76:c5 I-ODataD 34:78:77 O-NetCom 34:78:d7 GioneeCo 34:7a:60 ArrisGro 34:7e:39 NokiaDan 34:80:b3 XiaomiCo 34:81:37 UnicardS 34:81:c4 Avm 34:81:f4 SstTaiwa 34:82:de Kiio 34:83:02 Iforcom 34:84:46 Ericsson 34:86:2a HeinzLac 34:87:3d QuectelW 34:88:5d Logitech 34:8a:7b Samsung 34:8a:ae Sagemcom 34:8f:27 RuckusWi 34:95:db Logitec 34:96:72 TP-Link 34:97:f6 ASUS 34:97:fb Advanced 34:99:6f VpiEngin 34:99:71 QuantaSt 34:99:d7 Universa 34:9a:0d ZbdDispl 34:9b:5b Maquet 34:9d:90 Heinzman 34:9e:34 Evervict 34:a1:83 Aware 34:a2:a2 Huawei 34:a3:95 Apple 34:a3:bf Terewave 34:a5:5d Technoso 34:a5:e1 Sensoris 34:a6:8c ShinePro 34:a7:09 TrevilSr 34:a7:ba FischerI 34:a8:43 KyoceraD 34:a8:4e Cisco 34:aa:8b Samsung 34:aa:99 Nokia 34:aa:ee Mikrovis 34:ab:37 Apple 34:ad:e4 Shanghai 34:af:2c Nintendo 34:b1:f7 TexasIns 34:b3:54 Huawei 34:b5:71 Plds 34:b7:fd Guangzho 34:ba:51 Se-KureC 34:ba:75 Tembo 34:ba:9a Asiatelc 34:bb:1f Blackber 34:bb:26 Motorola 34:bc:a6 BeijingD 34:bd:c8 Cisco 34:bd:f9 Shanghai 34:bd:fa Cisco 34:be:00 Samsung 34:bf:90 Fiberhom 34:c0:59 Apple 34:c0:f9 Rockwell 34:c3:ac Samsung 34:c3:d2 Fn-LinkT 34:c5:d0 Hagleitn 34:c6:9a Enecsys 34:c7:31 AlpsElec 34:c8:03 Nokia 34:c9:9d EidolonC 34:c9:f0 LmTechno 34:cc:28 Nexpring 34:cd:6d CommskyT 34:cd:be Huawei 34:ce:00 XiaomiEl 34:ce:94 ParsecPt 34:d0:9b Mobilmax 34:d2:70 AmazonTe 34:d2:c4 RenaPrin 34:d7:b4 Tributar 34:d9:54 Wibotic 34:db:fd Cisco 34:de:1a Intel 34:de:34 Zte 34:df:2a FujikonI 34:e0:cf Zte 34:e0:d7 Dongguan 34:e2:fd Apple 34:e4:2a Automati 34:e6:ad Intel 34:e6:d7 Dell 34:e7:0b HanNetwo 34:e7:1c Shenzhen 34:ea:34 Hangzhou 34:ed:0b Shanghai 34:ef:44 2wire 34:ef:8b NttCommu 34:f0:ca Shenzhen 34:f3:9a Intel 34:f3:9b Wizlan 34:f6:2d Sharp 34:f6:4b Intel 34:f6:d2 Panasoni 34:f9:68 AtekProd 34:fa:40 Guangzho 34:fc:6f Alcea 34:fc:b9 HP 34:fc:ef LG 38:01:95 Samsung 38:01:97 TsstGlob 38:05:46 FoctekPh 38:05:ac PillerGr 38:06:b4 ADC 38:08:fd Silca 38:09:a4 FireflyI 38:0a:0a Sky-City 38:0a:94 Samsung 38:0a:ab Formlabs 38:0b:40 Samsung 38:0d:d4 PrimaxEl 38:0e:7b VPSThai 38:0f:4a Apple 38:0f:e4 Dedicate 38:10:d5 AvmAudio 38:16:d1 Samsung 38:17:66 Promzaka 38:17:e1 Technico 38:19:2f Nokia 38:1c:1a Cisco 38:1c:23 HilanTec 38:1c:4a SimcomWi 38:1d:d9 Fn-LinkT 38:20:56 Cisco 38:21:87 MideaGro 38:22:9d AdbBroad 38:22:d6 Hangzhou 38:25:6b Microsoft 38:26:2b UtranTec 38:26:cd Andtek 38:28:ea FujianNe 38:29:5a Guangdon 38:29:dd Onvocal 38:2b:78 EcoPlugs 38:2c:4a ASUS 38:2d:d1 Samsung 38:2d:e8 Samsung 38:31:ac Weg 38:3a:21 IEEERegi 38:3b:c8 2wire 38:3f:10 DblTechn 38:42:33 Wildeboe 38:42:a6 Ingenieu 38:43:69 PatrolPr 38:45:4c LightLab 38:45:8c MycloudT 38:46:08 Zte 38:48:4c Apple 38:4b:76 AirtameA 38:4c:4f Huawei 38:4c:90 ArrisGro 38:4f:f0 AzureWave 38:52:1a Nokia 38:56:10 CandyHou 38:58:0c Panacces 38:59:f8 Mindmade 38:59:f9 HonHaiPr 38:5a:a8 BeijingZ 38:5f:66 Cisco 38:5f:c3 YuJeongS 38:60:77 Pegatron 38:63:bb HP 38:63:f6 3nodMult 38:66:45 OosicTec 38:67:93 AsiaOpti 38:6b:bb ArrisGro 38:6c:9b IvyBiome 38:6e:21 WasionGr 38:70:0c ArrisGro 38:71:de Apple 38:72:c0 Comtrend 38:76:ca Shenzhen 38:76:d1 Euronda 38:7b:47 Akela 38:83:45 TP-Link 38:86:02 Flexopti 38:89:dc OpticonS 38:8a:b7 ItcNetwo 38:8c:50 LG 38:8e:e7 Fanhatta 38:91:d5 Hangzhou 38:91:fb XenoxBv 38:94:96 Samsung 38:94:e0 Syrotech 38:95:92 BeijingT 38:97:d6 Hangzhou 38:98:d8 Meritech 38:9f:83 OtnNV 38:a2:8c Shenzhen 38:a4:ed XiaomiCo 38:a5:3c ComecerN 38:a5:b6 Shenzhen 38:a8:51 MoogIng 38:a8:6b OrgaBv 38:a9:5f Actifio 38:aa:3c Samsung 38:ac:3d Nephos 38:af:d7 Fujitsu 38:b1:2d Sonotron 38:b1:db HonHaiPr 38:b5:4d Apple 38:b5:bd EGOElekt 38:b7:25 WistronI 38:b7:4d Fijowave 38:b8:eb IEEERegi 38:bb:23 Ozvision 38:bb:3c Avaya 38:bc:01 Huawei 38:bc:1a MeizuTec 38:bf:2f Espec 38:bf:33 NecCasio 38:c0:96 AlpsElec 38:c7:0a Wifisong 38:c7:ba CsServic 38:c8:5c Cisco 38:c9:86 Apple 38:c9:a9 SmartHig 38:ca:97 ContourD 38:ca:da Apple 38:d1:35 EasyioSd 38:d2:69 TexasIns 38:d4:0b Samsung 38:d5:47 ASUS 38:d8:2f Zte 38:db:bb SunbowTe 38:de:60 Mohlenho 38:e0:8e Mitsubis 38:e3:c5 TaicangT 38:e5:95 Shenzhen 38:e7:d8 HTC 38:e8:df BMedien+ 38:e9:8c RecoSPA 38:ea:a7 HP 38:ec:11 NovatekM 38:ec:e4 Samsung 38:ed:18 Cisco 38:ee:9d Anedo 38:f0:98 VaporSto 38:f0:c8 Livestre 38:f1:35 Sensorte 38:f2:3e Microsoft 38:f3:3f Tatsuno 38:f5:57 Jolata 38:f5:97 Home2net 38:f7:08 National 38:f7:b2 SeojunEl 38:f8:89 Huawei 38:f8:b7 V2comPar 38:f8:ca Owin 38:fa:ca Skyworth 38:fd:fe IEEERegi 38:fe:c5 EllipsBV 38:ff:36 RuckusWi 3c:00:00 3Com 3c:02:b1 Creation 3c:04:bf Pravis 3c:05:18 Samsung 3c:05:ab ProductC 3c:07:54 Apple 3c:07:71 Sony 3c:08:1e BeijingY 3c:08:f6 Cisco 3c:09:6d Powerhou 3c:0c:48 Servergy 3c:0c:db Unionman 3c:0e:23 Cisco 3c:0f:c1 KbcNetwo 3c:10:40 DaesungN 3c:10:6f Albahith 3c:15:c2 Apple 3c:15:ea Tescom 3c:18:9f Nokia 3c:18:a0 Luxshare 3c:19:15 GfiChron 3c:19:7d Ericsson 3c:1a:0f Clearsky 3c:1a:57 Cardiopu 3c:1a:79 HuayuanT 3c:1c:be JadakLlc 3c:1e:04 D-Link 3c:1e:13 Hangzhou 3c:25:d7 Nokia 3c:26:d5 SoteraWi 3c:27:63 SleQuali 3c:2a:f4 BrotherI 3c:2c:94 杭州德澜科技有限 3c:2d:b7 TexasIns 3c:2f:3a Sforzato 3c:30:0c DewarEle 3c:31:78 Qolsys 3c:33:00 Shenzhen 3c:35:56 Cognitec 3c:36:3d Nokia 3c:36:e4 ArrisGro 3c:38:88 Connectq 3c:39:c3 JwElectr 3c:39:e7 IEEERegi 3c:3a:73 Avaya 3c:3f:51 2crsi 3c:40:4f Guangdon 3c:43:8e ArrisGro 3c:46:d8 TP-Link 3c:47:11 Huawei 3c:49:37 AssmannE 3c:4a:92 HP 3c:4c:69 Infinity 3c:4c:d0 CeragonN 3c:4e:47 Etronic 3c:52:82 HP 3c:57:bd KesslerC 3c:57:d5 Fiveco 3c:59:1e TclKingE 3c:5a:37 Samsung 3c:5a:b4 Google 3c:5c:c3 Shenzhen 3c:5e:c3 Cisco 3c:5f:01 Synerchi 3c:61:04 JuniperN 3c:62:00 Samsung 3c:62:78 Shenzhen 3c:67:16 LilyRobo 3c:67:2c Sciovid 3c:67:8c Huawei 3c:68:16 Vxi 3c:6a:7d NiigataP 3c:6a:9d DexatekT 3c:6e:63 MitronOy 3c:6f:45 Fiberpro 3c:6f:ea Panasoni 3c:6f:f7 Entek 3c:70:59 Makerbot 3c:74:37 Rim 3c:75:4a ArrisGro 3c:77:e6 HonHaiPr 3c:78:73 Airsonic 3c:7a:8a ArrisGro 3c:7d:b1 TexasIns 3c:7f:6f Telechip 3c:80:aa RansnetS 3c:81:d8 Sagemcom 3c:83:1e Ckd 3c:83:75 Microsoft 3c:83:b5 AdvanceV 3c:86:a8 Sangshin 3c:89:70 Neosfar 3c:89:a6 Kapelse 3c:8a:b0 JuniperN 3c:8a:e5 TensunIn 3c:8b:cd Alcatel- 3c:8b:fe Samsung 3c:8c:40 Hangzhou 3c:8c:f8 Trendnet 3c:90:66 Smartrg 3c:91:2b Vexata 3c:91:57 YulongCo 3c:91:74 AlongCom 3c:92:dc OctopodT 3c:94:d5 JuniperN 3c:95:09 LiteonTe 3c:97:0e WistronI 3c:97:7e IpsTechn 3c:98:bf QuestCon 3c:99:f7 Lansente 3c:9f:81 Shenzhen 3c:a0:67 LiteonTe 3c:a1:0d Samsung 3c:a3:08 TexasIns 3c:a3:15 BlessInf 3c:a3:1a OilfindI 3c:a3:48 VivoMobi 3c:a7:2b MrvCommu 3c:a8:2a HP 3c:a9:f4 Intel 3c:aa:3f Ikey 3c:ab:8e Apple 3c:ae:69 EsaElekt 3c:b1:5b Avaya 3c:b1:7f Wattwatc 3c:b6:b7 VivoMobi 3c:b7:2b Plumgrid 3c:b7:92 HitachiM 3c:b8:7a Private 3c:b9:a6 BeldenDe 3c:bb:73 Shenzhen 3c:bb:fd Samsung 3c:bd:3e BeijingX 3c:bd:d8 LG 3c:be:e1 Nikon 3c:c0:c6 D&BAudio 3c:c1:2c Aes 3c:c1:f6 MelangeP 3c:c2:43 Nokia 3c:c2:e1 XinhuaCo 3c:c9:9e HuiyangT 3c:ca:87 Iders 3c:cb:7c TctMobil 3c:cd:5a Technisc 3c:cd:93 LG 3c:ce:15 Mercedes 3c:ce:73 Cisco 3c:cf:5b IcommHk 3c:d0:f8 Apple 3c:d1:6e Telepowe 3c:d4:d6 Wireless 3c:d7:da SkMtekMi 3c:d9:2b HP 3c:d9:ce EclipseW 3c:da:2a Zte 3c:dd:89 SomoHold 3c:df:1e Cisco 3c:df:a9 ArrisGro 3c:df:bd Huawei 3c:e0:72 Apple 3c:e5:a6 Hangzhou 3c:e5:b4 KidasenI 3c:e6:24 LG 3c:ea:4f 2wire 3c:ea:fb Nse 3c:ef:8c Zhejiang 3c:f3:92 Virtualt 3c:f5:2c Dspecial 3c:f5:91 Guangdon 3c:f7:2a Nokia 3c:f7:48 Shenzhen 3c:f8:08 Huawei 3c:f8:62 Intel 3c:fa:43 Huawei 3c:fb:96 EmcraftL 3c:fd:fe Intel 40:00:03 NetWare? 40:00:e0 DerekSha 40:01:07 Arista 40:01:c6 3comEuro 40:04:0c A&T 40:07:c0 Railtec 40:0d:10 ArrisGro 40:0e:67 Tremol 40:0e:85 Samsung 40:11:dc Sonance 40:12:e4 Compass- 40:13:d9 GlobalEs 40:15:97 ProtectA 40:16:3b Samsung 40:16:7e ASUS 40:16:9f TP-Link 40:16:fa EkmMeter 40:18:b1 Aerohive 40:18:d7 Smartron 40:1b:5f WeifangG 40:1d:59 Biometri 40:22:ed DigitalP 40:25:c2 Intel 40:27:0b Mobileec 40:28:14 RfiEngin 40:2b:a1 Sony 40:2c:f4 Universa 40:2e:28 Mixtelem 40:30:04 Apple 40:30:67 ConlogPt 40:33:1a Apple 40:33:6c GodrejBo 40:37:ad MacroIma 40:3c:fc Apple 40:3d:ec Humax 40:3f:8c TP-Link 40:40:22 Ziv 40:40:6b Icomera 40:40:a7 Sony 40:42:29 Layer3tv 40:45:da Spreadtr 40:47:6a Acquisit 40:49:0f HonHaiPr 40:4a:03 ZyxelCom 40:4a:18 AddrekSm 40:4a:d4 Widex 40:4d:7f Apple 40:4d:8e Huawei 40:4e:36 HTC 40:4e:eb HigherWa 40:50:e0 MiltonSe 40:51:6c GrandexI 40:52:0d PicoTech 40:54:e4 Wearsafe 40:55:39 Cisco 40:56:0c InHomeDi 40:56:2d Smartron 40:5a:9b Anovo 40:5c:fd Dell 40:5d:82 Netgear 40:5e:e1 Shenzhen 40:5f:be Rim 40:5f:c2 TexasIns 40:60:5a HawkeyeT 40:61:86 Micro-St 40:61:8e Stella-G 40:62:b6 TeleSyst 40:65:a3 Sagemcom 40:66:7a Mediola- 40:68:26 ThalesUk 40:6a:ab Rim 40:6c:8f Apple 40:6f:2a Blackber 40:70:09 ArrisGro 40:70:4a PowerIde 40:70:74 LifeTech 40:71:83 JuniperN 40:74:96 AfunTech 40:78:6a Motorola 40:78:75 Imbel-In 40:7a:80 Nokia 40:7b:1b MettleNe 40:7c:7d Nokia 40:7d:0f Huawei 40:7f:e0 GlorySta 40:82:56 Continen 40:83:de ZebraTec 40:84:93 Claviste 40:86:2e JdmMobil 40:88:05 Motorola 40:88:e0 BeijingE 40:8a:9a Titeng 40:8b:07 Actionte 40:8b:f6 Shenzhen 40:8d:5c Giga-Byt 40:95:58 Aisino 40:95:bd Ntmore 40:97:d1 BkElectr 40:98:4c CasacomS 40:98:4e TexasIns 40:98:7b Aisino 40:9b:0d Shenzhen 40:9f:38 AzureWave 40:9f:87 JideTech 40:9f:c7 Baekchun 40:a5:ef Shenzhen 40:a6:77 JuniperN 40:a6:a4 Passivsy 40:a6:d9 Apple 40:a6:e8 Cisco 40:a8:f0 HP 40:ac:8d DataMana 40:b0:34 HP 40:b0:fa LG 40:b2:c8 NortelNe 40:b3:95 Apple 40:b3:cd ChiyodaE 40:b3:fc Logital 40:b4:cd AmazonTe 40:b4:f0 JuniperN 40:b6:88 LegicIde 40:b6:b1 Sungsam 40:b7:f3 ArrisGro 40:b8:37 Sony 40:b8:9a HonHaiPr 40:b9:3c HP 40:ba:61 ArimaCom 40:bc:73 Cronopla 40:bc:8b Itelio 40:bd:9e Physio-C 40:bf:17 Digistar 40:c2:45 Shenzhen 40:c4:d6 Chongqin 40:c6:2a Shanghai 40:c7:29 Sagemcom 40:c7:c9 Naviit 40:c8:cb AmTeleco 40:cb:a8 Huawei 40:cd:3a Z3Techno 40:d2:8a Nintendo 40:d3:2d Apple 40:d3:57 IsonTech 40:d3:ae Samsung 40:d4:0e Biodata 40:d5:59 MicroSER 40:d8:55 IEEERegi 40:e2:30 AzureWave 40:e3:d6 ArubaNet 40:e7:30 DeyStora 40:e7:93 Shenzhen 40:ea:ce FounderB 40:ec:f8 Siemens 40:ed:98 IEEERegi 40:ef:4c Fihonest 40:f0:2f LiteonTe 40:f1:4c IseEurop 40:f2:01 Sagemcom 40:f2:e9 IBM 40:f3:08 MurataMa 40:f3:85 IEEERegi 40:f4:07 Nintendo 40:f4:13 Rubezh 40:f4:20 SichuanT 40:f4:ec Cisco 40:f5:2e LeicaMic 40:fa:7f PrehCarC 40:fc:89 ArrisGro 40:fe:0d Maxio 44:00:10 Apple 44:03:2c Intel 44:03:a7 Cisco 44:04:44 Guangdon 44:09:b8 SalcompS 44:0c:fd Netman 44:11:02 EdmiEuro 44:11:c2 Telegart 44:13:19 WkkTechn 44:14:41 Audiocon 44:18:4f Fitview 44:19:b6 Hangzhou 44:1c:a8 HonHaiPr 44:1e:91 ArvidaIn 44:1e:a1 HP 44:23:aa Farmage 44:25:bb BambooEn 44:29:38 Nietzsch 44:2a:60 Apple 44:2a:ff E3Techno 44:2b:03 Cisco 44:2c:05 AmpakTec 44:31:92 HP 44:32:2a Avaya 44:32:c8 Technico 44:33:4c Shenzhen 44:34:8f MxtIndus 44:35:6f Neterix 44:37:08 MrvComun 44:37:19 2SaveEne 44:37:6f YoungEle 44:37:e6 HonHaiPr 44:38:39 CumulusN 44:39:c4 Universa 44:3c:9c PintschT 44:3d:21 Nuvolt 44:3e:b2 Deotron 44:44:50 Ottoq 44:45:53 Microsoft 44:46:49 DfiDiamo 44:48:91 HdmiLice 44:48:c1 HP 44:4a:65 Silverfl 44:4c:0c Apple 44:4c:a8 AristaNe 44:4e:1a Samsung 44:4f:5e PanStudi 44:51:db Raytheon 44:54:c0 Thompson 44:55:b1 Huawei 44:56:8d PncTechn 44:56:b7 SpawnLab 44:58:29 Cisco 44:59:9f Criticar 44:5e:cd Razer 44:5e:f3 Tonalite 44:5f:7a ShihlinE 44:5f:8c Intercel 44:61:32 Ecobee 44:61:9c Fonsyste 44:62:46 Comat 44:65:0d AmazonTe 44:65:6a MegaVide 44:66:6e Ip-Line 44:67:55 OrbitIrr 44:68:ab Juin 44:6a:2e Huawei 44:6a:b7 ArrisGro 44:6c:24 ReallinE 44:6d:57 LiteonTe 44:6d:6c Samsung 44:6e:e5 Huawei 44:70:0b Iffu 44:70:98 MingHong 44:73:d6 Logitech 44:74:6c Sony 44:78:3e Samsung 44:7b:bb Shenzhen 44:7b:c4 Dualshin 44:7c:7f Innoligh 44:7d:a5 VtionInf 44:7e:76 TrekTech 44:7e:95 AlphaAnd 44:7f:77 Connecte 44:80:eb Motorola 44:82:e5 Huawei 44:83:12 Star-Net 44:85:00 Intel 44:86:c1 SiemensL 44:87:23 HoyaServ 44:87:fc Elitegro 44:88:cb CamcoTec 44:8a:5b Micro-St 44:8c:52 Ktis 44:8e:12 DtResear 44:8e:81 Vig 44:91:db Shanghai 44:94:fc Netgear 44:95:fa QingdaoS 44:96:2b AidonOy 44:97:5a Shenzhen 44:9b:78 NowFacto 44:9c:b5 Alcomp 44:9f:7f Datacore 44:a4:2d TctMobil 44:a6:89 PromaxEl 44:a6:e5 Thinking 44:a7:cf MurataMa 44:a8:42 Dell 44:a8:c2 SewooTec 44:aa:27 Udworks 44:aa:50 JuniperN 44:aa:e8 NanotecE 44:aa:f5 ArrisGro 44:ad:d9 Cisco 44:b3:2d TP-Link 44:b3:82 Kuang-Ch 44:b4:12 Sius 44:ba:46 SichuanT 44:bf:e3 Shenzhen 44:c1:5c TexasIns 44:c2:33 Guangzho 44:c3:06 Sifrom 44:c3:46 Huawei 44:c3:9b OooRubez 44:c4:a9 OpticomC 44:c5:6f NgnEasyS 44:c6:9b WuhanFen 44:c9:a2 Greenwal 44:ce:7d Sfr 44:d1:5e Shanghai 44:d1:fa Shenzhen 44:d2:44 SeikoEps 44:d2:ca AnviaTvO 44:d3:ca Cisco 44:d4:37 IntenoBr 44:d4:e0 Sony 44:d6:3d TalariNe 44:d6:e1 SnuzaInt 44:d8:32 AzureWave 44:d8:84 Apple 44:d9:e7 Ubiquiti 44:dc:91 PlanexCo 44:dc:cb Semindia 44:e0:8e Cisco 44:e1:37 ArrisGro 44:e4:9a Omnitron 44:e4:d9 Cisco 44:e8:a5 MyrekaTe 44:e9:dd Sagemcom 44:ed:57 Longicor 44:ee:02 Mti 44:ee:30 Budelman 44:f4:36 Zte 44:f4:59 Samsung 44:f4:77 JuniperN 44:f8:49 UnionPac 44:fb:42 Apple 44:fd:a3 Everysig 47:54:43 GtcNotRe 48:00:31 Huawei 48:00:33 Technico 48:02:2a B-LinkEl 48:03:62 DesayEle 48:06:6a Tempered 48:0c:49 Nakayo 48:0f:cf HP 48:10:63 NttInnov 48:12:49 LuxcomTe 48:13:7e Samsung 48:13:f3 BbkEduca 48:17:4c Micropow 48:18:42 Shanghai 48:1a:84 PointerT 48:1b:d2 IntronSc 48:1d:70 Cisco 48:26:e8 Tek-Air 48:27:ea Samsung 48:28:2f Zte 48:2c:ea Motorola 48:33:dd ZennioAv 48:34:3d Iep 48:36:5f Wintecro 48:39:74 ProwareT 48:3b:38 Apple 48:3c:0c Huawei 48:3d:32 SyscorCo 48:43:5a Huawei 48:43:7c Apple 48:44:53 Hds??? 48:44:87 Cisco 48:44:f7 Samsung 48:45:20 Intel 48:46:f1 UrosOy 48:46:fb Huawei 48:49:c7 Samsung 48:4b:aa Apple 48:4c:00 NetworkS 48:4d:7e Dell 48:50:73 Microsoft 48:51:b7 Intel 48:52:61 Soreel 48:54:15 NetRules 48:54:e8 Winbond? 48:55:5f Fiberhom 48:57:dd Facebook 48:59:29 LG 48:59:a4 Zte 48:5a:3f Wisol 48:5a:b6 HonHaiPr 48:5b:39 ASUS 48:5d:36 Verizon 48:5d:60 AzureWave 48:60:bc Apple 48:61:a3 ConcernA 48:62:76 Huawei 48:65:ee IEEERegi 48:6b:2c BbkEduca 48:6b:91 Fleetwoo 48:6d:bb VestelEl 48:6e:73 Pica8 48:6e:fb DavitSys 48:6f:d2 Storsimp 48:71:19 SgbGroup 48:74:6e Apple 48:76:04 Private 48:7a:55 AleInter 48:7a:da Hangzhou 48:7b:6b Huawei 48:7d:2e TP-Link 48:82:44 LifeFitn 48:82:f2 AppelEle 48:83:c7 Sagemcom 48:86:e8 Microsoft 48:88:03 Mantechn 48:88:ca Motorola 48:8a:d2 Shenzhen 48:8d:36 Arcadyan 48:8e:42 Digalog 48:91:53 Weinmann 48:91:f6 Shenzhen 48:9a:42 Technoma 48:9b:e2 SciInnov 48:9d:18 Flashbay 48:9d:24 Blackber 48:a1:95 Apple 48:a2:2d Shenzhen 48:a2:b7 KodofonJ 48:a3:80 GioneeCo 48:a6:d2 GjsunOpt 48:a7:4e Zte 48:a9:d2 WistronN 48:aa:5d StoreEle 48:ad:08 Huawei 48:b2:53 Marketax 48:b5:a7 GloryHor 48:b6:20 Roli 48:b8:de Homewins 48:b9:77 PulseonO 48:b9:c2 Teletics 48:be:2d Symanitr 48:bf:6b Apple 48:bf:74 Baicells 48:c0:49 BroadTel 48:c0:93 Xirrus 48:c1:ac Plantron 48:c6:63 GtoAcces 48:c8:62 SimoWire 48:c8:b6 Systec 48:cb:6e CelloEle 48:d0:cf Universa 48:d1:8e MetisCom 48:d2:24 LiteonTe 48:d3:43 ArrisGro 48:d5:39 Huawei 48:d5:4c JedaNetw 48:d7:05 Apple 48:d7:ff BlankomA 48:d8:55 Telvent 48:d8:fe ClaridyS 48:da:96 EddySmar 48:db:50 Huawei 48:dc:fb Nokia 48:df:1c WuhanNec 48:df:37 HP 48:e1:af Vity 48:e2:44 HonHaiPr 48:e9:f1 Apple 48:ea:63 Zhejiang 48:eb:30 EternaTe 48:ed:80 DaesungE 48:ee:07 SilverPa 48:ee:0c D-Link 48:ee:86 Utstarco 48:f0:7b AlpsElec 48:f2:30 Ubizcore 48:f3:17 Private 48:f4:7d Techvisi 48:f7:c0 Technico 48:f7:f1 Nokia 48:f8:b3 Cisco 48:f8:e1 Nokia 48:f9:25 Maestron 48:f9:7c Fiberhom 48:fc:b6 LavaInte 48:fc:b8 Woodstre 48:fd:8e Huawei 48:fe:ea HomaBV 4c:00:82 Cisco 4c:02:2e CmrKorea 4c:02:89 LexCompu 4c:06:8a BaslerEl 4c:07:c9 Computer 4c:09:b4 Zte 4c:09:d4 Arcadyan 4c:0b:3a TctMobil 4c:0b:be Microsoft 4c:0d:ee JabilCir 4c:0f:6e HonHaiPr 4c:0f:c7 EardaEle 4c:11:bf Zhejiang 4c:14:80 Noregon 4c:14:a3 TclTechn 4c:16:94 Shenzhen 4c:16:f1 Zte 4c:17:eb Sagemcom 4c:18:9a Guangdon 4c:1a:3a PrimaRes 4c:1a:3d Guangdon 4c:1a:95 Novakon 4c:1f:cc Huawei 4c:21:d0 Sony 4c:22:58 Cozybit 4c:25:78 Nokia 4c:26:e7 Welgate 4c:2c:80 BeijingS 4c:2c:83 Zhejiang 4c:2f:9d IcmContr 4c:30:89 ThalesTr 4c:32:2d Teledata 4c:32:75 Apple 4c:32:d9 MRuttyHo 4c:33:4e Hightech 4c:34:88 Intel 4c:38:d5 MitacCom 4c:38:d8 ArrisGro 4c:39:09 HplElect 4c:39:10 NewtekEl 4c:3b:74 VogtecHK 4c:3c:16 Samsung 4c:42:4c Informat 4c:48:da BeijingA 4c:4b:68 MobileDe 4c:4e:03 TctMobil 4c:4e:35 Cisco 4c:54:27 LineproS 4c:54:99 Huawei 4c:55:85 Hamilton 4c:55:b8 Turkcell 4c:55:cc ZentriPt 4c:57:ca Apple 4c:5d:cd OyFinnis 4c:5e:0c Routerbo 4c:5f:d2 Alcatel- 4c:60:d5 Airpoint 4c:60:de Netgear 4c:62:55 Sanmina- 4c:63:eb Applicat 4c:64:d9 Guangdon 4c:65:a8 IEEERegi 4c:66:41 Samsung 4c:6e:6e ComnectT 4c:72:b9 Pegatron 4c:73:67 GeniusBy 4c:73:a5 Kove 4c:74:03 Bq 4c:74:87 LeaderPh 4c:74:bf Apple 4c:76:25 Dell 4c:77:4f Embedded 4c:78:72 CavUffGi 4c:78:97 Arrowhea 4c:79:ba Intel 4c:7c:5f Apple 4c:7f:62 Nokia 4c:80:4f Armstron 4c:80:93 Intel 4c:81:20 TaicangT 4c:82:cf Echostar 4c:83:de Cisco 4c:8b:30 Actionte 4c:8b:55 GrupoDig 4c:8b:ef Huawei 4c:8d:79 Apple 4c:8e:cc SilkanSa 4c:8f:a5 Jastec 4c:91:0c Corporat 4c:96:14 JuniperN 4c:98:ef Zeo 4c:9e:80 KyokkoEl 4c:9e:e4 HanyangN 4c:9e:ff ZyxelCom 4c:a0:03 T-21Tech 4c:a1:61 RainBird 4c:a5:15 BaikalEl 4c:a5:6d Samsung 4c:a7:4b AlcatelL 4c:a9:28 Insensi 4c:aa:16 AzureWave 4c:ab:33 KstTechn 4c:ac:0a Zte 4c:ae:31 Shenghai 4c:b0:e8 BeijingR 4c:b1:6c Huawei 4c:b1:99 Apple 4c:b2:1c Maxphoto 4c:b4:4a Nanowave 4c:b4:ea HrdSPte 4c:b7:6d NoviSecu 4c:b8:1c SamElect 4c:b8:2c Cambridg 4c:b8:b5 Shenzhen 4c:b9:c8 Conet 4c:ba:a3 BisonEle 4c:bb:58 ChiconyE 4c:bc:42 Shenzhen 4c:bc:a5 Samsung 4c:c4:52 ShangHai 4c:c6:02 Radios 4c:c6:81 Shenzhen 4c:c9:4f Nokia 4c:ca:53 Skyera 4c:cb:f5 Zte 4c:cc:34 Motorola 4c:cc:6a Micro-St 4c:d0:8a Humax 4c:d6:37 QsonoEle 4c:d7:b6 HelmerSc 4c:d9:c4 MagnetiM 4c:df:3d TeamEngi 4c:e1:73 IEEERegi 4c:e1:bb ZhuhaiHi 4c:e2:f1 SclakSrl 4c:e6:76 Buffalo 4c:e9:33 Railcomm 4c:eb:42 Intel 4c:ec:ef Soraa 4c:ed:de AskeyCom 4c:ee:b0 ShcNetzw 4c:f0:2e VifaDenm 4c:f2:bf Cambridg 4c:f4:5b BlueClov 4c:f5:a0 Scalable 4c:f7:37 SamjiEle 4c:f9:5d Huawei 4c:fa:ca Cambridg 4c:fb:45 Huawei 4c:ff:12 FuzeEnte 50:00:8c HongKong 50:01:6b Huawei 50:01:bb Samsung 50:01:d9 Huawei 50:04:b8 Huawei 50:05:3d CyweeGro 50:06:04 Cisco 50:06:ab Cisco 50:09:59 Technico 50:0b:32 FoxdaTec 50:0b:91 IEEERegi 50:0e:6d Trafficc 50:0f:f5 TendaTec 50:11:eb Silverne 50:14:b5 RichfitI 50:17:ff Cisco 50:18:4c Platina 50:1a:a5 GnNetcom 50:1a:c5 Microsoft 50:1c:bf Cisco 50:1e:2d Streamun 50:20:6b EmersonC 50:22:67 Pixelink 50:25:2b NethraIm 50:26:90 Fujitsu 50:27:c7 Technart 50:29:4d NanjingI 50:2a:7e SmartEle 50:2a:8b TelekomR 50:2b:73 TendaTec 50:2d:1d Nokia 50:2d:a2 Intel 50:2d:f4 PhytecMe 50:2e:5c HTC 50:2e:ce AsahiEle 50:31:ad AbbGloba 50:32:37 Apple 50:32:75 Samsung 50:33:8b TexasIns 50:39:55 Cisco 50:3a:7d Alphatec 50:3a:a0 Shenzhen 50:3c:c4 LenovoMo 50:3d:a1 Samsung 50:3d:e5 Cisco 50:3f:56 Syncmold 50:3f:98 Cmitech 50:40:61 Nokia 50:45:f7 LiuheInt 50:46:5d ASUS 50:48:eb BeijingH 50:4a:5e Masimo 50:4a:6e Netgear 50:4b:5b Controlt 50:4f:94 LoxoneEl 50:50:2a Egardia 50:50:65 Takt 50:52:d2 Hangzhou 50:55:27 LG 50:56:63 TexasIns 50:56:a8 Jolla 50:56:bf Samsung 50:57:a8 Cisco 50:58:00 WytecInt 50:58:4f Waytotec 50:5a:c6 Guangdon 50:60:28 Xirrus 50:61:84 Avaya 50:61:d6 Indu-Sol 50:63:13 HonHaiPr 50:64:41 Greenlee 50:65:83 TexasIns 50:65:f3 HP 50:67:87 PlanetNe 50:67:ae Cisco 50:67:f0 ZyxelCom 50:68:0a Huawei 50:6a:03 Netgear 50:6b:8d Nutanix 50:6e:92 Innocent 50:6f:9a Wi-FiAll 50:70:e5 HeShanWo 50:72:24 TexasIns 50:72:4d BegBruec 50:76:91 Tekpea 50:76:a6 EcilInfo 50:79:5b Interexp 50:7a:55 Apple 50:7b:9d LcfcHefe 50:7d:02 Biodit 50:7e:5d Arcadyan 50:82:d5 Apple 50:85:69 Samsung 50:87:89 Cisco 50:87:b8 Nuvyyo 50:89:65 Shenzhen 50:8a:0f Shenzhen 50:8a:42 UptmateT 50:8a:cb Shenzhen 50:8c:77 Dirmeier 50:8c:b1 TexasIns 50:8d:6f Chahoo 50:92:b9 Samsung 50:93:4f GradualT 50:97:72 Westingh 50:98:71 Inventum 50:98:f3 RheemAus 50:9a:4c Dell 50:9e:a7 Samsung 50:9f:27 Huawei 50:9f:3b OiElectr 50:a0:54 Actineon 50:a0:bf AlbaFibe 50:a4:c8 Samsung 50:a4:d0 IEEERegi 50:a6:e3 DavidCla 50:a7:15 Aboundi 50:a7:2b Huawei 50:a7:33 RuckusWi 50:a9:de Smartcom 50:ab:3e Qibixx 50:ab:bf HoseoTel 50:ad:d5 Dynalec 50:af:73 Shenzhen 50:b3:63 Digitron 50:b6:95 Micropoi 50:b7:c3 Samsung 50:b8:88 Wi2beTec 50:b8:a2 ImtechTe 50:bd:5f TP-Link 50:c0:06 Carmanah 50:c2:71 Securete 50:c5:8d JuniperN 50:c7:bf TP-Link 50:c8:e5 Samsung 50:c9:71 GnNetcom 50:c9:a0 SkipperE 50:cc:f8 Samsung 50:cd:22 Avaya 50:cd:32 NanjingC 50:ce:75 MeasyEle 50:d2:13 Cvilux 50:d2:74 Steffes 50:d3:7f YuFlyMik 50:d5:9c ThaiHabe 50:d6:d7 Takahata 50:d7:53 Conelcom 50:da:00 Hangzhou 50:dd:4f Automati 50:df:95 Lytx 50:e0:c7 Turcontr 50:e1:4a Private 50:e5:49 Giga-Byt 50:e6:66 Shenzhen 50:ea:d6 Apple 50:eb:1a BrocadeC 50:ed:78 Changzho 50:ed:94 EgatelSl 50:f0:03 OpenStac 50:f0:d3 Samsung 50:f1:4a TexasIns 50:f4:3c Leeo 50:f5:20 Samsung 50:f5:da AmazonTe 50:f6:1a KunshanJ 50:fa:84 TP-Link 50:fa:ab L-TekDOO 50:fc:30 Treehous 50:fc:9f Samsung 50:fe:f2 SifyTech 50:ff:20 Keenetic 50:ff:99 IEEERegi 52:54:00 RealtekU 52:54:4c Novell20 52:54:ab RealtekA 54:03:84 Hangkong 54:03:f5 EbnTechn 54:04:96 Gigawave 54:04:a6 ASUS 54:05:36 VivagoOy 54:05:5f AlcatelL 54:05:93 WooriEle 54:09:55 Zte 54:09:8d DeisterE 54:10:ec Microchi 54:11:2f SulzerPu 54:11:5f AtamoPty 54:13:79 HonHaiPr 54:14:73 Wingtech 54:14:fd Orbbec3d 54:19:c8 VivoMobi 54:1b:5d Techno-I 54:1d:fb Freestyl 54:1e:56 JuniperN 54:1f:d5 Advantag 54:20:18 TelyLabs 54:21:60 Resoluti 54:22:f8 Zte 54:25:ea Huawei 54:26:96 Apple 54:27:1e AzureWave 54:27:58 Motorola 54:27:6c JiangsuH 54:2a:9c LsyDefen 54:2a:a2 AlphaNet 54:2b:57 NightOwl 54:2c:ea Protectr 54:2f:89 EuclidLa 54:2f:8a Tellesco 54:31:31 RasterVi 54:35:30 HonHaiPr 54:35:df Symeo 54:36:9b 1vergeIn 54:39:68 Edgewate 54:39:df Huawei 54:3b:30 Duagon 54:3d:37 RuckusWi 54:40:ad Samsung 54:42:49 Sony 54:44:08 Nokia 54:46:6b Shenzhen 54:48:9c Cdoubles 54:4a:00 Cisco 54:4a:05 WenglorS 54:4a:16 TexasIns 54:4b:8c JuniperN 54:4e:45 Private 54:4e:90 Apple 54:51:1b Huawei 54:51:46 Amg 54:53:ed Sony 54:54:14 DigitalR 54:54:cf Probedig 54:5a:a6 Espressi 54:5e:bd NlTechno 54:5f:a9 Teracom 54:60:09 Google 54:61:72 ZodiacAe 54:61:ea Zaplox 54:64:d9 Sagemcom 54:65:de ArrisGro 54:67:51 CompalBr 54:6c:0e TexasIns 54:6d:52 TopviewO 54:72:4f Apple 54:73:98 ToyoElec 54:74:e6 WebtechW 54:75:d0 Cisco 54:78:1a Cisco 54:79:75 Nokia 54:7c:69 Cisco 54:7f:54 Ingenico 54:7f:a8 TelcoSRO 54:7f:ee Cisco 54:81:ad EagleRes 54:84:7b DigitalD 54:88:0e Samsung 54:89:22 Zelfy 54:89:98 Huawei 54:8c:a0 LiteonTe 54:92:be Samsung 54:93:59 Shenzhen 54:94:78 Silversh 54:9a:11 IEEERegi 54:9a:16 UzushioE 54:9b:12 Samsung 54:9d:85 Eneracce 54:9f:13 Apple 54:9f:35 Dell 54:a0:4f T-MacTec 54:a0:50 ASUS 54:a2:74 Cisco 54:a3:1b Shenzhen 54:a3:fa BqtSolut 54:a5:1b Huawei 54:a5:4b NscCommu 54:a6:19 Alcatel- 54:a9:d4 Minibar 54:ab:3a QuantaCo 54:ae:27 Apple 54:b5:6c XiAnNova 54:b6:20 SuhdolE& 54:b7:53 HunanFen 54:b8:0a D-Link 54:be:53 Zte 54:be:f7 Pegatron 54:c4:15 Hangzhou 54:c8:0f TP-Link 54:c9:df Fn-LinkT 54:cd:10 Panasoni 54:cd:a7 FujianSh 54:cd:ee Shenzhen 54:d0:b4 XiamenFo 54:d0:ed AximComm 54:d1:63 Max-Tech 54:d1:b0 Universa 54:d2:72 NukiHome 54:d4:6f Cisco 54:d7:51 Proximus 54:d9:e4 Brillian 54:dc:1d YulongCo 54:df:00 Ulterius 54:df:63 Intrakey 54:e0:32 JuniperN 54:e0:61 SichuanT 54:e1:40 Ingenico 54:e1:ad LcfcHefe 54:e2:c8 Dongguan 54:e2:e0 ArrisGro 54:e3:b0 JvlIndus 54:e3:f6 Alcatel- 54:e4:3a Apple 54:e4:bd Fn-LinkT 54:e6:3f Shenzhen 54:e6:fc TP-Link 54:ea:a8 Apple 54:ed:a3 Navdy 54:ee:75 WistronI 54:ef:92 Shenzhen 54:ef:fe Fullpowe 54:f2:01 Samsung 54:f5:b6 Oriental 54:f6:66 Berthold 54:f6:c5 FujianSt 54:f8:76 Abb 54:fa:3e Samsung 54:fa:96 Nokia 54:fb:58 Wiseware 54:fd:bf ScheidtB 54:ff:82 DavitSol 54:ff:cf MopriaAl 56:58:57 AculabPl 58:00:e3 LiteonTe 58:04:cb TianjinH 58:05:28 LabrisNe 58:05:56 Elettron 58:08:fa FiberOpt 58:09:43 Private 58:09:e5 Kivic 58:0a:20 Cisco 58:10:8c Intelbra 58:12:43 AcsipTec 58:16:26 Avaya 58:17:0c Sony 58:1c:bd Affinegy 58:1d:91 Advanced 58:1f:28 Huawei 58:1f:67 Open-MTe 58:1f:aa Apple 58:1f:ef Tuttnaer 58:20:b1 HP 58:21:36 KmbSRO 58:23:8c Technico 58:2a:f7 Huawei 58:2b:db Pax 58:2e:fe Lighting 58:2f:42 Universa 58:31:12 Drust 58:32:77 Reliance 58:34:3b GlovastT 58:35:d9 Cisco 58:3c:c6 Omnealit 58:3f:54 LG 58:40:4e Apple 58:42:e4 BaxterIn 58:44:98 XiaomiCo 58:46:8f KoncarEl 58:46:e1 BaxterIn 58:47:04 Shenzhen 58:48:22 Sony 58:48:c0 Coflec 58:49:25 E3Enterp 58:49:3b PaloAlto 58:49:ba ChitaiEl 58:4c:19 Chongqin 58:4c:ee DigitalO 58:50:76 LinearEq 58:50:ab Tls 58:50:e6 BestBuy 58:52:8a Mitsubis 58:53:c0 BeijingG 58:55:ca Apple 58:56:e8 ArrisGro 58:57:0d DanfossS 58:60:5f Huawei 58:63:56 Fn-LinkT 58:63:9a TplSyste 58:65:e6 Infomark 58:66:ba Hangzhou 58:67:1a Barnes&N 58:67:7f ClareCon 58:68:5d TempoAus 58:69:6c RuijieNe 58:69:f9 FusionTr 58:6a:b1 Hangzhou 58:6d:8f Cisco 58:6e:d6 Private 58:70:c6 Shanghai 58:75:21 CjscRtso 58:76:75 BeijingE 58:76:c5 DigiIS 58:7a:4d Stonesof 58:7b:e9 AirproTe 58:7e:61 QingdaoH 58:7f:57 Apple 58:7f:66 Huawei 58:7f:b7 SonarInd 58:7f:c8 S2m 58:82:1d HSchomäc 58:82:a8 Microsoft 58:84:e4 Ip500All 58:85:6e Qsc 58:87:4c Lite-OnC 58:87:e2 Shenzhen 58:8b:f3 ZyxelCom 58:8d:09 Cisco 58:91:cf Intel 58:92:0d KineticA 58:93:96 RuckusWi 58:94:6b Intel 58:94:cf VertexSt 58:97:1e Cisco 58:97:bd Cisco 58:98:35 Technico 58:98:6f Revoluti 58:9b:0b Shineway 58:9c:fc FreebsdF 58:a2:b5 LG 58:a7:6f Id 58:a8:39 Intel 58:ac:78 Cisco 58:b0:35 Apple 58:b0:d4 Zunidata 58:b6:33 RuckusWi 58:b9:61 SolemEle 58:b9:e1 Crystalf 58:bc:27 Cisco 58:bc:8f Cognitiv 58:bd:a3 Nintendo 58:bd:f9 Sigrand 58:bf:ea Cisco 58:c2:32 Nec 58:c3:8b Samsung 58:c5:83 ItelMobi 58:c5:cb Samsung 58:cf:4b LufkinIn 58:d0:71 BwBroadc 58:d0:8f IEEE1904 58:d6:7a Tcplink 58:d6:d3 DairyChe 58:d9:d5 TendaTec 58:db:8d Fast 58:dc:6d Exceptio 58:e0:2c MicroTec 58:e1:6c YingHuaI 58:e3:26 CompassT 58:e4:76 CentronC 58:e6:36 EvrsafeT 58:e7:47 Deltanet 58:e8:08 Autonics 58:e8:76 IEEERegi 58:eb:14 ProteusD 58:ec:e1 Newport 58:ee:ce IconTime 58:ef:68 BelkinIn 58:f1:02 BluProdu 58:f3:87 Hccp 58:f3:9c Cisco 58:f4:96 SourceCh 58:f6:7b XiaMenUn 58:f6:bf KyotoUni 58:f9:8e Secudos 58:fb:84 Intel 58:fc:73 ArriaLiv 58:fc:db IEEERegi 58:fd:20 BravidaS 5c:02:6a AppliedV 5c:07:6f ThoughtC 5c:0a:5b Samsung 5c:0c:bb Celizion 5c:0e:8b ExtremeN 5c:11:93 SealOne 5c:14:37 Thyssenk 5c:15:15 Advan 5c:15:e1 AidcTech 5c:16:c7 BigSwitc 5c:17:37 I-ViewNo 5c:17:d3 Lge 5c:18:b5 TalonCom 5c:1a:6f Cambridg 5c:20:d0 AsoniCom 5c:22:c4 DaeEunEl 5c:24:43 O-SungTe 5c:24:79 Baltech 5c:25:4c AvireGlo 5c:26:0a Dell 5c:2a:ef OpenAcce 5c:2b:f5 Vivint 5c:2e:59 Samsung 5c:2e:d2 AbcXishe 5c:31:3e TexasIns 5c:33:27 SpazioIt 5c:33:5c Swisspho 5c:33:8e AlphaNet 5c:35:3b CompalBr 5c:35:da ThereOy 5c:36:b8 TclKingE 5c:38:e0 Shanghai 5c:3b:35 Gehirn 5c:3c:27 Samsung 5c:40:58 Jefferso 5c:41:e7 WiatecIn 5c:43:d2 Hazemeye 5c:45:27 JuniperN 5c:49:79 AvmAudio 5c:49:7d Samsung 5c:4a:1f SichuanT 5c:4a:26 EnguityT 5c:4c:a9 Huawei 5c:50:15 Cisco 5c:51:4f Intel 5c:51:88 Motorola 5c:56:ed 3pleplay 5c:57:1a ArrisGro 5c:57:c8 Nokia 5c:59:48 Apple 5c:5b:35 Mist 5c:5b:c2 Yik 5c:5e:ab JuniperN 5c:63:bf TP-Link 5c:69:84 Nuvico 5c:6a:7d Kentkart 5c:6a:80 ZyxelCom 5c:6b:32 TexasIns 5c:6b:4f Hello 5c:6d:20 HonHaiPr 5c:6f:4f SASistel 5c:70:a3 LG 5c:77:57 Haivisio 5c:7d:5e Huawei 5c:83:8f Cisco 5c:84:86 Brightso 5c:86:13 BeijingZ 5c:86:4a SecretLa 5c:87:78 Cybertel 5c:89:9a TP-Link 5c:89:d4 BeijingB 5c:8a:38 HP 5c:8d:4e Apple 5c:8f:e0 ArrisGro 5c:93:a2 LiteonTe 5c:95:ae Apple 5c:96:56 AzureWave 5c:96:6a Rtnet 5c:96:9d Apple 5c:97:f3 Apple 5c:99:60 Samsung 5c:9a:d8 Fujitsu 5c:a1:78 Tabletop 5c:a3:9d Samsung 5c:a3:eb LokelSRO 5c:a4:8a Cisco 5c:a8:6a Huawei 5c:a9:33 LumaHome 5c:aa:fd Sonos 5c:ac:4c HonHaiPr 5c:ad:cf Apple 5c:af:06 LG 5c:b0:66 ArrisGro 5c:b3:95 Huawei 5c:b4:3e Huawei 5c:b5:24 Sony 5c:b5:59 CnexLabs 5c:b6:cc Novacomm 5c:b8:cb AllisCom 5c:b9:01 HP 5c:ba:37 Microsoft 5c:bd:9e Hongkong 5c:c2:13 FrSauter 5c:c5:d4 Intel 5c:c6:d0 Skyworth 5c:c6:e9 EdifierI 5c:c7:d7 AzroadTe 5c:c9:d3 Palladiu 5c:ca:1a Microsoft 5c:ca:32 Theben 5c:cc:a0 Gridwiz 5c:cc:ff Techrout 5c:ce:ad Cdyne 5c:cf:7f Espressi 5c:d1:35 XtremePo 5c:d2:e4 Intel 5c:d4:1b UczoonTe 5c:d4:ab Zektor 5c:d6:1f Qardio 5c:d9:98 D-Link 5c:da:d4 MurataMa 5c:dc:96 Arcadyan 5c:dd:70 Hangzhou 5c:e0:c5 Intel 5c:e0:ca FeitianU 5c:e0:f6 NicBr-Nu 5c:e2:23 DelphinT 5c:e2:86 NortelNe 5c:e2:f4 AcsipTec 5c:e3:0e ArrisGro 5c:e3:b6 Fiberhom 5c:e7:bf NewSingu 5c:e8:eb Samsung 5c:eb:4e RStahlHm 5c:eb:68 Cheersta 5c:ee:79 GlobalDi 5c:f2:07 SpecoTec 5c:f2:86 IEEERegi 5c:f3:70 Cc&CTech 5c:f3:fc IBM 5c:f4:ab ZyxelCom 5c:f5:0d Institut 5c:f5:da Apple 5c:f6:dc Samsung 5c:f7:c3 SyntechH 5c:f7:e6 Apple 5c:f8:21 TexasIns 5c:f8:a1 MurataMa 5c:f9:38 Apple 5c:f9:6a Huawei 5c:f9:dd Dell 5c:f9:f0 AtomosEn 5c:fc:66 Cisco 5c:ff:35 Wistron 5c:ff:ff Shenzhen 60:01:94 Espressi 60:02:92 Pegatron 60:02:b4 WistronN 60:03:08 Apple 60:03:47 BillionE 60:04:17 Posbank 60:08:10 Huawei 60:08:37 IvviScie 60:0b:03 Hangzhou 60:0f:77 Silverpl 60:11:99 Siama 60:12:83 Solucion 60:12:8b Canon 60:14:66 Zte 60:14:b3 Cybertan 60:15:c7 Idatech 60:18:2e Shenzhen 60:18:88 Zte 60:19:0c Rramac 60:19:29 Voltroni 60:19:70 HuizhouQ 60:19:71 ArrisGro 60:1d:0f MidniteS 60:1e:02 Eltexala 60:21:01 Guangdon 60:21:03 I4vine 60:21:c0 MurataMa 60:24:c1 JiangsuZ 60:27:1c VideorEH 60:2a:54 Cardiote 60:2a:d0 Cisco 60:31:3b SunnovoI 60:31:97 ZyxelCom 60:32:f0 MplusTec 60:33:4b Apple 60:35:53 BuwonTec 60:36:96 Sapling 60:36:dd Intel 60:38:0e AlpsElec 60:38:e0 BelkinIn 60:39:1f Abb 60:3e:7b Gafachi 60:3e:ca Cambridg 60:3f:c5 Cox 60:42:7f Shenzhen 60:44:f5 EasyDigi 60:45:5e LiptelSR 60:45:bd Microsoft 60:45:cb ASUS 60:46:16 XiamenVa 60:47:62 BeijingS 60:47:d4 ForicsEl 60:48:26 Newbridg 60:49:c1 Avaya 60:4a:1c Suyin 60:4b:aa Private 60:50:c1 KinetekS 60:51:2c TctMobil 60:52:d0 FactsEng 60:53:17 Sandston 60:54:64 EyedroGr 60:57:18 Intel 60:5b:b4 AzureWave 60:60:1f SzDjiTec 60:63:f9 Ciholas 60:63:fd Transcen 60:64:05 TexasIns 60:64:53 Aod 60:64:a1 Radiflow 60:67:20 Intel 60:69:44 Apple 60:69:9b Isepos 60:6b:bd Samsung 60:6c:66 Intel 60:6d:c7 HonHaiPr 60:72:0b BluProdu 60:73:5c Cisco 60:73:bc Zte 60:74:8d AtmacaEl 60:76:88 Velodyne 60:77:e2 Samsung 60:7e:dd Microsoft 60:81:2b CustomCo 60:81:f9 Helium 60:83:34 Huawei 60:83:b2 GkwareEK 60:84:3b Soladigm 60:86:45 AveryWei 60:89:3c ThermoFi 60:89:b1 KeyDigit 60:89:b7 KaelMühe 60:8c:2b HansonTe 60:8d:17 SentrusG 60:8f:5c Samsung 60:90:84 Dssd 60:91:f3 VivoMobi 60:92:17 Apple 60:96:20 Private 60:99:d1 Vuzix/Le 60:9a:a4 GviSecur 60:9a:c1 Apple 60:9c:9f BrocadeC 60:9e:64 Vivonic 60:9f:9d Cloudswi 60:a1:0a Samsung 60:a3:7d Apple 60:a4:4c ASUS 60:a4:d0 Samsung 60:a8:fe Nokia 60:a9:b0 Merchand 60:ac:c8 Kunteng 60:af:6d Samsung 60:b1:85 AthSyste 60:b3:87 Synergic 60:b3:c4 ElberSrl 60:b4:f7 PlumeDes 60:b6:06 Phorus 60:b6:17 Fiberhom 60:b9:33 DeutronE 60:b9:82 RoVeRLab 60:ba:18 Nextlap 60:bb:0c BeijingH 60:bc:4c EwmHight 60:bd:91 MoveInno 60:be:b5 Motorola 60:c0:bf OnSemico 60:c1:cb FujianGr 60:c3:97 2wire 60:c5:47 Apple 60:c5:a8 BeijingL 60:c5:ad Samsung 60:c6:58 Phytroni 60:c7:98 Verifone 60:c9:80 Trymus 60:cb:fb Airscape 60:cd:a9 Abloomy 60:cd:c5 TaiwanCa 60:d0:a9 Samsung 60:d1:aa VishalTe 60:d2:62 TzukuriP 60:d2:b9 RealandB 60:d3:0a Quatius 60:d7:e3 IEEERegi 60:d8:19 HonHaiPr 60:d9:a0 LenovoMo 60:d9:c7 Apple 60:da:23 Estech 60:da:83 Hangzhou 60:db:2a Hns 60:de:44 Huawei 60:e0:0e ShinseiE 60:e3:27 TP-Link 60:e3:ac LG 60:e6:bc Sino-Tel 60:e7:01 Huawei 60:e7:8a Unisem 60:e9:56 AylaNetw 60:eb:69 QuantaCo 60:ee:5c Shenzhen 60:ef:c6 Shenzhen 60:f1:3d Jablocom 60:f1:89 MurataMa 60:f2:81 TranwoTe 60:f2:ef Visionve 60:f3:da LogicWay 60:f4:45 Apple 60:f4:94 HonHaiPr 60:f5:9c Cru-Data 60:f6:73 Terumo 60:f8:1d Apple 60:fa:cd Apple 60:fb:42 Apple 60:fd:56 Woorisys 60:fe:1e ChinaPal 60:fe:20 2wire 60:fe:c5 Apple 60:fe:f9 ThomasBe 60:ff:dd CEElectr 64:00:2d Powerlin 64:00:6a Dell 64:00:f1 Cisco 64:05:be NewLight 64:09:4c BeijingS 64:09:80 XiaomiCo 64:0b:4a DigitalT 64:0d:ce Shenzhen 64:0d:e6 Petra 64:0e:36 Taztag 64:0e:94 Pluribus 64:0f:28 2wire 64:10:84 HexiumTe 64:12:25 Cisco 64:12:69 ArrisGro 64:13:6c Zte 64:16:66 NestLabs 64:16:7f Polycom 64:16:8d Cisco 64:16:f0 Huawei 64:1a:22 Heliospe 64:1c:67 Digibras 64:1e:81 Dowslake 64:20:0c Apple 64:21:84 NipponDe 64:22:16 Shandong 64:24:00 Xorcom 64:27:37 HonHaiPr 64:2d:b7 SeungilE 64:31:50 HP 64:31:7e Dexin 64:34:09 BitwaveP 64:35:1c E-ConInd 64:3a:b1 SichuanT 64:3e:8c Huawei 64:3f:5f Exablaze 64:42:14 Swisscom 64:43:46 Guangdon 64:47:e0 FeitianT 64:4b:c3 Shanghai 64:4b:f0 Caldigit 64:4d:70 Dspace 64:4f:74 Lenus 64:4f:b0 HyunjinC 64:51:06 HP 64:51:7e LongBenD 64:52:99 Chamberl 64:53:5d Frausche 64:54:22 EquinoxP 64:55:63 Inteligh 64:55:7f NsfocusI 64:55:b1 ArrisGro 64:56:01 TP-Link 64:59:f8 Vodafone 64:5a:04 ChiconyE 64:5d:92 SichuanT 64:5d:d7 Shenzhen 64:5e:be Yahoo!Ja 64:5f:ff NicoletN 64:61:84 Velux 64:62:23 Cellient 64:64:9b JuniperN 64:65:c0 Nuvon 64:66:b3 TP-Link 64:67:07 BeijingO 64:68:0c Comtrend 64:69:bc HyteraCo 64:6a:52 Avaya 64:6a:74 Auth-Ser 64:6c:b2 Samsung 64:6e:6c RadioDat 64:6e:ea Iskratel 64:70:02 TP-Link 64:72:d8 GoowiTec 64:73:e2 Arbiter 64:74:f6 ShooterD 64:76:57 Innovati 64:76:ba Apple 64:77:7d HitronTe 64:77:91 Samsung 64:79:a7 PhisonEl 64:7b:d4 TexasIns 64:7c:34 UbeeInte 64:7d:81 YokotaIn 64:7f:da Tektelic 64:80:8b VgContro 64:80:99 Intel 64:81:25 Alphatro 64:87:88 JuniperN 64:87:d7 AdbBroad 64:88:ff SichuanC 64:89:9a LG 64:8d:9e IvtElect 64:99:5d Lge 64:99:68 Elentec 64:99:a0 Elektron 64:9a:12 P2Mobile 64:9a:be Apple 64:9b:24 VTechnol 64:9c:81 Qualcomm 64:9c:8e TexasIns 64:9e:f3 Cisco 64:9f:f7 KoneOyj 64:a0:e7 Cisco 64:a2:32 OooSamli 64:a3:41 Wonderla 64:a3:cb Apple 64:a5:c3 Apple 64:a6:51 Huawei 64:a6:8f Zhongsha 64:a7:69 HTC 64:a7:dd Avaya 64:a8:37 JuniKore 64:ae:0c Cisco 64:ae:88 Polytec 64:b0:a6 Apple 64:b2:1d ChengduP 64:b3:10 Samsung 64:b3:70 Powercom 64:b4:73 XiaomiCo 64:b6:4a Vivotech 64:b8:53 Samsung 64:b9:e8 Apple 64:ba:bd SdjTechn 64:bc:0c LG 64:bc:11 Combiq 64:c3:54 Avaya 64:c5:aa SouthAfr 64:c6:67 Barnes&N 64:c6:af AxerraNe 64:c9:44 LarkTech 64:cc:2e XiaomiCo 64:d0:2d NextGene 64:d1:54 Routerbo 64:d1:a3 SitecomE 64:d2:41 KeithKoe 64:d4:bd AlpsElec 64:d4:da Intel 64:d8:14 Cisco 64:d9:12 Solidica 64:d9:54 TaicangT 64:d9:89 Cisco 64:da:a0 RobertBo 64:db:18 Openpatt 64:db:43 Motorola 64:db:81 Syszone 64:db:a0 SelectCo 64:dc:01 StaticGr 64:de:1c Kingneti 64:df:e9 Ateme 64:e1:61 Dep 64:e5:99 EfmNetwo 64:e6:25 WoxuWire 64:e6:82 Apple 64:e8:4f Serialwa 64:e8:92 MorioDen 64:e8:e6 GlobalMo 64:e9:50 Cisco 64:ea:c5 Sibotech 64:eb:8c SeikoEps 64:ed:57 ArrisGro 64:ed:62 Woori 64:f2:42 GerdesAk 64:f5:0e KinionTe 64:f6:9d Cisco 64:f9:70 KenadeEl 64:f9:87 Avvasi 64:fb:81 IEEERegi 64:fc:8c Zonar 68:02:35 KontenNe 68:05:71 Samsung 68:05:ca Intel 68:07:15 Intel 68:09:27 Apple 68:0a:d7 Yancheng 68:12:2d SpecialI 68:12:95 LupineLi 68:14:01 HonHaiPr 68:15:90 Sagemcom 68:15:d3 ZakladyE 68:16:05 AndElect 68:17:29 Intel 68:19:3f DigitalA 68:1a:b2 Zte 68:1c:a2 Rosewill 68:1d:64 SunwaveC 68:1d:ef Shenzhen 68:1e:8b Infosigh 68:1f:d8 SiemensI 68:23:4b NihonDen 68:26:2a SichuanT 68:27:37 Samsung 68:28:ba Dejai 68:28:f6 VubiqNet 68:2d:dc WuhanCha 68:31:fe Teladin 68:35:63 Shenzhen 68:36:b5 Drivesca 68:37:e9 AmazonTe 68:3b:1e Countwis 68:3c:7d MagicInt 68:3e:34 MeizuTec 68:3e:ec Ereca 68:43:52 Bhuu 68:48:98 Samsung 68:4b:88 Galtroni 68:4c:a8 Shenzhen 68:51:b7 Powerclo 68:53:6c Spns 68:53:88 P&STechn 68:54:c1 Colortok 68:54:ed Alcatel- 68:54:f5 Enlighte 68:54:fd AmazonTe 68:58:c5 ZfTrwAut 68:59:7f AlcatelL 68:5b:35 Apple 68:5b:36 Powertec 68:5d:43 Intel 68:5e:6b Powerray 68:63:59 Advanced 68:64:4b Apple 68:69:2e Zycoo 68:69:75 AnglerLa 68:69:f2 ComapSRO 68:6e:23 Wi3 68:6e:48 ProphetE 68:72:51 Ubiquiti 68:72:dc CetoryTv 68:76:4f Sony 68:78:48 Westunit 68:78:4c NortelNe 68:79:24 Els-Gmbh 68:79:ed Sharp 68:7c:c8 Measurem 68:7c:d5 YSoftAS 68:7f:74 Cisco 68:83:1a PandoraM 68:84:70 Essys 68:85:40 IgiMobil 68:85:6a Outerlin 68:86:a7 Cisco 68:86:e7 Orbotix 68:87:6b InqMobil 68:89:c1 Huawei 68:8a:b5 EdpServi 68:8a:f0 Zte 68:8d:b6 Aetek 68:8f:84 Huawei 68:91:d0 IEEERegi 68:92:34 RuckusWi 68:93:61 Integrat 68:94:23 HonHaiPr 68:96:7b Apple 68:97:4b Shenzhen 68:97:e8 SocietyO 68:99:cd Cisco 68:9a:b7 AtelierV 68:9c:5e AcsipTec 68:9c:70 Apple 68:9c:e2 Cisco 68:9e:19 TexasIns 68:9f:f0 Zte 68:a0:f6 Huawei 68:a1:b7 HonghaoM 68:a3:78 FreeboxS 68:a3:c4 LiteonTe 68:a4:0e BshHausg 68:a8:28 Huawei 68:a8:6d Apple 68:aa:d2 Datecs 68:ab:8a RfIdeas 68:ae:20 Apple 68:af:13 FuturaMo 68:b0:94 InesaEle 68:b3:5e Shenzhen 68:b4:3a Waterfur 68:b5:99 HP 68:b6:fc HitronTe 68:b8:d9 ActKde 68:b9:83 B-Plus 68:bc:0c Cisco 68:bd:ab Cisco 68:c4:4d Motorola 68:c9:0b TexasIns 68:ca:00 Octopus 68:cc:6e Huawei 68:cc:9c MineSite 68:cd:0f UTek 68:ce:4e L-3Commu 68:d1:fd Shenzhen 68:d2:47 Portalis 68:d9:25 ProsysDe 68:d9:3c Apple 68:db:67 NantongC 68:db:96 OpwillTe 68:db:ca Apple 68:dc:e8 Packetst 68:df:dd XiaomiCo 68:e1:66 Private 68:e4:1f Unglaube 68:e8:eb LinktelT 68:eb:ae Samsung 68:eb:c5 Angstrem 68:ec:62 YodoTech 68:ed:43 Blackber 68:ed:a4 Shenzhen 68:ee:96 Cisco 68:ef:bd Cisco 68:f0:6d AlongInd 68:f0:bc Shenzhen 68:f1:25 DataCont 68:f7:28 LcfcHefe 68:f8:95 Redflow 68:f9:56 Objetivo 68:fb:7e Apple 68:fb:95 Generalp 68:fc:b3 NextLeve 6c:02:73 Shenzhen 6c:04:60 RbhAcces 6c:09:d6 Digiques 6c:0b:84 Universa 6c:0e:0d Sony 6c:0e:e6 ChengduX 6c:0f:6a JdcTech 6c:14:f7 Erhardt+ 6c:15:f9 Nautroni 6c:16:0e Shottrac 6c:18:11 DecaturE 6c:19:8f D-Link 6c:19:c0 Apple 6c:1e:70 Guangzho 6c:1e:90 HansolTe 6c:20:56 Cisco 6c:22:ab Ainswort 6c:23:b9 Sony 6c:24:83 Microsoft 6c:25:b9 BbkEduca 6c:27:79 Microsoft 6c:29:95 Intel 6c:2c:06 OooNppSy 6c:2e:33 Accelink 6c:2e:72 B&BExpor 6c:2e:85 Sagemcom 6c:2f:2c Samsung 6c:32:de IndieonT 6c:33:a9 Magicjac 6c:38:a1 UbeeInte 6c:39:1d BeijingZ 6c:3a:84 Shenzhen 6c:3b:6b Routerbo 6c:3b:e5 HP 6c:3c:53 Soundhaw 6c:3e:6d Apple 6c:3e:9c KeKneste 6c:40:08 Apple 6c:40:c6 NimbusDa 6c:41:6a Cisco 6c:44:18 Zappware 6c:45:98 AntexEle 6c:4a:39 Bita 6c:4b:7f Vossloh- 6c:4b:90 Liteon 6c:50:4d Cisco 6c:57:79 Aclima 6c:59:40 Shenzhen 6c:59:76 Shanghai 6c:5a:34 Shenzhen 6c:5a:b5 TclTechn 6c:5c:14 Guangdon 6c:5c:de Sunrepor 6c:5d:63 Shenzhen 6c:5e:7a Ubiquito 6c:5f:1c LenovoMo 6c:60:eb ZhiYuanE 6c:61:26 RinicomH 6c:62:6d Micro-St 6c:64:1a PenguinC 6c:6e:fe CoreLogi 6c:6f:18 Stereota 6c:70:39 Novar 6c:70:9f Apple 6c:71:bd EzelinkT 6c:71:d9 AzureWave 6c:72:20 D-Link 6c:72:e7 Apple 6c:75:0d Wifisong 6c:76:60 Kyocera 6c:81:fe Mitsuba 6c:83:36 Samsung 6c:83:66 NanjingS 6c:86:86 Technoni 6c:88:14 Intel 6c:8b:2f Zte 6c:8c:db OtusTech 6c:8d:65 Wireless 6c:8d:c1 Apple 6c:8f:b5 Microsoft 6c:90:b1 Sanlogic 6c:92:bf InspurEl 6c:93:54 YaojinTe 6c:94:f8 Apple 6c:95:22 Scalys 6c:98:eb Riverbed 6c:99:89 Cisco 6c:9a:c9 Valentin 6c:9b:02 Nokia 6c:9c:e9 NimbleSt 6c:9c:ed Cisco 6c:a1:00 Intel 6c:a6:82 EdamInfo 6c:a7:5f Zte 6c:a7:80 Nokia 6c:a7:fa YoungboE 6c:a8:49 Avaya 6c:a8:58 Fiberhom 6c:a9:06 Telefiel 6c:a9:6f Transpac 6c:aa:b3 RuckusWi 6c:ab:31 Apple 6c:ab:4d DigitalP 6c:ac:60 Venetex 6c:ad:3f HubbellB 6c:ad:ef KzBroadb 6c:ad:f8 AzureWave 6c:ae:8b IBM 6c:b0:ce Netgear 6c:b2:27 Sony 6c:b3:11 Shenzhen 6c:b3:50 AnhuiCom 6c:b4:a7 Landauer 6c:b5:6b Humax 6c:b7:f4 Samsung 6c:b9:c5 DeltaNet 6c:be:e9 Alcatel- 6c:bf:b5 NoonTech 6c:c1:d2 ArrisGro 6c:c2:17 HP 6c:c2:6b Apple 6c:ca:08 ArrisGro 6c:d0:32 LG 6c:d1:46 SmartekD 6c:d1:b0 WingSing 6c:d6:8a LG 6c:dc:6a Promethe 6c:e0:1e Modcam 6c:e0:b0 Sound4 6c:e3:b6 NeraTele 6c:e4:ce Villiger 6c:e8:73 TP-Link 6c:e9:07 Nokia 6c:e9:83 Gastron 6c:eb:b2 Dongguan 6c:ec:5a HonHaiPr 6c:ec:a1 Shenzhen 6c:ec:eb TexasIns 6c:ef:c6 Shenzhen 6c:f0:49 Giga-Byt 6c:f3:73 Samsung 6c:f3:7f ArubaNet 6c:f5:e8 Mooredol 6c:f9:7c Nanoptix 6c:f9:d2 ChengduG 6c:fa:58 Avaya 6c:fa:89 Cisco 6c:fa:a7 AmpakTec 6c:fd:b9 ProwareT 6c:ff:be MpbCommu 70:01:36 FatekAut 70:02:58 01db-Met 70:05:14 LG 70:0b:c0 DewavTec 70:0f:c7 Shenzhen 70:0f:ec Poindus 70:10:5c Cisco 70:10:6f HP 70:11:24 Apple 70:11:ae MusicLif 70:14:04 Liabilit 70:14:a6 Apple 70:18:8b HonHaiPr 70:1a:04 LiteonTe 70:1a:ed Advas 70:1c:e7 Intel 70:1d:7f ComtechT 70:1d:c4 Northsta 70:20:84 HonHaiPr 70:23:93 Fos4x 70:25:26 Nokia 70:25:59 Cybertan 70:28:8b Samsung 70:29:00 Shenzhen 70:2a:7d Epspot 70:2b:1d E-DomusI 70:2c:1f Wisol 70:2d:84 I4cInnov 70:2d:d1 NewingsC 70:2e:22 Zte 70:2f:4b Polyvisi 70:2f:97 AavaMobi 70:30:18 Avaya 70:30:5d Ubiquoss 70:30:5e NanjingZ 70:31:87 Acx 70:32:d5 AthenaWi 70:38:11 Invensys 70:38:b4 LowTechS 70:38:ee Avaya 70:3a:0e ArubaNet 70:3a:cb Google 70:3a:d8 Shenzhen 70:3c:03 Radiant 70:3c:39 SeawingK 70:3d:15 Hangzhou 70:3e:ac Apple 70:41:b7 EdwardsL 70:46:42 ChyngHon 70:48:0f Apple 70:4a:ae XstreamF 70:4a:e4 Rinstrum 70:4c:a5 Fortinet 70:4c:ed Tmrg 70:4d:7b ASUS 70:4e:01 Kwangwon 70:4e:66 Shenzhen 70:4f:57 TP-Link 70:50:af Bskyb 70:52:c5 Avaya 70:53:3f AlfaInst 70:54:d2 Pegatron 70:54:f5 Huawei 70:56:81 Apple 70:58:12 Panasoni 70:59:57 Medallio 70:59:86 OooTtv 70:5a:0f HP 70:5a:9e Technico 70:5a:b6 CompalIn 70:5b:2e M2commun 70:5c:ad KonamiGa 70:5e:aa ActionTa 70:60:de Lavision 70:61:73 Calantec 70:62:b8 D-Link 70:64:17 OrbisTec 70:65:82 SuzhouHa 70:65:a3 KandaoLi 70:66:1b Sonova 70:68:79 SaijoDen 70:6d:ec Wifi-Sof 70:6e:6d Cisco 70:6f:81 Private 70:70:0d Apple 70:70:4c PurpleCo 70:71:b3 Brain 70:71:bc Pegatron 70:72:0d LenovoMo 70:72:3c Huawei 70:72:cf Edgecore 70:73:cb Apple 70:76:30 ArrisGro 70:76:dd Oxyguard 70:76:f0 Levelone 70:76:ff Kerlink 70:77:81 HonHaiPr 70:78:8b VivoMobi 70:79:38 WuxiZhan 70:79:90 Huawei 70:7b:e8 Huawei 70:7c:18 AdataTec 70:7c:69 Avaya 70:7e:43 ArrisGro 70:7e:de Nastec 70:81:05 Cisco 70:81:eb Apple 70:82:0e AsElectr 70:82:8e Oleumtec 70:85:c2 AsrockIn 70:85:c6 ArrisGro 70:88:4d JapanRad 70:8a:09 Huawei 70:8b:78 Citygrow 70:8b:cd ASUS 70:8d:09 Nokia 70:91:8f Weber-St 70:93:83 Intellig 70:93:f8 SpaceMon 70:97:56 Happyele 70:9a:0b ItalianI 70:9b:a5 Shenzhen 70:9b:fc Bryton 70:9c:8f Nero 70:9e:29 Sony 70:9e:86 X6d 70:9f:2d Zte 70:a1:91 Trendset 70:a2:b3 Apple 70:a4:1c Advanced 70:a6:6a ProxDyna 70:a8:4c Monad 70:a8:e3 Huawei 70:aa:b2 Blackber 70:ad:54 MalvernI 70:af:24 TpVision 70:af:25 Nishiyam 70:af:6a Shenzhen 70:b0:35 Shenzhen 70:b0:8c ShenouCo 70:b1:4e ArrisGro 70:b2:65 HiltronS 70:b3:d5 IEEERegi 70:b5:99 Embedded 70:b9:21 Fiberhom 70:ba:ef Hangzhou 70:bf:3e CharlesR 70:c6:ac BoschAut 70:c7:6f InnoS 70:ca:4d Shenzhen 70:ca:9b Cisco 70:cd:60 Apple 70:d3:79 Cisco 70:d4:f2 Rim 70:d5:7e Scalar 70:d5:e7 Wellcore 70:d6:b6 MetrumTe 70:d8:80 UposSyst 70:d9:23 VivoMobi 70:d9:31 Cambridg 70:da:9c Tecsen 70:db:98 Cisco 70:dd:a1 Tellabs 70:de:e2 Apple 70:df:2f Cisco 70:e0:27 HongyuCo 70:e1:39 3view 70:e2:4c SaeIt-Sy 70:e2:84 WistronI 70:e4:22 Cisco 70:e7:2c Apple 70:e8:43 BeijingC 70:ec:e4 Apple 70:ee:50 Netatmo 70:f0:87 Apple 70:f1:1c Shenzhen 70:f1:76 DataModu 70:f1:96 Actionte 70:f1:a1 LiteonTe 70:f1:e5 Xetawave 70:f3:5a Cisco 70:f3:95 Universa 70:f8:e7 IEEERegi 70:f9:27 Samsung 70:f9:6d Hangzhou 70:fc:8c Oneacces 70:ff:5c Cheerzin 70:ff:76 TexasIns 74:03:bd Buffalo 74:04:2b LenovoMo 74:0a:bc Lightwav 74:0e:db Optowiz 74:14:89 SrtWirel 74:15:e2 Tri-Sen 74:18:65 Shanghai 74:19:f8 IEEERegi 74:1b:b2 Apple 74:1e:93 Fiberhom 74:1f:4a Hangzhou 74:23:44 XiaomiCo 74:25:8a Hangzhou 74:26:ac Cisco 74:27:3c Changyan 74:27:ea Elitegro 74:29:af HonHaiPr 74:2b:0f Infinida 74:2b:62 Fujitsu 74:2d:0a NorfolkE 74:2e:fc Directpa 74:2f:68 AzureWave 74:31:70 Arcadyan 74:32:56 Nt-WareS 74:37:2f Tongfang 74:38:89 AnnaxAnz 74:3a:65 Nec 74:3e:2b RuckusWi 74:3e:cb Gentrice 74:44:01 Netgear 74:45:8a Samsung 74:46:a0 HP 74:4a:a4 Zte 74:4b:e9 Explorer 74:4d:79 Arrive 74:51:ba XiaomiCo 74:53:27 Commsen 74:54:27 Shenzhen 74:54:7d Cisco 74:56:12 ArrisGro 74:57:98 TrumpfLa 74:5a:aa Huawei 74:5c:9f TctMobil 74:5e:1c Pioneer 74:5f:00 Samsung 74:5f:ae TslPpl 74:61:4b Chongqin 74:63:df Vts 74:65:d1 Atlinks 74:66:30 T:MiYtti 74:67:f7 ExtremeN 74:6a:3a Aperi 74:6a:89 Rezolt 74:6a:8f VsVision 74:6b:82 Movek 74:6f:19 Icarvisi 74:6f:3d Contec 74:6f:f7 WistronN 74:72:b0 Guangzho 74:72:f2 ChipsipT 74:73:36 Microdig 74:75:48 AmazonTe 74:78:18 Jurumani 74:7b:7a Eth 74:7d:b6 AliweiCo 74:7e:1a RedEmbed 74:7e:2d BeijingT 74:81:14 Apple 74:85:2a Pegatron 74:86:7a Dell 74:87:a9 OctTechn 74:88:2a Huawei 74:88:8b AdbBroad 74:8a:69 KoreaIma 74:8d:08 Apple 74:8e:08 Bestek 74:8e:f8 BrocadeC 74:8f:1b Masterim 74:8f:4d MenMikro 74:90:50 RenesasE 74:91:1a RuckusWi 74:91:bd Four 74:93:a4 ZebraTec 74:94:3d Agjuncti 74:96:37 TodaairE 74:97:81 Zte 74:99:75 IBM 74:9c:52 HuizhouD 74:9c:e3 Kodaclou 74:9d:8f Huawei 74:9d:dc 2wire 74:a0:2f Cisco 74:a0:63 Huawei 74:a2:e6 Cisco 74:a3:4a Zimi 74:a4:a7 QrsMusic 74:a4:b5 Powerlea 74:a5:28 Huawei 74:a7:22 LG 74:a7:8e Zte 74:ac:5f QikuInte 74:ad:b7 ChinaMob 74:ae:76 InovoBro 74:b0:0c NetworkV 74:b4:72 Ciesse 74:b5:7e Zte 74:b9:eb Jinqianm 74:ba:db Longconn 74:be:08 AtekProd 74:bf:a1 Hyunteck 74:bf:b7 Nusoft 74:c2:46 AmazonTe 74:c3:30 Shenzhen 74:c6:21 Zhejiang 74:c6:3b AzureWave 74:c9:9a Ericsson 74:c9:a3 Fiberhom 74:ca:25 Calxeda 74:cc:39 Fiberhom 74:cd:0c SmithMye 74:ce:56 PacketFo 74:d0:2b ASUS 74:d0:dc Ericsson 74:d4:35 Giga-Byt 74:d6:75 WymaTecn 74:d6:ea TexasIns 74:d7:ca Panasoni 74:d8:50 Evrisko 74:da:38 EdimaxTe 74:da:da D-Link 74:da:ea TexasIns 74:db:d1 Ebay 74:de:2b LiteonTe 74:df:bf LiteonTe 74:e0:6e Ergophon 74:e1:4a IEEERegi 74:e1:b6 Apple 74:e2:77 Vizmonet 74:e2:8c Microsoft 74:e2:f5 Apple 74:e4:24 Apiste 74:e5:0b Intel 74:e5:37 Radspin 74:e5:43 LiteonTe 74:e6:e2 Dell 74:e7:c6 ArrisGro 74:ea:3a TP-Link 74:ea:e8 ArrisGro 74:ec:f1 Acumen 74:f0:6d AzureWave 74:f0:7d Bncom 74:f1:02 BeijingH 74:f4:13 MaxwellF 74:f6:12 ArrisGro 74:f6:1c HTC 74:f7:26 NeuronRo 74:f8:5d Berkeley 74:f8:db IEEERegi 74:fd:a0 Compupal 74:fe:48 Advantec 74:ff:4c Skyworth 74:ff:7d WrenSoun 78:00:9e Samsung 78:02:8f Adaptive 78:02:b7 Shenzhen 78:02:f8 XiaomiCo 78:05:41 Queclink 78:07:38 ZUKElzab 78:0a:c7 BaofengT 78:0c:b8 Intel 78:11:85 NbsPayme 78:12:b8 Orantek 78:18:81 AzureWave 78:19:2e NascentT 78:19:f7 JuniperN 78:1c:5a Sharp 78:1d:ba Huawei 78:1d:fd Jabil 78:1f:db Samsung 78:20:79 IdTech 78:22:3d Affirmed 78:23:ae ArrisGro 78:24:af ASUS 78:25:44 Omnima 78:25:ad Samsung 78:28:ca Sonos 78:2b:cb Dell 78:2e:ef Nokia 78:30:3b StephenT 78:30:e1 Ultracle 78:31:2b Zte 78:31:c1 Apple 78:32:4f Millenni 78:3a:84 Apple 78:3c:e3 Kai-Ee 78:3d:5b TelnetRe 78:3e:53 Bskyb 78:3f:15 Easysync 78:40:e4 Samsung 78:44:05 FujituHo 78:44:76 ZioncomE 78:45:01 Biamp 78:45:61 Cybertan 78:45:c4 Dell 78:46:c4 DaehapHy 78:47:1d Samsung 78:48:59 HP 78:49:1d Will-Bur 78:4b:08 FRobotic 78:4b:87 MurataMa 78:4f:43 Apple 78:51:0c Liveu 78:52:1a Samsung 78:52:62 Shenzhen 78:53:f2 Roxton 78:54:2e D-Link 78:55:17 Sankyuel 78:57:12 MobileIn 78:58:f3 Vachen 78:59:3e Rafi 78:59:5e Samsung 78:59:68 HonHaiPr 78:5c:72 HiosoTec 78:5f:4c ArgoxInf 78:61:7c MitsumiE 78:64:e6 GreenMot 78:66:ae ZtecInst 78:68:f7 YstenTec 78:6a:89 Huawei 78:6c:1c Apple 78:6d:94 PaloAlto 78:71:9c ArrisGro 78:7d:48 ItelMobi 78:7e:61 Apple 78:7f:62 GikMbh 78:81:8f ServerRa 78:84:3c Sony 78:84:ee IndraEsp 78:88:8a CdrSpZOO 78:89:73 Cmc 78:8a:20 Ubiquiti 78:8b:77 StandarT 78:8c:54 EltekTec 78:8d:f7 HitronTe 78:8e:33 JiangsuS 78:92:3e Nokia 78:92:9c Intel 78:94:b4 Sercomm 78:96:82 Zte 78:96:84 ArrisGro 78:98:fd Q9Networ 78:99:5c NationzT 78:99:66 MusilabE 78:99:8f Mediline 78:9c:85 AugustHo 78:9c:e7 Shenzhen 78:9e:d0 Samsung 78:9f:4c Hoerbige 78:9f:70 Apple 78:9f:87 SiemensI 78:a0:51 IinetLab 78:a1:06 TP-Link 78:a1:83 Advidia 78:a2:a0 Nintendo 78:a3:51 Shenzhen 78:a3:e4 Apple 78:a5:04 TexasIns 78:a5:dd Shenzhen 78:a6:83 Precidat 78:a6:bd DaeyeonC 78:a7:14 Amphenol 78:a8:73 Samsung 78:ab:60 AbbAustr 78:ab:bb Samsung 78:ac:bf Igneous 78:ac:c0 HP 78:ae:0c FarSouth 78:af:58 GimasiSa 78:b2:8d BeijingT 78:b3:b9 Shanghai 78:b3:ce EloTouch 78:b5:d2 EverTrea 78:b6:c1 AoboTele 78:b8:1a InterSal 78:b8:4b SichuanT 78:ba:d0 Shinybow 78:ba:f9 Cisco 78:bd:bc Samsung 78:be:b6 Enhanced 78:be:bd Stulz 78:c1:a7 Zte 78:c2:c0 IEEERegi 78:c3:e9 Samsung 78:c4:0e H&DWirel 78:c4:ab Shenzhen 78:c5:e5 TexasIns 78:c6:bb Innovasi 78:ca:04 Nokia 78:ca:39 Apple 78:ca:5e Elno 78:ca:83 IEEERegi 78:cb:33 DhcSoftw 78:cb:68 DaehapHy 78:cd:8e SmcNetwo 78:d0:04 NeousysT 78:d1:29 Vicos 78:d3:4f Pace-O-M 78:d3:8d Hongkong 78:d5:b5 Navielek 78:d6:6f Aristocr 78:d6:b2 Toshiba 78:d6:f0 Samsung 78:d7:52 Huawei 78:d7:5f Apple 78:d9:9f NucomHk 78:da:6e Cisco 78:da:b3 GboTechn 78:dd:08 HonHaiPr 78:dd:d6 C-Scape 78:de:e4 TexasIns 78:e3:b5 HP 78:e4:00 HonHaiPr 78:e7:d1 HP 78:e8:b6 Zte 78:e9:80 Rainus 78:eb:14 Shenzhen 78:eb:39 Institut 78:ec:22 Shanghai 78:ec:74 Kyland-U 78:ef:4c Unetconv 78:f2:9e Pegatron 78:f5:57 Huawei 78:f5:e5 BegaGant 78:f5:fd Huawei 78:f7:be Samsung 78:f7:d0 Silverbr 78:f8:82 LG 78:f9:44 Private 78:fc:14 FamilyZo 78:fd:94 Apple 78:fe:3d JuniperN 78:fe:41 SocusNet 78:fe:e2 Shanghai 78:ff:57 Intel 78:ff:ca TecnoMob 7c:01:87 CurtisIn 7c:01:91 Apple 7c:02:bc HansungE 7c:03:4c Sagemcom 7c:03:c9 Shenzhen 7c:03:d8 Sagemcom 7c:04:d0 Apple 7c:05:07 Pegatron 7c:05:1e Rafael 7c:06:23 UltraEle 7c:08:d9 Shanghai 7c:09:2b Bekey 7c:0a:50 J-Mex 7c:0b:c6 Samsung 7c:0e:ce Cisco 7c:10:15 Brillian 7c:11:be Apple 7c:11:cb Huawei 7c:11:cd Qiantang 7c:14:76 DamallTe 7c:16:0d Saia-Bur 7c:18:cd E-Tron 7c:1a:03 8locatio 7c:1a:fc DalianCo 7c:1c:68 Samsung 7c:1c:f1 Huawei 7c:1d:d9 XiaomiCo 7c:1e:52 Microsoft 7c:1e:b3 2nTeleko 7c:20:48 Koamtac 7c:20:64 Alcatel- 7c:25:87 Chaowifi 7c:26:34 ArrisGro 7c:26:64 Sagemcom 7c:2b:e1 Shenzhen 7c:2c:f3 SecureEl 7c:2e:0d Blackmag 7c:2f:80 GigasetC 7c:33:6e MegElect 7c:35:48 Transcen 7c:38:66 TexasIns 7c:38:6c RealTime 7c:39:20 SsomaSec 7c:3b:d5 ImagoGro 7c:3c:b6 Shenzhen 7c:3e:9d Patech 7c:43:8f E-BandCo 7c:44:4c Entertai 7c:46:85 Motorola 7c:47:7c IEEERegi 7c:49:b9 PlexusMa 7c:4a:82 Portsmit 7c:4a:a8 Mindtree 7c:4b:78 RedSunSy 7c:4c:58 ScaleCom 7c:4c:a5 Bskyb 7c:4f:7d Sawwave 7c:4f:b5 Arcadyan 7c:50:49 Apple 7c:53:4a Metamako 7c:55:e7 Ysi 7c:57:4e Cobi 7c:5a:1c Sophos 7c:5a:67 Jnc 7c:5c:f8 Intel 7c:60:97 Huawei 7c:61:93 HTC 7c:66:9d TexasIns 7c:67:a2 Intel 7c:69:f6 Cisco 7c:6a:b3 IbcTechn 7c:6a:c3 Gatesair 7c:6a:db Safetone 7c:6a:f3 Integrat 7c:6b:33 TenyuTec 7c:6b:52 TigaroWi 7c:6b:f7 Nti 7c:6c:39 PixsysSr 7c:6c:8f AmsNeve 7c:6d:62 Apple 7c:6d:f8 Apple 7c:6f:06 Caterpil 7c:6f:f8 Shenzhen 7c:70:bc IEEERegi 7c:71:76 WuxiIdat 7c:72:e4 UnikeyTe 7c:73:8b CocoonAl 7c:76:73 Enmas 7c:78:7e Samsung 7c:79:e8 Payrange 7c:7a:53 PhytrexT 7c:7a:91 Intel 7c:7b:8b ControlC 7c:7b:e4 ZSedaiKe 7c:7d:3d Huawei 7c:7d:41 JinmuyuE 7c:82:2d Nortec 7c:82:74 Shenzhen 7c:83:06 GlenDimp 7c:8b:ca TP-Link 7c:8d:91 Shanghai 7c:8e:e4 TexasIns 7c:91:22 Samsung 7c:94:b2 Philips 7c:95:b1 Aerohive 7c:95:f3 Cisco 7c:97:63 Openmati 7c:9a:9b VseValen 7c:a1:5d GnResoun 7c:a2:37 KingSlid 7c:a2:3e Huawei 7c:a2:9b DSignt 7c:a6:1d MhlLlc 7c:a9:7d Objeniou 7c:ab:25 MesmoTec 7c:ac:b2 BoschSof 7c:ad:74 Cisco 7c:b0:3e Osram 7c:b0:c2 Intel 7c:b1:5d Huawei 7c:b1:77 Satelco 7c:b2:1b Cisco 7c:b2:32 HuiZhouG 7c:b2:5c AcaciaCo 7c:b5:42 AcesTech 7c:b7:33 AskeyCom 7c:b7:7b Paradigm 7c:b9:60 Shanghai 7c:bb:6f CoscoEle 7c:bb:8a Nintendo 7c:bd:06 AeRefuso 7c:bf:88 Mobilico 7c:bf:b1 ArrisGro 7c:c3:a1 Apple 7c:c4:ef Devialet 7c:c5:37 Apple 7c:c6:c4 KolffCom 7c:c7:09 Shenzhen 7c:c8:ab AcroAsso 7c:c8:d0 TianjinY 7c:c8:d7 Damalisk 7c:c9:5a Emc 7c:cb:0d AntairaT 7c:cb:e2 IEEERegi 7c:cc:1f SichuanT 7c:cc:b8 Intel 7c:cd:11 Ms-Magne 7c:cd:3c Guangzho 7c:cf:cf Shanghai 7c:d1:c3 Apple 7c:d3:0a Inventec 7c:d7:62 Freestyl 7c:d8:44 Enmotus 7c:d9:fe NewCosmo 7c:da:84 Dongnian 7c:dd:11 Chongqin 7c:dd:20 IoxosTec 7c:dd:90 Shenzhen 7c:e0:44 Neon 7c:e1:ff Computer 7c:e2:ca JuniperN 7c:e4:aa Private 7c:e5:24 Quirky 7c:e5:6b EsenOpto 7c:e9:7c ItelMobi 7c:e9:d3 HonHaiPr 7c:eb:7f DmetProd 7c:eb:ae Ridgelin 7c:eb:ea Asct 7c:ec:79 TexasIns 7c:ed:8d Microsoft 7c:ef:18 Creative 7c:ef:8a InhonInt 7c:f0:5f Apple 7c:f0:98 BeeBeans 7c:f0:ba Linkwell 7c:f4:29 Nuuo 7c:f8:54 Samsung 7c:f9:0e Samsung 7c:f9:5c UILapp 7c:fa:df Apple 7c:fc:3c Visteon 7c:fe:28 Salutron 7c:fe:4e Shenzhen 7c:fe:90 Mellanox 7c:ff:62 HuizhouS 80:00:0b Intel 80:00:10 At&T[Mis 80:00:6e Apple 80:01:84 HTC 80:02:df Ora 80:05:df MontageT 80:07:a2 EssonTec 80:09:02 Keysight 80:0a:06 Comtec 80:0a:80 IEEERegi 80:0b:51 ChengduX 80:0d:d7 Latticew 80:0e:24 Forgetbo 80:13:82 Huawei 80:14:40 SunlitSy 80:14:a8 Guangzho 80:16:b7 BrunelUn 80:17:7d NortelNe 80:18:44 Dell 80:18:a7 Samsung 80:19:34 Intel 80:19:67 Shanghai 80:19:fe Jianling 80:1d:aa Avaya 80:1f:02 EdimaxTe 80:20:af TradeFid 80:22:75 BeijingB 80:26:89 D-Link 80:29:94 Technico 80:2a:a8 Ubiquiti 80:2a:fa Germanee 80:2d:e1 Solarbri 80:2e:14 AzetiNet 80:2f:de ZurichIn 80:30:dc TexasIns 80:34:57 Ot 80:37:73 Netgear 80:38:96 Sharp 80:38:bc Huawei 80:38:fd Leapfrog 80:39:e5 Patlite 80:3a:0a Integrat 80:3b:2a AbbXiame 80:3b:9a Ghe-CesE 80:3f:5d Winstars 80:3f:d6 BytesAtW 80:41:4e BbkEduca 80:42:7c AdolfTed 80:47:31 PacketDe 80:48:a5 SichuanT 80:49:71 Apple 80:4b:20 Ventilat 80:4e:81 Samsung 80:4f:58 Thinkeco 80:50:1b Nokia 80:50:67 WDTechno 80:56:f2 HonHaiPr 80:57:19 Samsung 80:58:c5 NovatecK 80:58:f8 Motorola 80:59:fd Noviga 80:5a:04 LG 80:5e:c0 YealinkX 80:60:07 Rim 80:61:8f Shenzhen 80:64:59 Nimbus 80:65:6d Samsung 80:65:e9 Benq 80:66:29 Prescope 80:6a:b0 Shenzhen 80:6c:1b Motorola 80:6c:8b KaeserKo 80:6c:bc NetNewEl 80:71:1f JuniperN 80:71:7a Huawei 80:73:9f Kyocera 80:74:59 KS 80:76:93 NewagSa 80:79:ae Shandong 80:7a:7f AbbGenwa 80:7a:bf HTC 80:7b:1e CorsairC 80:7b:85 IEEERegi 80:7d:1b Neosyste 80:7d:e3 Chongqin 80:81:a5 Tongqing 80:82:87 AtcomTec 80:86:98 Netronic 80:86:f2 Intel 80:89:17 TP-Link 80:8b:5c Shenzhen 80:8c:97 Kaonmedi 80:91:2a LihRongE 80:91:c0 Agilemes 80:92:9f Apple 80:93:93 Xapt 80:94:6c TokyoRad 80:96:b1 ArrisGro 80:96:ca HonHaiPr 80:97:1b Altenerg 80:9b:20 Intel 80:9f:ab Fiberhom 80:a0:36 Shanghai 80:a1:ab Intellis 80:a1:d7 Shanghai 80:a5:89 AzureWave 80:a8:5d Osterhou 80:aa:a4 Usag 80:ac:ac JuniperN 80:ad:00 CnetTech 80:ad:67 KasdaNet 80:b2:19 Elektron 80:b2:34 Technico 80:b2:89 Forworld 80:b3:2a AlstomGr 80:b6:86 Huawei 80:b7:09 Viptela 80:b9:5c Elftech 80:ba:ac Teleadap 80:ba:e6 Neets 80:bb:eb Satmap 80:be:05 Apple 80:c1:6e HP 80:c5:e6 Microsoft 80:c6:3f RemecBro 80:c6:ab Technico 80:c6:ca EndianSR 80:c8:62 Openpeak 80:ce:b1 Theissen 80:cf:41 LenovoMo 80:d0:19 Embed 80:d0:9b Huawei 80:d1:60 Integrat 80:d1:8b Hangzhou 80:d2:1d AzureWave 80:d4:33 Lzlabs 80:d4:a5 Huawei 80:d6:05 Apple 80:d7:33 QsrAutom 80:db:31 PowerQuo 80:e0:1d Cisco 80:e4:da IEEERegi 80:e6:50 Apple 80:e8:6f Cisco 80:ea:23 WistronN 80:ea:96 Apple 80:ea:ca DialogSe 80:eb:77 Wistron 80:ed:2c Apple 80:ee:73 Shuttle 80:f2:5e Kyynel 80:f5:03 ArrisGro 80:f5:93 IrcoSist 80:f6:2e Hangzhou 80:f8:eb Raytight 80:fa:5b Clevo 80:fb:06 Huawei 80:ff:a8 Unidis 84:00:2d Pegatron 84:00:d2 Sony 84:01:a7 Greyware 84:04:d2 KiraleTe 84:0b:2d Samsung 84:0f:45 Shanghai 84:10:0d Motorola 84:11:9e Samsung 84:16:f9 TP-Link 84:17:15 GpElectr 84:17:66 WeifangG 84:18:26 Osram 84:18:3a RuckusWi 84:18:88 JuniperN 84:1b:38 Shenzhen 84:1b:5e Netgear 84:1e:26 Kernel-I 84:21:41 Shenzhen 84:21:f1 Huawei 84:24:8d ZebraTec 84:25:19 Samsung 84:25:3f SilexTec 84:25:a4 Tariox 84:25:db Samsung 84:26:15 AdbBroad 84:26:2b Nokia 84:26:90 BeijingT 84:27:ce OfPresid 84:28:5a SaffronS 84:29:14 EmporiaT 84:29:99 Apple 84:2b:2b Dell 84:2b:50 Huria 84:2b:bc Modellei 84:2e:27 Samsung 84:2f:75 InnokasG 84:30:e5 Skyhawke 84:32:ea AnhuiWan 84:34:97 HP 84:36:11 Hyungseu 84:38:35 Apple 84:38:38 Samsung 84:3a:4b Intel 84:3d:c6 Cisco 84:3f:4e Tri-Tech 84:40:76 Drivenet 84:44:64 Serveru 84:47:65 Huawei 84:48:23 WoxterTe 84:49:15 VarmourN 84:4b:b7 BeijingS 84:4b:f5 HonHaiPr 84:4f:03 Ablelink 84:51:81 Samsung 84:55:a5 Samsung 84:56:9c CohoData 84:57:87 DvrC&C 84:5a:81 Ffly4u 84:5b:12 Huawei 84:5c:93 Chabrier 84:5d:d7 Shenzhen 84:61:a0 ArrisGro 84:62:23 Shenzhen 84:62:a6 EurocbPh 84:63:d6 Microsoft 84:68:3e Intel 84:6a:ed Wireless 84:6e:b1 ParkAssi 84:72:07 I&CTechn 84:73:03 LetvMobi 84:74:2a Zte 84:76:16 AddatSRO 84:77:78 Cochlear 84:78:8b Apple 84:78:ac Cisco 84:79:33 Profichi 84:79:73 Shanghai 84:7a:88 HTC 84:7b:eb Dell 84:7d:50 HolleyMe 84:7e:40 TexasIns 84:80:2d Cisco 84:82:f4 BeijingH 84:83:19 Hangzhou 84:83:36 Newrun 84:83:71 Avaya 84:84:33 ParadoxE 84:85:06 Apple 84:85:0a HellaSon 84:86:f3 Greenvit 84:89:ad Apple 84:8d:84 Rajant 84:8d:c7 Cisco 84:8e:0c Apple 84:8e:96 Embertec 84:8e:df Sony 84:8f:69 Dell 84:90:00 ArnoldRi 84:93:0c IncoaxNe 84:94:8c HitronTe 84:96:81 CathayCo 84:96:d8 ArrisGro 84:97:b8 Memjet 84:98:66 Samsung 84:9c:a6 Arcadyan 84:9d:64 Smc 84:9d:c5 CenteraP 84:9f:b5 Huawei 84:a1:34 Apple 84:a4:23 Sagemcom 84:a4:66 Samsung 84:a6:c8 Intel 84:a7:83 AlcatelL 84:a7:88 Perples 84:a8:e4 Huawei 84:a9:91 CyberTra 84:a9:c4 Huawei 84:ac:a4 BeijingN 84:ac:fb CrouzetA 84:ad:58 Huawei 84:af:1f BeatSyst 84:af:ec Buffalo 84:b1:53 Apple 84:b2:61 Cisco 84:b5:17 Cisco 84:b5:41 Samsung 84:b5:9c JuniperN 84:b8:02 Cisco 84:ba:3b Canon 84:be:52 Huawei 84:c0:ef Samsung 84:c1:c1 JuniperN 84:c2:e4 JiangsuQ 84:c3:e8 Vaillant 84:c7:27 Gnodal 84:c7:a9 C3poSA 84:c7:ea Sony 84:c8:b1 Incognit 84:c9:b2 D-Link 84:cd:62 Shenzhen 84:cf:bf Fairphon 84:d3:2a IEEE1905 84:d4:7e ArubaNet 84:d4:c8 Widex 84:d6:d0 AmazonTe 84:d9:31 Hangzhou 84:d9:c8 Unipatte 84:db:2f SierraWi 84:db:ac Huawei 84:db:fc Nokia 84:dd:20 TexasIns 84:dd:b7 CilagInt 84:de:3d CrystalV 84:df:0c Net2grid 84:df:19 ChuangoS 84:e0:58 ArrisGro 84:e0:f4 IEEERegi 84:e3:23 GreenWav 84:e4:d9 Shenzhen 84:e6:29 BluwanSa 84:e7:14 LiangHer 84:ea:99 Vieworks 84:eb:18 TexasIns 84:ed:33 Bbmc 84:ef:18 Intel 84:f1:29 Metrasca 84:f4:93 OmsSpolS 84:f6:4c CrossPoi 84:f6:fa Miovisio 84:fc:ac Apple 84:fc:fe Apple 84:fe:9e RtcIndus 84:fe:dc BorqsBei 88:01:f2 VitecSys 88:03:55 Arcadyan 88:07:4b LG 88:09:05 Mtmcommu 88:09:af Masimo 88:0f:10 HuamiInf 88:0f:b6 JabilCir 88:10:36 PanodicS 88:12:4e Qualcomm 88:14:2b Protonic 88:15:44 Cisco 88:18:ae Tamron 88:1b:99 Shenzhen 88:1d:fc Cisco 88:1f:a1 Apple 88:20:12 LmiTechn 88:21:e3 Nebusens 88:23:64 Watchnet 88:23:fe TttechCo 88:25:2c Arcadyan 88:25:93 TP-Link 88:28:b3 Huawei 88:29:50 DalianNe 88:2b:d7 Addénerg 88:2e:5a Storone 88:30:8a MurataMa 88:32:9b Samsung 88:33:14 TexasIns 88:33:be Ivenix 88:35:4c Transics 88:36:12 SrcCompu 88:36:6c EfmNetwo 88:3b:8b Cheering 88:3c:1c Mercury 88:3f:d3 Huawei 88:41:57 Shenzhen 88:41:c1 OrbisatD 88:41:fc AirtiesW 88:43:e1 Cisco 88:44:77 Huawei 88:44:f6 Nokia 88:46:2a Telechip 88:4a:ea TexasIns 88:4b:39 SiemensH 88:4c:cf Pulzze 88:50:dd Infiniba 88:51:fb HP 88:53:2e Intel 88:53:95 Apple 88:53:d4 Huawei 88:57:6d XtaElect 88:57:ee Buffalo 88:5a:92 Cisco 88:5b:dd Aerohive 88:5c:47 AlcatelL 88:5d:90 IEEERegi 88:61:5a SianoMob 88:63:df Apple 88:66:39 Huawei 88:66:a5 Apple 88:68:5c Shenzhen 88:6a:b1 VivoMobi 88:6a:e3 AlphaNet 88:6b:0f Bluegiga 88:6b:44 SunnovoI 88:6b:6e Apple 88:6b:76 ChinaHop 88:70:33 Hangzhou 88:70:8c LenovoMo 88:70:ef ScProfes 88:71:e5 AmazonTe 88:73:84 Toshiba 88:73:98 K2eTekpo 88:75:56 Cisco 88:78:73 Intel 88:78:9c GameTech 88:79:5b KonkaGro 88:79:7e Motorola 88:7f:03 ComperTe 88:83:22 Samsung 88:86:03 Huawei 88:86:a0 SimtonTe 88:87:17 Canon 88:87:dd Darbeevi 88:89:14 AllCompo 88:89:64 GsiElect 88:8b:5d StorageA 88:8c:19 BradyAsi 88:90:8d Cisco 88:91:66 Viewcoop 88:91:dd Racktivi 88:94:71 BrocadeC 88:94:7e Fiberhom 88:94:f9 GemicomT 88:95:b9 UnifiedP 88:96:76 TtcMarco 88:96:b6 GlobalFi 88:96:f2 ValeoSch 88:97:df Entrypas 88:98:21 Teraon 88:9b:39 Samsung 88:9c:a6 BtbKorea 88:9f:fa HonHaiPr 88:a0:84 Formatio 88:a2:5e JuniperN 88:a2:d7 Huawei 88:a3:cc AmatisCo 88:a5:bd Qpcom 88:a6:c6 Sagemcom 88:a7:3c Ragentek 88:ac:c1 Generito 88:ad:43 Pegatron 88:ad:d2 Samsung 88:ae:1d CompalIn 88:b1:11 Intel 88:b1:68 DeltaCon 88:b1:e1 MojoNetw 88:b6:27 GembirdE 88:b8:d0 Dongguan 88:ba:7f Qfiednet 88:bd:78 Flaircom 88:bf:d5 SimpleAu 88:c2:42 Poynt 88:c2:55 TexasIns 88:c3:6e BeijingE 88:c3:b3 Sovico 88:c6:26 Logitech 88:c6:63 Apple 88:c9:d0 LG 88:cb:87 Apple 88:cb:a5 SuzhouTo 88:cc:45 Skyworth 88:ce:fa Huawei 88:cf:98 Huawei 88:d2:74 Zte 88:d3:7b FirmtekL 88:d5:0c Guangdon 88:d7:bc Dep 88:d7:f6 ASUS 88:d9:62 CanopusU 88:dc:96 SenaoNet 88:dd:79 Voltaire 88:de:a9 Roku 88:e0:a0 Shenzhen 88:e0:f3 JuniperN 88:e1:61 ArtBeiji 88:e3:ab Huawei 88:e6:03 Avotek 88:e6:28 Shenzhen 88:e7:12 Whirlpoo 88:e7:a6 Iknowled 88:e8:7f Apple 88:e8:f8 YongTaiE 88:e9:17 Tamaggo 88:ed:1c CudoComm 88:f0:31 Cisco 88:f0:77 Cisco 88:f4:88 CellonCo 88:f4:90 Jetmobil 88:f7:c7 Technico 88:fd:15 Lineeye 88:fe:d6 Shanghai 8c:00:6d Apple 8c:04:ff Technico 8c:05:51 Koubachi 8c:07:8c FlowData 8c:08:8b RemoteSo 8c:09:f4 ArrisGro 8c:0c:90 RuckusWi 8c:0c:a3 Amper 8c:0d:76 Huawei 8c:0e:e3 Guangdon 8c:10:d4 Sagemcom 8c:11:cb AbusSecu 8c:14:7d IEEERegi 8c:18:d9 Shenzhen 8c:19:2d IEEERegi 8c:1a:bf Samsung 8c:1f:94 RfSurgic 8c:21:0a TP-Link 8c:27:1d Quanthou 8c:27:8a Vocollec 8c:29:37 Apple 8c:2d:aa Apple 8c:2f:39 IbaDosim 8c:2f:a6 SolidOpt 8c:33:30 Emfirst 8c:33:57 Hitevisi 8c:34:fd Huawei 8c:39:5c Bit4idSr 8c:3a:e3 LG 8c:3c:07 SkivaTec 8c:3c:4a Nakayo 8c:41:f2 RdaTechn 8c:44:35 Shanghai 8c:4a:ee GigaTms 8c:4b:59 3dImagin 8c:4c:dc PlanexCo 8c:4d:b9 Unmonday 8c:4d:ea Cerio 8c:51:05 Shenzhen 8c:53:f7 A&DEngin 8c:54:1d Lge 8c:56:9d ImagingS 8c:56:c5 Nintendo 8c:57:9b WistronN 8c:57:fd LvxWeste 8c:58:77 Apple 8c:59:8b CTechnol 8c:59:c3 AdbItali 8c:5a:f0 Exeltech 8c:5c:a1 D-Broad 8c:5d:60 Uci 8c:5f:df BeijingR 8c:60:4f Cisco 8c:60:e7 Mpgio 8c:61:02 BeijingB 8c:64:0b BeyondDe 8c:64:22 Sony 8c:68:78 Nortek-A 8c:6a:e4 Viogem 8c:6d:50 Shenzhen 8c:70:5a Intel 8c:71:f8 Samsung 8c:73:6e Fujitsu 8c:76:c1 GodenTec 8c:77:12 Samsung 8c:77:16 Longchee 8c:78:d7 Shenzhen 8c:79:67 Zte 8c:7b:9d Apple 8c:7c:92 Apple 8c:7c:b5 HonHaiPr 8c:7c:ff BrocadeC 8c:7e:b3 Lytro 8c:7f:3b ArrisGro 8c:82:a8 InsigmaT 8c:84:01 Private 8c:85:80 SmartInn 8c:87:3b LeicaCam 8c:89:7a Augtek 8c:89:a5 Micro-St 8c:8a:6e EstunAut 8c:8a:bb BeijingO 8c:8b:83 TexasIns 8c:8e:76 Taskit 8c:8e:f2 Apple 8c:8f:e9 Apple 8c:90:d3 Nokia 8c:91:09 Toyoshim 8c:92:36 AusLinxT 8c:93:51 Jigowatt 8c:94:cf EncellTe 8c:99:e6 TctMobil 8c:9f:3b QingdaoH 8c:a0:48 BeijingN 8c:a2:fd Starry 8c:a5:a1 Oregano- 8c:a6:df TP-Link 8c:a9:82 Intel 8c:ab:8e Shanghai 8c:ae:4c Plugable 8c:ae:89 Y-CamSol 8c:b0:94 AirtechI 8c:b6:4f Cisco 8c:b7:f7 Shenzhen 8c:b8:2c IpitomyC 8c:b8:64 AcsipTec 8c:be:be XiaomiCo 8c:bf:9d Shanghai 8c:bf:a6 Samsung 8c:c1:21 Panasoni 8c:c5:e1 Shenzhen 8c:c6:61 CurrentP 8c:c7:aa RadinetC 8c:c7:d0 Zhejiang 8c:c8:cd Samsung 8c:c8:f4 IEEERegi 8c:cd:a2 Actp 8c:cd:e8 Nintendo 8c:cf:5c Befega 8c:d1:7b CgMobile 8c:d2:e9 NipponSm 8c:d3:a2 VissimAs 8c:d6:28 IkorMete 8c:db:25 EsgSolut 8c:dc:d4 HP 8c:dd:8d Wifly-Ci 8c:de:52 IsscTech 8c:de:99 Comlab 8c:df:9d Nec 8c:e0:81 Zte 8c:e1:17 Zte 8c:e2:da CircleMe 8c:e7:48 Private 8c:e7:8c DkNetwor 8c:e7:b3 Sonardyn 8c:ea:1b Edgecore 8c:eb:c6 Huawei 8c:ee:c6 Precepsc 8c:f2:28 Shenzhen 8c:f5:a3 Samsung 8c:f8:13 OrangePo 8c:f9:45 PowerAut 8c:f9:c9 MesadaTe 8c:fa:ba Apple 8c:fd:f0 Qualcomm 90:00:4e HonHaiPr 90:00:db Samsung 90:01:3b Sagemcom 90:02:8a Shenzhen 90:02:a9 Zhejiang 90:03:25 Huawei 90:03:b7 ParrotSa 90:06:28 Samsung 90:09:17 Far-Sigh 90:0a:1a TaicangT 90:0a:39 Wiio 90:0a:3a PsgPlast 90:0b:c1 Sprocomm 90:0c:b4 AlinketE 90:0d:66 Digimore 90:0d:cb ArrisGro 90:0e:83 MonicoMo 90:17:11 HagenukM 90:17:9b Nanomega 90:17:ac Huawei 90:18:5e ApexTool 90:18:7c Samsung 90:18:ae Shanghai 90:19:00 ScsSa 90:1a:ca ArrisGro 90:1b:0e Fujitsu 90:1d:27 Zte 90:1e:dd GreatCom 90:20:3a BydPreci 90:20:83 GeneralE 90:21:06 Bskyb 90:21:55 HTC 90:21:81 Shanghai 90:23:ec Availink 90:27:e4 Apple 90:2b:34 Giga-Byt 90:2c:c7 C-MaxAsi 90:2e:1c Intel 90:2e:87 Labjack 90:31:cd OnyxHeal 90:34:2b Gatekeep 90:34:fc HonHaiPr 90:35:6e Vodafone 90:38:09 Ericsson 90:38:df Changzho 90:3a:a0 Nokia 90:3a:e6 ParrotSa 90:3c:92 Apple 90:3c:ae YunnanKs 90:3d:5a Shenzhen 90:3d:6b ZiconTec 90:3e:ab ArrisGro 90:45:06 TokyoBoe 90:46:a2 TedipayU 90:46:b7 VadaroPt 90:47:16 Rorze 90:48:9a HonHaiPr 90:49:fa Intel 90:4c:e5 HonHaiPr 90:4d:4a Sagemcom 90:4e:2b Huawei 90:50:5a Unglue 90:50:7b Advanced 90:51:3f Elettron 90:54:46 TesElect 90:55:ae Ericsson 90:56:82 Lenbrook 90:56:92 Autotalk 90:59:af TexasIns 90:5c:44 CompalBr 90:5f:2e TctMobil 90:5f:8d Modas 90:60:f1 Apple 90:61:0c FidaInte 90:61:ae Intel 90:67:17 AlphionI 90:67:1c Huawei 90:67:b5 Alcatel- 90:67:f3 AlcatelL 90:68:c3 Motorola 90:6c:ac Fortinet 90:6d:c8 DlgAutom 90:6e:bb HonHaiPr 90:6f:18 Private 90:6f:a9 NanjingP 90:70:25 GareaMic 90:70:65 TexasIns 90:72:40 Apple 90:72:82 Sagemcom 90:79:90 Benchmar 90:7a:0a GebrBode 90:7a:28 BeijingM 90:7a:f1 Wally 90:7e:ba UtekTech 90:7f:61 ChiconyE 90:82:60 IEEE1904 90:83:7a GeneralE 90:84:0d Apple 90:84:2b LegoSyst 90:86:74 SichuanT 90:88:a2 IonicsTe 90:8c:09 TotalPha 90:8c:44 HKZongmu 90:8c:63 GzWeedon 90:8d:1d GhTechno 90:8d:6c Apple 90:8d:78 D-Link 90:8f:cf UnoSyste 90:90:3c TrisonTe 90:90:60 RsiVideo 90:92:b4 DiehlBgt 90:94:e4 D-Link 90:97:d5 Espressi 90:97:f3 Samsung 90:98:64 Impex-Sa 90:99:16 ElveesNe 90:9d:e0 NewlandD 90:9f:33 EfmNetwo 90:9f:43 Accutron 90:a2:10 UnitedTe 90:a2:da GheoSa 90:a4:6a Sisnet 90:a4:de WistronN 90:a6:2f Naver 90:a7:83 JswPacif 90:a7:c1 PakedgeD 90:ac:3f Brightsi 90:ae:1b TP-Link 90:b0:ed Apple 90:b1:1c Dell 90:b1:34 ArrisGro 90:b2:1f Apple 90:b6:86 MurataMa 90:b8:d0 Joyent 90:b9:31 Apple 90:b9:7d JohnsonO 90:c1:15 Sony 90:c1:c6 Apple 90:c3:5f NanjingJ 90:c6:82 IEEERegi 90:c7:92 ArrisGro 90:c7:d8 Zte 90:c9:9b Recore 90:cc:24 Synaptic 90:cd:b6 HonHaiPr 90:cf:15 Nokia 90:cf:6f Dlogixs 90:cf:7d QingdaoH 90:d1:1b PalomarM 90:d7:4f Bookeen 90:d7:be WavelabG 90:d7:eb TexasIns 90:d8:52 Comtec 90:d8:f3 Zte 90:d9:2c Hug-Wits 90:da:4e Avanu 90:da:6a FocusH&S 90:db:46 E-LeadEl 90:df:b7 SMSSmart 90:df:fb Homeride 90:e0:f0 IEEE1722 90:e2:ba Intel 90:e6:ba ASUS 90:e7:c4 HTC 90:ea:60 SpiLaser 90:ec:50 COBO 90:ee:d9 Universa 90:ef:68 ZyxelCom 90:f0:52 MeizuTec 90:f1:aa Samsung 90:f1:b0 Hangzhou 90:f2:78 RadiusGa 90:f3:05 Humax 90:f3:b7 KirisunC 90:f4:c1 RandMcna 90:f6:52 TP-Link 90:f7:2f Phillips 90:fb:5b Avaya 90:fb:a6 HonHaiPr 90:fd:61 Apple 90:ff:79 MetroEth 94:00:70 Nokia 94:01:49 Autohotb 94:01:c2 Samsung 94:04:9c Huawei 94:05:b6 LilingFu 94:09:37 Humax 94:0b:2d NetviewT 94:0b:d5 HimaxTec 94:0c:6d TP-Link 94:10:3e BelkinIn 94:11:da ItfFrösc 94:14:7a VivoMobi 94:16:73 PointCor 94:18:82 HP 94:1d:1c TlabWest 94:20:53 Nokia 94:21:97 Stalmart 94:23:6e Shenzhen 94:2c:b3 Humax 94:2e:17 Schneide 94:2e:63 Finsécur 94:31:9b Alphatro 94:33:dd Taco 94:35:0a Samsung 94:36:e0 SichuanB 94:39:e5 HonHaiPr 94:3a:f0 Nokia 94:3b:b1 Kaonmedi 94:3d:c9 AsahiNet 94:3f:c2 HP 94:40:a2 AnywaveC 94:44:44 LG 94:44:52 BelkinIn 94:46:96 Baudtec 94:4a:09 BitwiseC 94:4a:0c Sercomm 94:50:47 Rechnerb 94:50:89 Simonsvo 94:51:03 Samsung 94:51:3d IsmartAl 94:51:bf HyundaiE 94:53:30 HonHaiPr 94:54:93 RigadoLl 94:57:a5 HP 94:59:07 Shanghai 94:59:2d EkeBuild 94:5b:7e Trilobit 94:61:1e WataElec 94:61:24 Pason 94:62:69 ArrisGro 94:63:d1 Samsung 94:65:2d OneplusT 94:65:9c Intel 94:66:e7 WomEngin 94:70:d2 WinfirmT 94:71:ac TctMobil 94:75:6e QinetiqN 94:76:b7 Samsung 94:77:2b Huawei 94:7b:e7 Samsung 94:7c:3e Polewall 94:81:a4 AzurayTe 94:85:7a Evantage 94:86:cd SeoulEle 94:86:d4 Surveill 94:87:7c ArrisGro 94:88:15 Infiniqu 94:88:54 TexasIns 94:88:5e Surfilte 94:8b:03 EagetInn 94:8b:c1 Samsung 94:8d:50 BeamexOy 94:8e:89 Industri 94:8f:ee VerizonT 94:92:bc SyntechH 94:94:26 Apple 94:95:a0 Google 94:98:a2 Shanghai 94:99:01 Shenzhen 94:9a:a9 Microsoft 94:9b:fd TransNew 94:9c:55 AltaData 94:9f:3e Sonos 94:9f:3f OptekDig 94:9f:b4 ChengduJ 94:a0:4e BostexTe 94:a1:a2 AmpakTec 94:a7:b7 Zte 94:a7:bc Bodymedi 94:aa:b8 JoviewBe 94:ab:de OmxTechn 94:ac:ca TrivumTe 94:ae:61 AlcatelL 94:ae:e3 BeldenHi 94:b1:0a Samsung 94:b2:cc Pioneer 94:b4:0f ArubaNet 94:b8:19 Nokia 94:b8:c5 Ruggedco 94:b9:b4 AptosTec 94:ba:31 Visionte 94:ba:56 Shenzhen 94:bb:ae Husqvarn 94:bf:1e Eflow/Sm 94:bf:95 Shenzhen 94:c0:14 SorterSp 94:c0:38 TallacNe 94:c1:50 2wire 94:c3:e4 ScaSchuc 94:c4:e9 Powerlay 94:c6:91 Elitegro 94:c6:eb NovaElec 94:c7:af RayliosT 94:c9:60 Zhongsha 94:c9:62 Teseq 94:ca:0f Honeywel 94:cc:b9 ArrisGro 94:cd:ac Creowave 94:ce:2c Sony 94:ce:31 Cts 94:d0:19 Cydle 94:d4:17 GpiKorea 94:d4:69 Cisco 94:d6:0e Shenzhen 94:d7:23 Shanghai 94:d7:71 Samsung 94:d8:59 TctMobil 94:d9:3c Enelps 94:db:49 Sitcorp 94:db:c9 AzureWave 94:db:da Huawei 94:dd:3f A+VLinkT 94:de:0e Smartopt 94:de:80 Giga-Byt 94:df:4e WistronI 94:df:58 IjElectr 94:e0:d0 Healthst 94:e2:26 DOrtizCo 94:e2:fd BogeKomp 94:e7:11 XirkaDam 94:e8:48 FyldeMic 94:e8:c5 ArrisGro 94:e9:6a Apple 94:e9:79 LiteonTe 94:e9:8c Nokia 94:eb:2c Google 94:eb:cd Blackber 94:f1:9e HuizhouM 94:f2:78 ElmaElec 94:f5:51 CadiScie 94:f6:65 RuckusWi 94:f6:92 Geminico 94:f6:a3 Apple 94:f7:20 TianjinD 94:fa:e8 Shenzhen 94:fb:29 ZebraTec 94:fb:b2 Shenzhen 94:fd:1d Wherewhe 94:fd:2e Shanghai 94:fe:22 Huawei 94:fe:f4 Sagemcom 98:00:c1 Guangzho 98:01:a7 Apple 98:02:84 Theobrom 98:02:d8 IEEERegi 98:03:a0 AbbNVPow 98:03:d8 Apple 98:07:2d TexasIns 98:0c:82 Samsung 98:0c:a5 Motorola 98:0d:2e HTC 98:0e:e4 Private 98:10:94 Shenzhen 98:10:e8 Apple 98:13:33 Zte 98:16:ec IcIntrac 98:1d:fa Samsung 98:1e:0f JeelanSh 98:1f:b1 Shenzhen 98:20:8e Definium 98:23:4e Micromed 98:26:2a AppliedR 98:28:a6 CompalIn 98:29:1d JaguarDe 98:29:3f FujianSt 98:2c:be 2wire 98:2d:56 Resoluti 98:2d:ba Fibergat 98:2f:3c SichuanC 98:30:00 BeijingK 98:30:71 Daikyung 98:34:9d KraussMa 98:35:71 Sub10 98:35:b8 Assemble 98:37:13 PtNavico 98:39:8e Samsung 98:3b:16 AmpakTec 98:3f:9f ChinaSsj 98:40:bb Dell 98:42:46 SolIndus 98:43:da Intertec 98:47:3c Shanghai 98:4a:47 ChgHospi 98:4b:4a ArrisGro 98:4b:e1 HP 98:4c:04 Zhangzho 98:4c:d3 MantisDe 98:4e:97 Starligh 98:4f:ee Intel 98:52:b1 Samsung 98:54:1b Intel 98:57:d3 HonHai-C 98:58:8a Sysgrati 98:59:45 TexasIns 98:5a:eb Apple 98:5b:b0 Kmdata 98:5c:93 SbgSas 98:5d:46 Peoplene 98:5d:ad TexasIns 98:5e:1b Conversd 98:5f:d3 Microsoft 98:60:22 Emw 98:66:ea Industri 98:6b:3d ArrisGro 98:6c:5c JiangxiG 98:6c:f5 Zte 98:6d:35 IEEERegi 98:6d:c8 ToshibaM 98:6f:60 Guangdon 98:70:e8 Innatech 98:73:c4 SageElec 98:74:3d Shenzhen 98:74:da InfinixM 98:76:b6 Adafruit 98:77:70 PepDigit 98:7b:f3 TexasIns 98:7e:46 EmizonNe 98:82:17 Disrupti 98:83:89 Samsung 98:84:e3 TexasIns 98:86:b1 Flyaudio 98:87:44 WuxiHong 98:89:ed AnademIn 98:8b:5d Sagemcom 98:8b:ad Corintec 98:8e:34 Zhejiang 98:8e:4a NoxusBei 98:8e:dd TeConnec 98:90:80 Linkpowe 98:90:96 Dell 98:93:cc LG 98:94:49 Skyworth 98:97:d1 Mitrasta 98:9e:63 Apple 98:a4:0e Snap 98:a7:b0 McstZao 98:aa:3c WillI-Te 98:aa:d7 BlueWave 98:aa:fc IEEERegi 98:b0:39 Nokia 98:b6:e9 Nintendo 98:b8:e3 Apple 98:bb:1e BydPreci 98:bc:57 SvaTechn 98:bc:99 Edeltech 98:be:94 IBM 98:c0:eb GlobalRe 98:c8:45 Packetac 98:cb:27 GaloreNe 98:cd:b4 Virident 98:cf:53 BbkEduca 98:d2:93 Google 98:d3:31 Shenzhen 98:d3:d2 MekraLan 98:d6:86 ChyiLeeI 98:d6:bb Apple 98:d6:f7 LG 98:d8:8c NortelNe 98:da:92 Vuzix 98:dc:d9 Unitec 98:dd:ea InfinixM 98:de:d0 TP-Link 98:e0:d9 Apple 98:e1:65 Accutome 98:e4:76 Zentan 98:e7:9a FoxconnN 98:e7:f4 HP 98:e7:f5 Huawei 98:e8:48 Axiim 98:ec:65 CosesyAp 98:ee:cb WistronI 98:f0:58 Lynxspri 98:f0:ab Apple 98:f1:70 MurataMa 98:f1:99 NecPlatf 98:f2:b3 HP 98:f4:28 Zte 98:f5:37 Zte 98:f5:a9 OhsungEl 98:f7:d7 ArrisGro 98:f8:c1 IdtTechn 98:f8:db MariniIm 98:fa:e3 XiaomiCo 98:fb:12 GrandEle 98:fc:11 Cisco 98:fd:74 Act 98:fd:b4 PrimaxEl 98:fe:03 Ericsson 98:fe:94 Apple 98:ff:6a OtecShan 98:ff:d0 LenovoMo 9c:01:11 Shenzhen 9c:02:98 Samsung 9c:03:9e BeijingW 9c:04:73 Tecmobil 9c:04:eb Apple 9c:06:1b Hangzhou 9c:06:6e HyteraCo 9c:0d:ac Tymphany 9c:0e:4a Shenzhen 9c:13:ab ChansonW 9c:14:65 EdataEle 9c:18:74 NokiaDan 9c:1c:12 ArubaNet 9c:1d:58 TexasIns 9c:1e:95 Actionte 9c:1f:dd Accupix 9c:20:7b Apple 9c:21:6a TP-Link 9c:22:0e Tascan 9c:28:40 Discover 9c:28:bf Continen 9c:28:ef Huawei 9c:29:3f Apple 9c:2a:70 HonHaiPr 9c:2a:83 Samsung 9c:30:66 RweEffiz 9c:31:78 FoshanHu 9c:31:b6 KuliteSe 9c:32:a9 SichuanT 9c:34:26 ArrisGro 9c:35:83 NiproDia 9c:35:eb Apple 9c:37:f4 Huawei 9c:3a:af Samsung 9c:3d:cf Netgear 9c:3e:aa Envylogi 9c:41:7c HameTech 9c:44:3d ChengduX 9c:44:a6 Swifttes 9c:45:63 DimepSis 9c:4a:7b Nokia 9c:4c:ae MesaLabs 9c:4e:20 Cisco 9c:4e:36 Intel 9c:4e:8e Alt 9c:4e:bf Boxcast 9c:4f:da Apple 9c:50:ee Cambridg 9c:52:f8 Huawei 9c:53:cd EngicamS 9c:54:1c Shenzhen 9c:54:ca Zhengzho 9c:55:b4 ISESRL 9c:57:11 FeitianX 9c:57:ad Cisco 9c:5b:96 Nmr 9c:5c:8d FiremaxI 9c:5c:8e ASUS 9c:5c:f9 Sony 9c:5d:12 Aerohive 9c:5d:95 VtcElect 9c:5e:73 CalibreU 9c:61:1d Omni-IdU 9c:61:21 SichuanT 9c:62:ab Sumavisi 9c:64:5e HarmanCo 9c:65:b0 Samsung 9c:65:f9 AcsipTec 9c:66:50 GlodioTe 9c:68:5b Octonion 9c:6a:be QeesAps 9c:6c:15 Microsoft 9c:6f:52 Zte 9c:74:1a Huawei 9c:75:14 WildixSr 9c:77:aa Nadasnv 9c:79:ac SuntecSo 9c:7a:03 Ciena 9c:7b:d2 NeolabCo 9c:7d:a3 Huawei 9c:80:7d Syscable 9c:80:df Arcadyan 9c:83:bf Pro-Visi 9c:84:bf Apple 9c:86:da PhoenixG 9c:88:88 SimacTec 9c:88:ad Fiberhom 9c:8b:a0 Apple 9c:8b:f1 Warehous 9c:8d:1a IntegPro 9c:8d:7c AlpsElec 9c:8d:d3 LeontonT 9c:8e:99 HP 9c:8e:cd AmcrestT 9c:8e:dc Teracom 9c:93:4e Xerox 9c:93:e4 Private 9c:95:f8 Smartdoo 9c:97:26 Technico 9c:98:11 Guangzho 9c:99:a0 XiaomiCo 9c:9c:1d StarkeyL 9c:9d:5d Raden 9c:a1:0a ScleSfe 9c:a1:34 Nike 9c:a3:a9 Guangzho 9c:a3:ba SakuraIn 9c:a5:77 OsornoEn 9c:a5:c0 VivoMobi 9c:a6:9d WhaleyTe 9c:a9:e4 Zte 9c:ac:6d Universa 9c:ad:97 HonHaiPr 9c:ad:ef ObihaiTe 9c:ae:d3 SeikoEps 9c:af:6f ItelMobi 9c:af:ca Cisco 9c:b0:08 Ubiquito 9c:b2:06 Procente 9c:b2:b2 Huawei 9c:b6:54 HP 9c:b6:d0 RivetNet 9c:b7:0d LiteonTe 9c:b7:93 Creatcom 9c:bb:98 ShenZhen 9c:bd:9d Skydisk 9c:be:e0 Biosound 9c:c0:77 Printcou 9c:c0:d2 Conducti 9c:c1:72 Huawei 9c:c7:a6 Avm 9c:c7:d1 Sharp 9c:c8:ae BectonDi 9c:ca:d9 Nokia 9c:cc:83 JuniperN 9c:cd:82 ChengUei 9c:d2:1e HonHaiPr 9c:d2:4b Zte 9c:d3:32 Technolo 9c:d3:5b Samsung 9c:d3:6d Netgear 9c:d4:8b InnoluxT 9c:d6:43 D-Link 9c:d9:17 Motorola 9c:d9:cb LesiraMa 9c:da:3e Intel 9c:dc:71 HP 9c:dd:1f Intellig 9c:df:03 Harman/B 9c:df:b1 Shenzhen 9c:e1:0e Nctech 9c:e1:d6 JungerAu 9c:e2:30 Julong 9c:e3:74 Huawei 9c:e6:35 Nintendo 9c:e6:e7 Samsung 9c:e7:bd Windusko 9c:e9:51 Shenzhen 9c:eb:e8 BizlinkK 9c:ef:d5 PandaWir 9c:f3:87 Apple 9c:f4:8e Apple 9c:f6:1a UtcFireA 9c:f6:7d RicardoP 9c:f8:db Shenzhen 9c:f9:38 ArevaNp 9c:fb:d5 VivoMobi 9c:fb:f1 Mesomati 9c:fc:01 Apple 9c:fc:d1 Aetheris 9c:ff:be Otsl a0:02:dc AmazonTe a0:03:63 RobertBo a0:04:3e ParkerHa a0:04:60 Netgear a0:06:27 NexpaSys a0:07:98 Samsung a0:07:b6 Advanced a0:08:6f Huawei a0:09:4c Centuryl a0:09:ed Avaya a0:0a:bf WiesonTe a0:0b:ba Samsung a0:0c:a1 SktbSkit a0:10:81 Samsung a0:12:90 Avaya a0:12:db TabuchiE a0:13:3b HitiDigi a0:13:cb Fiberhom a0:14:3d ParrotSa a0:16:5c Triteka a0:18:28 Apple a0:18:59 Shenzhen a0:19:17 BertelSP a0:1b:29 Sagemcom a0:1c:05 NimaxTel a0:1d:48 HP a0:1e:0b MinixTec a0:20:a6 Espressi a0:21:95 Samsung a0:21:b7 Netgear a0:23:1b Telecomp a0:23:9f Cisco a0:2b:b8 HP a0:2c:36 Fn-LinkT a0:2e:f3 UnitedIn a0:32:99 LenovoBe a0:34:1b Trackr a0:36:9f Intel a0:36:f0 Comprehe a0:36:fa EttusRes a0:39:f7 LG a0:3a:75 PssBelgi a0:3b:1b InspireT a0:3b:e3 Apple a0:3d:6f Cisco a0:3e:6b IEEERegi a0:40:25 Actionca a0:40:41 Samwonfa a0:40:a0 Netgear a0:41:5e OpsensSo a0:41:a7 NlMinist a0:42:3f TyanComp a0:43:db SitaelSP a0:48:1c HP a0:4c:5b Shenzhen a0:4c:c1 Helixtec a0:4e:01 CentralE a0:4e:04 Nokia a0:4f:d4 AdbBroad a0:51:c6 Avaya a0:55:4f Cisco a0:55:de ArrisGro a0:56:b2 Harman/B a0:59:3a VDSVideo a0:5a:a4 GrandPro a0:5b:21 Envinet a0:5d:c1 Tmct a0:5d:e7 Directv a0:5e:6b Melper a0:60:90 Samsung a0:63:91 Netgear a0:65:18 VnptTech a0:67:be SiconSrl a0:69:86 WellavTe a0:6a:00 Verilink a0:6a:44 Vizio a0:6c:ec Rim a0:6d:09 Intelcan a0:6e:50 NanotekE a0:6f:aa LG a0:71:a9 Nokia a0:72:2c Humax a0:73:32 Cashmast a0:73:fc RancoreT a0:75:91 Samsung a0:77:71 VialisBv a0:78:ba Pantech a0:82:1f Samsung a0:82:ac LinearDm a0:82:c7 PTI a0:84:cb Sonicsen a0:86:1d ChengduF a0:86:c6 XiaomiCo a0:86:ec SaehanHi a0:88:69 Intel a0:88:b4 Intel a0:89:e4 Skyworth a0:8a:87 HuizhouK a0:8c:15 GerhardD a0:8c:9b XtremeTe a0:8c:f8 Huawei a0:8c:fd HP a0:8d:16 Huawei a0:8e:78 Sagemcom a0:90:de VeedimsL a0:91:69 LG a0:91:c8 Zte a0:93:47 Guangdon a0:98:05 OpenvoxC a0:98:ed Shandong a0:99:9b Apple a0:9a:5a TimeDoma a0:9b:bd TotalAvi a0:9d:86 Alcatel- a0:9d:91 Soundbri a0:9e:1a PolarEle a0:a1:30 DliTaiwa a0:a2:3c Gpms a0:a3:3b Huawei a0:a3:e2 Actionte a0:a6:5c Supercom a0:a7:63 Polytron a0:a8:cd Intel a0:aa:fd Erathink a0:ab:1b D-Link a0:ad:a1 JmrElect a0:af:bd Intel a0:b1:00 Shenzhen a0:b3:cc HP a0:b4:37 GdMissio a0:b4:a5 Samsung a0:b5:da Hongkong a0:b6:62 Acutvist a0:b8:f8 AmgenUSA a0:b9:ed Skytap a0:ba:b8 PixonIma a0:bb:3e IEEERegi a0:bf:50 SCAdd-Pr a0:bf:a5 Coresys a0:c2:de CostarVi a0:c3:de TritonEl a0:c4:a5 SygnHous a0:c5:62 ArrisGro a0:c5:89 Intel a0:c5:f2 IEEERegi a0:c6:ec Shenzhen a0:c9:a0 MurataMa a0:cb:fd Samsung a0:cc:2b MurataMa a0:ce:c8 CeLink a0:cf:5b Cisco a0:d1:2a AxproTec a0:d3:7a Intel a0:d3:85 AumaRies a0:d3:c1 HP a0:d7:95 Apple a0:da:92 NanjingG a0:dc:04 Becker-A a0:dd:97 Polarlin a0:dd:e5 Sharp a0:de:05 JscIrbis a0:e0:af Cisco a0:e2:01 AvtraceC a0:e2:5a AmicusSk a0:e2:95 DatSyste a0:e4:53 Sony a0:e4:cb ZyxelCom a0:e5:34 StratecB a0:e5:e9 Enimai a0:e6:f8 TexasIns a0:e9:db NingboFr a0:eb:76 Aircuve a0:ec:80 Zte a0:ec:f9 Cisco a0:ed:cd Apple a0:ef:84 SeineIma a0:f2:17 GeMedica a0:f3:c1 TP-Link a0:f3:e4 Alcatel- a0:f4:19 Nokia a0:f4:50 HTC a0:f4:59 Fn-LinkT a0:f4:79 Huawei a0:f6:fd TexasIns a0:f8:49 Cisco a0:f8:95 Shenzhen a0:f9:e0 Vivatel a0:fc:6e Telegraf a0:fe:91 AvatAuto a4:01:30 Abisyste a4:02:b9 Intel a4:04:50 NforeTec a4:05:9e StaInfin a4:08:ea MurataMa a4:08:f5 Sagemcom a4:09:cb AlfredKa a4:0b:ed CarryTec a4:0c:c3 Cisco a4:0d:bc XiamenIn a4:0e:2b Facebook a4:11:63 IEEERegi a4:12:42 NecPlatf a4:13:4e Luxul a4:14:37 Hangzhou a4:15:66 WeiFangG a4:15:88 ArrisGro a4:17:31 HonHaiPr a4:18:75 Cisco a4:1b:c0 FastecIm a4:1f:72 Dell a4:21:8a NortelNe a4:23:05 OpenNetw a4:24:b3 Flatfrog a4:24:dd Cambrion a4:25:1b Avaya a4:29:40 Shenzhen a4:29:83 BoeingDe a4:29:b7 Bluesky a4:2b:8c Netgear a4:2b:b0 TP-Link a4:2c:08 Masterwo a4:31:11 Ziv a4:31:35 Apple a4:33:d1 Fibrlink a4:34:d9 Intel a4:38:31 RfElemen a4:38:fc PlasticL a4:3a:69 Vers a4:3b:fa IEEERegi a4:3d:78 Guangdon a4:44:d1 Wingtech a4:46:6b EocTechn a4:46:fa AmtranVi a4:4a:d3 StElectr a4:4b:15 SunCupid a4:4c:11 Cisco a4:4e:2d Adaptive a4:4e:31 Intel a4:4f:29 IEEERegi a4:50:55 BuswareD a4:51:6f Microsoft a4:52:6f AdbBroad a4:53:85 WeifangG a4:56:02 Fenglian a4:56:1b Mcot a4:56:30 Cisco a4:58:0f IEEERegi a4:5a:1c Smart-El a4:5c:27 Nintendo a4:5d:36 HP a4:5d:a1 AdbBroad a4:5e:60 Apple a4:60:11 Verifone a4:60:32 MrvCommu a4:62:df DsGlobal a4:67:06 Apple a4:68:bc Private a4:6c:2a Cisco a4:6c:c1 LtiReene a4:6e:79 DftSyste a4:70:d6 Motorola a4:71:74 Huawei a4:77:33 Google a4:77:60 Nokia a4:78:86 Avaya a4:79:e4 Klinfo a4:7a:a4 ArrisGro a4:7a:cf VibicomC a4:7b:2c Nokia a4:7b:85 Ultimedi a4:7c:14 Chargest a4:7c:1f Cobham a4:7e:39 Zte a4:81:ee Nokia a4:82:69 Datrium a4:84:31 Samsung a4:85:6b QElectro a4:89:5b ArkInfos a4:8c:db Lenovo a4:8d:3b Vizio a4:8e:0a DelavalI a4:90:05 ChinaGre a4:93:4c Cisco a4:97:bb HitachiI a4:99:47 Huawei a4:99:81 FujianEl a4:9a:58 Samsung a4:9b:13 DigitalC a4:9b:f5 Hybridse a4:9d:49 Ketra a4:9e:db Autocrib a4:9f:85 LyveMind a4:9f:89 Shanghai a4:a1:c2 Ericsson a4:a1:e4 Innotube a4:a2:4a Cisco a4:a4:d3 Bluebank a4:a6:a9 Private a4:a8:0f Shenzhen a4:ad:00 Ragsdale a4:ad:b8 VitecGro a4:ae:9a MaestroW a4:b1:21 Arantia2 a4:b1:97 Apple a4:b1:e9 Technico a4:b1:ee HZander a4:b2:a7 AdaxysSo a4:b3:6a JscSdoCh a4:b8:05 Apple a4:b8:18 PentaGes a4:b9:80 ParkingB a4:ba:76 Huawei a4:ba:db Dell a4:bb:af LimeInst a4:be:61 Eutrovis a4:bf:01 Intel a4:c0:c7 Shenzhen a4:c0:e1 Nintendo a4:c1:38 TelinkSe a4:c2:ab Hangzhou a4:c3:61 Apple a4:c4:94 Intel a4:c6:4f Huawei a4:c7:de Cambridg a4:ca:a0 Huawei a4:cc:32 Inficomm a4:d0:94 ErwinPet a4:d1:8c Apple a4:d1:8f Shenzhen a4:d1:d1 Ecotalit a4:d1:d2 Apple a4:d3:b5 GlitelSt a4:d5:78 TexasIns a4:d8:56 Gimbal a4:d8:ca HongKong a4:d9:a4 NexusIdS a4:da:3f Bionics a4:db:2e Kingspan a4:db:30 LiteonTe a4:dc:be Huawei a4:de:50 TotalWal a4:de:c9 QloveMob a4:e0:e6 Filizola a4:e3:2e SiliconS a4:e3:91 DenyFont a4:e4:b8 Blackber a4:e5:97 Gessler a4:e6:b1 Shanghai a4:e7:31 Nokia a4:e7:e4 Connex a4:e9:91 Sistemas a4:e9:a3 HonestTe a4:eb:d3 Samsung a4:ed:4e ArrisGro a4:ee:57 SeikoEps a4:ef:52 Telewave a4:f1:e8 Apple a4:f3:c1 OpenSour a4:f3:e7 Integrat a4:f4:c2 VnptTech a4:f5:22 ChofuSei a4:f7:d0 LanAcces a4:fb:8d Hangzhou a4:fc:ce Security a8:01:80 ImagoTec a8:06:00 Samsung a8:0c:0d Cisco a8:0c:ca Shenzhen a8:11:fc ArrisGro a8:13:74 Panasoni a8:15:4d TP-Link a8:15:59 Breathom a8:15:d6 Shenzhen a8:16:b2 LG a8:17:58 Elektron a8:1b:18 Xts a8:1b:5a Guangdon a8:1b:5d FoxtelMa a8:1b:6a TexasIns a8:1d:16 AzureWave a8:1e:84 QuantaCo a8:1f:af KryptonP a8:20:66 Apple a8:24:eb ZaoNpoIn a8:26:d9 HTC a8:29:4c Precisio a8:2b:d6 ShinaSys a8:30:ad WeiFangG a8:32:9a DigicomF a8:39:44 Actionte a8:40:41 DraginoT a8:44:81 Nokia a8:45:cd Siselect a8:45:e9 FirichEn a8:47:4a HonHaiPr a8:49:a5 Lisantec a8:4e:3f HitronTe a8:54:b2 WistronN a8:55:6a Pocketne a8:57:4e TP-Link a8:58:40 Cambridg a8:5b:78 Apple a8:5b:b0 Shenzhen a8:5b:f3 Audivo a8:5e:e4 12sidedT a8:60:b6 Apple a8:61:aa Cloudvie a8:62:a2 Jiwumedi a8:63:df Displair a8:63:f2 TexasIns a8:64:05 Nimbus9 a8:65:b2 Dongguan a8:66:7f Apple a8:6a:6f Rim a8:6a:c1 Hanbited a8:6b:7c Shenzhen a8:6b:ad HonHaiPr a8:70:a5 Unicomm a8:72:85 Idt a8:74:1d PhoenixC a8:75:d6 FreetekI a8:75:e2 Aventura a8:77:6f Zonoff a8:7b:39 Nokia a8:7c:01 Samsung a8:7e:33 NokiaDan a8:80:38 Shenzhen a8:81:95 Samsung a8:81:f1 BmeyeBV a8:82:7f CibnOrie a8:86:dd Apple a8:87:92 Broadban a8:87:ed ArcWirel a8:88:08 Apple a8:8c:ee Micromad a8:8d:7b Sundroid a8:8e:24 Apple a8:90:08 BeijingY a8:92:2c LG a8:93:52 Shanghai a8:93:e6 JiangxiJ a8:95:b0 AkerSubs a8:96:8a Apple a8:97:dc IBM a8:98:c6 Shinbo a8:99:5c Aizo a8:9b:10 Inmotion a8:9d:21 Cisco a8:9d:d2 Shanghai a8:9f:ba Samsung a8:a0:89 Tactical a8:a1:98 TctMobil a8:a5:e2 Msf-Vath a8:a6:48 QingdaoH a8:a6:68 Zte a8:a7:95 HonHaiPr a8:ad:3d Alcatel- a8:b0:ae Leoni a8:b1:d4 Cisco a8:b8:6e LG a8:b9:b3 Essys a8:bb:50 WizIot a8:bb:cf Apple a8:bd:1a HoneyBee a8:bd:27 HP a8:bd:3a Unionman a8:c2:22 Tm-Resea a8:c8:3a Huawei a8:c8:7f Roqos a8:ca:7b Huawei a8:cb:95 EastBest a8:cc:c5 SaabPubl a8:ce:90 Cvc a8:d0:e3 SystechE a8:d0:e5 JuniperN a8:d2:36 Lightwar a8:d3:c8 Wachendo a8:d3:f7 Arcadyan a8:d4:09 Usa111 a8:d5:79 BeijingC a8:d8:28 Ascensia a8:d8:8a Wyconn a8:e0:18 Nokia a8:e3:ee Sony a8:e5:39 Moimston a8:e7:05 Fiberhom a8:ef:26 Tritonwa a8:f0:38 ShenZhen a8:f2:74 Samsung a8:f4:70 FujianNe a8:f7:e0 PlanetTe a8:f9:4b EltexEnt a8:fa:d8 Apple a8:fb:70 WisesecL a8:fc:b7 Consolid aa:00:00 DecObsol aa:00:01 DecObsol aa:00:02 DecObsol aa:00:03 DecGloba aa:00:04 DecLocal ac:01:42 UrielTec ac:02:ca HiSoluti ac:02:cf RwTecnol ac:02:ef Comsis ac:04:0b PelotonI ac:04:81 JiangsuH ac:06:13 Senselog ac:06:c7 Serverne ac:0a:61 LaborSRL ac:0d:1b LG ac:0d:fe Ekon-Myg ac:11:d3 SuzhouHo ac:14:61 Ataw ac:14:d2 Wi-Daq ac:16:2d HP ac:17:02 FibarGro ac:18:26 SeikoEps ac:19:9f SungrowP ac:1f:6b SuperMic ac:1f:d7 RealVisi ac:20:2e HitronTe ac:20:3e WuhanTia ac:20:aa Dmatek ac:22:05 CompalBr ac:22:0b ASUS ac:23:3f Shenzhen ac:29:3a Apple ac:2a:0c CsrZhuzh ac:2b:6e Intel ac:2d:a3 Txtr ac:2f:a8 Humannix ac:31:9d Shenzhen ac:34:cb ShanhaiG ac:36:13 Samsung ac:37:43 HTC ac:38:70 LenovoMo ac:3a:7a Roku ac:3c:0b Apple ac:3c:b4 Nilan ac:3d:05 Instores ac:3d:75 Hangzhou ac:3f:a4 TaiyoYud ac:40:ea C&TSolut ac:41:22 EclipseE ac:44:f2 Yamaha ac:47:23 Genelec ac:48:2d RalinwiN ac:4a:fe HisenseB ac:4b:c8 JuniperN ac:4e:2e Shenzhen ac:4e:91 Huawei ac:4f:fc Svs-Vist ac:50:36 Pi-Coral ac:51:35 MpiTech ac:51:ee Cambridg ac:54:ec IEEEP182 ac:56:2c LavaInte ac:58:3b HumanAss ac:58:7b JctHealt ac:5a:14 Samsung ac:5d:10 PaceAmer ac:5e:8c Utillink ac:5f:3e Samsung ac:60:b6 Ericsson ac:61:23 Drivven ac:61:75 Huawei ac:61:ea Apple ac:62:0d JabilCir ac:63:be AmazonTe ac:64:62 Zte ac:64:dd IEEERegi ac:67:06 RuckusWi ac:67:6f Electroc ac:6b:0f CadenceD ac:6b:ac JennySci ac:6e:1a Shenzhen ac:6f:4f Enspert ac:6f:bb TatungTe ac:6f:d9 Valueplu ac:72:36 LexkingT ac:72:89 Intel ac:74:09 Hangzhou ac:7a:42 Iconnect ac:7a:4d AlpsElec ac:7b:a1 Intel ac:7e:8a Cisco ac:7f:3e Apple ac:80:d6 Hexatron ac:81:12 GemtekTe ac:81:f3 Nokia ac:83:17 Shenzhen ac:83:f0 Immediat ac:83:f3 AmpakTec ac:84:c9 Sagemcom ac:85:3d Huawei ac:86:74 OpenMesh ac:86:7e CreateNe ac:87:a3 Apple ac:89:95 AzureWave ac:8a:cd RogerDWe ac:8d:14 Smartrov ac:93:2f Nokia ac:94:03 Envision ac:9a:22 NxpSemic ac:9a:96 LantiqDe ac:9b:0a Sony ac:9b:84 SmakTecn ac:9c:e4 Alcatel- ac:9e:17 ASUS ac:a0:16 Cisco ac:a2:13 Shenzhen ac:a2:2c BaycityT ac:a3:1e ArubaNet ac:a4:30 Peerless ac:a9:19 Trekstor ac:a9:a0 Audioeng ac:ab:2e BeijingL ac:ab:8d LyngsoMa ac:ab:bf Athentek ac:af:b9 Samsung ac:b3:13 ArrisGro ac:b5:7d LiteonTe ac:b7:4f MetelSRO ac:b8:59 UnibandE ac:bc:32 Apple ac:bd:0b Imac ac:be:75 UfineTec ac:be:b6 Visualed ac:c1:ee XiaomiCo ac:c2:ec CltIntLI ac:c3:3a Samsung ac:c5:1b ZhuhaiPa ac:c5:95 Graphite ac:c6:62 Mitrasta ac:c6:98 KohzuPre ac:c7:3f Vitsmo ac:c9:35 Ness ac:ca:54 TelldusT ac:ca:8e OdaTechn ac:ca:ab VirtualE ac:ca:ba Midokura ac:cb:09 HefcomMe ac:cc:8e AxisComm ac:ce:8f HwaYaoTe ac:cf:23 Hi-Flyin ac:cf:5c Apple ac:cf:85 Huawei ac:d0:74 Espressi ac:d1:80 Crexendo ac:d1:b8 HonHaiPr ac:d3:64 AbbAbbSa ac:d6:57 ShaanxiG ac:d9:d6 Tci ac:db:da Shenzhen ac:dc:e5 ProcterG ac:de:48 Private ac:e0:10 LiteonTe ac:e0:69 IsaacIns ac:e2:15 Huawei ac:e3:48 Madgetec ac:e4:2e SkHynix ac:e5:f0 DopplerL ac:e6:4b Shenzhen ac:e7:7b SichuanT ac:e8:7b Huawei ac:e8:7e Bytemark ac:e9:7f IotTech ac:e9:aa Hay ac:ea:6a GenixInf ac:ec:80 ArrisGro ac:ed:5c Intel ac:ee:3b 6harmoni ac:ee:9e Samsung ac:f0:b2 BeckerEl ac:f1:df D-Link ac:f2:c5 Cisco ac:f7:f3 XiaomiCo ac:f8:5c Private ac:f9:7e Elesys ac:fd:93 WeifangG ac:fd:ce Intel ac:fd:ec Apple b0:00:b4 Cisco b0:05:94 LiteonTe b0:08:bf VitalCon b0:09:d3 Avizia b0:10:41 HonHaiPr b0:12:03 Dynamics b0:12:66 Futaba-K b0:14:08 Lightspe b0:17:43 EdisonGl b0:1b:7c OntrolAS b0:1b:d2 LeShiZhi b0:1c:91 Elim b0:1f:29 Helvetia b0:1f:81 IEEERegi b0:24:f3 Progeny b0:25:aa Private b0:26:28 Broadcom b0:34:95 Apple b0:35:8d Nokia b0:35:9f Intel b0:38:29 Siliconw b0:38:50 NanjingC b0:39:56 Netgear b0:3d:96 VisionVa b0:3e:b0 Microdia b0:40:89 Senient b0:41:1d IttimTec b0:43:5d Nuleds b0:45:15 MiraFitn b0:45:19 TctMobil b0:45:45 YacoubAu b0:46:fc Mitrasta b0:47:bf Samsung b0:48:1a Apple b0:48:7a TP-Link b0:49:5f OmronHea b0:4b:bf PtHanSun b0:4c:05 Freseniu b0:4e:26 TP-Link b0:50:bc Shenzhen b0:51:8e HollTech b0:52:16 HonHaiPr b0:57:06 ValloxOy b0:58:c4 Broadcas b0:59:47 Shenzhen b0:5a:da HP b0:5b:1f ThermoFi b0:5b:67 Huawei b0:5c:e5 Nokia b0:61:c7 Ericsson b0:65:63 Shanghai b0:65:bd Apple b0:68:b6 Hangzhou b0:69:71 DeiSales b0:6c:bf 3alityDi b0:70:2d Apple b0:72:bf MurataMa b0:75:0c QaCafe b0:75:4d Nokia b0:75:d5 Zte b0:77:ac ArrisGro b0:78:70 Wi-Next b0:78:f0 BeijingH b0:79:08 Cummings b0:79:3c Revolv b0:79:94 Motorola b0:7d:47 Cisco b0:7d:62 Dipl-Ing b0:7e:70 ZadaraSt b0:7f:b9 Netgear b0:80:8c LaserLig b0:81:d8 I-Sys b0:83:fe Dell b0:86:9e Chloride b0:88:07 StrataWo b0:89:00 Huawei b0:89:91 Lge b0:89:c2 Zyptonit b0:8e:1a Uradio b0:90:74 FulanEle b0:90:d4 Shenzhen b0:91:22 TexasIns b0:91:34 Taleo b0:91:37 IsisImag b0:95:8e TP-Link b0:96:6c Lanbowan b0:97:3a E-Fuel b0:98:9f LG b0:99:28 Fujitsu b0:9a:e2 StemmerI b0:9b:d4 GnhSoftw b0:9f:ba Apple b0:a1:0a Pivotal b0:a2:e7 Shenzhen b0:a3:7e QingdaoH b0:a7:2a Ensemble b0:a7:37 Roku b0:a8:6e JuniperN b0:aa:36 Guangdon b0:aa:77 Cisco b0:ac:fa Fujitsu b0:ad:aa Avaya b0:b2:8f Sagemcom b0:b2:dc ZyxelCom b0:b3:2b SlicanSp b0:b4:48 TexasIns b0:b8:d5 NanjingN b0:b9:8a Netgear b0:bd:6d Echostre b0:bd:a1 ZakladEl b0:bf:99 Wizitdon b0:c0:90 ChiconyE b0:c1:28 AdlerElr b0:c2:05 Bionime b0:c2:87 Technico b0:c4:6c Senseit b0:c4:e7 Samsung b0:c5:54 D-Link b0:c5:59 Samsung b0:c5:ca IEEERegi b0:c6:9a JuniperN b0:c7:45 Buffalo b0:c8:3f JiangsuC b0:c8:ad PeoplePo b0:c9:5b BeijingS b0:ce:18 Zhejiang b0:cf:4d Mi-ZoneT b0:d0:9c Samsung b0:d2:f5 Vello b0:d5:9d Shenzhen b0:d5:cc TexasIns b0:d7:c5 Logipix b0:d7:cc Tridonic b0:da:00 CeraElec b0:da:f9 ArrisGro b0:df:3a Samsung b0:df:c1 TendaTec b0:e0:3c TctMobil b0:e2:35 XiaomiCo b0:e2:e5 Fiberhom b0:e3:9d CatSyste b0:e5:0e Nrg b0:e5:ed Huawei b0:e7:54 2wire b0:e8:92 SeikoEps b0:e9:7e Advanced b0:ea:bc AskeyCom b0:ec:71 Samsung b0:ec:8f GmxSas b0:ec:e1 Private b0:ee:45 AzureWave b0:ee:7b Roku b0:f1:a3 FengfanB b0:f1:bc DhemaxIn b0:f1:ec AmpakTec b0:f8:93 Shanghai b0:f9:63 Hangzhou b0:fa:eb Cisco b0:fe:bd Private b4:00:16 Ingenico b4:00:9c Cablewor b4:01:42 GciScien b4:04:18 Smartchi b4:05:66 SpBest b4:07:f9 Samsung b4:08:32 TcCommun b4:0a:c6 Dexon b4:0b:44 Smartisa b4:0b:7a BrusaEle b4:0c:25 PaloAlto b4:0e:96 Heran b4:0e:dc Lg-Erics b4:14:89 Cisco b4:15:13 Huawei b4:17:80 DtiGroup b4:18:d1 Apple b4:1d:ef Internet b4:21:1d BeijingG b4:21:8a DogHunte b4:24:e7 CodetekT b4:28:f1 E-Prime b4:29:3d Shenzhen b4:2a:0e Technico b4:2a:39 OrbitMer b4:2c:92 Zhejiang b4:2c:be DirectPa b4:30:52 Huawei b4:31:b8 Aviwest b4:34:6c Matsunic b4:35:64 FujianTi b4:35:f7 Zhejiang b4:36:a9 FibocomW b4:36:e3 Kbvision b4:37:41 Consert b4:37:d1 IEEERegi b4:39:34 PenGener b4:39:d6 Procurve b4:3a:28 Samsung b4:3d:b2 Degreane b4:3e:3b Viablewa b4:41:7a Shenzhen b4:43:0d Broadlin b4:47:5e Avaya b4:4b:d2 Apple b4:4c:c2 NrElectr b4:4f:96 Zhejiang b4:51:f9 NbSoftwa b4:52:53 SeagateT b4:52:7d Sony b4:52:7e Sony b4:55:70 Borea b4:56:b9 Teraspek b4:58:61 CremoteL b4:5c:a4 Thing-Ta b4:5d:50 ArubaNet b4:61:ff Lumigon b4:62:38 Exablox b4:62:93 Samsung b4:62:ad ElysiaGe b4:66:98 ZealabsS b4:67:e9 QingdaoG b4:6d:35 DalianSe b4:6d:83 Intel b4:73:56 Hangzhou b4:74:43 Samsung b4:74:47 Coreos b4:74:9f AskeyCom b4:75:0e BelkinIn b4:79:a7 Samsung b4:7c:29 Shenzhen b4:7c:9c AmazonTe b4:7f:5e Foresigh b4:82:55 Research b4:82:7b AkgAcous b4:82:c5 Relay2 b4:82:fe AskeyCom b4:85:47 AmptownS b4:89:10 CosterTE b4:8b:19 Apple b4:94:4e Weteleco b4:96:91 Intel b4:98:42 Zte b4:99:4c TexasIns b4:99:ba HP b4:9c:df Apple b4:9d:0b Bq b4:9d:b4 AxionTec b4:9e:ac ImagikIn b4:9e:e6 Shenzhen b4:a4:b5 ZenEye b4:a4:e3 Cisco b4:a5:a9 Modi b4:a5:ef Sercomm b4:a8:28 Shenzhen b4:a8:2b HistarDi b4:a9:5a Avaya b4:a9:84 Symantec b4:a9:fe GhiaTech b4:aa:4d Ensequen b4:ab:2c MtmTechn b4:ae:2b Microsoft b4:ae:6f CircleRe b4:b0:17 Avaya b4:b1:5a SiemensE b4:b2:65 DaehoI&T b4:b3:62 Zte b4:b3:84 Shenzhen b4:b5:2f HP b4:b5:42 HubbellP b4:b5:af MinsungE b4:b6:76 Intel b4:b8:59 Texa b4:b8:8d Thuh b4:bf:f6 Samsung b4:c4:4e VxlEtech b4:c6:f8 Axilspot b4:c7:99 ExtremeN b4:c8:10 UmpiElet b4:cc:e9 Prosyst b4:ce:f6 HTC b4:cf:db Shenzhen b4:d1:35 Cloudist b4:d5:bd Intel b4:d8:a9 Betterbo b4:d8:de IotaComp b4:dd:15 Controlt b4:df:3b Chromlec b4:df:fa LitemaxE b4:e0:cd Fusion-I b4:e1:0f Dell b4:e1:c4 Microsoft b4:e1:eb Private b4:e6:2a LG b4:e7:82 Vivalnk b4:e9:b0 Cisco b4:ed:19 PieDigit b4:ed:54 WohlerTe b4:ee:b4 AskeyCom b4:ee:d4 TexasIns b4:ef:04 DaihanSc b4:ef:39 Samsung b4:ef:fa Lemobile b4:f0:ab Apple b4:f2:e8 ArrisGro b4:f3:23 Petatel b4:f8:1e Kinova b4:fb:e4 Ubiquiti b4:fc:75 SemaElec b4:fe:8c CentroSi b8:00:18 Htel b8:03:05 Intel b8:04:15 BayanAud b8:05:ab Zte b8:08:cf Intel b8:08:d7 Huawei b8:09:8a Apple b8:0b:9d RopexInd b8:13:e9 TraceLiv b8:14:13 KeenHigh b8:16:19 ArrisGro b8:16:db ChantSin b8:17:c2 Apple b8:18:6f Oriental b8:19:99 Nesys b8:1d:aa LG b8:20:e7 Guangzho b8:22:4f SichuanT b8:24:10 MagnetiM b8:24:1a SwedaInf b8:24:f0 SoyoTech b8:26:6c AnovFran b8:26:d4 Furukawa b8:27:eb Raspberry b8:28:8b ParkerHa b8:29:f7 BlasterT b8:2a:72 Dell b8:2a:dc EfrEurop b8:2c:a0 Honeywel b8:30:a8 Road-Tra b8:32:41 WuhanTia b8:36:d8 Videoswi b8:37:65 Guangdon b8:38:61 Cisco b8:38:ca KyokkoTs b8:3a:08 TendaTec b8:3a:7b Worldpla b8:3a:9d AlarmCom b8:3d:4e Shenzhen b8:3e:59 Roku b8:41:5f Asp b8:43:e4 Vlatacom b8:44:d9 Apple b8:47:c6 SanjetTe b8:4f:d5 Microsoft b8:50:01 ExtremeN b8:53:ac Apple b8:55:10 ZioncomE b8:56:bd IttLlc b8:57:d8 Samsung b8:58:10 Numera b8:5a:73 Samsung b8:5a:f7 Ouya b8:5a:fe HandaerC b8:5e:7b Samsung b8:60:91 OnnetTec b8:61:6f AcctonTe b8:62:1f Cisco b8:63:bc Robotis b8:64:91 CkTeleco b8:65:3b Bolymin b8:69:c2 SunitecE b8:6b:23 Toshiba b8:6c:e8 Samsung b8:70:f4 CompalIn b8:74:24 Viessman b8:74:47 Converge b8:75:c0 Paypal b8:76:3f HonHaiPr b8:77:c3 MeterGro b8:78:2e Apple b8:78:79 RocheDia b8:79:7e SecureMe b8:7a:c9 Siemens b8:7c:f2 Aerohive b8:81:98 Intel b8:86:87 LiteonTe b8:87:1e GoodMind b8:87:a8 StepAhea b8:88:e3 CompalIn b8:89:81 ChengduI b8:89:ca IljinEle b8:8a:60 Intel b8:8d:12 Apple b8:8e:3a Infinite b8:8e:c6 Stateles b8:8e:df Zencheer b8:8f:14 Analytic b8:92:1d BgT&A b8:94:d2 RetailIn b8:96:74 Alldsp b8:97:5a BiostarM b8:98:b0 Atlona b8:98:f7 GioneeCo b8:99:19 7signalS b8:99:b0 CohereTe b8:9a:cd EliteOpt b8:9a:ed Oceanser b8:9b:c9 SmcNetwo b8:9b:e4 AbbPower b8:a1:75 Roku b8:a3:86 D-Link b8:a3:e0 BenruiTe b8:a8:af LogicSPA b8:ac:6f Dell b8:ad:3e Bluecom b8:ae:6e Nintendo b8:ae:ed Elitegro b8:af:67 HP b8:b1:c7 Bt&Com b8:b2:eb GoogolTe b8:b3:dc DerekSha b8:b4:2e GioneeCo b8:b7:d7 2gigTech b8:b8:1e Intel b8:b9:4e Shenzhen b8:ba:68 XiAnJizh b8:ba:72 Cynove b8:bb:23 Guangdon b8:bb:6d Eneres b8:bb:af Samsung b8:bc:1b Huawei b8:bd:79 Trendpoi b8:be:bf Cisco b8:bf:83 Intel b8:c1:a2 DragonPa b8:c3:bf HenanChe b8:c4:6f Primmcon b8:c6:8e Samsung b8:c7:16 Fiberhom b8:c7:5d Apple b8:c8:55 Shanghai b8:ca:3a Dell b8:cd:93 Penetek b8:cd:a7 MaxelerT b8:d0:6f Guangzho b8:d4:9d MSevenSy b8:d5:0b SunitecE b8:d7:af MurataMa b8:d8:12 IEEERegi b8:d9:ce Samsung b8:da:f1 Strahlen b8:da:f7 Advanced b8:dc:87 Iai b8:df:6b Spotcam b8:e5:89 PayterBv b8:e6:25 2wire b8:e7:79 9solutio b8:e8:56 Apple b8:e9:37 Sonos b8:ea:aa IcgNetwo b8:ec:a3 ZyxelCom b8:ee:65 LiteonTe b8:ee:79 YwireTec b8:f0:80 Sps b8:f3:17 IsunSmas b8:f4:d0 Herrmann b8:f5:e7 Waytools b8:f6:b1 Apple b8:f7:32 AryakaNe b8:f8:28 Changshu b8:f8:83 TP-Link b8:f8:be Bluecom b8:f9:34 Sony b8:fc:9a LeShiZhi b8:fd:32 Zhejiang b8:ff:61 Apple b8:ff:6f Shanghai b8:ff:b3 Mitrasta b8:ff:fe TexasIns bc:02:00 StewartA bc:02:4a HmdGloba bc:05:43 Avm bc:0d:a5 TexasIns bc:0f:2b FortuneT bc:0f:64 Intel bc:12:5e BeijingW bc:14:01 HitronTe bc:14:85 Samsung bc:14:ef ItonTech bc:15:a6 TaiwanJa bc:15:ac Vodafone bc:16:65 Cisco bc:16:f5 Cisco bc:1a:67 YfTechno bc:1c:81 SichuanI bc:20:a4 Samsung bc:20:ba InspurSh bc:25:e0 Huawei bc:25:f0 3dDispla bc:26:1d HongKong bc:28:2c E-SmartP bc:28:46 NextbitC bc:28:d6 RowleyAs bc:2b:6b BeijingH bc:2b:d7 RevogiIn bc:2c:55 BearFlag bc:2d:98 Thinglob bc:2f:3d VivoMobi bc:30:5b Dell bc:30:7d WistronN bc:30:7e WistronN bc:34:00 IEEERegi bc:35:e5 Hydro bc:38:d2 Pandachi bc:39:a6 CsunSyst bc:39:d9 Z-Tec bc:3a:ea Guangdon bc:3b:af Apple bc:3e:13 Accordan bc:3f:8f Huawei bc:41:00 CodacoEl bc:43:77 HangZhou bc:44:34 Shenzhen bc:44:86 Samsung bc:44:b0 Elastifi bc:45:2e Knowledg bc:46:99 TP-Link bc:47:60 Samsung bc:4b:79 Sensingt bc:4c:c4 Apple bc:4d:fb HitronTe bc:4e:3c CoreStaf bc:4e:5d Zhongmia bc:51:fe SwannCom bc:52:b4 Nokia bc:52:b7 Apple bc:54:36 Apple bc:54:f9 DrogooTe bc:5c:4c Elecom bc:5f:f4 AsrockIn bc:5f:f6 Shenzhen bc:60:10 QingdaoH bc:60:a7 Sony bc:62:0e Huawei bc:62:9f TelenetP bc:64:4b ArrisGro bc:66:41 IEEERegi bc:66:de ShadowCr bc:67:1c Cisco bc:67:78 Apple bc:67:84 Environi bc:6a:16 Tdvine bc:6a:29 TexasIns bc:6a:2f HengeDoc bc:6a:44 CommendI bc:6b:4d Nokia bc:6c:21 Apple bc:6e:64 Sony bc:6e:76 GreenEne bc:71:c1 Xtrillio bc:72:b1 Samsung bc:74:d7 Hangzhou bc:75:74 Huawei bc:76:4e Rackspac bc:76:5e Samsung bc:76:70 Huawei bc:77:37 Intel bc:77:9f Sbm bc:79:ad Samsung bc:7d:d1 RadioDat bc:81:1f Ingate bc:81:99 Basic bc:83:85 Microsoft bc:83:a7 Shenzhen bc:85:1f Samsung bc:85:56 HonHaiPr bc:88:93 Villbau bc:8a:a3 NhnEnter bc:8a:e8 QingDaoH bc:8b:55 NppEliks bc:8c:cd Samsung bc:8d:0e Nokia bc:92:6b Apple bc:96:80 Shenzhen bc:98:89 Fiberhom bc:99:bc FonseeTe bc:9c:31 Huawei bc:9c:c5 BeijingH bc:9d:a5 DascomEu bc:9f:ef Apple bc:a0:42 Shanghai bc:a4:e1 Nabto bc:a8:a6 Intel bc:a9:20 Apple bc:a9:d6 Cyber-Ra bc:ad:28 Hangzhou bc:ad:ab Avaya bc:ae:c5 ASUS bc:b1:81 Sharp bc:b1:f3 Samsung bc:b3:08 Hongkong bc:b8:52 Cybera bc:ba:e1 Arec bc:bb:c9 Kellendo bc:bc:46 SksWeldi bc:c0:0f Fiberhom bc:c1:68 DinboxSv bc:c2:3a ThomsonV bc:c3:42 Panasoni bc:c4:93 Cisco bc:c6:1a SpectraE bc:c6:db Nokia bc:c8:10 Cisco bc:ca:b5 ArrisGro bc:cd:45 Voismart bc:cf:cc HTC bc:d1:1f Samsung bc:d1:65 Cisco bc:d1:77 TP-Link bc:d1:d3 Shenzhen bc:d5:b6 D2dTechn bc:d7:13 OwlLabs bc:d9:40 Asr bc:e0:9d Eoslink bc:e5:9f Waterwor bc:e6:3f Samsung bc:e7:67 Quanzhou bc:ea:2b Citycom bc:ea:fa HP bc:eb:5f FujianBe bc:ec:23 Shenzhen bc:ec:5d Apple bc:ee:7b ASUS bc:f1:f2 Cisco bc:f2:af Devolo bc:f5:ac LG bc:f6:1c Geomodel bc:f6:85 D-Link bc:f8:11 XiamenDn bc:fe:8c Altronic bc:ff:ac Topcon c0:00:00 WesternD c0:02:8d WinstarD c0:05:c2 ArrisGro c0:0d:7e Additech c0:11:73 Samsung c0:11:a6 Fort-Tel c0:12:42 AlphaSec c0:14:3d HonHaiPr c0:18:85 HonHaiPr c0:1a:da Apple c0:1e:9b PixaviAs c0:21:0d Shenzhen c0:22:50 Private c0:25:06 Avm c0:25:5c Cisco c0:25:67 NexxtSol c0:25:a2 NecPlatf c0:25:e9 TP-Link c0:27:b9 BeijingN c0:28:8d Logitech c0:29:73 Audyssey c0:29:f3 Xysystem c0:2b:fc InesAppl c0:2c:7a Shenzhen c0:2d:ee Cuff c0:2f:f1 VoltaNet c0:33:5e Microsoft c0:34:b4 Gigaston c0:35:80 A&RTech c0:35:bd Velocyte c0:35:c5 Prosoft c0:38:96 HonHaiPr c0:38:f9 NokiaDan c0:3b:8f MinicomD c0:3d:46 Shanghai c0:3e:0f Bskyb c0:3f:0e Netgear c0:3f:2a Biscotti c0:3f:d5 Elitegro c0:41:f6 LG c0:43:01 EpecOy c0:44:e3 Shenzhen c0:49:3d Maitrise c0:4a:00 TP-Link c0:4a:09 Zhejiang c0:4d:f7 Serelec c0:56:27 BelkinIn c0:56:e3 Hangzhou c0:57:bc Avaya c0:58:a7 Pico c0:5e:6f VStonkau c0:5e:79 Shenzhen c0:61:18 TP-Link c0:62:6b Cisco c0:63:94 Apple c0:64:c6 Nokia c0:65:99 Samsung c0:67:af Cisco c0:6c:0f DobbsSta c0:6c:6d Magnemot c0:70:09 Huawei c0:7b:bc Cisco c0:7c:d1 Pegatron c0:7e:40 Shenzhen c0:81:70 EffigisG c0:83:0a 2wire c0:84:7a Apple c0:84:88 Finis c0:85:4c Ragentek c0:87:eb Samsung c0:88:5b SndTech c0:89:97 Samsung c0:8a:de RuckusWi c0:8b:6f SISistem c0:8c:60 Cisco c0:91:32 PatriotM c0:91:34 Procurve c0:97:27 Samsung c0:98:79 Acer c0:98:e5 Universi c0:9a:71 XiamenMe c0:9c:04 ShaanxiG c0:9c:92 Coby c0:9d:26 TopiconH c0:9f:05 Guangdon c0:9f:42 Apple c0:a0:bb D-Link c0:a0:c7 Fairfiel c0:a0:de MultiTou c0:a0:e2 EdenInno c0:a1:a2 Marqmetr c0:a2:6d AbbottPo c0:a3:64 3dMassac c0:a3:9e Earthcam c0:a5:dd Shenzhen c0:aa:68 OsasiTec c0:ac:54 Sagemcom c0:b3:39 Comigo c0:b3:57 YoshikiE c0:b7:13 BeijingX c0:b8:b1 Bitbox c0:ba:e6 Applicat c0:bd:42 ZpaSmart c0:bd:d1 Samsung c0:bf:c0 Huawei c0:c1:c0 Cisco c0:c3:b6 Automati c0:c5:20 RuckusWi c0:c5:22 ArrisGro c0:c5:69 Shanghai c0:c6:87 Cisco c0:c9:46 MitsuyaL c0:c9:76 Shenzhen c0:cb:38 HonHaiPr c0:cc:f8 Apple c0:ce:cd Apple c0:cf:a3 Creative c0:d0:12 Apple c0:d0:44 Sagemcom c0:d3:91 IEEERegi c0:d3:c0 Samsung c0:d9:62 AskeyCom c0:d9:f7 Shandong c0:da:74 Hangzhou c0:dc:6a QingdaoE c0:df:77 ConradEl c0:e4:22 TexasIns c0:e4:2d TP-Link c0:e5:4e AriesEmb c0:ea:e4 Sonicwal c0:ee:40 LairdTec c0:ee:fb OneplusT c0:f1:c4 Pacidal c0:f2:fb Apple c0:f6:36 Hangzhou c0:f7:9d Powercod c0:f8:da HonHaiPr c0:f9:45 ToshibaT c0:f9:91 GmeStand c0:ff:d4 Netgear c4:00:06 LipiData c4:00:49 Kamama c4:01:42 Maxmedia c4:01:7c RuckusWi c4:01:b1 Seektech c4:01:ce Presitio c4:04:15 Netgear c4:04:7b Shenzhen c4:05:28 Huawei c4:07:2f Huawei c4:08:4a Nokia c4:08:80 Shenzhen c4:09:38 FujianSt c4:0a:cb Cisco c4:0b:cb XiaomiCo c4:0e:45 AckNetwo c4:0f:09 HermesEl c4:10:8a RuckusWi c4:11:e0 BullGrou c4:12:f5 D-Link c4:13:e2 Aerohive c4:14:3c Cisco c4:16:fa Prysm c4:17:fe HonHaiPr c4:19:8b Dominion c4:19:ec Qualisys c4:1c:ff Vizio c4:1e:ce HmiSourc c4:21:c8 Kyocera c4:23:7a Whiznets c4:24:2e Galvanic c4:26:28 AiroWire c4:27:95 Technico c4:28:2d Embedded c4:29:1d KlemsanE c4:2c:03 Apple c4:2f:90 Hangzhou c4:30:18 McsLogic c4:34:6b HP c4:36:55 Shenzhen c4:36:6c LG c4:36:da Rustelet c4:38:d3 Tagatec c4:39:3a SmcNetwo c4:3a:9f Siconix c4:3a:be Sony c4:3c:3c CybelecS c4:3d:c7 Netgear c4:40:44 Racktop c4:42:02 Samsung c4:43:8f LG c4:45:67 SambonPr c4:45:ec Shanghai c4:46:19 HonHaiPr c4:47:3f Huawei c4:48:38 SatcomDi c4:49:bb MitsumiE c4:4a:d0 Fireflie c4:4b:44 Omniprin c4:4b:d1 WallysCo c4:4e:1f Bluen c4:4e:ac Shenzhen c4:50:06 Samsung c4:54:44 QuantaCo c4:55:a6 CadacHol c4:55:c2 Bach-Sim c4:56:00 GalleonE c4:56:fe LavaInte c4:57:1f JuneLife c4:57:6e Samsung c4:58:c2 Shenzhen c4:59:76 FugooCoo c4:5d:d8 HdmiForu c4:60:44 EverexEl c4:62:6b ZptVigan c4:62:ea Samsung c4:63:54 U-Raku c4:64:13 Cisco c4:66:99 VivoMobi c4:67:b5 Libraton c4:69:3e Turbulen c4:6a:b7 XiaomiCo c4:6b:b4 Myidkey c4:6d:f1 Datagrav c4:6e:1f TP-Link c4:70:0b Guangzho c4:71:30 FonTechn c4:71:fe Cisco c4:72:95 Cisco c4:73:1e Samsung c4:77:ab BeijingA c4:7b:2f BeijingJ c4:7b:a3 Navis c4:7c:8d IEEERegi c4:7d:46 Fujitsu c4:7d:4f Cisco c4:7d:cc ZebraTec c4:7d:fe ANSoluti c4:7f:51 Inventek c4:82:3f FujianNe c4:82:4e Changzho c4:83:6f Ciena c4:85:08 Intel c4:86:e9 Huawei c4:88:e5 Samsung c4:8e:8f HonHaiPr c4:8f:07 Shenzhen c4:91:3a Shenzhen c4:92:4c Keisokuk c4:93:00 8devices c4:93:13 100fioNe c4:93:80 Speedyte c4:95:a2 Shenzhen c4:98:05 MinieumN c4:9a:02 LG c4:9d:ed Microsoft c4:9e:41 G24Power c4:9f:f3 MciaoTec c4:a3:66 Zte c4:a8:1d D-Link c4:aa:a1 SummitDe c4:ab:b2 VivoMobi c4:ad:21 Mediaedg c4:ad:f1 Gopeace c4:ae:12 Samsung c4:b3:01 Apple c4:b5:12 GeneralE c4:b9:cd Cisco c4:ba:99 I+MeActi c4:ba:a3 BeijingW c4:bb:4c ZebraInf c4:bb:ea PakedgeD c4:bd:6a Skf c4:be:84 TexasIns c4:be:d4 Avaya c4:c0:ae MidoriEl c4:c1:9f National c4:c7:55 BeijingH c4:c9:19 EnergyIm c4:c9:ec GugaooHk c4:ca:d9 Hangzhou c4:cd:45 BeijingB c4:d1:97 VentiaUt c4:d4:89 JiangsuJ c4:d6:55 TercelTe c4:d9:87 Intel c4:da:26 NoblexSa c4:da:7d IviumTec c4:e0:32 IEEE1904 c4:e1:7c U2s c4:e5:10 Mechatro c4:e7:be Scspro c4:e9:2f Sciex c4:e9:84 TP-Link c4:ea:1d Technico c4:eb:e3 RrcnSas c4:ed:ba TexasIns c4:ee:ae VssMonit c4:ee:f5 Ii-Vi c4:ef:70 HomeSkin c4:f0:81 Huawei c4:f1:d1 BeijingS c4:f4:64 SpicaInt c4:f5:7c BrocadeC c4:f5:a5 Kumalift c4:fc:e4 DishtvNz c4:ff:1f Huawei c8:00:84 Cisco c8:02:10 LG c8:02:58 ItwGseAp c8:02:8f NovaElec c8:02:a6 BeijingN c8:07:18 Tdsi c8:08:e9 LG c8:0a:a9 QuantaCo c8:0c:c8 Huawei c8:0e:14 AvmAudio c8:0e:77 LeShiZhi c8:0e:95 Omnilync c8:10:73 CenturyO c8:14:51 Huawei c8:14:79 Samsung c8:16:a5 Masimo c8:16:bd QingdaoH c8:19:f7 Samsung c8:1a:fe Dlogic c8:1b:5c Bctech c8:1b:6b InnovaSe c8:1e:8e AdvSecur c8:1e:e7 Apple c8:1f:66 Dell c8:1f:be Huawei c8:1f:ea Avaya c8:20:8e Storaged c8:21:58 Intel c8:25:e1 Lemobile c8:29:2a BarunEle c8:2a:14 Apple c8:2e:94 HalfaEnt c8:31:68 Ezex c8:32:32 HuntingI c8:33:4b Apple c8:34:8e Intel c8:35:b8 Ericsson c8:38:70 Samsung c8:3a:35 TendaTec c8:3a:6b Roku c8:3b:45 Jri c8:3d:97 Nokia c8:3d:d4 Cybertan c8:3d:fc PioneerD c8:3e:99 TexasIns c8:3e:a7 Kunbus c8:3f:26 Microsoft c8:3f:b4 ArrisGro c8:45:29 ImkNetwo c8:45:44 AsiaPaci c8:45:8f Wyler c8:47:8c Beken c8:48:f5 MedisonX c8:4c:75 Cisco c8:51:95 Huawei c8:56:45 Intermas c8:56:63 SunflexE c8:5b:76 LcfcHefe c8:60:00 ASUS c8:64:c7 Zte c8:66:2c BeijingH c8:66:5d Aerohive c8:67:5e Aerohive c8:69:cd Apple c8:6c:1e Display c8:6c:87 ZyxelCom c8:6c:b6 Optcom c8:6f:1d Apple c8:72:48 AplicomO c8:73:24 SowCheng c8:75:5b Quantify c8:77:8b ThemisCo c8:7b:5b Zte c8:7c:bc Valink c8:7d:77 Shenzhen c8:7e:75 Samsung c8:84:39 SunriseT c8:84:47 Beautifu c8:85:50 Apple c8:87:22 Lumenpul c8:87:3b NetOptic c8:8a:83 Dongguan c8:8b:47 Nolangro c8:8d:83 Huawei c8:8e:d1 IEEERegi c8:90:3e PaktonTe c8:91:f9 Sagemcom c8:93:46 Mxchip c8:93:83 Embedded c8:94:bb Huawei c8:94:d2 JiangsuD c8:97:9f Nokia c8:9c:1d Cisco c8:9c:dc Elitegro c8:9f:1d Shenzhen c8:9f:42 VdiiInno c8:a0:30 TexasIns c8:a1:b6 Shenzhen c8:a1:ba Neul c8:a2:ce OasisMed c8:a6:20 Nebula c8:a7:0a VerizonB c8:a7:29 Systroni c8:a8:23 Samsung c8:a9:fc GoyooNet c8:aa:21 ArrisGro c8:aa:55 HunanCom c8:aa:cc Private c8:ae:9c Shanghai c8:af:40 MarcoSys c8:af:e3 HefeiRad c8:b2:1e ChipseaT c8:b3:73 Cisco c8:b5:ad HP c8:b5:b7 Apple c8:ba:94 Samsung c8:bb:d3 Embrane c8:bc:c8 Apple c8:be:19 D-Link c8:c1:26 ZpmIndus c8:c1:3c Ruggedte c8:c2:c6 Shanghai c8:c5:0e Shenzhen c8:c7:91 Zero1Tv c8:cb:b8 HP c8:cd:72 Sagemcom c8:d0:19 Shanghai c8:d1:0b Nokia c8:d1:5e Huawei c8:d1:d1 AgaitTec c8:d2:c1 JetlunSh c8:d3:a3 D-Link c8:d3:ff HP c8:d4:29 Muehlbau c8:d5:90 FlightDa c8:d5:fe Shenzhen c8:d7:19 Cisco c8:d7:79 QingdaoH c8:d7:b0 Samsung c8:db:26 Logitech c8:dd:c9 LenovoMo c8:de:51 Integrao c8:df:7c Nokia c8:e0:eb Apple c8:e1:30 Milkyway c8:e1:a7 Vertu c8:e4:2f Technica c8:e7:76 PtcomTec c8:e7:d8 Shenzhen c8:ee:08 TangtopT c8:ee:75 PishionI c8:ee:a6 Shenzhen c8:ef:2e BeijingG c8:f2:30 Guangdon c8:f3:6b YamatoSc c8:f3:86 Shenzhen c8:f4:06 Avaya c8:f6:50 Apple c8:f6:8d SETechno c8:f7:04 Building c8:f7:33 Intel c8:f8:6d Alcatel- c8:f9:46 LocosysT c8:f9:81 SenecaSR c8:f9:c8 Newsharp c8:f9:f9 Cisco c8:fb:26 Cisco c8:fd:19 TexasIns c8:fe:30 BejingDa c8:ff:28 LiteonTe c8:ff:77 Dyson cc:00:80 BettiniS cc:03:d9 Cisco cc:03:fa Technico cc:04:7c G-WayMic cc:04:b4 SelectCo cc:05:1b Samsung cc:06:77 Fiberhom cc:07:ab Samsung cc:07:e4 LenovoMo cc:08:8d Apple cc:08:e0 Apple cc:09:c8 Imaqliq cc:0c:da Miljovak cc:0d:ec Cisco cc:10:a3 BeijingN cc:14:a6 YichunMy cc:16:7e Cisco cc:18:7b Manzanit cc:19:a8 PtInovaç cc:1a:fa Zte cc:1b:e0 IEEERegi cc:1e:ff Metrolog cc:1f:c4 Invue cc:20:e8 Apple cc:22:18 Innodigi cc:25:ef Apple cc:26:2d VerifiLl cc:29:f5 Apple cc:2a:80 Micro-Bi cc:2d:21 TendaTec cc:2d:83 Guangdon cc:2d:8c LG cc:30:80 Vaio cc:33:bb Sagemcom cc:34:29 TP-Link cc:34:d7 GewissSP cc:35:40 Technico cc:37:ab Edgecore cc:39:8c Shiningt cc:3a:61 Samsung cc:3a:df Private cc:3b:3e LesterEl cc:3c:3f SaSSDate cc:3d:82 Intel cc:3e:5f HP cc:3f:1d IntesisS cc:43:e3 TrumpSA cc:44:63 Apple cc:46:39 Waav cc:46:d6 Cisco cc:47:03 Intercon cc:4a:e1 Fourtec- cc:4b:73 AmpakTec cc:4b:fb Hellberg cc:4e:24 BrocadeC cc:4e:ec Humax cc:50:0a Fiberhom cc:50:1c KvhIndus cc:50:76 OcomComm cc:52:af Universa cc:53:b5 Huawei cc:54:59 OntimeNe cc:55:ad Rim cc:59:3e Toumaz cc:5c:75 Weightec cc:5d:4e ZyxelCom cc:5d:57 Informat cc:5f:bf Topwise3 cc:60:bb EmpowerR cc:61:e5 Motorola cc:65:ad ArrisGro cc:69:b0 GlobalTr cc:6b:98 MinetecW cc:6b:f1 SoundMas cc:6d:a0 Roku cc:6d:ef TjkTieto cc:72:0f Viscount cc:73:14 HongKong cc:74:98 Filmetri cc:76:69 Seetech cc:78:5f Apple cc:78:ab TexasIns cc:79:4a BluProdu cc:79:cf Shenzhen cc:7a:30 CmaxWire cc:7b:35 Zte cc:7d:37 ArrisGro cc:7e:e7 Panasoni cc:81:da Shanghai cc:82:eb Kyocera cc:85:6c Shenzhen cc:89:fd Nokia cc:8c:da Shenzhen cc:8c:e3 TexasIns cc:90:93 HansongT cc:90:e8 Shenzhen cc:91:2b TeConnec cc:94:4a Pfeiffer cc:94:70 Kinestra cc:95:d7 Vizio cc:96:35 Lvs cc:96:a0 Huawei cc:9e:00 Nintendo cc:9f:35 Transbit cc:9f:7a ChiunMai cc:a0:e5 DzgMeter cc:a2:19 Shenzhen cc:a2:23 Huawei cc:a2:60 SichuanT cc:a3:74 Guangdon cc:a4:62 ArrisGro cc:a4:af Shenzhen cc:a6:14 AifaTech cc:af:78 HonHaiPr cc:b0:da LiteonTe cc:b1:1a Samsung cc:b2:55 D-Link cc:b3:ab Shenzhen cc:b3:f8 Fujitsu cc:b5:5a Fraunhof cc:b6:91 Necmagnu cc:b8:88 AnbSecur cc:b8:a8 AmpakTec cc:b8:f1 EagleKin cc:bd:35 Steinel cc:bd:d3 Ultimake cc:be:59 Calix cc:be:71 Optilogi cc:c1:04 AppliedT cc:c3:ea Motorola cc:c5:0a Shenzhen cc:c5:ef Co-CommS cc:c6:2b Tri-Syst cc:c7:60 Apple cc:c8:d7 CiasElet cc:cc:4e SunFount cc:cc:81 Huawei cc:cd:64 Sm-Elect cc:ce:1e AvmAudio cc:ce:40 Janteq cc:d2:9b Shenzhen cc:d3:1e IEEERegi cc:d3:e2 JiangsuY cc:d5:39 Cisco cc:d8:11 AiconnTe cc:d8:c1 Cisco cc:d9:e9 ScrEngin cc:e0:c3 Mangstor cc:e1:7f JuniperN cc:e1:d5 Buffalo cc:e7:98 MySocial cc:e7:df American cc:e8:ac SoyeaTec cc:ea:1c Dconwork cc:ee:d9 VahleDet cc:ef:48 Cisco cc:f3:a5 ChiMeiCo cc:f4:07 EukreaEl cc:f5:38 3isysnet cc:f6:7a AyeckaCo cc:f8:41 Lumewave cc:f8:f0 XiAnHisu cc:f9:54 Avaya cc:f9:e8 Samsung cc:fa:00 LG cc:fb:65 Nintendo cc:fc:6d RizTrans cc:fc:b1 Wireless cc:fd:17 TctMobil cc:fe:3c Samsung d0:03:4b Apple d0:04:92 Fiberhom d0:05:2a Arcadyan d0:07:90 TexasIns d0:0a:ab Yokogawa d0:0e:a4 PorscheC d0:0e:d9 TaicangT d0:0f:6d T&WElect d0:12:42 Bios d0:13:1e SunrexTe d0:13:fd LG d0:15:4a Zte d0:17:6a Samsung d0:17:c2 ASUS d0:1a:a7 Uniprint d0:1c:bb BeijingC d0:22:12 IEEERegi d0:22:be Samsung d0:23:db Apple d0:25:16 Shenzhen d0:25:44 Samsung d0:25:98 Apple d0:27:88 HonHaiPr d0:2c:45 Littlebi d0:2d:b3 Huawei d0:31:10 IngenicS d0:33:11 Apple d0:37:42 YulongCo d0:37:61 TexasIns d0:39:72 TexasIns d0:39:b3 ArrisGro d0:3d:c3 Aq d0:3e:5c Huawei d0:43:1e Dell d0:46:dc Southwes d0:48:f3 Dattus d0:49:8b ZoomServ d0:4c:c1 Sintrone d0:4d:2c Roku d0:4f:7e Apple d0:50:99 AsrockIn d0:51:62 Sony d0:52:a8 Physical d0:53:49 LiteonTe d0:54:2d Cambridg d0:55:b2 Integrat d0:57:4c Cisco d0:57:7b Intel d0:57:85 Pantech d0:57:a1 WermaSig d0:58:75 ActiveCo d0:58:a8 Zte d0:59:c3 Ceramicr d0:59:e4 Samsung d0:5a:00 Technico d0:5a:0f I-BtDigi d0:5a:f1 Shenzhen d0:5b:a8 Zte d0:5c:7a SarturaD d0:5f:b8 TexasIns d0:5f:ce HitachiD d0:60:8c Zte d0:62:a0 ChinaEss d0:63:4d MeikoMas d0:63:b4 Solidrun d0:65:ca Huawei d0:66:7b Samsung d0:67:e5 Dell d0:69:9e LuminexL d0:69:d0 VertoMed d0:6a:1f Bse d0:6f:4a TopwellI d0:6f:82 Huawei d0:71:c4 Zte d0:72:dc Cisco d0:73:7f Mini-Cir d0:73:8e DongOhPr d0:73:d5 LifiLabs d0:75:be RenoA&E d0:76:50 IEEERegi d0:7a:b5 Huawei d0:7c:2d LeieIotT d0:7d:e5 ForwardP d0:7e:28 HP d0:7e:35 Intel d0:83:d4 XtelWire d0:84:b0 Sagemcom d0:87:e2 Samsung d0:89:99 Apcon d0:8a:55 Skullcan d0:8b:7e PassifSe d0:8c:b5 TexasIns d0:8c:ff Upwis d0:92:9e Microsoft d0:93:80 DucereTe d0:93:f8 Stonestr d0:95:c7 Pantech d0:99:d5 Alcatel- d0:9b:05 Emtronix d0:9c:30 FosterEl d0:9d:0a Linkcom d0:9d:ab TctMobil d0:a0:d6 ChengduT d0:a3:11 Neuberge d0:a4:b1 Sonifex d0:a5:a6 Cisco d0:a6:37 Apple d0:ae:ec AlphaNet d0:af:b6 LinktopT d0:b0:cd Moen d0:b2:c4 Technico d0:b3:3f Shenzhen d0:b4:98 RobertBo d0:b5:23 Bestcare d0:b5:3d SeproRob d0:b5:c2 TexasIns d0:ba:e4 Shanghai d0:bb:80 ShlTelem d0:bd:01 DsIntern d0:be:2c Cnslink d0:bf:9c HP d0:c0:bf ActionsM d0:c1:93 Skybell d0:c1:b1 Samsung d0:c2:82 Cisco d0:c4:2f Tamagawa d0:c5:f3 Apple d0:c7:89 Cisco d0:c7:c0 TP-Link d0:cd:e1 Scientec d0:cf:5e EnergyMi d0:d0:4b Huawei d0:d0:fd Cisco d0:d2:12 K2net d0:d2:86 BeckmanC d0:d3:fc Mios d0:d4:12 AdbBroad d0:d4:71 Mvtech d0:d6:cc Wintop d0:d9:4f IEEERegi d0:db:32 Nokia d0:df:9a LiteonTe d0:df:b2 GenieNet d0:df:c7 Samsung d0:e1:40 Apple d0:e3:47 Yoga d0:e4:0b Wearable d0:e4:4a MurataMa d0:e5:4d ArrisGro d0:e7:82 AzureWave d0:eb:03 ZhehuaTe d0:eb:9e Seowoo d0:f0:db Ericsson d0:f2:7f Steadyse d0:f7:3b HelmutMa d0:f8:8c Motorola d0:fa:1d Qihoo360 d0:fc:cc Samsung d0:ff:50 TexasIns d0:ff:98 Huawei d4:00:0d PhoenixB d4:00:57 McTechno d4:01:29 Broadcom d4:01:6d TP-Link d4:02:4a Delphian d4:04:cd ArrisGro d4:04:ff JuniperN d4:05:98 ArrisGro d4:0a:a9 ArrisGro d4:0b:1a HTC d4:0b:b9 SolidSem d4:0f:b2 AppliedM d4:10:90 Inform d4:10:cf Huanshun d4:11:d6 Shotspot d4:12:96 AnobitTe d4:12:bb Quadrant d4:13:6f AsiaPaci d4:1c:1c RcfSPA d4:1d:71 PaloAlto d4:1e:35 TohoElec d4:1f:0c JaiOy d4:20:6d HTC d4:21:22 Sercomm d4:22:3f LenovoMo d4:22:4e AlcatelL d4:25:8b Intel d4:27:51 Infopia d4:28:b2 Iobridge d4:28:d5 TctMobil d4:29:ea Zimory d4:2c:0f ArrisGro d4:2c:3d SkyLight d4:2c:44 Cisco d4:2f:23 AkenoriP d4:31:9d Sinwatec d4:32:66 Fike d4:36:39 TexasIns d4:36:db JiangsuT d4:37:d7 Zte d4:3a:65 IgrsEngi d4:3a:e9 Dongguan d4:3d:67 CarmaInd d4:3d:7e Micro-St d4:40:f0 Huawei d4:41:65 SichuanT d4:43:a8 Changzho d4:45:e8 JiangxiH d4:4b:5e TaiyoYud d4:4c:24 Vuppalam d4:4c:9c Shenzhen d4:4c:a7 Informte d4:4f:80 KemperDi d4:50:3f Guangdon d4:50:7a CeivaLog d4:52:2a Tangowif d4:52:51 IbtIngen d4:52:97 Nstreams d4:53:af VigoSyst d4:55:56 FiberMou d4:55:be Shenzhen d4:5a:b2 Galleon d4:5c:70 Wi-FiAll d4:5d:42 Nokia d4:5f:25 Shenzhen d4:61:2e Huawei d4:61:32 ProConce d4:61:9d Apple d4:61:fe Hangzhou d4:63:fe Arcadyan d4:64:f7 ChengduU d4:66:a8 RiedoNet d4:67:61 SahabTec d4:67:e7 Fiberhom d4:68:4d RuckusWi d4:68:67 Neoventu d4:68:ba Shenzhen d4:6a:6a HonHaiPr d4:6a:91 SnapAv d4:6a:a8 Huawei d4:6c:bf Goodrich d4:6c:da Csm d4:6d:50 Cisco d4:6e:0e TP-Link d4:6e:5c Huawei d4:6f:42 WaxessUs d4:72:08 Bragi d4:76:ea Zte d4:78:56 Avaya d4:79:c3 Camerone d4:7a:e2 Samsung d4:7b:35 NeoMonit d4:7b:75 HartingE d4:7b:b0 AskeyCom d4:7d:fc TecnoMob d4:81:ca Idevices d4:81:d7 Dell d4:82:3e ArgosyTe d4:83:04 Shenzhen d4:85:64 HP d4:87:d8 Samsung d4:88:3f Hdpro d4:88:90 Samsung d4:8c:b5 Cisco d4:8d:d9 MeldTech d4:8f:33 Microsoft d4:8f:aa SogecamI d4:90:e0 Wachendo d4:91:af Electroa d4:93:98 Nokia d4:93:a0 FidelixO d4:94:5a Cosmo d4:94:a1 TexasIns d4:94:e8 Huawei d4:95:24 CloverNe d4:96:df SungjinC d4:97:0b XiaomiCo d4:9a:20 Apple d4:9b:5c Chongqin d4:9c:28 JaybirdL d4:9c:8e Universi d4:9e:6d WuhanZho d4:a0:2a Cisco d4:a1:48 Huawei d4:a4:25 SmaxTech d4:a4:99 InviewTe d4:a9:28 Greenwav d4:aa:ff MicroWor d4:ac:4e BodiRsLl d4:ad:2d Fiberhom d4:ae:05 Samsung d4:ae:52 Dell d4:b1:10 Huawei d4:b1:69 LeShiZhi d4:b4:3e Messcomp d4:b8:ff HomeCont d4:be:d9 Dell d4:bf:2d SeContro d4:bf:7f Upvel d4:c1:c8 Zte d4:c1:fc Nokia d4:c7:66 Acentic d4:c8:b0 PrimeEle d4:c9:b2 Quanergy d4:c9:ef HP d4:ca:6d Routerbo d4:ca:6e U-Blox d4:cb:af Nokia d4:ce:b8 Enatel d4:cf:37 Symbolic d4:cf:f9 Shenzhen d4:d1:84 AdbBroad d4:d2:49 PowerEth d4:d5:0d Southwes d4:d7:48 Cisco d4:d7:a9 Shanghai d4:d8:98 KoreaCno d4:d9:19 Gopro d4:dc:cd Apple d4:df:57 Alpinion d4:e0:8e Valuehd d4:e3:2c SSiedleS d4:e3:3f Nokia d4:e8:b2 Samsung d4:e9:0b Cvt d4:ea:0e Avaya d4:ec:0c Harley-D d4:ec:86 Linkedho d4:ee:07 Hiwifi d4:f0:27 NavetasE d4:f0:b4 NapcoSec d4:f1:43 Iproad d4:f2:07 Diaodiao d4:f4:6f Apple d4:f4:be PaloAlto d4:f5:13 TexasIns d4:f6:3f IeaSRL d4:f9:a1 Huawei d8:00:4d Apple d8:05:2e Skyviia d8:06:d1 Honeywel d8:08:f5 ArcadiaN d8:09:c3 Cercacor d8:0c:cf CGVSAS d8:0d:e3 FxiTechn d8:0f:99 HonHaiPr d8:14:d6 SureSyst d8:15:0d TP-Link d8:16:0a NipponEl d8:16:c1 DewavHkE d8:18:2b ContiTem d8:19:7a Nuheara d8:19:ce Telesqua d8:1b:fe Twinlinx d8:1c:14 Compacta d8:1d:72 Apple d8:1e:de B&WGroup d8:1f:cc BrocadeC d8:20:9f CubroAcr d8:22:f4 AvnetSil d8:24:bd Cisco d8:25:22 ArrisGro d8:25:b0 Rockeete d8:26:b9 Guangdon d8:27:0c Maxtroni d8:28:c9 GeneralE d8:29:16 AscentCo d8:29:86 BestWish d8:2a:15 Leitner d8:2a:7e Nokia d8:2d:9b Shenzhen d8:2d:e1 Tricasca d8:30:62 Apple d8:31:cf Samsung d8:32:14 TendaTec d8:32:5a Shenzhen d8:33:7f OfficeFa d8:37:be Shanghai d8:38:0d Shenzhen d8:38:fc RuckusWi d8:3c:69 Shenzhen d8:42:ac Shanghai d8:42:e2 CanaryCo d8:45:2b Integrat d8:46:06 SiliconV d8:47:10 SichuanC d8:48:ee Hangzhou d8:49:0b Huawei d8:49:2f Canon d8:4a:87 OiElectr d8:4b:2a Cognitas d8:4f:b8 LG d8:50:e6 ASUS d8:54:3a TexasIns d8:54:a2 Aerohive d8:55:a3 Zte d8:57:ef Samsung d8:58:d7 CzNicZSP d8:5b:2a Samsung d8:5d:4c TP-Link d8:5d:84 CaxSoft d8:5d:e2 HonHaiPr d8:5d:ef Busch-Ja d8:5d:fb Private d8:60:b0 Biomérie d8:60:b3 Guangdon d8:61:94 Objetivo d8:62:db Eno d8:65:95 ToySMyth d8:66:c6 Shenzhen d8:66:ee BoxinCom d8:67:d9 Cisco d8:69:60 Steinsvi d8:6b:f7 Nintendo d8:6c:02 HuaqinTe d8:6c:e9 Sagemcom d8:71:57 LenovoMo d8:74:95 Zte d8:75:33 Nokia d8:76:0a Escort d8:78:e5 KuhnSa d8:79:88 HonHaiPr d8:7c:dd Sanix d8:7e:b1 XOWare d8:80:39 Microchi d8:80:3c AnhuiHua d8:81:ce Ahn d8:84:66 ExtremeN d8:87:d5 Leadcore d8:88:ce RfTechno d8:8a:3b Unit-Em d8:8b:4c Kingting d8:8d:5c Elentec d8:90:e8 Samsung d8:93:41 GeneralE d8:94:03 HP d8:95:2f TexasIns d8:96:85 Gopro d8:96:95 Apple d8:96:e0 AlibabaC d8:97:3b ArtesynE d8:97:60 C2Develo d8:97:7c GreyInno d8:97:ba Pegatron d8:9a:34 BeijingS d8:9d:67 HP d8:9d:b9 Emegatec d8:9e:3f Apple d8:a1:05 Syslane d8:a2:5e Apple d8:ad:dd Sonavati d8:ae:90 ItibiaTe d8:af:3b Hangzhou d8:af:f1 Panasoni d8:b0:2e Guangzho d8:b0:4c JinanUsr d8:b1:2a Panasoni d8:b1:90 Cisco d8:b3:77 HTC d8:b6:b7 Comtrend d8:b6:c1 Networka d8:b6:d6 BluTethe d8:b8:f6 Nantwork d8:b9:0e TripleDo d8:bb:2c Apple d8:bf:4c VictoryC d8:c0:68 Netgenet d8:c0:6a HunantvC d8:c3:fb Detracom d8:c4:6a MurataMa d8:c4:e9 Samsung d8:c6:91 HichanTe d8:c7:71 Huawei d8:c7:c8 ArubaNet d8:c8:e9 PhicommS d8:c9:9d EaDispla d8:cb:8a Micro-St d8:cf:9c Apple d8:d1:cb Apple d8:d2:7c JemaEner d8:d3:85 HP d8:d4:3c Sony d8:d5:b9 Rainfore d8:d6:7e GskCncEq d8:d7:23 Ids d8:d8:66 Shenzhen d8:da:52 ApatorSA d8:dc:e9 KunshanE d8:dd:5f Balmuda d8:dd:fd TexasIns d8:de:ce Isung d8:df:0d Beronet d8:df:7a QuestSof d8:e0:b8 BulatLlc d8:e0:e1 Samsung d8:e3:ae CirtecMe d8:e5:6d TctMobil d8:e7:2b Netscout d8:e7:43 Wush d8:e9:52 Keopsys d8:eb:97 Trendnet d8:ee:78 MoogProt d8:ef:cd Nokia d8:f0:f2 Zeebo d8:f1:f0 PepximIn d8:f7:10 LibreWir d8:fb:11 Axacore d8:fb:5e AskeyCom d8:fb:68 CloudCor d8:fc:38 GiantecS d8:fc:93 Intel d8:fe:8f Idfone d8:fe:e3 D-Link dc:00:77 TP-Link dc:02:65 Meditech dc:02:8e Zte dc:05:2f National dc:05:75 SiemensE dc:05:ed Nabtesco dc:07:c1 Hangzhou dc:08:56 Alcatel- dc:09:14 Talk-A-P dc:09:4c Huawei dc:0b:1a AdbBroad dc:0b:34 LG dc:0c:5c Apple dc:0d:30 Shenzhen dc:0e:a1 CompalIn dc:15:db GeRuiliI dc:16:a2 Medtroni dc:17:5a HitachiH dc:17:92 Captivat dc:1a:01 EcolivTe dc:1a:c5 VivoMobi dc:1d:9f UBTech dc:1d:d4 Microste dc:1e:a3 Accensus dc:20:08 AsdElect dc:29:3a Shenzhen dc:2a:14 Shanghai dc:2b:2a Apple dc:2b:61 Apple dc:2b:66 Infobloc dc:2b:ca Zera dc:2c:26 ItonTech dc:2d:cb BeijingU dc:2e:6a Hct dc:2f:03 StepForw dc:30:9c Heyrex dc:33:0d QingdaoH dc:33:50 Techsat dc:35:f1 Positivo dc:37:14 Apple dc:37:52 Ge dc:37:d2 HunanHkt dc:38:e1 JuniperN dc:39:79 Skyport dc:3a:5e Roku dc:3c:2e Manufact dc:3c:84 TicomGeo dc:3c:f6 AtomicRu dc:3e:51 SolbergA dc:3e:f8 Nokia dc:41:5f Apple dc:44:27 IEEERegi dc:44:6d Allwinne dc:45:17 ArrisGro dc:49:c9 CascoSig dc:4a:3e HP dc:4d:23 MrvComun dc:4e:de ShinyeiT dc:53:60 Intel dc:53:7c CompalBr dc:56:e6 Shenzhen dc:57:26 Power-On dc:5e:36 Paterson dc:60:a1 Teledyne dc:64:7c CRSIimot dc:64:b8 Shenzhen dc:66:3a ApacerTe dc:66:72 Samsung dc:6d:cd Guangdon dc:6f:00 Livescri dc:6f:08 BayStora dc:70:14 Private dc:71:44 Samsung dc:74:a8 Samsung dc:78:34 LogicomS dc:7b:94 Cisco dc:7f:a4 2wire dc:82:5b JanusSpo dc:82:f6 Iport dc:85:de AzureWave dc:86:d8 Apple dc:9a:8e NanjingC dc:9b:1e Intercom dc:9b:9c Apple dc:9c:52 Sapphire dc:9c:9f Shenzhen dc:9f:a4 Nokia dc:9f:db Ubiquiti dc:a3:ac Rbcloudt dc:a4:ca Apple dc:a5:f4 Cisco dc:a6:bd BeijingL dc:a7:d9 Compress dc:a8:cf NewSpinG dc:a9:04 Apple dc:a9:71 Intel dc:a9:89 Macandc dc:ad:9e Greenpri dc:ae:04 Celoxica dc:b0:58 BürkertW dc:b3:b4 Honeywel dc:b4:c4 Microsoft dc:be:7a Zhejiang dc:bf:90 HuizhouQ dc:c0:db Shenzhen dc:c0:eb AssaAblo dc:c1:01 SolidTec dc:c4:22 Systemba dc:c6:22 BuheungS dc:c6:4b Huawei dc:c7:93 Nokia dc:c8:f5 Shanghai dc:cb:a8 ExploraT dc:ce:41 FeGlobal dc:ce:bc Shenzhen dc:ce:c1 Cisco dc:cf:94 BeijingR dc:cf:96 Samsung dc:d0:f7 Bentek dc:d2:55 KinpoEle dc:d2:fc Huawei dc:d3:21 Humax dc:d5:2a SunnyHea dc:d8:7c BeijingJ dc:d8:7f Shenzhen dc:d9:16 Huawei dc:da:4f GetckTec dc:db:70 TonfunkS dc:dc:07 TrpBv dc:de:ca Akyllor dc:e0:26 PatrolTa dc:e1:ad Shenzhen dc:e2:ac LumensDi dc:e5:78 Experime dc:e7:1c AugElekt dc:e8:38 CkTeleco dc:eb:94 Cisco dc:ec:06 HeimiNet dc:ee:06 Huawei dc:ef:09 Netgear dc:ef:ca MurataMa dc:f0:5d LettaTek dc:f0:90 Private dc:f1:10 Nokia dc:f7:55 Sitronik dc:f8:58 LorentNe dc:fa:d5 StrongGe dc:fb:02 Buffalo dc:fe:07 Pegatron dc:fe:18 TP-Link e0:03:70 Shenzhen e0:05:c5 TP-Link e0:06:e6 HonHaiPr e0:07:1b HP e0:0b:28 Inovonic e0:0c:7f Nintendo e0:0d:b9 Cree e0:0e:da Cisco e0:10:7f RuckusWi e0:14:3e Modoosis e0:18:77 Fujitsu e0:19:1d Huawei e0:1a:ea AlliedTe e0:1c:41 Aerohive e0:1c:ee BravoTec e0:1d:38 BeijingH e0:1d:3b Cambridg e0:1e:07 AniteTel e0:1f:0a XslentEn e0:22:02 ArrisGro e0:24:7f Huawei e0:25:38 TitanPet e0:26:30 Intrigue e0:26:36 NortelNe e0:27:1a TtcNext- e0:28:61 Huawei e0:28:6d AvmAudio e0:2a:82 Universa e0:2c:b2 LenovoMo e0:2c:f3 MrsElect e0:2f:6d Cisco e0:30:05 Alcatel- e0:31:9e Valve e0:31:d0 SzTelsta e0:34:e4 FeitElec e0:35:60 Challeng e0:36:76 Huawei e0:36:e3 StageOne e0:37:bf WistronN e0:39:d7 Plexxi e0:3c:5b Shenzhen e0:3e:44 Broadcom e0:3e:4a Cavanagh e0:3e:7d Data-Com e0:3f:49 ASUS e0:41:36 Mitrasta e0:43:db Shenzhen e0:46:9a Netgear e0:48:af Premiete e0:4b:45 Hi-PElec e0:4f:43 Universa e0:4f:bd SichuanT e0:50:8b Zhejiang e0:51:24 NxpSemic e0:51:63 Arcadyan e0:55:3d Cisco e0:55:97 Emergent e0:56:f4 Axesnetw e0:58:9e LaerdalM e0:5b:70 Innovid e0:5d:a6 DetlefFi e0:5f:45 Apple e0:5f:b9 Cisco e0:60:66 Sercomm e0:61:b2 Hangzhou e0:62:90 JinanJov e0:63:e5 Sony e0:64:bb Digiview e0:66:78 Apple e0:67:b3 C-DataTe e0:68:6d Raybased e0:69:95 Pegatron e0:75:0a AlpsElec e0:75:7d Motorola e0:76:d0 AmpakTec e0:78:a3 Shanghai e0:7c:13 Zte e0:7c:62 WhistleL e0:7f:53 Techboar e0:7f:88 Evidence e0:81:77 Greenbyt e0:87:b1 Nata-Inf e0:88:5d Technico e0:89:9d Cisco e0:8a:7e Exponent e0:8e:3c AztechEl e0:8f:ec Repotec e0:91:53 XaviTech e0:91:f5 Netgear e0:94:67 Intel e0:95:79 Orthosof e0:97:96 Huawei e0:97:f2 Atomax e0:98:61 Motorola e0:99:71 Samsung e0:9d:31 Intel e0:9d:b8 PlanexCo e0:9d:fa WananHon e0:a1:98 NojaPowe e0:a1:d7 Sfr e0:a3:0f Pevco e0:a3:ac Huawei e0:a6:70 Nokia e0:a7:00 Verkada e0:a8:b8 LeShiZhi e0:aa:b0 GeneralV e0:ab:fe OrbNetwo e0:ac:cb Apple e0:ac:f1 Cisco e0:ae:5e AlpsElec e0:ae:b2 Bender&A e0:ae:ed Loenk e0:af:4b Pluribus e0:b2:f1 Fn-LinkT e0:b5:2d Apple e0:b6:f5 IEEERegi e0:b7:0a ArrisGro e0:b7:b1 ArrisGro e0:b9:4d Shenzhen e0:b9:a5 AzureWave e0:b9:ba Apple e0:b9:e5 Technico e0:bc:43 C2Micros e0:c0:d1 CkTeleco e0:c2:86 AisaiCom e0:c2:b7 Masimo e0:c3:f3 Zte e0:c6:b3 Mildef e0:c7:67 Apple e0:c7:9d TexasIns e0:c8:6a Shenzhen e0:c9:22 JirehEne e0:c9:7a Apple e0:ca:4d Shenzhen e0:ca:94 AskeyCom e0:cb:1d Private e0:cb:4e ASUS e0:cb:bc Cisco e0:cb:ee Samsung e0:cd:fd BeijingE e0:ce:c3 AskeyCom e0:cf:2d Gemintek e0:d1:0a Katouden e0:d1:73 Cisco e0:d1:e6 AliphDba e0:d3:1a EquesTec e0:d5:5e Giga-Byt e0:d7:ba TexasIns e0:d8:48 Dell e0:d9:a2 HippihAp e0:d9:e3 EltexEnt e0:da:dc JvcKenwo e0:db:10 Samsung e0:db:55 Dell e0:db:88 OpenStan e0:dc:a0 SiemensI e0:dd:c0 VivoMobi e0:e5:cf TexasIns e0:e6:31 SnbTechn e0:e7:51 Nintendo e0:e7:bb Nureva e0:e8:e8 OliveTel e0:ed:1a Vastrive e0:ed:c7 Shenzhen e0:ee:1b Panasoni e0:ef:25 LintesTe e0:f2:11 Digitalw e0:f3:79 Vaddio e0:f5:c6 Apple e0:f5:ca ChengUei e0:f8:47 Apple e0:f9:be Cloudena e0:fa:ec PlatanSp e0:ff:f7 Softiron e2:0c:0f Kingston e4:02:9b Intel e4:04:39 TomtomSo e4:11:5b HP e4:12:18 Shenzhen e4:12:1d Samsung e4:12:89 Topsyste e4:17:d8 8bitdoTe e4:18:6b ZyxelCom e4:1a:2c Zpe e4:1c:4b V2Techno e4:1d:2d Mellanox e4:1f:13 IBM e4:22:a5 Plantron e4:23:54 Shenzhen e4:25:e7 Apple e4:25:e9 Color-Ch e4:27:71 Smartlab e4:2a:d3 MagnetiM e4:2c:56 Lilee e4:2d:02 TctMobil e4:2f:26 Fiberhom e4:2f:56 Optomet e4:2f:f6 UnicoreC e4:32:cb Samsung e4:35:93 Hangzhou e4:35:c8 Huawei e4:35:fb SabreTec e4:37:d7 HenriDep e4:38:f2 Advantag e4:3a:6e Shenzhen e4:3e:d7 Arcadyan e4:3f:a2 WuxiDspT e4:40:e2 Samsung e4:41:e6 OttecTec e4:42:a6 Intel e4:46:bd C&CTechn e4:47:90 Guangdon e4:48:c7 Cisco e4:4c:6c Shenzhen e4:4e:18 Gardasof e4:4f:29 MaLighti e4:4f:5f EdsElekt e4:50:9a HwCommun e4:55:ea Dedicate e4:56:14 SuttleAp e4:57:40 ArrisGro e4:57:a8 StuartMa e4:58:b8 Samsung e4:58:e7 Samsung e4:5a:a2 VivoMobi e4:5d:51 Sfr e4:5d:52 Avaya e4:5d:75 Samsung e4:62:51 HaoCheng e4:64:49 ArrisGro e4:67:ba DanishIn e4:68:a3 Huawei e4:69:5a DictumHe e4:6c:21 Messma e4:6f:13 D-Link e4:71:85 Securifi e4:75:1e GetingeS e4:77:23 Zte e4:77:6b Aartesys e4:77:d4 MinrrayI e4:7b:3f BeijingC e4:7c:f9 Samsung e4:7d:5a BeijingH e4:7d:bd Samsung e4:7d:eb Shanghai e4:7e:66 Huawei e4:7f:b2 Fujitsu e4:81:84 Nokia e4:81:b3 Shenzhen e4:83:99 ArrisGro e4:85:01 GeberitI e4:8a:d5 RfWindow e4:8b:7f Apple e4:8c:0f Discover e4:8d:8c Routerbo e4:90:69 Rockwell e4:90:7e Motorola e4:92:e7 Gridlink e4:92:fb Samsung e4:95:6e IEEERegi e4:96:ae Altograp e4:97:f0 Shanghai e4:98:d1 Microsoft e4:98:d6 Apple e4:9a:79 Apple e4:9e:12 FreeboxS e4:a1:e6 Alcatel- e4:a3:2f Shanghai e4:a3:87 ControlS e4:a4:71 Intel e4:a5:ef TronLink e4:a7:49 PaloAlto e4:a7:a0 Intel e4:a7:fd CellcoPa e4:a8:b6 Huawei e4:aa:5d Cisco e4:ab:46 UabSelte e4:ad:7d SclEleme e4:af:a1 Hes-So e4:b0:05 BeijingI e4:b0:21 Samsung e4:b3:18 Intel e4:ba:d9 360Fly e4:be:ed NetcoreT e4:c1:46 Objetivo e4:c1:f1 Shenzhen e4:c2:d1 Huawei e4:c6:2b Airware e4:c6:3d Apple e4:c6:e6 MophieLl e4:c7:22 Cisco e4:c8:01 BluProdu e4:c8:06 CeiecEle e4:ce:02 Wyrestor e4:ce:70 HealthLi e4:ce:8f Apple e4:d3:32 TP-Link e4:d3:f1 Cisco e4:d5:3d HonHaiPr e4:d7:1d OrayaThe e4:dd:79 En-Visio e4:e0:c5 Samsung e4:e4:09 Leifheit e4:e4:ab Apple e4:ec:10 Nokia e4:ee:fd Mr&DManu e4:f3:65 Time-O-M e4:f3:e3 Shanghai e4:f3:f5 Shenzhen e4:f4:c6 Netgear e4:f7:a1 Datafox e4:f8:9c Intel e4:f8:ef Samsung e4:f9:39 MinxonHo e4:fa:1d PadPerip e4:fa:ed Samsung e4:fa:fd Intel e4:fb:8f Mobiwire e4:fe:d9 EdmiEuro e4:ff:dd Electron e8:00:36 Befs e8:03:9a Samsung e8:04:0b Apple e8:04:10 Private e8:04:62 Cisco e8:04:f3 Throught e8:05:6d NortelNe e8:06:88 Apple e8:07:34 Champion e8:07:bf Shenzhen e8:08:8b Huawei e8:09:45 Integrat e8:09:59 Guoguang e8:0b:13 AkibTaiw e8:0c:38 Daeyoung e8:0c:75 Syncbak e8:10:2e ReallySi e8:11:32 Samsung e8:11:ca Shandong e8:13:24 Guangzho e8:13:63 Comstock e8:13:67 Airsound e8:15:0e Nokia e8:16:2b IdeoSecu e8:17:fc Nifty e8:18:63 IEEERegi e8:28:77 Tmy e8:28:d5 CotsTech e8:2a:ea Intel e8:2e:24 OutOfFog e8:33:81 ArrisGro e8:34:3e BeijingI e8:37:7a ZyxelCom e8:39:35 HP e8:39:df AskeyCom e8:3a:12 Samsung e8:3a:97 Toshiba e8:3e:b6 Rim e8:3e:fb Geodesic e8:3e:fc ArrisGro e8:40:40 Cisco e8:40:f2 Pegatron e8:43:b6 Qnap e8:44:7e Bitdefen e8:48:1f Advanced e8:4d:d0 Huawei e8:4e:06 EdupInte e8:4e:84 Samsung e8:4e:ce Nintendo e8:50:8b Samsung e8:51:6e Tsmart e8:51:9d YeonhabP e8:54:84 NeoInfor e8:55:b4 SaiTechn e8:56:59 Advanced e8:56:d6 Nctech e8:5a:a7 LlcEmzio e8:5b:5b LG e8:5b:f0 ImagingD e8:5d:6b Luminate e8:5e:53 Infratec e8:61:1f DawningI e8:61:7e LiteonTe e8:61:83 BlackDia e8:61:be Melec e8:65:49 Cisco e8:65:d4 TendaTec e8:66:c4 Diamanti e8:6c:da Supercom e8:6d:52 ArrisGro e8:6d:54 DigitMob e8:6d:65 AudioMob e8:6d:6e Voestalp e8:71:8d ElsysEqu e8:74:e6 AdbBroad e8:75:7f FirsTech e8:78:a1 BeoviewI e8:7a:f3 S5TechSR e8:80:2e Apple e8:80:d8 GntekEle e8:87:a3 LoxleyPu e8:88:6c Shenzhen e8:89:2c ArrisGro e8:8d:28 Apple e8:8d:f5 ZnyxNetw e8:8e:60 Nsd e8:91:20 Motorola e8:92:18 Arcontia e8:92:a4 LG e8:93:09 Samsung e8:94:4c CogentHe e8:94:f6 TP-Link e8:96:06 TestoIns e8:99:5a PiigabPr e8:99:c4 HTC e8:9a:8f QuantaCo e8:9a:ff FujianLa e8:9d:87 Toshiba e8:9e:0c Private e8:9e:b4 HonHaiPr e8:9f:ec ChengduK e8:a3:64 SignalPa e8:a4:c1 DeepSeaE e8:a7:f2 Straffic e8:ab:fa Shenzhen e8:b1:fc Intel e8:b2:ac Apple e8:b4:ae Shenzhen e8:b4:c8 Samsung e8:b6:c2 JuniperN e8:b7:48 Cisco e8:ba:70 Cisco e8:bb:3d SinoPrim e8:bb:a8 Guangdon e8:bd:d1 Huawei e8:be:81 Sagemcom e8:c1:d7 Philips e8:c2:29 H-Displa e8:c3:20 AustcoCo e8:c7:4f LiteonTe e8:cb:a1 Nokia e8:cc:18 D-Link e8:cc:32 Micronet e8:cd:2d Huawei e8:ce:06 Skyhawke e8:d0:fa MksInstr e8:d1:1b AskeyCom e8:d4:83 Ultimate e8:d4:e0 BeijingB e8:da:96 ZhuhaiTi e8:da:aa Videohom e8:de:27 TP-Link e8:de:8e Integrat e8:de:d6 Intrisin e8:df:f2 Prf e8:e0:8f Gravotec e8:e0:b7 Toshiba e8:e1:e1 GemtekTe e8:e1:e2 Energote e8:e5:d6 Samsung e8:e7:32 Alcatel- e8:e7:70 Warp9Tec e8:e7:76 Shenzhen e8:e8:75 Is5Commu e8:ea:6a Startech e8:ea:da DenkoviA e8:eb:11 TexasIns e8:ed:05 ArrisGro e8:ed:f3 Cisco e8:ef:89 OpmexTec e8:f1:b0 Sagemcom e8:f2:26 MillsonC e8:f2:e2 LG e8:f2:e3 StarcorB e8:f7:24 HP e8:f9:28 RftechSr e8:fc:60 ElcomInn e8:fc:af Netgear e8:fd:72 Shanghai e8:fd:90 Turbosto e8:fd:e8 CelaLink ec:01:33 Trinus ec:01:e2 FoxconnI ec:01:ee Guangdon ec:08:6b TP-Link ec:0d:9a Mellanox ec:0e:c4 HonHaiPr ec:0e:d6 ItechIns ec:10:00 EnanceSo ec:10:7b Samsung ec:11:20 Flodesig ec:11:27 TexasIns ec:13:b2 Netonix ec:13:db JuniperN ec:14:f6 Biocontr ec:17:2f TP-Link ec:17:66 Research ec:1a:59 BelkinIn ec:1d:7f Zte ec:1f:72 Samsung ec:21:9f VidaboxL ec:21:e5 Toshiba ec:22:57 JiangsuN ec:22:80 D-Link ec:23:3d Huawei ec:23:68 Intelliv ec:23:7b Zte ec:24:b8 TexasIns ec:26:ca TP-Link ec:26:fb Tecc ec:2a:f0 Ypsomed ec:2c:49 Universi ec:2e:4e Hitachi- ec:30:91 Cisco ec:35:86 Apple ec:36:3f Markov ec:38:8f Huawei ec:3b:f0 Novelsat ec:3c:5a ShenZhen ec:3c:88 Mcnex ec:3e:09 Performa ec:3e:f7 JuniperN ec:3f:05 Institut ec:42:b4 Adc ec:42:f0 AdlEmbed ec:43:8b Yaptv ec:43:e6 Awcer ec:43:f6 ZyxelCom ec:44:76 Cisco ec:46:44 TtkSas ec:46:70 Meinberg ec:47:3c RedwireL ec:49:93 QihanTec ec:4c:4d ZaoNpkRo ec:4d:47 Huawei ec:4f:82 Calix ec:52:dc WorldMed ec:54:2e Shanghai ec:55:f9 HonHaiPr ec:59:e7 Microsoft ec:5a:86 YulongCo ec:5c:69 Mitsubis ec:5f:23 QinghaiK ec:60:e0 Avi-OnLa ec:62:64 Global41 ec:63:e5 EpboardD ec:64:e7 Mocacare ec:66:d1 B&WGroup ec:68:81 PaloAlto ec:6c:9f ChengduV ec:71:db Shenzhen ec:74:ba Hirschma ec:7c:74 JustoneT ec:7d:9d Mei ec:80:09 Novaspar ec:83:6c RmTech ec:85:2f Apple ec:88:8f TP-Link ec:88:92 Motorola ec:89:f5 LenovoMo ec:8a:4c Zte ec:8c:a2 RuckusWi ec:8e:ad Dlx ec:8e:ae Nagravis ec:8e:b5 HP ec:92:33 EddyfiNd ec:93:27 Memmert+ ec:93:ed Ddos-Gua ec:96:81 2276427O ec:98:6c LufftMes ec:98:c1 BeijingR ec:9a:74 HP ec:9b:5b Nokia ec:9b:f3 Samsung ec:9e:cd ArtesynE ec:a2:9b KemppiOy ec:a8:6b Elitegro ec:a9:fa Guangdon ec:aa:a0 Pegatron ec:ad:b8 Apple ec:b1:06 AcuroNet ec:b1:d7 HP ec:b5:41 ShinanoE ec:b8:70 BeijingH ec:b9:07 Cloudgen ec:ba:fe Giroptic ec:bb:ae Digivoic ec:bd:09 FusionEl ec:bd:1d Cisco ec:c3:8a Accuener ec:c8:82 Cisco ec:cb:30 Huawei ec:cd:6d AlliedTe ec:d0:0e Miraerec ec:d0:40 GeaFarmT ec:d1:9a ZhuhaiLi ec:d6:8a Shenzhen ec:d9:25 Rami ec:d9:50 IrtSa ec:d9:d1 Shenzhen ec:de:3d LampreyN ec:df:3a VivoMobi ec:e0:9b Samsung ec:e1:54 BeijingU ec:e1:a9 Cisco ec:e2:fd SkgElect ec:e5:12 Tado ec:e5:55 Hirschma ec:e7:44 OmntecMf ec:e9:0b SistemaS ec:e9:15 Sti ec:e9:f8 GuangZho ec:ea:03 DarfonLi ec:ee:d8 ZtlxNetw ec:f0:0e Abocom ec:f2:36 Neomonta ec:f3:42 Guangdon ec:f3:5b Nokia ec:f4:bb Dell ec:f7:2b HdDigita ec:fa:aa Ims ec:fc:55 AEberle ec:fe:7e Blueradi f0:00:7f Janz-Con f0:02:2b Chrontel f0:02:48 Smartebu f0:03:8c AzureWave f0:07:86 Shandong f0:08:f1 Samsung f0:0d:5c Jinqianm f0:13:c3 Shenzhen f0:15:a0 Kyungdon f0:15:b9 Playfusi f0:18:2b LG f0:1b:6c VivoMobi f0:1c:13 LG f0:1c:2d JuniperN f0:1d:bc Microsoft f0:1e:34 OricoTec f0:1f:af Dell f0:21:9d Cal-Comp f0:22:4e EsanElec f0:23:29 ShowaDen f0:23:b9 IEEERegi f0:24:05 OpusHigh f0:24:08 TalarisS f0:24:75 Apple f0:25:72 Cisco f0:25:b7 Samsung f0:26:24 WafaTech f0:26:4c DrSigris f0:27:2d AmazonTe f0:27:45 F-Secure f0:27:65 MurataMa f0:29:29 Cisco f0:2a:23 Creative f0:2a:61 WaldoNet f0:2f:a7 Huawei f0:2f:d8 Bi2-Visi f0:32:1a Mita-Tek f0:34:04 TctMobil f0:37:a1 HuikeEle f0:3a:4b Bloombas f0:3a:55 OmegaEle f0:3d:29 Actility f0:3e:90 RuckusWi f0:3e:bf GogoroTa f0:3f:f8 RLDrake f0:40:7b Fiberhom f0:42:1c Intel f0:43:35 DvnShang f0:43:47 Huawei f0:4a:2b PyramidC f0:4b:6a Scientif f0:4b:f2 JtechCom f0:4d:a2 Dell f0:4f:7c Private f0:58:49 Careview f0:5a:09 Samsung f0:5b:7b Samsung f0:5c:19 ArubaNet f0:5d:89 Dycon f0:5d:c8 Duracell f0:5f:5a Getriebe f0:61:30 Advantag f0:62:0d Shenzhen f0:62:81 Procurve f0:65:dd PrimaxEl f0:68:53 Integrat f0:6b:ca Samsung f0:6e:32 Microtel f0:72:8c Samsung f0:73:ae Peak-Sys f0:74:85 Ngd f0:74:e4 Thunderc f0:76:1c CompalIn f0:77:65 Sourcefi f0:77:d0 Xcellen f0:78:16 Cisco f0:79:59 ASUS f0:79:60 Apple f0:7b:cb HonHaiPr f0:7d:68 D-Link f0:7f:06 Cisco f0:7f:0c LeopoldK f0:81:af IrzAutom f0:82:61 Sagemcom f0:84:2f AdbBroad f0:84:c9 Zte f0:8a:28 JiangsuH f0:8b:fe Costel f0:8c:fb Fiberhom f0:8e:db Veloclou f0:92:1c HP f0:93:3a Nxtconec f0:93:c5 GarlandT f0:97:e5 Tamio f0:98:38 Huawei f0:99:bf Apple f0:9a:51 Shanghai f0:9c:bb Raonthin f0:9c:e9 Aerohive f0:9e:63 Cisco f0:9f:c2 Ubiquiti f0:a2:25 Private f0:a7:64 Gst f0:ab:54 MitsumiE f0:ac:a4 Hbc-Radi f0:ac:d7 IEEERegi f0:ad:4e Globalsc f0:ae:51 Xi3 f0:b0:52 RuckusWi f0:b0:e7 Apple f0:b2:e5 Cisco f0:b4:29 XiaomiCo f0:b4:79 Apple f0:b6:eb PoslabTe f0:bc:c8 MaxidPty f0:bd:f1 Sipod f0:bf:97 Sony f0:c1:f1 Apple f0:c2:4c Zhejiang f0:c2:7c Mianyang f0:c7:7f TexasIns f0:c8:50 Huawei f0:c8:8c Leddarte f0:cb:a1 Apple f0:d1:4f LinearLl f0:d1:a9 Apple f0:d1:b8 Ledvance f0:d2:f1 AmazonTe f0:d3:a7 Cobaltra f0:d3:e7 Sensomet f0:d4:f6 LarsThra f0:d5:bf Intel f0:d6:57 Echosens f0:d7:67 AxemaPas f0:d7:aa Motorola f0:d9:b2 ExoSA f0:da:7c RlhIndus f0:db:30 Yottabyt f0:db:e2 Apple f0:db:f8 Apple f0:dc:e2 Apple f0:de:71 Shanghai f0:de:b9 Shanghai f0:de:f1 WistronI f0:e5:c3 Drägerwe f0:e7:7e Samsung f0:eb:d0 Shanghai f0:ec:39 Essec f0:ed:1e BilkonBi f0:ee:10 Samsung f0:ee:58 PaceTele f0:ee:bb Vipar f0:f0:02 HonHaiPr f0:f2:49 HitronTe f0:f2:60 Mobitec f0:f3:36 TP-Link f0:f5:ae Adaptrum f0:f6:1c Apple f0:f6:44 Whitesky f0:f6:69 MotionAn f0:f7:55 Cisco f0:f7:b3 Phorm f0:f8:42 Keebox f0:f9:f7 Ies f0:fd:a0 AcurixNe f0:fe:6b Shanghai f4:03:04 Google f4:03:21 BenextBV f4:03:2f Reduxio f4:03:43 HP f4:04:4c Valencet f4:06:69 Intel f4:06:8d Devolo f4:06:a5 Hangzhou f4:09:d8 Samsung f4:0a:4a Indusnet f4:0b:93 Blackber f4:0e:11 IEEERegi f4:0e:22 Samsung f4:0e:83 ArrisGro f4:0f:1b Cisco f4:0f:24 Apple f4:0f:9b Wavelink f4:15:35 SponComm f4:15:63 F5Networ f4:15:fd Shanghai f4:1b:a1 Apple f4:1e:26 Simon-Ka f4:1f:0b Yamabish f4:1f:88 Zte f4:1f:c2 Cisco f4:20:12 Cucinial f4:28:33 Mmpc f4:28:53 ZioncomE f4:28:96 SpectoPa f4:29:81 VivoMobi f4:2b:48 Ubiqam f4:2c:56 SenorTec f4:30:b9 HP f4:31:c3 Apple f4:36:e1 AbilisSa f4:37:b7 Apple f4:38:14 Shanghai f4:3d:80 FagIndus f4:3e:61 Shenzhen f4:3e:9d BenuNetw f4:41:56 Arrikto f4:42:27 SSResear f4:42:8f Samsung f4:44:50 Bnd f4:45:ed Portable f4:47:13 LeadingP f4:47:2a NanjingR f4:48:48 Amscreen f4:4b:2a Cisco f4:4c:7f Huawei f4:4d:17 Goldcard f4:4d:30 Elitegro f4:4e:05 Cisco f4:4e:fd ActionsS f4:50:eb Telechip f4:52:14 Mellanox f4:54:33 Rockwell f4:55:95 Hengbao f4:55:9c Huawei f4:55:e0 NicewayC f4:57:3e Fiberhom f4:58:42 BoxxTv f4:5b:73 Wanjiaan f4:5c:89 Apple f4:5e:ab TexasIns f4:5f:69 MatsufuE f4:5f:d4 Cisco f4:5f:f7 DqTechno f4:60:0d Panoptic f4:62:d0 NotForRa f4:63:49 Diffon f4:64:5d Toshiba f4:67:2d Shenzhen f4:6a:92 Shenzhen f4:6a:bc Adonit f4:6b:ef Sagemcom f4:6d:04 ASUS f4:6d:e2 Zte f4:70:ab VivoMobi f4:73:ca Conversi f4:76:26 Viltechm f4:7a:4e Woojeon& f4:7a:cc Solidfir f4:7b:5e Samsung f4:7f:35 Cisco f4:81:39 Canon f4:83:cd TP-Link f4:83:e1 Shanghai f4:85:c6 FdtTechn f4:87:71 Infoblox f4:8b:32 XiaomiCo f4:8c:50 Intel f4:8e:09 Nokia f4:8e:38 Dell f4:8e:92 Huawei f4:90:ca Tensorco f4:90:ea DecisoBV f4:91:1e ZhuhaiEw f4:94:61 NexgenSt f4:94:66 Countmax f4:96:34 Intel f4:96:51 Nakayo f4:99:ac WeberSch f4:9e:ef TaicangT f4:9f:54 Samsung f4:9f:f3 Huawei f4:a2:94 EagleWor f4:a5:2a HawaTech f4:a7:39 JuniperN f4:a9:97 Canon f4:ac:c1 Cisco f4:b1:64 Lightnin f4:b3:81 Windowma f4:b5:2f JuniperN f4:b5:49 XiamenYe f4:b6:e5 Terrasem f4:b7:2a TimeInte f4:b7:b3 VivoMobi f4:b7:e2 HonHaiPr f4:b8:5e TexasIns f4:b8:a7 Zte f4:bd:7c ChengduJ f4:c4:47 CoagentI f4:c4:d6 Shenzhen f4:c6:13 Alcatel- f4:c6:d7 Blackned f4:c7:14 Huawei f4:c7:95 WeyElekt f4:ca:24 Freebit f4:ca:e5 FreeboxS f4:cb:52 Huawei f4:cc:55 JuniperN f4:cd:90 Vispiron f4:ce:46 HP f4:cf:e2 Cisco f4:d0:32 YunnanId f4:d2:61 Semocon f4:d9:fb Samsung f4:dc:41 Youngzon f4:dc:4d BeijingC f4:dc:da ZhuhaiJi f4:dc:f9 Huawei f4:dd:9e Gopro f4:de:0c Espod f4:e1:42 DeltaEle f4:e3:fb Huawei f4:e4:ad Zte f4:e6:d7 SolarPow f4:e9:26 TianjinZ f4:e9:d4 Qlogic f4:ea:67 Cisco f4:eb:38 Sagemcom f4:ec:38 TP-Link f4:ed:5f Shenzhen f4:ee:14 Shenzhen f4:ef:9e SgsgScie f4:f1:5a Apple f4:f1:e1 Motorola f4:f2:6d TP-Link f4:f5:24 Motorola f4:f5:a5 Nokia f4:f5:d8 Google f4:f5:e8 Google f4:f6:46 Dediprog f4:f9:51 Apple f4:fc:32 TexasIns f4:fc:b1 Jj f4:fd:2b Zoyi f8:01:13 Huawei f8:02:78 IEEERegi f8:03:32 Khomp f8:03:77 Apple f8:04:2e Samsung f8:05:1c DrsImagi f8:0b:be ArrisGro f8:0b:cb Cisco f8:0b:d0 DatangTe f8:0c:f3 LG f8:0d:43 HonHaiPr f8:0d:60 Canon f8:0d:ea ZycastTe f8:0f:41 WistronI f8:0f:84 NaturalS f8:10:37 AtopiaLp f8:15:47 Avaya f8:16:54 Intel f8:18:97 2wire f8:1a:67 TP-Link f8:1c:e5 Telefonb f8:1d:78 IEEERegi f8:1d:90 Solidwin f8:1d:93 Longdhua f8:1e:df Apple f8:22:85 CypressT f8:23:b2 Huawei f8:24:41 Yeelink f8:27:93 Apple f8:2b:c8 JiangsuS f8:2c:18 2wire f8:2e:db Rtw f8:2f:08 Molex f8:2f:5b EgaugeLl f8:2f:a8 HonHaiPr f8:30:94 Alcatel- f8:31:3e Endeavou f8:32:e4 ASUS f8:33:76 GoodMind f8:35:53 MagentaR f8:35:dd GemtekTe f8:3d:4e Softlink f8:3d:ff Huawei f8:3f:51 Samsung f8:42:fb YasudaJo f8:45:ad KonkaGro f8:46:1c Sony f8:46:2d SyntecIn f8:47:2d X2genDig f8:48:97 Hitachi f8:4a:73 Eumtech f8:4a:7f Innometr f8:4a:bf Huawei f8:4f:57 Cisco f8:50:63 Verathon f8:51:6d DenwaTec f8:52:df VnlEurop f8:54:af EciTelec f8:57:2e CoreBran f8:59:71 Intel f8:5a:00 SanfordL f8:5b:9c Sb f8:5b:c9 M-Cube f8:5c:45 IcNexus f8:5c:4d Nokia f8:5f:2a Nokia f8:62:14 Apple f8:62:aa Xn f8:63:3f Intel f8:66:01 SuzhouCh f8:66:d1 HonHaiPr f8:66:f2 Cisco f8:69:71 SeibuEle f8:6e:cf Arcx f8:71:fe GoldmanS f8:72:ea Cisco f8:73:94 Netgear f8:73:a2 Avaya f8:75:88 Huawei f8:76:9b Neopis f8:77:b8 Samsung f8:7a:ef RosonixT f8:7b:62 FastwelI f8:7b:7a ArrisGro f8:7b:8c AmpedWir f8:80:96 ElsysEqu f8:81:1a Overkiz f8:84:79 YaojinTe f8:84:f2 Samsung f8:8a:3c IEEERegi f8:8c:1c KaishunE f8:8d:ef Tenebrae f8:8e:85 Comtrend f8:8f:ca Google f8:91:2a GlpGerma f8:93:f3 Volans f8:94:c2 Intel f8:95:50 ProtonPr f8:95:c7 LG f8:97:cf Daeshin- f8:98:3a LeemanIn f8:98:b9 Huawei f8:99:55 Fortress f8:9d:0d ControlT f8:9f:b8 YazakiEn f8:a0:3d DinstarT f8:a0:97 ArrisGro f8:a1:88 LedRoadw f8:a2:b4 Rhewa-Wa f8:a3:4f Zte f8:a4:5f XiaomiCo f8:a5:c5 Cisco f8:a9:63 CompalIn f8:a9:d0 LG f8:a9:de Puissanc f8:aa:8a AxviewTe f8:ab:05 Sagemcom f8:ac:6d Deltenna f8:b1:56 Dell f8:b2:f3 Guangzho f8:b5:99 Guangzho f8:bb:bf Eero f8:bc:12 Dell f8:bc:41 Rosslare f8:be:0d A2uict f8:bf:09 Huawei f8:c0:01 JuniperN f8:c0:91 Highgate f8:c2:88 Cisco f8:c3:72 TsuzukiD f8:c3:97 Nzxt f8:c6:78 Carefusi f8:c9:6c Fiberhom f8:ca:b8 Dell f8:cf:c5 Motorola f8:d0:27 SeikoEps f8:d0:ac Sony f8:d0:bd Samsung f8:d1:11 TP-Link f8:d3:a9 AxanNetw f8:d4:62 Pumatron f8:d7:56 SimmTron f8:d7:bf RevRitte f8:da:0c HonHaiPr f8:da:df Ecotech f8:da:e2 BetaLase f8:da:f4 TaishanO f8:db:4c PnyTechn f8:db:7f HTC f8:db:88 Dell f8:dc:7a Variscit f8:df:a8 Zte f8:e0:79 Motorola f8:e4:fb Actionte f8:e6:1a Samsung f8:e7:1e RuckusWi f8:e7:b5 ΜtechTec f8:e8:11 Huawei f8:e9:03 D-Link f8:e9:68 EgkerKft f8:ea:0a Dipl-Mat f8:ed:a5 ArrisGro f8:f0:05 NewportM f8:f0:14 Rackware f8:f0:82 NagLlc f8:f1:b6 Motorola f8:f2:5a G-Lab f8:f4:64 RaweElec f8:f7:d3 Internat f8:f7:ff Syn-Tech f8:fb:2f Santur f8:fe:5c Reciproc f8:fe:a8 Technico f8:ff:0b Electron f8:ff:5f Shenzhen fc:00:12 ToshibaS fc:01:9e Vievu fc:01:cd Fundacio fc:06:47 Cortland fc:06:ed M2motive fc:07:a0 LreMedic fc:08:4a Fujitsu fc:08:77 PrentkeR fc:09:d8 ActeonGr fc:09:f6 Guangdon fc:0a:81 ExtremeN fc:0f:4b TexasIns fc:0f:e6 Sony fc:10:bd ControlS fc:10:c6 TaicangT fc:11:86 Logic3 fc:13:49 GlobalAp fc:15:b4 HP fc:16:07 TaianTec fc:17:94 Intercre fc:19:10 Samsung fc:19:d0 CloudVis fc:1a:11 VivoMobi fc:1b:ff V-Zug fc:1d:59 ISmartCi fc:1d:84 Autobase fc:1e:16 Ipevo fc:1f:19 Samsung fc:1f:c0 Eurecam fc:22:9c HanKyung fc:23:25 EostekSh fc:25:3f Apple fc:27:a2 TransEle fc:2a:54 Connecte fc:2d:5e Zte fc:2e:2d LoromInd fc:2f:40 Calxeda fc:2f:6b Everspin fc:2f:aa Nokia fc:2f:ef UttTechn fc:32:88 CelotWir fc:33:5f Polyera fc:35:98 Favite fc:35:e6 Visteon fc:37:2b SichuanT fc:3c:e9 Tsington fc:3d:93 Longchee fc:3f:7c Huawei fc:3f:ab HenanLan fc:3f:db HP fc:42:03 Samsung fc:44:63 Universa fc:44:99 SwarcoLe fc:45:5f JiangxiS fc:45:96 CompalIn fc:48:ef Huawei fc:4a:e9 Castlene fc:4b:1c Intersen fc:4b:bc SunplusT fc:4d:8c Shenzhen fc:4d:d4 Universa fc:50:90 SimexSpZ fc:51:a4 ArrisGro fc:52:8d Technico fc:52:ce ControlI fc:53:9e Shanghai fc:55:dc BalticLa fc:58:fa ShenZhen fc:5a:1d HitronTe fc:5b:24 WeibelSc fc:5b:26 Mikrobit fc:5b:39 Cisco fc:60:18 Zhejiang fc:61:98 NecPerso fc:62:6e BeijingM fc:62:b9 AlpsElec fc:64:ba XiaomiCo fc:68:3e Directed fc:6c:31 Lxinstru fc:6d:c0 Bme fc:6f:b7 ArrisGro fc:75:16 D-Link fc:75:e6 Handream fc:79:0b HitachiH fc:7c:e7 FciUsaLl fc:83:29 TreiTech fc:83:99 Avaya fc:83:c6 N-RadioT fc:8b:97 Shenzhen fc:8e:7e ArrisGro fc:8f:90 Samsung fc:8f:c4 Intellig fc:91:14 Technico fc:92:3b Nokia fc:94:6c Ubivelox fc:94:e3 Technico fc:99:47 Cisco fc:9a:fa MotusGlo fc:9f:ae Fidus fc:9f:e1 ConwinTe fc:a1:3e Samsung fc:a2:2a PtCallys fc:a3:86 Shenzhen fc:a6:67 AmazonTe fc:a8:41 Avaya fc:a8:9a SunitecE fc:a9:b0 Miartech fc:aa:14 Giga-Byt fc:ad:0f QtsNetwo fc:af:6a Qulsar fc:af:ac Socionex fc:b0:c4 Shanghai fc:b4:e6 AskeyCom fc:b5:8a Wapice fc:b6:98 Cambridg fc:bb:a1 Shenzhen fc:bc:9c Vimar fc:c2:33 Private fc:c2:3d Atmel fc:c2:de MurataMa fc:c7:34 Samsung fc:c8:97 Zte fc:ca:c4 Lifeheal fc:cc:e4 Ascon fc:cf:43 HuizhouC fc:cf:62 IBM fc:d4:f2 CocaCola fc:d4:f6 MessanaA fc:d5:d9 Shenzhen fc:d6:bd RobertBo fc:d7:33 TP-Link fc:d8:17 BeijingH fc:d8:48 Apple fc:db:96 Enervall fc:db:b3 MurataMa fc:dc:4a G-Wearab fc:dd:55 Shenzhen fc:e1:86 A3m fc:e1:92 SichuanJ fc:e1:d9 StableIm fc:e1:fb ArrayNet fc:e2:3f ClayPaky fc:e3:3c Huawei fc:e5:57 Nokia fc:e8:92 Hangzhou fc:e9:98 Apple fc:ec:da Ubiquiti fc:ed:b9 Arrayent fc:f1:36 Samsung fc:f1:52 Sony fc:f1:cd Optex-Fa fc:f5:28 ZyxelCom fc:f6:47 Fiberhom fc:f8:ae Intel fc:f8:b7 TronteqE fc:fa:f7 Shanghai fc:fb:fb Cisco fc:fc:48 Apple fc:fe:77 HitachiR fc:fe:c2 Invensys fc:ff:aa IEEERegi ================================================ FILE: esp8266/espreset.py ================================================ #!/usr/bin/env python from time import sleep import RPi.GPIO as GPIO # declaration of chip reset pin def GPIO_custominit(): GPIO.setmode(GPIO.BCM) GPIO.setup(17,GPIO.OUT,initial=1) GPIO.setup(27,GPIO.OUT,initial=1) GPIO_custominit() # bring GPIO 17 LOW then back up = reset GPIO.output(17,0) sleep(0.5) GPIO.output(17,1) # information for user print "Chip has been reset" #clean exit GPIO.cleanup() ================================================ FILE: esp8266/esptool.py ================================================ #!/usr/bin/python # NB: Before sending a PR to change the above line to '#!/usr/bin/env python2', please read https://github.com/espressif/esptool/issues/21 # # ESP8266 ROM Bootloader Utility # https://github.com/espressif/esptool # # Copyright (C) 2014-2016 Fredrik Ahlberg, Angus Gratton, Espressif Systems, other contributors as noted. # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., 51 Franklin # Street, Fifth Floor, Boston, MA 02110-1301 USA. from __future__ import print_function, division import argparse import hashlib import inspect import json import os import serial import struct import subprocess import sys import tempfile import time __version__ = "1.3" PYTHON2 = sys.version_info[0] < 3 # True if on pre-Python 3 class ESPROM(object): # These are the currently known commands supported by the ROM ESP_FLASH_BEGIN = 0x02 ESP_FLASH_DATA = 0x03 ESP_FLASH_END = 0x04 ESP_MEM_BEGIN = 0x05 ESP_MEM_END = 0x06 ESP_MEM_DATA = 0x07 ESP_SYNC = 0x08 ESP_WRITE_REG = 0x09 ESP_READ_REG = 0x0a # Maximum block sized for RAM and Flash writes, respectively. ESP_RAM_BLOCK = 0x1800 ESP_FLASH_BLOCK = 0x400 # Default baudrate. The ROM auto-bauds, so we can use more or less whatever we want. ESP_ROM_BAUD = 115200 # First byte of the application image ESP_IMAGE_MAGIC = 0xe9 # Initial state for the checksum routine ESP_CHECKSUM_MAGIC = 0xef # OTP ROM addresses ESP_OTP_MAC0 = 0x3ff00050 ESP_OTP_MAC1 = 0x3ff00054 ESP_OTP_MAC3 = 0x3ff0005c # Flash sector size, minimum unit of erase. ESP_FLASH_SECTOR = 0x1000 def __init__(self, port=0, baud=ESP_ROM_BAUD): self._port = serial.serial_for_url(port) self._slip_reader = slip_reader(self._port) # setting baud rate in a separate step is a workaround for # CH341 driver on some Linux versions (this opens at 9600 then # sets), shouldn't matter for other platforms/drivers. See # https://github.com/espressif/esptool/issues/44#issuecomment-107094446 self._port.baudrate = baud """ Read a SLIP packet from the serial port """ def read(self): return next(self._slip_reader) """ Write bytes to the serial port while performing SLIP escaping """ def write(self, packet): buf = b'\xc0' \ + (packet.replace(b'\xdb',b'\xdb\xdd').replace(b'\xc0',b'\xdb\xdc')) \ + b'\xc0' self._port.write(buf) """ Calculate checksum of a blob, as it is defined by the ROM """ @staticmethod def checksum(data, state=ESP_CHECKSUM_MAGIC): for b in data: if type(b) is int: # python 2/3 compat state ^= b else: state ^= ord(b) return state """ Send a request and read the response """ def command(self, op=None, data=None, chk=0): if op is not None: pkt = struct.pack(b'> 16) & 0xff, (mac3 >> 8) & 0xff, mac3 & 0xff) elif ((mac1 >> 16) & 0xff) == 0: oui = (0x18, 0xfe, 0x34) elif ((mac1 >> 16) & 0xff) == 1: oui = (0xac, 0xd0, 0x74) else: raise FatalError("Unknown OUI") return oui + ((mac1 >> 8) & 0xff, mac1 & 0xff, (mac0 >> 24) & 0xff) """ Read Chip ID from OTP ROM - see http://esp8266-re.foogod.com/wiki/System_get_chip_id_%28IoT_RTOS_SDK_0.9.9%29 """ def chip_id(self): id0 = self.read_reg(self.ESP_OTP_MAC0) id1 = self.read_reg(self.ESP_OTP_MAC1) return (id0 >> 24) | ((id1 & 0xffffff) << 8) """ Read SPI flash manufacturer and device id """ def flash_id(self): self.flash_begin(0, 0) self.write_reg(0x60000240, 0x0, 0xffffffff) self.write_reg(0x60000200, 0x10000000, 0xffffffff) flash_id = self.read_reg(0x60000240) return flash_id """ Abuse the loader protocol to force flash to be left in write mode """ def flash_unlock_dio(self): # Enable flash write mode self.flash_begin(0, 0) # Reset the chip rather than call flash_finish(), which would have # write protected the chip again (why oh why does it do that?!) self.mem_begin(0,0,0,0x40100000) self.mem_finish(0x40000080) """ Perform a chip erase of SPI flash """ def flash_erase(self): # Trick ROM to initialize SFlash self.flash_begin(0, 0) # This is hacky: we don't have a custom stub, instead we trick # the bootloader to jump to the SPIEraseChip() routine and then halt/crash # when it tries to boot an unconfigured system. self.mem_begin(0,0,0,0x40100000) self.mem_finish(0x40004984) # Yup - there's no good way to detect if we succeeded. # It it on the other hand unlikely to fail. def run_stub(self, stub, params, read_output=True): stub = dict(stub) stub['code'] = unhexify(stub['code']) if 'data' in stub: stub['data'] = unhexify(stub['data']) if stub['num_params'] != len(params): raise FatalError('Stub requires %d params, %d provided' % (stub['num_params'], len(params))) params = struct.pack(b'<' + (b'I' * stub['num_params']), *params) pc = params + stub['code'] # Upload self.mem_begin(len(pc), 1, len(pc), stub['params_start']) self.mem_block(pc, 0) if 'data' in stub: self.mem_begin(len(stub['data']), 1, len(stub['data']), stub['data_start']) self.mem_block(stub['data'], 0) self.mem_finish(stub['entry']) if read_output: print('Stub executed, reading response:') while True: p = self.read() print(hexify(p)) if p == '': return class ESPBOOTLOADER(object): """ These are constants related to software ESP bootloader, working with 'v2' image files """ # First byte of the "v2" application image IMAGE_V2_MAGIC = 0xea # First 'segment' value in a "v2" application image, appears to be a constant version value? IMAGE_V2_SEGMENT = 4 def LoadFirmwareImage(filename): """ Load a firmware image, without knowing what kind of file (v1 or v2) it is. Returns a BaseFirmwareImage subclass, either ESPFirmwareImage (v1) or OTAFirmwareImage (v2). """ with open(filename, 'rb') as f: magic = ord(f.read(1)) f.seek(0) if magic == ESPROM.ESP_IMAGE_MAGIC: return ESPFirmwareImage(f) elif magic == ESPBOOTLOADER.IMAGE_V2_MAGIC: return OTAFirmwareImage(f) else: raise FatalError("Invalid image magic number: %d" % magic) class BaseFirmwareImage(object): """ Base class with common firmware image functions """ def __init__(self): self.segments = [] self.entrypoint = 0 def add_segment(self, addr, data, pad_to=4): """ Add a segment to the image, with specified address & data (padded to a boundary of pad_to size) """ # Data should be aligned on word boundary l = len(data) if l % pad_to: data += b"\x00" * (pad_to - l % pad_to) if l > 0: self.segments.append((addr, len(data), data)) def load_segment(self, f, is_irom_segment=False): """ Load the next segment from the image file """ (offset, size) = struct.unpack(' 0x40200000 or offset < 0x3ffe0000 or size > 65536: raise FatalError('Suspicious segment 0x%x, length %d' % (offset, size)) segment_data = f.read(size) if len(segment_data) < size: raise FatalError('End of file reading segment 0x%x, length %d (actual length %d)' % (offset, size, len(segment_data))) segment = (offset, size, segment_data) self.segments.append(segment) return segment def save_segment(self, f, segment, checksum=None): """ Save the next segment to the image file, return next checksum value if provided """ (offset, size, data) = segment f.write(struct.pack(b' 16: raise FatalError('Invalid firmware image magic=%d segments=%d' % (magic, segments)) for i in range(segments): self.load_segment(load_file) self.checksum = self.read_checksum(load_file) def save(self, filename): with open(filename, 'wb') as f: self.write_v1_header(f, self.segments) checksum = ESPROM.ESP_CHECKSUM_MAGIC for segment in self.segments: checksum = self.save_segment(f, segment, checksum) self.append_checksum(f, checksum) class OTAFirmwareImage(BaseFirmwareImage): """ 'Version 2' firmware image, segments loaded by software bootloader stub (ie Espressif bootloader or rboot) """ def __init__(self, load_file=None): super(OTAFirmwareImage, self).__init__() self.version = 2 if load_file is not None: (magic, segments, first_flash_mode, first_flash_size_freq, first_entrypoint) = struct.unpack(' 16: raise FatalError('Invalid V2 second header magic=%d segments=%d' % (magic, segments)) # load all the usual segments for _ in range(segments): self.load_segment(load_file) self.checksum = self.read_checksum(load_file) def save(self, filename): with open(filename, 'wb') as f: # Save first header for irom0 segment f.write(struct.pack(b' 0: esp._port.baudrate = baud_rate # Read the greeting. p = esp.read() if p != b'OHAI': raise FatalError('Failed to connect to the flasher (got %s)' % hexify(p)) def flash_write(self, addr, data, show_progress=False): assert addr % self._esp.ESP_FLASH_SECTOR == 0, 'Address must be sector-aligned' assert len(data) % self._esp.ESP_FLASH_SECTOR == 0, 'Length must be sector-aligned' sys.stdout.write('Writing %d @ 0x%x... ' % (len(data), addr)) sys.stdout.flush() self._esp.write(struct.pack(b' length: raise FatalError('Read more than expected') p = self._esp.read() if len(p) != 16: raise FatalError('Expected digest, got: %s' % hexify(p)) expected_digest = hexify(p).upper() digest = hashlib.md5(data).hexdigest().upper() print if digest != expected_digest: raise FatalError('Digest mismatch: expected %s, got %s' % (expected_digest, digest)) p = self._esp.read() if len(p) != 1: raise FatalError('Expected status, got: %s' % hexify(p)) status_code = struct.unpack(', ) or a single # argument. def load_ram(esp, args): image = LoadFirmwareImage(args.filename) print('RAM boot...') for (offset, size, data) in image.segments: print('Downloading %d bytes at %08x...' % (size, offset), end=' ') sys.stdout.flush() esp.mem_begin(size, div_roundup(size, esp.ESP_RAM_BLOCK), esp.ESP_RAM_BLOCK, offset) seq = 0 while len(data) > 0: esp.mem_block(data[0:esp.ESP_RAM_BLOCK], seq) data = data[esp.ESP_RAM_BLOCK:] seq += 1 print('done!') print('All segments done, executing at %08x' % image.entrypoint) esp.mem_finish(image.entrypoint) def read_mem(esp, args): print('0x%08x = 0x%08x' % (args.address, esp.read_reg(args.address))) def write_mem(esp, args): esp.write_reg(args.address, args.value, args.mask, 0) print('Wrote %08x, mask %08x to %08x' % (args.value, args.mask, args.address)) def dump_mem(esp, args): f = open(args.filename, 'wb') for i in range(args.size / 4): d = esp.read_reg(args.address + (i * 4)) f.write(struct.pack(b'> 16 args.flash_size = {18: '2m', 19: '4m', 20: '8m', 21: '16m', 22: '32m'}.get(size_id) if args.flash_size is None: print('Warning: Could not auto-detect Flash size (FlashID=0x%x, SizeID=0x%x), defaulting to 4m' % (flash_id, size_id)) args.flash_size = '4m' else: print('Auto-detected Flash size:', args.flash_size) def _get_flash_params(esp, args): """ Return binary flash parameters (bitstring length 2) for args """ detect_flash_size(esp, args) flash_mode = {'qio':0, 'qout':1, 'dio':2, 'dout': 3}[args.flash_mode] flash_size_freq = {'4m':0x00, '2m':0x10, '8m':0x20, '16m':0x30, '32m':0x40, '16m-c1': 0x50, '32m-c1':0x60, '32m-c2':0x70}[args.flash_size] flash_size_freq += {'40m':0, '26m':1, '20m':2, '80m': 0xf}[args.flash_freq] return struct.pack(b'BB', flash_mode, flash_size_freq) def _update_image_flash_params(address, flash_params, image): """ Modify the flash mode & size bytes if this looks like an executable image """ if address == 0 and (image[0] == b'\xe9' or image[0] == 0xE9): # python 2/3 compat print('Flash params set to 0x%04x' % struct.unpack(">H", flash_params)) image = image[0:2] + flash_params + image[4:] return image def write_flash(esp, args): flash_params = _get_flash_params(esp, args) flasher = CesantaFlasher(esp, args.baud) for address, argfile in args.addr_filename: image = argfile.read() argfile.seek(0) # rewind in case we need it again if address + len(image) > int(args.flash_size.split('m')[0]) * (1 << 17): print('WARNING: Unlikely to work as data goes beyond end of flash. Hint: Use --flash_size') image = _update_image_flash_params(address, flash_params, image) # Pad to sector size, which is the minimum unit of writing (erasing really). if len(image) % esp.ESP_FLASH_SECTOR != 0: image += b'\xff' * (esp.ESP_FLASH_SECTOR - (len(image) % esp.ESP_FLASH_SECTOR)) t = time.time() flasher.flash_write(address, image, not args.no_progress) t = time.time() - t print('\rWrote %d bytes at 0x%x in %.1f seconds (%.1f kbit/s)...' % (len(image), address, t, len(image) / t * 8 / 1000)) print('Leaving...') if args.verify: print('Verifying just-written flash...') _verify_flash(esp, args, flasher) flasher.boot_fw() def image_info(args): image = LoadFirmwareImage(args.filename) print('Image version: %d' % image.version) print('Entry point: %08x' % image.entrypoint if image.entrypoint != 0 else 'Entry point not set') print('%d segments' % len(image.segments)) print checksum = ESPROM.ESP_CHECKSUM_MAGIC for (idx, (offset, size, data)) in enumerate(image.segments): if image.version == 2 and idx == 0: print('Segment 1: %d bytes IROM0 (no load address)' % size) else: print('Segment %d: %5d bytes at %08x' % (idx + 1, size, offset)) checksum = ESPROM.checksum(data, checksum) print print('Checksum: %02x (%s)' % (image.checksum, 'valid' if image.checksum == checksum else 'invalid!')) def make_image(args): image = ESPFirmwareImage() if len(args.segfile) == 0: raise FatalError('No segments specified') if len(args.segfile) != len(args.segaddr): raise FatalError('Number of specified files does not match number of specified addresses') for (seg, addr) in zip(args.segfile, args.segaddr): data = open(seg, 'rb').read() image.add_segment(addr, data) image.entrypoint = args.entrypoint image.save(args.output) def elf2image(args): e = ELFFile(args.input) if args.version == '1': image = ESPFirmwareImage() else: image = OTAFirmwareImage() irom_data = e.load_section('.irom0.text') if len(irom_data) == 0: raise FatalError(".irom0.text section not found in ELF file - can't create V2 image.") image.add_segment(0, irom_data, 16) image.entrypoint = e.get_entry_point() for section, start in ((".text", "_text_start"), (".data", "_data_start"), (".rodata", "_rodata_start")): data = e.load_section(section) image.add_segment(e.get_symbol_addr(start), data) image.flash_mode = {'qio':0, 'qout':1, 'dio':2, 'dout': 3}[args.flash_mode] image.flash_size_freq = {'4m':0x00, '2m':0x10, '8m':0x20, '16m':0x30, '32m':0x40, '16m-c1': 0x50, '32m-c1':0x60, '32m-c2':0x70}[args.flash_size] image.flash_size_freq += {'40m':0, '26m':1, '20m':2, '80m': 0xf}[args.flash_freq] irom_offs = e.get_symbol_addr("_irom0_text_start") - 0x40200000 if args.version == '1': if args.output is None: args.output = args.input + '-' image.save(args.output + "0x00000.bin") data = e.load_section(".irom0.text") if irom_offs < 0: raise FatalError('Address of symbol _irom0_text_start in ELF is located before flash mapping address. Bad linker script?') if (irom_offs & 0xFFF) != 0: # irom0 isn't flash sector aligned print("WARNING: irom0 section offset is 0x%08x. ELF is probably linked for 'elf2image --version=2'" % irom_offs) with open(args.output + "0x%05x.bin" % irom_offs, "wb") as f: f.write(data) f.close() else: # V2 OTA image if args.output is None: args.output = "%s-0x%05x.bin" % (os.path.splitext(args.input)[0], irom_offs & ~(ESPROM.ESP_FLASH_SECTOR - 1)) image.save(args.output) def read_mac(esp, args): mac = esp.read_mac() print('MAC: %s' % ':'.join(map(lambda x: '%02x' % x, mac))) def chip_id(esp, args): chipid = esp.chip_id() print('Chip ID: 0x%08x' % chipid) def erase_flash(esp, args): flasher = CesantaFlasher(esp, args.baud) print('Erasing flash (this may take a while)...') t = time.time() flasher.flash_erase_chip() t = time.time() - t print('Erase took %.1f seconds' % t) def run(esp, args): esp.run() def flash_id(esp, args): flash_id = esp.flash_id() esp.flash_finish(False) print('Manufacturer: %02x' % (flash_id & 0xff)) print('Device: %02x%02x' % ((flash_id >> 8) & 0xff, (flash_id >> 16) & 0xff)) def read_flash(esp, args): flasher = CesantaFlasher(esp, args.baud) t = time.time() data = flasher.flash_read(args.address, args.size, not args.no_progress) t = time.time() - t print('\rRead %d bytes at 0x%x in %.1f seconds (%.1f kbit/s)...' % (len(data), args.address, t, len(data) / t * 8 / 1000)) open(args.filename, 'wb').write(data) def _verify_flash(esp, args, flasher=None): differences = False flash_params = _get_flash_params(esp, args) if flasher is None: # get flash params before launching flasher flasher = CesantaFlasher(esp) for address, argfile in args.addr_filename: image = argfile.read() argfile.seek(0) # rewind in case we need it again image = _update_image_flash_params(address, flash_params, image) image_size = len(image) print('Verifying 0x%x (%d) bytes @ 0x%08x in flash against %s...' % (image_size, image_size, address, argfile.name)) # Try digest first, only read if there are differences. digest, _ = flasher.flash_digest(address, image_size) digest = hexify(digest).upper() expected_digest = hashlib.md5(image).hexdigest().upper() if digest == expected_digest: print('-- verify OK (digest matched)') continue else: differences = True if getattr(args, 'diff', 'no') != 'yes': print('-- verify FAILED (digest mismatch)') continue flash = flasher.flash_read(address, image_size) assert flash != image diff = [i for i in range(image_size) if flash[i] != image[i]] print('-- verify FAILED: %d differences, first @ 0x%08x' % (len(diff), address + diff[0])) for d in diff: flash_byte = flash[d] image_byte = image[d] if PYTHON2: flash_byte = ord(flash_byte) image_byte = ord(image_byte) print(' %08x %02x %02x' % (address + d, flash_byte, image_byte)) if differences: raise FatalError("Verify failed.") def verify_flash(esp, args, flash_params=None): _verify_flash(esp, args) def version(args): print(__version__) # # End of operations functions # def main(): parser = argparse.ArgumentParser(description='esptool.py v%s - ESP8266 ROM Bootloader Utility' % __version__, prog='esptool') parser.add_argument( '--port', '-p', help='Serial port device', default=os.environ.get('ESPTOOL_PORT', '/dev/ttyUSB0')) parser.add_argument( '--baud', '-b', help='Serial port baud rate used when flashing/reading', type=arg_auto_int, default=os.environ.get('ESPTOOL_BAUD', ESPROM.ESP_ROM_BAUD)) subparsers = parser.add_subparsers( dest='operation', help='Run esptool {command} -h for additional help') parser_load_ram = subparsers.add_parser( 'load_ram', help='Download an image to RAM and execute') parser_load_ram.add_argument('filename', help='Firmware image') parser_dump_mem = subparsers.add_parser( 'dump_mem', help='Dump arbitrary memory to disk') parser_dump_mem.add_argument('address', help='Base address', type=arg_auto_int) parser_dump_mem.add_argument('size', help='Size of region to dump', type=arg_auto_int) parser_dump_mem.add_argument('filename', help='Name of binary dump') parser_read_mem = subparsers.add_parser( 'read_mem', help='Read arbitrary memory location') parser_read_mem.add_argument('address', help='Address to read', type=arg_auto_int) parser_write_mem = subparsers.add_parser( 'write_mem', help='Read-modify-write to arbitrary memory location') parser_write_mem.add_argument('address', help='Address to write', type=arg_auto_int) parser_write_mem.add_argument('value', help='Value', type=arg_auto_int) parser_write_mem.add_argument('mask', help='Mask of bits to write', type=arg_auto_int) def add_spi_flash_subparsers(parent, auto_detect=False): """ Add common parser arguments for SPI flash properties """ parent.add_argument('--flash_freq', '-ff', help='SPI Flash frequency', choices=['40m', '26m', '20m', '80m'], default=os.environ.get('ESPTOOL_FF', '40m')) parent.add_argument('--flash_mode', '-fm', help='SPI Flash mode', choices=['qio', 'qout', 'dio', 'dout'], default=os.environ.get('ESPTOOL_FM', 'qio')) choices = ['4m', '2m', '8m', '16m', '32m', '16m-c1', '32m-c1', '32m-c2'] default = '4m' if auto_detect: default = 'detect' choices.insert(0, 'detect') parent.add_argument('--flash_size', '-fs', help='SPI Flash size in Mbit', type=lambda s: s.lower(), choices=choices, default=os.environ.get('ESPTOOL_FS', default)) parser_write_flash = subparsers.add_parser( 'write_flash', help='Write a binary blob to flash') parser_write_flash.add_argument('addr_filename', metavar='
', help='Address followed by binary filename, separated by space', action=AddrFilenamePairAction) add_spi_flash_subparsers(parser_write_flash, auto_detect=True) parser_write_flash.add_argument('--no-progress', '-p', help='Suppress progress output', action="store_true") parser_write_flash.add_argument('--verify', help='Verify just-written data on flash (recommended if concerned about flash integrity)', action='store_true') subparsers.add_parser( 'run', help='Run application code in flash') parser_image_info = subparsers.add_parser( 'image_info', help='Dump headers from an application image') parser_image_info.add_argument('filename', help='Image file to parse') parser_make_image = subparsers.add_parser( 'make_image', help='Create an application image from binary files') parser_make_image.add_argument('output', help='Output image file') parser_make_image.add_argument('--segfile', '-f', action='append', help='Segment input file') parser_make_image.add_argument('--segaddr', '-a', action='append', help='Segment base address', type=arg_auto_int) parser_make_image.add_argument('--entrypoint', '-e', help='Address of entry point', type=arg_auto_int, default=0) parser_elf2image = subparsers.add_parser( 'elf2image', help='Create an application image from ELF file') parser_elf2image.add_argument('input', help='Input ELF file') parser_elf2image.add_argument('--output', '-o', help='Output filename prefix (for version 1 image), or filename (for version 2 single image)', type=str) parser_elf2image.add_argument('--version', '-e', help='Output image version', choices=['1','2'], default='1') add_spi_flash_subparsers(parser_elf2image) subparsers.add_parser( 'read_mac', help='Read MAC address from OTP ROM') subparsers.add_parser( 'chip_id', help='Read Chip ID from OTP ROM') subparsers.add_parser( 'flash_id', help='Read SPI flash manufacturer and device ID') parser_read_flash = subparsers.add_parser( 'read_flash', help='Read SPI flash content') parser_read_flash.add_argument('address', help='Start address', type=arg_auto_int) parser_read_flash.add_argument('size', help='Size of region to dump', type=arg_auto_int) parser_read_flash.add_argument('filename', help='Name of binary dump') parser_read_flash.add_argument('--no-progress', '-p', help='Suppress progress output', action="store_true") parser_verify_flash = subparsers.add_parser( 'verify_flash', help='Verify a binary blob against flash') parser_verify_flash.add_argument('addr_filename', help='Address and binary file to verify there, separated by space', action=AddrFilenamePairAction) parser_verify_flash.add_argument('--diff', '-d', help='Show differences', choices=['no', 'yes'], default='no') add_spi_flash_subparsers(parser_verify_flash, auto_detect=True) subparsers.add_parser( 'erase_flash', help='Perform Chip Erase on SPI flash') subparsers.add_parser( 'version', help='Print esptool version') # internal sanity check - every operation matches a module function of the same name for operation in subparsers.choices.keys(): assert operation in globals(), "%s should be a module function" % operation args = parser.parse_args() print('esptool.py v%s' % __version__) # operation function can take 1 arg (args), 2 args (esp, arg) # or be a member function of the ESPROM class. if args.operation is None: parser.print_help() sys.exit(1) operation_func = globals()[args.operation] operation_args,_,_,_ = inspect.getargspec(operation_func) if operation_args[0] == 'esp': # operation function takes an ESPROM connection object initial_baud = min(ESPROM.ESP_ROM_BAUD, args.baud) # don't sync faster than the default baud rate esp = ESPROM(args.port, initial_baud) esp.connect() operation_func(esp, args) else: operation_func(args) class AddrFilenamePairAction(argparse.Action): """ Custom parser class for the address/filename pairs passed as arguments """ def __init__(self, option_strings, dest, nargs='+', **kwargs): super(AddrFilenamePairAction, self).__init__(option_strings, dest, nargs, **kwargs) def __call__(self, parser, namespace, values, option_string=None): # validate pair arguments pairs = [] for i in range(0,len(values),2): try: address = int(values[i],0) except ValueError as e: raise argparse.ArgumentError(self,'Address "%s" must be a number' % values[i]) try: argfile = open(values[i + 1], 'rb') except IOError as e: raise argparse.ArgumentError(self, e) except IndexError: raise argparse.ArgumentError(self,'Must be pairs of an address and the binary filename to write there') pairs.append((address, argfile)) setattr(namespace, self.dest, pairs) # This is "wrapped" stub_flasher.c, to be loaded using run_stub. _CESANTA_FLASHER_STUB = """\ {"code_start": 1074790404, "code": "080000601C000060000000601000006031FCFF71FCFF\ 81FCFFC02000680332D218C020004807404074DCC48608005823C0200098081BA5A9239245005803\ 1B555903582337350129230B446604DFC6F3FF21EEFFC0200069020DF0000000010078480040004A\ 0040B449004012C1F0C921D911E901DD0209312020B4ED033C2C56C2073020B43C3C56420701F5FF\ C000003C4C569206CD0EEADD860300202C4101F1FFC0000056A204C2DCF0C02DC0CC6CCAE2D1EAFF\ 0606002030F456D3FD86FBFF00002020F501E8FFC00000EC82D0CCC0C02EC0C73DEB2ADC46030020\ 2C4101E1FFC00000DC42C2DCF0C02DC056BCFEC602003C5C8601003C6C4600003C7C08312D0CD811\ C821E80112C1100DF0000C180000140010400C0000607418000064180000801800008C1800008418\ 0000881800009018000018980040880F0040A80F0040349800404C4A0040740F0040800F0040980F\ 00400099004012C1E091F5FFC961CD0221EFFFE941F9310971D9519011C01A223902E2D1180C0222\ 6E1D21E4FF31E9FF2AF11A332D0F42630001EAFFC00000C030B43C2256A31621E1FF1A2228022030\ B43C3256B31501ADFFC00000DD023C4256ED1431D6FF4D010C52D90E192E126E0101DDFFC0000021\ D2FF32A101C020004802303420C0200039022C0201D7FFC00000463300000031CDFF1A333803D023\ C03199FF27B31ADC7F31CBFF1A3328030198FFC0000056C20E2193FF2ADD060E000031C6FF1A3328\ 030191FFC0000056820DD2DD10460800000021BEFF1A2228029CE231BCFFC020F51A33290331BBFF\ C02C411A332903C0F0F4222E1D22D204273D9332A3FFC02000280E27B3F721ABFF381E1A2242A400\ 01B5FFC00000381E2D0C42A40001B3FFC0000056120801B2FFC00000C02000280EC2DC0422D2FCC0\ 2000290E01ADFFC00000222E1D22D204226E1D281E22D204E7B204291E860000126E012198FF32A0\ 042A21C54C003198FF222E1D1A33380337B202C6D6FF2C02019FFFC000002191FF318CFF1A223A31\ 019CFFC00000218DFF1C031A22C549000C02060300003C528601003C624600003C72918BFF9A1108\ 71C861D851E841F83112C1200DF00010000068100000581000007010000074100000781000007C10\ 0000801000001C4B0040803C004091FDFF12C1E061F7FFC961E941F9310971D9519011C01A662906\ 21F3FFC2D1101A22390231F2FF0C0F1A33590331EAFFF26C1AED045C2247B3028636002D0C016DFF\ C0000021E5FF41EAFF2A611A4469040622000021E4FF1A222802F0D2C0D7BE01DD0E31E0FF4D0D1A\ 3328033D0101E2FFC00000561209D03D2010212001DFFFC000004D0D2D0C3D01015DFFC0000041D5\ FFDAFF1A444804D0648041D2FF1A4462640061D1FF106680622600673F1331D0FF10338028030C43\ 853A002642164613000041CAFF222C1A1A444804202FC047328006F6FF222C1A273F3861C2FF222C\ 1A1A6668066732B921BDFF3D0C1022800148FFC0000021BAFF1C031A2201BFFFC000000C02460300\ 5C3206020000005C424600005C5291B7FF9A110871C861D851E841F83112C1200DF0B0100000C010\ 0000D010000012C1E091FEFFC961D951E9410971F931CD039011C0ED02DD0431A1FF9C1422A06247\ B302062D0021F4FF1A22490286010021F1FF1A223902219CFF2AF12D0F011FFFC00000461C0022D1\ 10011CFFC0000021E9FFFD0C1A222802C7B20621E6FF1A22F8022D0E3D014D0F0195FFC000008C52\ 22A063C6180000218BFF3D01102280F04F200111FFC00000AC7D22D1103D014D0F010DFFC0000021\ D6FF32D110102280010EFFC0000021D3FF1C031A220185FFC00000FAEEF0CCC056ACF821CDFF317A\ FF1A223A310105FFC0000021C9FF1C031A22017CFFC000002D0C91C8FF9A110871C861D851E841F8\ 3112C1200DF0000200600000001040020060FFFFFF0012C1E00C02290131FAFF21FAFF026107C961\ C02000226300C02000C80320CC10564CFF21F5FFC02000380221F4FF20231029010C432D010163FF\ C0000008712D0CC86112C1200DF00080FE3F8449004012C1D0C9A109B17CFC22C1110C13C51C0026\ 1202463000220111C24110B68202462B0031F5FF3022A02802A002002D011C03851A0066820A2801\ 32210105A6FF0607003C12C60500000010212032A01085180066A20F2221003811482105B3FF2241\ 10861A004C1206FDFF2D011C03C5160066B20E280138114821583185CFFF06F7FF005C1286F5FF00\ 10212032A01085140066A20D2221003811482105E1FF06EFFF0022A06146EDFF45F0FFC6EBFF0000\ 01D2FFC0000006E9FF000C022241100C1322C110C50F00220111060600000022C1100C13C50E0022\ 011132C2FA303074B6230206C8FF08B1C8A112C1300DF0000000000010404F484149007519031027\ 000000110040A8100040BC0F0040583F0040CC2E00401CE20040D83900408000004021F4FF12C1E0\ C961C80221F2FF097129010C02D951C91101F4FFC0000001F3FFC00000AC2C22A3E801F2FFC00000\ 21EAFFC031412A233D0C01EFFFC000003D0222A00001EDFFC00000C1E4FF2D0C01E8FFC000002D01\ 32A004450400C5E7FFDD022D0C01E3FFC00000666D1F4B2131DCFF4600004B22C0200048023794F5\ 31D9FFC0200039023DF08601000001DCFFC000000871C861D85112C1200DF000000012C1F0026103\ 01EAFEC00000083112C1100DF000643B004012C1D0E98109B1C9A1D991F97129013911E2A0C001FA\ FFC00000CD02E792F40C0DE2A0C0F2A0DB860D00000001F4FFC00000204220E71240F7921C226102\ 01EFFFC0000052A0DC482157120952A0DD571205460500004D0C3801DA234242001BDD3811379DC5\ C6000000000C0DC2A0C001E3FFC00000C792F608B12D0DC8A1D891E881F87112C1300DF00000", "\ entry": 1074792180, "num_params": 1, "params_start": 1074790400, "data": "FE0510\ 401A0610403B0610405A0610407A061040820610408C0610408C061040", "data_start": 10736\ 43520} """ if __name__ == '__main__': try: main() except FatalError as e: print('\nA fatal error occurred: %s' % e) sys.exit(2) ================================================ FILE: esp8266/espwrite.py ================================================ #!/usr/bin/env python from time import sleep import RPi.GPIO as GPIO # declaration of chip reset and program pins def GPIO_custominit(): GPIO.setmode(GPIO.BCM) GPIO.setup(17,GPIO.OUT,initial=1) GPIO.setup(27,GPIO.OUT,initial=1) GPIO_custominit() # bringing chip into program mode GPIO.output(17,0) sleep(0.5) GPIO.output(27,0) sleep(0.5) GPIO.output(17,1) sleep(0.5) GPIO.output(27,1) sleep(0.5) # information for user print "Chip is in write mode" # clean exit GPIO.cleanup() ================================================ FILE: esp8266/install.sh ================================================ #!/bin/bash ./espwrite.py ./esptool.py -p /dev/ttyAMA0 -b 115200 write_flash --flash_size=detect 0 jsonsniffer.bin ./espreset.py ================================================ FILE: esp8266/jsonsniffer/jsonsniffer.ino ================================================ /* * By Lars Juhl Jensen 20170415 compiled on OS X using Arduino 1.8.2 * Distributed under the MIT license (URL) * * Based on Ray Burnette's ESP8266 Mini Sniff (MIT) https://www.hackster.io/rayburne/esp8266-mini-sniff-f6b93a * in turn based on RandDruid/esp8266-deauth (MIT) https://github.com/RandDruid/esp8266-deauth * inspired by kripthor/WiFiBeaconJam (no license) https://github.com/kripthor/WiFiBeaconJam * https://git.schneefux.xyz/schneefux/jimmiejammer/src/master/jimmiejammer.ino * * Fake beacon code based on H-LK/ESP8266-SSID-Text-Broadcast (no license) https://github.com/H-LK/ESP8266-SSID-Text-Broadcast * in turn based on kripthor/WiFiBeaconJam (no license) https://github.com/kripthor/WiFiBeaconJam */ //#include #include extern "C" { #include } //#include // Callback methods prototypes //void t2Callback(); //Task t2(3000, TASK_FOREVER, &t2Callback); //Scheduler runner; /* * Constants. */ #define ETH_MAC_LEN 6 #define MAX_BEACONS 256 #define MAX_CLIENTS 256 /* * Expose Espressif SDK functionality. */ extern "C" { #include "user_interface.h" typedef void (*freedom_outside_cb_t)(uint8 status); int wifi_register_send_pkt_freedom_cb(freedom_outside_cb_t cb); void wifi_unregister_send_pkt_freedom_cb(void); int wifi_send_pkt_freedom(uint8 *buf, int len, bool sys_seq); } /* * Promiscous callback structures, see ESP manual */ struct RxControl { signed rssi: 8; unsigned rate: 4; unsigned is_group: 1; unsigned: 1; unsigned sig_mode: 2; unsigned legacy_length: 12; unsigned damatch0: 1; unsigned damatch1: 1; unsigned bmatch0: 1; unsigned bmatch1: 1; unsigned MCS: 7; unsigned CWB: 1; unsigned HT_length: 16; unsigned Smoothing: 1; unsigned Not_Sounding: 1; unsigned: 1; unsigned Aggregation: 1; unsigned STBC: 2; unsigned FEC_CODING: 1; unsigned SGI: 1; unsigned rxend_state: 8; unsigned ampdu_cnt: 8; unsigned channel: 4; unsigned: 12; }; struct sniffer_buf1 { struct RxControl rx_ctrl; uint8_t buf[112]; uint16_t cnt; uint16_t len; }; struct sniffer_buf2 { struct RxControl rx_ctrl; uint8_t buf[36]; uint16_t cnt; struct { uint16_t len; uint16_t seq; uint8_t address3[ETH_MAC_LEN]; } lenseq[1]; }; /* * Data structure for beacon information */ struct beaconinfo { uint8_t beacon[ETH_MAC_LEN]; uint8_t ssid[33]; uint8_t ssid_len; uint8_t channel; uint8_t rssi; bool err; }; /* * Data structure for client information */ struct clientinfo { uint8_t beacon[ETH_MAC_LEN]; uint8_t station[ETH_MAC_LEN]; uint8_t rssi; uint16_t seq; bool err; }; /* * Global variables for storing beacons and clients */ beaconinfo beacons_known[MAX_BEACONS]; clientinfo clients_known[MAX_CLIENTS]; char fake_beacon_ssid[14][16]; unsigned int beacons_count = 0; unsigned int beacons_index = 0; unsigned int clients_count = 0; unsigned int clients_index = 0; uint8_t channel = 1; uint8_t nothing_new = 0; /* * Function that parses beacon information from frame */ struct beaconinfo parse_beacon(uint8_t *frame, uint16_t framelen, signed rssi) { struct beaconinfo bi; bi.ssid_len = 0; bi.channel = 0; bi.err = 0; bi.rssi = -rssi; int pos = 36; if (frame[pos] == 0x00) { while (pos < framelen) { switch (frame[pos]) { case 0x00: //SSID bi.ssid_len = (int) frame[pos + 1]; if (bi.ssid_len == 0) { memset(bi.ssid, '\x00', 33); break; } if (bi.ssid_len < 0) { bi.err = 1; break; } if (bi.ssid_len > 32) { bi.err = 1; break; } memset(bi.ssid, '\x00', 33); memcpy(bi.ssid, frame + pos + 2, bi.ssid_len); bi.err = 0; break; case 0x03: //Channel bi.channel = (int) frame[pos + 2]; pos = -1; break; default: break; } if (pos < 0) break; pos += (int) frame[pos + 1] + 2; } } else { bi.err = 1; } memcpy(bi.beacon, frame + 10, ETH_MAC_LEN); return bi; } /* * Function that parses client information from packet */ uint8_t broadcast1[3] = { 0x01, 0x00, 0x5e }; uint8_t broadcast2[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; uint8_t broadcast3[3] = { 0x33, 0x33, 0x00 }; struct clientinfo parse_client(uint8_t *frame, uint16_t framelen, signed rssi) { struct clientinfo ci; ci.err = 0; ci.rssi = -rssi; int pos = 36; uint8_t *beacon; uint8_t *station; uint8_t ds; ds = frame[1] & 3; switch (ds) { case 0: beacon = frame+16; station = frame+10; break; case 1: beacon = frame+4; station = frame+10; break; case 2: beacon = frame+10; if (memcmp(frame+4, broadcast1, 3) || memcmp(frame+4, broadcast2, 3) || memcmp(frame+4, broadcast3, 3)) { station = frame+16; } else { station = frame+4; } break; case 3: beacon = frame+10; station = frame+4; break; } memcpy(ci.station, station, ETH_MAC_LEN); memcpy(ci.beacon, beacon, ETH_MAC_LEN); ci.seq = frame[23] * 0xFF + (frame[22] & 0xF0); return ci; } /* * Function that stores information about single beacon */ int store_beacon(beaconinfo bi) { int known = 0; int u; for (u = 0; u < beacons_count; u++) { if (!memcmp(beacons_known[u].beacon, bi.beacon, ETH_MAC_LEN)) { known = 1; break; } } if (known) { memcpy(&beacons_known[u], &bi, sizeof(bi)); } else { memcpy(&beacons_known[beacons_index], &bi, sizeof(bi)); if (beacons_count < MAX_BEACONS) beacons_count++; beacons_index++; if (beacons_index == MAX_BEACONS) beacons_index = 0; } return known; } /* * Function that stores information about single client */ int store_client(clientinfo ci) { int known = 0; int u; for (u = 0; u < clients_count; u++) { if (!memcmp(clients_known[u].station, ci.station, ETH_MAC_LEN)) { known = 1; break; } } if (known) { memcpy(&clients_known[u], &ci, sizeof(ci)); } else { memcpy(&clients_known[clients_index], &ci, sizeof(ci)); if (clients_count < MAX_CLIENTS) clients_count++; clients_index++; if (clients_index == MAX_CLIENTS) clients_index = 0; } return known; } /* * Callback function for promiscuous mode that parses received packet */ void parse_packet(uint8_t *buf, uint16_t len) { int i = 0; if (len == 12) { struct RxControl *sniffer = (struct RxControl*) buf; } else if (len == 128) { struct sniffer_buf1 *sniffer = (struct sniffer_buf1*) buf; struct beaconinfo bi = parse_beacon(sniffer->buf, 112, sniffer->rx_ctrl.rssi); if (bi.err == 0 && store_beacon(bi) == 0) nothing_new = 0; } else { struct sniffer_buf2 *sniffer = (struct sniffer_buf2*) buf; if ((sniffer->buf[0] == 0x08) || (sniffer->buf[0] == 0x88)) { struct clientinfo ci = parse_client(sniffer->buf, 36, sniffer->rx_ctrl.rssi); if (memcmp(ci.beacon, ci.station, ETH_MAC_LEN)) { if (ci.err == 0 && store_client(ci) == 0) nothing_new = 0; } } } } /* * Send deauth packets to client. */ uint8_t deauth_template[26] = { 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6a, 0x01, 0x00 }; void deauth_client(clientinfo ci) { uint8_t packet_buffer[64]; memcpy(packet_buffer, deauth_template, 26); memcpy(packet_buffer + 4, ci.station, ETH_MAC_LEN); memcpy(packet_buffer + 10, ci.beacon, ETH_MAC_LEN); memcpy(packet_buffer + 16, ci.beacon, ETH_MAC_LEN); for (uint8_t i = 0; i < 0x10; i++) { uint16_t seq = ci.seq + 0x10 * i; packet_buffer[22] = seq % 0xFF; packet_buffer[23] = seq / 0xFF; wifi_send_pkt_freedom(packet_buffer, 26, 0); delay(1); } } /* * Send fake beacon packets. */ uint8_t beacon_packet[128] = { 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0xc0, 0x6c, 0x83, 0x51, 0xf7, 0x8f, 0x0f, 0x00, 0x00, 0x00, 0x64, 0x00, 0x01, 0x04, 0x00, 0x10, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x01, 0x08, 0x82, 0x84, 0x8b, 0x96, 0x24, 0x30, 0x48, 0x6c, 0x03, 0x01, 0x04 }; void fake_beacon(char *ssid, uint8_t packets) { if (strlen(ssid) > 0 && packets > 0) { beacon_packet[10] = beacon_packet[16] = random(256); beacon_packet[11] = beacon_packet[17] = random(256); beacon_packet[12] = beacon_packet[18] = random(256); beacon_packet[13] = beacon_packet[19] = random(256); beacon_packet[14] = beacon_packet[20] = random(256); beacon_packet[15] = beacon_packet[21] = random(256); strncpy((char *)beacon_packet+38, ssid, 16); for (uint8_t i = 0; i < packets; i++) { wifi_send_pkt_freedom(beacon_packet, 57, 0); } } } /* * Function that prints single beacon in JSON format */ void print_beacon(beaconinfo bi) { Serial.print("\""); for (int i = 0; i < ETH_MAC_LEN; i++) { if (i > 0) Serial.print(":"); Serial.printf("%02x", bi.beacon[i]); } Serial.printf("\":{\"channel\":%d,\"rssi\":-%d,\"ssid\":\"%s\"}", bi.channel, bi.rssi, bi.ssid); } /* * Function that prints single client in JSON format */ void print_client(clientinfo ci) { Serial.print("\""); for (int i = 0; i < ETH_MAC_LEN; i++) { if (i > 0) Serial.print(":"); Serial.printf("%02x", ci.station[i]); } Serial.print("\":{\"beacon\":\""); for (int i = 0; i < ETH_MAC_LEN; i++) { if (i > 0) Serial.print(":"); Serial.printf("%02x", ci.beacon[i]); } Serial.printf("\",\"rssi\":-%d}", ci.rssi); } /* * Function that prints all beacons in JSON format */ void print_beacons() { Serial.print("{"); for (int u = 0; u < beacons_count; u++) { if (u > 0) Serial.print(","); print_beacon(beacons_known[u]); } Serial.print("}"); } /* * Function that prints all clients in JSON format */ void print_clients() { Serial.print("{"); for (int u = 0; u < clients_count; u++) { if (u > 0) Serial.print(","); print_client(clients_known[u]); } Serial.print("}"); } /* * Function that prints all beacons and clients in JSON format */ void print_all() { Serial.print("{\"beacons\":"); print_beacons(); Serial.print(",\"clients\":"); print_clients(); Serial.print("}"); } /* * Function that reads and executes a command from serial */ void read_command() { char command[64]; command[Serial.readBytesUntil('\n', command, 63)] = '\0'; char *argument = strchr(command, ' '); if (argument != NULL) { *argument = '\0'; argument++; } if (strcmp(command, "deauth_client") == 0) { uint8_t station[ETH_MAC_LEN]; for (int i = 0; i < ETH_MAC_LEN; i++) { station[i] = strtol(argument+3*i, NULL, HEX); } for (int u = 0; u < clients_count; u++) { if (memcmp(clients_known[u].station, station, ETH_MAC_LEN) == 0) { deauth_client(clients_known[u]); break; } } } else if (strcmp(command, "fake_beacon") == 0) { char *argument_ssid; uint8_t argument_channel = strtol(argument, &argument_ssid, DEC); if (argument_ssid != argument) { if (*argument_ssid != '\0') argument_ssid++; memset(fake_beacon_ssid[argument_channel-1], 0, 16); strncpy(fake_beacon_ssid[argument_channel-1], argument_ssid, 16); } } else if (strcmp(command, "print_all") == 0) { print_all(); } else if (strcmp(command, "print_beacons") == 0) { print_beacons(); } else if (strcmp(command, "print_clients") == 0) { print_clients(); } Serial.println(""); } /* * Initial setup */ void setup() { Serial.begin(115200); /* Serial.println("Scheduler TEST"); runner.init(); Serial.println("Initialized scheduler"); runner.addTask(t2); Serial.println("added t2"); Serial.println("test de envio"); t2.enable(); Serial.println("Enabled t2"); delay(3000); */ wifi_set_opmode(STATION_MODE); wifi_set_channel(channel); wifi_promiscuous_enable(0); wifi_set_promiscuous_rx_cb(parse_packet); wifi_promiscuous_enable(1); } /* * Main loop */ void loop() { if (nothing_new >= 10) { nothing_new = 0; channel++; if (channel == 15) channel = 1; wifi_set_channel(channel); } else { nothing_new++; } fake_beacon(fake_beacon_ssid[channel-1], 4); delay(1); if (Serial.available() > 0) { read_command(); } // runner.execute(); } void t2Callback() { wifi_promiscuous_enable(0); Serial.print("paramos sniffer "); Serial.println(millis()); Serial.print("encendemos sniffer "); wifi_set_opmode(STATION_MODE); wifi_set_channel(channel); wifi_promiscuous_enable(0); wifi_set_promiscuous_rx_cb(parse_packet); wifi_promiscuous_enable(1); } ================================================ FILE: flare.json ================================================ { "name": "flare", "children": [ { "name": "analytics", "children": [ { "name": "cluster", "children": [ {"name": "AgglomerativeCluster", "size": 3938}, {"name": "CommunityStructure", "size": 3812}, {"name": "HierarchicalCluster", "size": 6714}, {"name": "MergeEdge", "size": 743} ] }, { "name": "graph", "children": [ {"name": "BetweennessCentrality", "size": 3534}, {"name": "LinkDistance", "size": 5731}, {"name": "MaxFlowMinCut", "size": 7840}, {"name": "ShortestPaths", "size": 5914}, {"name": "SpanningTree", "size": 3416} ] }, { "name": "optimization", "children": [ {"name": "AspectRatioBanker", "size": 7074} ] } ] }, { "name": "animate", "children": [ {"name": "Easing", "size": 17010}, {"name": "FunctionSequence", "size": 5842}, { "name": "interpolate", "children": [ {"name": "ArrayInterpolator", "size": 1983}, {"name": "ColorInterpolator", "size": 2047}, {"name": "DateInterpolator", "size": 1375}, {"name": "Interpolator", "size": 8746}, {"name": "MatrixInterpolator", "size": 2202}, {"name": "NumberInterpolator", "size": 1382}, {"name": "ObjectInterpolator", "size": 1629}, {"name": "PointInterpolator", "size": 1675}, {"name": "RectangleInterpolator", "size": 2042} ] }, {"name": "ISchedulable", "size": 1041}, {"name": "Parallel", "size": 5176}, {"name": "Pause", "size": 449}, {"name": "Scheduler", "size": 5593}, {"name": "Sequence", "size": 5534}, {"name": "Transition", "size": 9201}, {"name": "Transitioner", "size": 19975}, {"name": "TransitionEvent", "size": 1116}, {"name": "Tween", "size": 6006} ] }, { "name": "data", "children": [ { "name": "converters", "children": [ {"name": "Converters", "size": 721}, {"name": "DelimitedTextConverter", "size": 4294}, {"name": "GraphMLConverter", "size": 9800}, {"name": "IDataConverter", "size": 1314}, {"name": "JSONConverter", "size": 2220} ] }, {"name": "DataField", "size": 1759}, {"name": "DataSchema", "size": 2165}, {"name": "DataSet", "size": 586}, {"name": "DataSource", "size": 3331}, {"name": "DataTable", "size": 772}, {"name": "DataUtil", "size": 3322} ] }, { "name": "display", "children": [ {"name": "DirtySprite", "size": 8833}, {"name": "LineSprite", "size": 1732}, {"name": "RectSprite", "size": 3623}, {"name": "TextSprite", "size": 10066} ] }, { "name": "flex", "children": [ {"name": "FlareVis", "size": 4116} ] }, { "name": "physics", "children": [ {"name": "DragForce", "size": 1082}, {"name": "GravityForce", "size": 1336}, {"name": "IForce", "size": 319}, {"name": "NBodyForce", "size": 10498}, {"name": "Particle", "size": 2822}, {"name": "Simulation", "size": 9983}, {"name": "Spring", "size": 2213}, {"name": "SpringForce", "size": 1681} ] }, { "name": "query", "children": [ {"name": "AggregateExpression", "size": 1616}, {"name": "And", "size": 1027}, {"name": "Arithmetic", "size": 3891}, {"name": "Average", "size": 891}, {"name": "BinaryExpression", "size": 2893}, {"name": "Comparison", "size": 5103}, {"name": "CompositeExpression", "size": 3677}, {"name": "Count", "size": 781}, {"name": "DateUtil", "size": 4141}, {"name": "Distinct", "size": 933}, {"name": "Expression", "size": 5130}, {"name": "ExpressionIterator", "size": 3617}, {"name": "Fn", "size": 3240}, {"name": "If", "size": 2732}, {"name": "IsA", "size": 2039}, {"name": "Literal", "size": 1214}, {"name": "Match", "size": 3748}, {"name": "Maximum", "size": 843}, { "name": "methods", "children": [ {"name": "add", "size": 593}, {"name": "and", "size": 330}, {"name": "average", "size": 287}, {"name": "count", "size": 277}, {"name": "distinct", "size": 292}, {"name": "div", "size": 595}, {"name": "eq", "size": 594}, {"name": "fn", "size": 460}, {"name": "gt", "size": 603}, {"name": "gte", "size": 625}, {"name": "iff", "size": 748}, {"name": "isa", "size": 461}, {"name": "lt", "size": 597}, {"name": "lte", "size": 619}, {"name": "max", "size": 283}, {"name": "min", "size": 283}, {"name": "mod", "size": 591}, {"name": "mul", "size": 603}, {"name": "neq", "size": 599}, {"name": "not", "size": 386}, {"name": "or", "size": 323}, {"name": "orderby", "size": 307}, {"name": "range", "size": 772}, {"name": "select", "size": 296}, {"name": "stddev", "size": 363}, {"name": "sub", "size": 600}, {"name": "sum", "size": 280}, {"name": "update", "size": 307}, {"name": "variance", "size": 335}, {"name": "where", "size": 299}, {"name": "xor", "size": 354}, {"name": "_", "size": 264} ] }, {"name": "Minimum", "size": 843}, {"name": "Not", "size": 1554}, {"name": "Or", "size": 970}, {"name": "Query", "size": 13896}, {"name": "Range", "size": 1594}, {"name": "StringUtil", "size": 4130}, {"name": "Sum", "size": 791}, {"name": "Variable", "size": 1124}, {"name": "Variance", "size": 1876}, {"name": "Xor", "size": 1101} ] }, { "name": "scale", "children": [ {"name": "IScaleMap", "size": 2105}, {"name": "LinearScale", "size": 1316}, {"name": "LogScale", "size": 3151}, {"name": "OrdinalScale", "size": 3770}, {"name": "QuantileScale", "size": 2435}, {"name": "QuantitativeScale", "size": 4839}, {"name": "RootScale", "size": 1756}, {"name": "Scale", "size": 4268}, {"name": "ScaleType", "size": 1821}, {"name": "TimeScale", "size": 5833} ] }, { "name": "util", "children": [ {"name": "Arrays", "size": 8258}, {"name": "Colors", "size": 10001}, {"name": "Dates", "size": 8217}, {"name": "Displays", "size": 12555}, {"name": "Filter", "size": 2324}, {"name": "Geometry", "size": 10993}, { "name": "heap", "children": [ {"name": "FibonacciHeap", "size": 9354}, {"name": "HeapNode", "size": 1233} ] }, {"name": "IEvaluable", "size": 335}, {"name": "IPredicate", "size": 383}, {"name": "IValueProxy", "size": 874}, { "name": "math", "children": [ {"name": "DenseMatrix", "size": 3165}, {"name": "IMatrix", "size": 2815}, {"name": "SparseMatrix", "size": 3366} ] }, {"name": "Maths", "size": 17705}, {"name": "Orientation", "size": 1486}, { "name": "palette", "children": [ {"name": "ColorPalette", "size": 6367}, {"name": "Palette", "size": 1229}, {"name": "ShapePalette", "size": 2059}, {"name": "SizePalette", "size": 2291} ] }, {"name": "Property", "size": 5559}, {"name": "Shapes", "size": 19118}, {"name": "Sort", "size": 6887}, {"name": "Stats", "size": 6557}, {"name": "Strings", "size": 22026} ] }, { "name": "vis", "children": [ { "name": "axis", "children": [ {"name": "Axes", "size": 1302}, {"name": "Axis", "size": 24593}, {"name": "AxisGridLine", "size": 652}, {"name": "AxisLabel", "size": 636}, {"name": "CartesianAxes", "size": 6703} ] }, { "name": "controls", "children": [ {"name": "AnchorControl", "size": 2138}, {"name": "ClickControl", "size": 3824}, {"name": "Control", "size": 1353}, {"name": "ControlList", "size": 4665}, {"name": "DragControl", "size": 2649}, {"name": "ExpandControl", "size": 2832}, {"name": "HoverControl", "size": 4896}, {"name": "IControl", "size": 763}, {"name": "PanZoomControl", "size": 5222}, {"name": "SelectionControl", "size": 7862}, {"name": "TooltipControl", "size": 8435} ] }, { "name": "data", "children": [ {"name": "Data", "size": 20544}, {"name": "DataList", "size": 19788}, {"name": "DataSprite", "size": 10349}, {"name": "EdgeSprite", "size": 3301}, {"name": "NodeSprite", "size": 19382}, { "name": "render", "children": [ {"name": "ArrowType", "size": 698}, {"name": "EdgeRenderer", "size": 5569}, {"name": "IRenderer", "size": 353}, {"name": "ShapeRenderer", "size": 2247} ] }, {"name": "ScaleBinding", "size": 11275}, {"name": "Tree", "size": 7147}, {"name": "TreeBuilder", "size": 9930} ] }, { "name": "events", "children": [ {"name": "DataEvent", "size": 2313}, {"name": "SelectionEvent", "size": 1880}, {"name": "TooltipEvent", "size": 1701}, {"name": "VisualizationEvent", "size": 1117} ] }, { "name": "legend", "children": [ {"name": "Legend", "size": 20859}, {"name": "LegendItem", "size": 4614}, {"name": "LegendRange", "size": 10530} ] }, { "name": "operator", "children": [ { "name": "distortion", "children": [ {"name": "BifocalDistortion", "size": 4461}, {"name": "Distortion", "size": 6314}, {"name": "FisheyeDistortion", "size": 3444} ] }, { "name": "encoder", "children": [ {"name": "ColorEncoder", "size": 3179}, {"name": "Encoder", "size": 4060}, {"name": "PropertyEncoder", "size": 4138}, {"name": "ShapeEncoder", "size": 1690}, {"name": "SizeEncoder", "size": 1830} ] }, { "name": "filter", "children": [ {"name": "FisheyeTreeFilter", "size": 5219}, {"name": "GraphDistanceFilter", "size": 3165}, {"name": "VisibilityFilter", "size": 3509} ] }, {"name": "IOperator", "size": 1286}, { "name": "label", "children": [ {"name": "Labeler", "size": 9956}, {"name": "RadialLabeler", "size": 3899}, {"name": "StackedAreaLabeler", "size": 3202} ] }, { "name": "layout", "children": [ {"name": "AxisLayout", "size": 6725}, {"name": "BundledEdgeRouter", "size": 3727}, {"name": "CircleLayout", "size": 9317}, {"name": "CirclePackingLayout", "size": 12003}, {"name": "DendrogramLayout", "size": 4853}, {"name": "ForceDirectedLayout", "size": 8411}, {"name": "IcicleTreeLayout", "size": 4864}, {"name": "IndentedTreeLayout", "size": 3174}, {"name": "Layout", "size": 7881}, {"name": "NodeLinkTreeLayout", "size": 12870}, {"name": "PieLayout", "size": 2728}, {"name": "RadialTreeLayout", "size": 12348}, {"name": "RandomLayout", "size": 870}, {"name": "StackedAreaLayout", "size": 9121}, {"name": "TreeMapLayout", "size": 9191} ] }, {"name": "Operator", "size": 2490}, {"name": "OperatorList", "size": 5248}, {"name": "OperatorSequence", "size": 4190}, {"name": "OperatorSwitch", "size": 2581}, {"name": "SortOperator", "size": 2023} ] }, {"name": "Visualization", "size": 16540} ] } ] } ================================================ FILE: flare1.json ================================================ {"name": "root", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Unknown", "size": 6.6332495807108}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 4.0}, {"name": "Comtrend", "size": 3.4641016151377544}]}, {"name": "ASUS", "children": [{"name": "Cybertan", "size": 10.770329614269007}, {"name": "Huawei", "size": 10.583005244258363}]}, {"name": "Unknown", "children": [{"name": "Quantenn", "size": 10.392304845413264}, {"name": "Huawei", "size": 10.0}, {"name": "Unknown", "size": 10.0}]}, {"name": "Apple", "size": 5.291502622129181}, {"name": "Comtrend", "children": [{"name": "Comtrend", "size": 3.4641016151377544}, {"name": "Apple", "size": 4.898979485566356}, {"name": "Unknown", "size": 3.4641016151377544}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 3.4641016151377544}]}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "Amper", "size": 4.898979485566356}, {"name": "Mitrasta", "size": 4.898979485566356}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 2.8284271247461903}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 5.656854249492381}, {"name": "Unknown", "size": 6.324555320336759}, {"name": "Motorola", "size": 5.291502622129181}, {"name": "AskeyCom", "size": 6.324555320336759}]}, {"name": "Motorola", "size": 5.656854249492381}, {"name": "Unknown", "size": 15.748015748023622}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 5.291502622129181}, {"name": "HonHaiPr", "size": 5.291502622129181}, {"name": "Google", "size": 3.4641016151377544}]}, {"name": "Unknown", "children": [{"name": "Samsung", "size": 6.6332495807108}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 5.291502622129181}, {"name": "HP", "size": 5.291502622129181}, {"name": "AskeyCom", "size": 4.898979485566356}]}, {"name": "TP-Link", "children": [{"name": "Espressi", "size": 10.0}, {"name": "Unknown", "size": 15.874507866387544}, {"name": "Intel", "size": 14.966629547095765}, {"name": "XiaomiCo", "size": 15.491933384829668}, {"name": "Intel", "size": 14.696938456699069}]}, {"name": "Mitrasta", "children": [{"name": "Mitrasta", "size": 6.6332495807108}]}, {"name": "TP-Link", "children": [{"name": "Unknown", "size": 8.48528137423857}]}, {"name": "Unknown", "children": [{"name": "Apple", "size": 9.797958971132712}]}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "Unknown", "size": 6.6332495807108}, {"name": "Unknown", "size": 4.47213595499958}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Unknown", "size": 4.898979485566356}, {"name": "Ubiquiti", "children": [{"name": "Routerbo", "size": 6.324555320336759}, {"name": "Huawei", "size": 5.291502622129181}, {"name": "Samsung", "size": 5.291502622129181}, {"name": "Fujitsu", "size": 3.4641016151377544}, {"name": "Huawei", "size": 6.0}]}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 9.591663046625438}, {"name": "XiaomiCo", "size": 7.211102550927978}, {"name": "Unknown", "size": 12.806248474865697}, {"name": "TP-Link", "size": 6.0}, {"name": "Apple", "size": 10.770329614269007}, {"name": "Samsung", "size": 8.717797887081348}]}, {"name": "Zte", "children": [{"name": "Pegatron", "size": 7.483314773547883}]}, {"name": "GlodioTe", "size": 5.656854249492381}, {"name": "MitsumiE", "size": 7.483314773547883}, {"name": "AskeyCom", "children": [{"name": "Samsung", "size": 4.898979485566356}, {"name": "ASUS", "size": 4.47213595499958}, {"name": "Huawei", "size": 4.898979485566356}, {"name": "Synology", "size": 6.0}, {"name": "AskeyCom", "size": 6.324555320336759}, {"name": "Apple", "size": 6.324555320336759}]}, {"name": "Mitrasta", "size": 4.47213595499958}, {"name": "Unknown", "size": 6.0}, {"name": "Tecom", "size": 6.0}, {"name": "Mitrasta", "children": [{"name": "Unknown", "size": 4.0}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "Zte", "size": 4.0}]}, {"name": "Amper", "size": 4.898979485566356}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.47213595499958}, {"name": "Apple", "size": 5.291502622129181}]}, {"name": "Zte", "children": [{"name": "Unknown", "size": 5.656854249492381}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Samsung", "size": 5.656854249492381}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 6.0}, {"name": "HonHaiPr", "size": 4.47213595499958}]}, {"name": "Mitrasta", "children": [{"name": "Apple", "size": 4.0}, {"name": "Apple", "size": 5.656854249492381}, {"name": "Mitrasta", "size": 4.898979485566356}, {"name": "Apple", "size": 6.0}, {"name": "Samsung", "size": 4.47213595499958}]}, {"name": "Bq", "size": 3.4641016151377544}, {"name": "Unknown", "children": [{"name": "Mitrasta", "size": 4.0}]}, {"name": "Unknown", "size": 8.246211251235321}, {"name": "Huawei", "size": 8.0}, {"name": "Unknown", "children": [{"name": "Apple", "size": 5.656854249492381}, {"name": "AirgoNet", "size": 4.47213595499958}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Apple", "size": 6.0}, {"name": "Unknown", "size": 4.898979485566356}]}, {"name": "Bq", "size": 6.928203230275509}, {"name": "MitsumiE", "size": 6.0}, {"name": "Arcadyan", "size": 4.898979485566356}, {"name": "Netgear", "size": 2.8284271247461903}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "Zte", "children": [{"name": "Bq", "size": 6.0}]}, {"name": "GarminIn", "size": 6.0}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Arcadyan", "size": 4.898979485566356}, {"name": "Samsung", "size": 5.291502622129181}]}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 5.291502622129181}, {"name": "Comtrend", "size": 4.47213595499958}]}, {"name": "Zte", "size": 4.47213595499958}, {"name": "D-Link", "size": 5.291502622129181}, {"name": "Arcadyan", "children": [{"name": "Huawei", "size": 5.291502622129181}, {"name": "Arcadyan", "size": 6.928203230275509}, {"name": "Samsung", "size": 6.928203230275509}, {"name": "Bq", "size": 6.324555320336759}, {"name": "Nokia", "size": 7.211102550927978}]}, {"name": "HP", "size": 5.291502622129181}, {"name": "D-Link", "size": 8.246211251235321}, {"name": "Zte", "size": 4.898979485566356}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.0}]}, {"name": "TP-Link", "children": [{"name": "Apple", "size": 9.797958971132712}, {"name": "Apple", "size": 10.0}, {"name": "Huawei", "size": 9.797958971132712}, {"name": "Arcadyan", "size": 9.38083151964686}]}, {"name": "Zte", "children": [{"name": "TP-Link", "size": 16.492422502470642}, {"name": "Zte", "size": 16.492422502470642}, {"name": "Apple", "size": 13.856406460551018}, {"name": "XiaomiCo", "size": 16.3707055437449}, {"name": "BelkinIn", "size": 7.211102550927978}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "RealtekS", "size": 16.0}]}, {"name": "Arcadyan", "size": 4.898979485566356}]} ================================================ FILE: mqtt.py ================================================ #!/usr/bin/python from paho.mqtt import publish import json, time import phatsniffer def publish_sniffer_data(hostname, root, data): messages = [] if 'beacons' in data: for beacon, beacon_data in data['beacons'].items(): messages.append(('%s/beacons/%s' % (root, beacon), json.dumps(beacon_data, sort_keys=True), 0, True)) if 'clients' in data: for client, client_data in data['clients'].items(): messages.append(('%s/clients/%s' % (root, client), json.dumps(client_data, sort_keys=True), 0, True)) publish.multiple(messages, hostname=hostname) if __name__ == '__main__': hostname = 'iot.eclipse.org' root = 'phatsniffer' phatsniffer.read_vendors('data/vendors.tsv') while True: publish_sniffer_data(hostname, root, phatsniffer.get_sniffer_data()) time.sleep(60) ================================================ FILE: phatsniffer.py ================================================ #!/usr/bin/python import json import serial import time #import RPi.GPIO vendors = {} def read_vendors(filename): file = open(filename, 'r') for line in file: prefix, vendor = line.rstrip().split('\t') vendors[prefix] = vendor def send_command(command): comm = serial.Serial('/dev/ttyUSB0', 115200) if comm.isOpen(): comm.close() comm.open() comm.flushInput() comm.write(command+'\n') time.sleep(0.1) return comm.readline() def create_fake_beacon(channel, ssid): return send_command('fake_beacon %d %s' % (channel, ssid)) def remove_fake_beacon(channel): return send_command('fake_beacon %d' % channel) def get_sniffer_data(): data = json.loads(send_command('print_all').decode('utf-8', 'ignore').encode('utf-8')) # data = json.loads(send_command('pa1').decode('utf-8', 'ignore').encode('utf-8')) beacons = data['beacons'] clients = data['clients'] for beacon in beacons: prefix = beacon[0:8] if prefix in vendors: beacons[beacon]['vendor'] = vendors[prefix] for client in clients: beacon = clients[client]['beacon'] if beacon in beacons: clients[client]['ssid'] = beacons[beacon]['ssid'] clients[client]['channel'] = beacons[beacon]['channel'] else: clients[client]['ssid'] = '' clients[client]['channel'] = '' prefix = client[0:8] if prefix in vendors: clients[client]['vendor'] = vendors[prefix] return data def get_sniffer_data1(): data1 = json.loads(send_command('pa1').decode('utf-8', 'ignore').encode('utf-8')) beacons = data1['beacons'] clients = data1['clients'] for beacon in beacons: prefix = beacon[0:8] if prefix in vendors: beacons[beacon]['vendor'] = vendors[prefix] for client in clients: beacon = clients[client]['beacon'] if beacon in beacons: clients[client]['ssid'] = beacons[beacon]['ssid'] clients[client]['channel'] = beacons[beacon]['channel'] else: clients[client]['ssid'] = '' clients[client]['channel'] = '' prefix = client[0:8] if prefix in vendors: clients[client]['vendor'] = vendors[prefix] return data1 def reset_phat(): # RPi.GPIO.setmode(RPi.GPIO.BCM) # RPi.GPIO.setup(17,RPi.GPIO.OUT,initial=1) # RPi.GPIO.setup(27,RPi.GPIO.OUT,initial=1) # RPi.GPIO.output(17,0) # time.sleep(0.5) # RPi.GPIO.output(17,1) time.sleep(0.5) # RPi.GPIO.cleanup() if __name__ == '__main__': read_vendors('data/vendors.tsv') print json.dumps(get_sniffer_data(), sort_keys=True, indent=4, separators=(',', ': ')) ================================================ FILE: rickroll.py ================================================ #!/usr/bin/python import phatsniffer rickroll = ['1 Never gonna', '2 give you up,', '3 never gonna', '4 let you down', '5 Never gonna', '6 run around and', '7 desert you'] for i, ssid in enumerate(rickroll): phatsniffer.create_fake_beacon(i+1, ssid) ================================================ FILE: server.py ================================================ #!/usr/bin/python import logging from flask import Flask, jsonify, redirect, render_template import math, json import phatsniffer app = Flask(__name__) @app.route('/') def index(): data = phatsniffer.get_sniffer_data() data_beacons = data['beacons'] data_clients = data['clients'] beacons = sorted(data_beacons.iteritems(), key=lambda x: -x[1]['rssi']) clients = sorted(data_clients.iteritems(), key=lambda x: -x[1]['rssi']) beacon_clients = {} app.logger.info(beacons) for beacon in data_beacons: beacon_clients[beacon] = [] for client in data_clients: beacon = data_clients[client]['beacon'] if beacon in data_beacons: if beacon not in beacon_clients: beacon_clients[beacon] = [] beacon_clients[beacon].append(client) circles = {} circles['name'] = 'root' circles['children'] = [] circles_beacons = circles['children'] for beacon in beacon_clients: data_beacon = data_beacons[beacon] circles_beacon = {} if 'vendor' in data_beacon: circles_beacon['name'] = data_beacon['ssid'] else: circles_beacon['name'] = 'Unknown' if len(beacon_clients[beacon]) == 0: if data_beacon['rssi'] > -99: circles_beacon['size'] = 2* (math.sqrt(100+data_beacon['rssi'])) else: circles_beacon['size'] = 1 else: circles_beacon['children'] = [] circles_clients = circles_beacon['children'] for client in beacon_clients[beacon]: data_client = data_clients[client] circles_client = {} if 'vendor' in data_client: circles_client['name'] = data_client['vendor'] else: circles_client['name'] = 'Unknown' if data_client['rssi'] > -99: circles_client['size'] = 2 * (math.sqrt(100+data_client['rssi'])) else: data_client['size'] = 1 circles_clients.append(circles_client) circles_beacons.append(circles_beacon) return render_template('index.html', beacons=beacons, clients=clients, circles=json.dumps(circles), circles2=json.dumps(circles)) @app.route('/download') def download(): return jsonify(phatsniffer.get_sniffer_data()) @app.route('/reset') def reset(): phatsniffer.reset_phat() return redirect('/') if __name__ == '__main__': phatsniffer.read_vendors('data/vendors.tsv') app.run(debug=True, host='127.0.0.1') ================================================ FILE: server2.py ================================================ #!/usr/bin/python from flask import Flask, jsonify, redirect, render_template import math, json import phatsniffer app = Flask(__name__) @app.route('/') def index(): data = phatsniffer.get_sniffer_data() data_beacons = data['beacons'] data_clients = data['clients'] beacons = sorted(data_beacons.iteritems(), key=lambda x: -x[1]['rssi']) clients = sorted(data_clients.iteritems(), key=lambda x: -x[1]['rssi']) beacon_clients = {} for beacon in data_beacons: beacon_clients[beacon] = [] for client in data_clients: beacon = data_clients[client]['beacon'] if beacon in data_beacons: if beacon not in beacon_clients: beacon_clients[beacon] = [] beacon_clients[beacon].append(client) circles = {} circles['name'] = 'root' circles['children'] = [] circles_beacons = circles['children'] for beacon in beacon_clients: data_beacon = data_beacons[beacon] circles_beacon = {} if 'vendor' in data_beacon: circles_beacon['name'] = data_beacon['vendor'] else: circles_beacon['name'] = 'Unknown' if len(beacon_clients[beacon]) == 0: if data_beacon['rssi'] > -99: circles_beacon['size'] = 2* (math.sqrt(100+data_beacon['rssi'])) else: circles_beacon['size'] = 1 else: circles_beacon['children'] = [] circles_clients = circles_beacon['children'] for client in beacon_clients[beacon]: data_client = data_clients[client] circles_client = {} if 'vendor' in data_client: circles_client['name'] = data_client['vendor'] else: circles_client['name'] = 'Unknown' if data_client['rssi'] > -99: circles_client['size'] = 2 * (math.sqrt(100+data_client['rssi'])) else: data_client['size'] = 1 circles_clients.append(circles_client) circles_beacons.append(circles_beacon) return render_template('/flare.html', beacons=beacons, clients=clients, circles=json.dumps(circles), circles2=json.dumps(circles)) @app.route('/download') def download(): return jsonify(phatsniffer.get_sniffer_data()) @app.route('/reset') def reset(): phatsniffer.reset_phat() return redirect('/') if __name__ == '__main__': phatsniffer.read_vendors('data/vendors.tsv') app.run(debug=False, host='127.0.0.1') ================================================ FILE: static/sorttable.js ================================================ /* SortTable version 2 7th April 2007 Stuart Langridge, http://www.kryogenix.org/code/browser/sorttable/ Instructions: Download this file Add to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i5' : ' ▴'; this.appendChild(sortrevind); return; } if (this.className.search(/\bsorttable_sorted_reverse\b/) != -1) { // if we're already sorted by this column in reverse, just // re-reverse the table, which is quicker sorttable.reverse(this.sorttable_tbody); this.className = this.className.replace('sorttable_sorted_reverse', 'sorttable_sorted'); this.removeChild(document.getElementById('sorttable_sortrevind')); sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; sortfwdind.innerHTML = stIsIE ? ' 6' : ' ▾'; this.appendChild(sortfwdind); return; } // remove sorttable_sorted classes theadrow = this.parentNode; forEach(theadrow.childNodes, function(cell) { if (cell.nodeType == 1) { // an element cell.className = cell.className.replace('sorttable_sorted_reverse',''); cell.className = cell.className.replace('sorttable_sorted',''); } }); sortfwdind = document.getElementById('sorttable_sortfwdind'); if (sortfwdind) { sortfwdind.parentNode.removeChild(sortfwdind); } sortrevind = document.getElementById('sorttable_sortrevind'); if (sortrevind) { sortrevind.parentNode.removeChild(sortrevind); } this.className += ' sorttable_sorted'; sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; sortfwdind.innerHTML = stIsIE ? ' 6' : ' ▾'; this.appendChild(sortfwdind); // build an array to sort. This is a Schwartzian transform thing, // i.e., we "decorate" each row with the actual sort key, // sort based on the sort keys, and then put the rows back in order // which is a lot faster because you only do getInnerText once per row row_array = []; col = this.sorttable_columnindex; rows = this.sorttable_tbody.rows; for (var j=0; j 12) { // definitely dd/mm return sorttable.sort_ddmm; } else if (second > 12) { return sorttable.sort_mmdd; } else { // looks like a date, but we can't tell which, so assume // that it's dd/mm (English imperialism!) and keep looking sortfn = sorttable.sort_ddmm; } } } } return sortfn; }, getInnerText: function(node) { // gets the text we want to use for sorting for a cell. // strips leading and trailing whitespace. // this is *not* a generic getInnerText function; it's special to sorttable. // for example, you can override the cell text with a customkey attribute. // it also gets .value for fields. if (!node) return ""; hasInputs = (typeof node.getElementsByTagName == 'function') && node.getElementsByTagName('input').length; if (node.getAttribute("sorttable_customkey") != null) { return node.getAttribute("sorttable_customkey"); } else if (typeof node.textContent != 'undefined' && !hasInputs) { return node.textContent.replace(/^\s+|\s+$/g, ''); } else if (typeof node.innerText != 'undefined' && !hasInputs) { return node.innerText.replace(/^\s+|\s+$/g, ''); } else if (typeof node.text != 'undefined' && !hasInputs) { return node.text.replace(/^\s+|\s+$/g, ''); } else { switch (node.nodeType) { case 3: if (node.nodeName.toLowerCase() == 'input') { return node.value.replace(/^\s+|\s+$/g, ''); } case 4: return node.nodeValue.replace(/^\s+|\s+$/g, ''); break; case 1: case 11: var innerText = ''; for (var i = 0; i < node.childNodes.length; i++) { innerText += sorttable.getInnerText(node.childNodes[i]); } return innerText.replace(/^\s+|\s+$/g, ''); break; default: return ''; } } }, reverse: function(tbody) { // reverse the rows in a tbody newrows = []; for (var i=0; i=0; i--) { tbody.appendChild(newrows[i]); } delete newrows; }, /* sort functions each sort function takes two parameters, a and b you are comparing a[0] and b[0] */ sort_numeric: function(a,b) { aa = parseFloat(a[0].replace(/[^0-9.-]/g,'')); if (isNaN(aa)) aa = 0; bb = parseFloat(b[0].replace(/[^0-9.-]/g,'')); if (isNaN(bb)) bb = 0; return aa-bb; }, sort_alpha: function(a,b) { if (a[0]==b[0]) return 0; if (a[0] 0 ) { var q = list[i]; list[i] = list[i+1]; list[i+1] = q; swap = true; } } // for t--; if (!swap) break; for(var i = t; i > b; --i) { if ( comp_func(list[i], list[i-1]) < 0 ) { var q = list[i]; list[i] = list[i-1]; list[i-1] = q; swap = true; } } // for b++; } // while(swap) } } /* ****************************************************************** Supporting functions: bundled here to avoid depending on a library ****************************************************************** */ // Dean Edwards/Matthias Miller/John Resig /* for Mozilla/Opera9 */ if (document.addEventListener) { document.addEventListener("DOMContentLoaded", sorttable.init, false); } /* for Internet Explorer */ /*@cc_on @*/ /*@if (@_win32) document.write(" ================================================ FILE: templates/flare.json ================================================ { "name": "flare", "children": [ { "name": "analytics", "children": [ { "name": "cluster", "children": [ {"name": "AgglomerativeCluster", "size": 3938}, {"name": "CommunityStructure", "size": 3812}, {"name": "HierarchicalCluster", "size": 6714}, {"name": "MergeEdge", "size": 743} ] }, { "name": "graph", "children": [ {"name": "BetweennessCentrality", "size": 3534}, {"name": "LinkDistance", "size": 5731}, {"name": "MaxFlowMinCut", "size": 7840}, {"name": "ShortestPaths", "size": 5914}, {"name": "SpanningTree", "size": 3416} ] }, { "name": "optimization", "children": [ {"name": "AspectRatioBanker", "size": 7074} ] } ] }, { "name": "animate", "children": [ {"name": "Easing", "size": 17010}, {"name": "FunctionSequence", "size": 5842}, { "name": "interpolate", "children": [ {"name": "ArrayInterpolator", "size": 1983}, {"name": "ColorInterpolator", "size": 2047}, {"name": "DateInterpolator", "size": 1375}, {"name": "Interpolator", "size": 8746}, {"name": "MatrixInterpolator", "size": 2202}, {"name": "NumberInterpolator", "size": 1382}, {"name": "ObjectInterpolator", "size": 1629}, {"name": "PointInterpolator", "size": 1675}, {"name": "RectangleInterpolator", "size": 2042} ] }, {"name": "ISchedulable", "size": 1041}, {"name": "Parallel", "size": 5176}, {"name": "Pause", "size": 449}, {"name": "Scheduler", "size": 5593}, {"name": "Sequence", "size": 5534}, {"name": "Transition", "size": 9201}, {"name": "Transitioner", "size": 19975}, {"name": "TransitionEvent", "size": 1116}, {"name": "Tween", "size": 6006} ] }, { "name": "data", "children": [ { "name": "converters", "children": [ {"name": "Converters", "size": 721}, {"name": "DelimitedTextConverter", "size": 4294}, {"name": "GraphMLConverter", "size": 9800}, {"name": "IDataConverter", "size": 1314}, {"name": "JSONConverter", "size": 2220} ] }, {"name": "DataField", "size": 1759}, {"name": "DataSchema", "size": 2165}, {"name": "DataSet", "size": 586}, {"name": "DataSource", "size": 3331}, {"name": "DataTable", "size": 772}, {"name": "DataUtil", "size": 3322} ] }, { "name": "display", "children": [ {"name": "DirtySprite", "size": 8833}, {"name": "LineSprite", "size": 1732}, {"name": "RectSprite", "size": 3623}, {"name": "TextSprite", "size": 10066} ] }, { "name": "flex", "children": [ {"name": "FlareVis", "size": 4116} ] }, { "name": "physics", "children": [ {"name": "DragForce", "size": 1082}, {"name": "GravityForce", "size": 1336}, {"name": "IForce", "size": 319}, {"name": "NBodyForce", "size": 10498}, {"name": "Particle", "size": 2822}, {"name": "Simulation", "size": 9983}, {"name": "Spring", "size": 2213}, {"name": "SpringForce", "size": 1681} ] }, { "name": "query", "children": [ {"name": "AggregateExpression", "size": 1616}, {"name": "And", "size": 1027}, {"name": "Arithmetic", "size": 3891}, {"name": "Average", "size": 891}, {"name": "BinaryExpression", "size": 2893}, {"name": "Comparison", "size": 5103}, {"name": "CompositeExpression", "size": 3677}, {"name": "Count", "size": 781}, {"name": "DateUtil", "size": 4141}, {"name": "Distinct", "size": 933}, {"name": "Expression", "size": 5130}, {"name": "ExpressionIterator", "size": 3617}, {"name": "Fn", "size": 3240}, {"name": "If", "size": 2732}, {"name": "IsA", "size": 2039}, {"name": "Literal", "size": 1214}, {"name": "Match", "size": 3748}, {"name": "Maximum", "size": 843}, { "name": "methods", "children": [ {"name": "add", "size": 593}, {"name": "and", "size": 330}, {"name": "average", "size": 287}, {"name": "count", "size": 277}, {"name": "distinct", "size": 292}, {"name": "div", "size": 595}, {"name": "eq", "size": 594}, {"name": "fn", "size": 460}, {"name": "gt", "size": 603}, {"name": "gte", "size": 625}, {"name": "iff", "size": 748}, {"name": "isa", "size": 461}, {"name": "lt", "size": 597}, {"name": "lte", "size": 619}, {"name": "max", "size": 283}, {"name": "min", "size": 283}, {"name": "mod", "size": 591}, {"name": "mul", "size": 603}, {"name": "neq", "size": 599}, {"name": "not", "size": 386}, {"name": "or", "size": 323}, {"name": "orderby", "size": 307}, {"name": "range", "size": 772}, {"name": "select", "size": 296}, {"name": "stddev", "size": 363}, {"name": "sub", "size": 600}, {"name": "sum", "size": 280}, {"name": "update", "size": 307}, {"name": "variance", "size": 335}, {"name": "where", "size": 299}, {"name": "xor", "size": 354}, {"name": "_", "size": 264} ] }, {"name": "Minimum", "size": 843}, {"name": "Not", "size": 1554}, {"name": "Or", "size": 970}, {"name": "Query", "size": 13896}, {"name": "Range", "size": 1594}, {"name": "StringUtil", "size": 4130}, {"name": "Sum", "size": 791}, {"name": "Variable", "size": 1124}, {"name": "Variance", "size": 1876}, {"name": "Xor", "size": 1101} ] }, { "name": "scale", "children": [ {"name": "IScaleMap", "size": 2105}, {"name": "LinearScale", "size": 1316}, {"name": "LogScale", "size": 3151}, {"name": "OrdinalScale", "size": 3770}, {"name": "QuantileScale", "size": 2435}, {"name": "QuantitativeScale", "size": 4839}, {"name": "RootScale", "size": 1756}, {"name": "Scale", "size": 4268}, {"name": "ScaleType", "size": 1821}, {"name": "TimeScale", "size": 5833} ] }, { "name": "util", "children": [ {"name": "Arrays", "size": 8258}, {"name": "Colors", "size": 10001}, {"name": "Dates", "size": 8217}, {"name": "Displays", "size": 12555}, {"name": "Filter", "size": 2324}, {"name": "Geometry", "size": 10993}, { "name": "heap", "children": [ {"name": "FibonacciHeap", "size": 9354}, {"name": "HeapNode", "size": 1233} ] }, {"name": "IEvaluable", "size": 335}, {"name": "IPredicate", "size": 383}, {"name": "IValueProxy", "size": 874}, { "name": "math", "children": [ {"name": "DenseMatrix", "size": 3165}, {"name": "IMatrix", "size": 2815}, {"name": "SparseMatrix", "size": 3366} ] }, {"name": "Maths", "size": 17705}, {"name": "Orientation", "size": 1486}, { "name": "palette", "children": [ {"name": "ColorPalette", "size": 6367}, {"name": "Palette", "size": 1229}, {"name": "ShapePalette", "size": 2059}, {"name": "SizePalette", "size": 2291} ] }, {"name": "Property", "size": 5559}, {"name": "Shapes", "size": 19118}, {"name": "Sort", "size": 6887}, {"name": "Stats", "size": 6557}, {"name": "Strings", "size": 22026} ] }, { "name": "vis", "children": [ { "name": "axis", "children": [ {"name": "Axes", "size": 1302}, {"name": "Axis", "size": 24593}, {"name": "AxisGridLine", "size": 652}, {"name": "AxisLabel", "size": 636}, {"name": "CartesianAxes", "size": 6703} ] }, { "name": "controls", "children": [ {"name": "AnchorControl", "size": 2138}, {"name": "ClickControl", "size": 3824}, {"name": "Control", "size": 1353}, {"name": "ControlList", "size": 4665}, {"name": "DragControl", "size": 2649}, {"name": "ExpandControl", "size": 2832}, {"name": "HoverControl", "size": 4896}, {"name": "IControl", "size": 763}, {"name": "PanZoomControl", "size": 5222}, {"name": "SelectionControl", "size": 7862}, {"name": "TooltipControl", "size": 8435} ] }, { "name": "data", "children": [ {"name": "Data", "size": 20544}, {"name": "DataList", "size": 19788}, {"name": "DataSprite", "size": 10349}, {"name": "EdgeSprite", "size": 3301}, {"name": "NodeSprite", "size": 19382}, { "name": "render", "children": [ {"name": "ArrowType", "size": 698}, {"name": "EdgeRenderer", "size": 5569}, {"name": "IRenderer", "size": 353}, {"name": "ShapeRenderer", "size": 2247} ] }, {"name": "ScaleBinding", "size": 11275}, {"name": "Tree", "size": 7147}, {"name": "TreeBuilder", "size": 9930} ] }, { "name": "events", "children": [ {"name": "DataEvent", "size": 2313}, {"name": "SelectionEvent", "size": 1880}, {"name": "TooltipEvent", "size": 1701}, {"name": "VisualizationEvent", "size": 1117} ] }, { "name": "legend", "children": [ {"name": "Legend", "size": 20859}, {"name": "LegendItem", "size": 4614}, {"name": "LegendRange", "size": 10530} ] }, { "name": "operator", "children": [ { "name": "distortion", "children": [ {"name": "BifocalDistortion", "size": 4461}, {"name": "Distortion", "size": 6314}, {"name": "FisheyeDistortion", "size": 3444} ] }, { "name": "encoder", "children": [ {"name": "ColorEncoder", "size": 3179}, {"name": "Encoder", "size": 4060}, {"name": "PropertyEncoder", "size": 4138}, {"name": "ShapeEncoder", "size": 1690}, {"name": "SizeEncoder", "size": 1830} ] }, { "name": "filter", "children": [ {"name": "FisheyeTreeFilter", "size": 5219}, {"name": "GraphDistanceFilter", "size": 3165}, {"name": "VisibilityFilter", "size": 3509} ] }, {"name": "IOperator", "size": 1286}, { "name": "label", "children": [ {"name": "Labeler", "size": 9956}, {"name": "RadialLabeler", "size": 3899}, {"name": "StackedAreaLabeler", "size": 3202} ] }, { "name": "layout", "children": [ {"name": "AxisLayout", "size": 6725}, {"name": "BundledEdgeRouter", "size": 3727}, {"name": "CircleLayout", "size": 9317}, {"name": "CirclePackingLayout", "size": 12003}, {"name": "DendrogramLayout", "size": 4853}, {"name": "ForceDirectedLayout", "size": 8411}, {"name": "IcicleTreeLayout", "size": 4864}, {"name": "IndentedTreeLayout", "size": 3174}, {"name": "Layout", "size": 7881}, {"name": "NodeLinkTreeLayout", "size": 12870}, {"name": "PieLayout", "size": 2728}, {"name": "RadialTreeLayout", "size": 12348}, {"name": "RandomLayout", "size": 870}, {"name": "StackedAreaLayout", "size": 9121}, {"name": "TreeMapLayout", "size": 9191} ] }, {"name": "Operator", "size": 2490}, {"name": "OperatorList", "size": 5248}, {"name": "OperatorSequence", "size": 4190}, {"name": "OperatorSwitch", "size": 2581}, {"name": "SortOperator", "size": 2023} ] }, {"name": "Visualization", "size": 16540} ] } ] } ================================================ FILE: templates/flare1.json ================================================ {"name": "root", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Unknown", "size": 6.6332495807108}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 4.0}, {"name": "Comtrend", "size": 3.4641016151377544}]}, {"name": "ASUS", "children": [{"name": "Cybertan", "size": 10.770329614269007}, {"name": "Huawei", "size": 10.583005244258363}]}, {"name": "Unknown", "children": [{"name": "Quantenn", "size": 10.392304845413264}, {"name": "Huawei", "size": 10.0}, {"name": "Unknown", "size": 10.0}]}, {"name": "Apple", "size": 5.291502622129181}, {"name": "Comtrend", "children": [{"name": "Comtrend", "size": 3.4641016151377544}, {"name": "Apple", "size": 4.898979485566356}, {"name": "Unknown", "size": 3.4641016151377544}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 3.4641016151377544}]}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "Amper", "size": 4.898979485566356}, {"name": "Mitrasta", "size": 4.898979485566356}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 2.8284271247461903}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 5.656854249492381}, {"name": "Unknown", "size": 6.324555320336759}, {"name": "Motorola", "size": 5.291502622129181}, {"name": "AskeyCom", "size": 6.324555320336759}]}, {"name": "Motorola", "size": 5.656854249492381}, {"name": "Unknown", "size": 15.748015748023622}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 5.291502622129181}, {"name": "HonHaiPr", "size": 5.291502622129181}, {"name": "Google", "size": 3.4641016151377544}]}, {"name": "Unknown", "children": [{"name": "Samsung", "size": 6.6332495807108}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 5.291502622129181}, {"name": "HP", "size": 5.291502622129181}, {"name": "AskeyCom", "size": 4.898979485566356}]}, {"name": "TP-Link", "children": [{"name": "Espressi", "size": 10.0}, {"name": "Unknown", "size": 15.874507866387544}, {"name": "Intel", "size": 14.966629547095765}, {"name": "XiaomiCo", "size": 15.491933384829668}, {"name": "Intel", "size": 14.696938456699069}]}, {"name": "Mitrasta", "children": [{"name": "Mitrasta", "size": 6.6332495807108}]}, {"name": "TP-Link", "children": [{"name": "Unknown", "size": 8.48528137423857}]}, {"name": "Unknown", "children": [{"name": "Apple", "size": 9.797958971132712}]}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "Unknown", "size": 6.6332495807108}, {"name": "Unknown", "size": 4.47213595499958}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Unknown", "size": 4.898979485566356}, {"name": "Ubiquiti", "children": [{"name": "Routerbo", "size": 6.324555320336759}, {"name": "Huawei", "size": 5.291502622129181}, {"name": "Samsung", "size": 5.291502622129181}, {"name": "Fujitsu", "size": 3.4641016151377544}, {"name": "Huawei", "size": 6.0}]}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 9.591663046625438}, {"name": "XiaomiCo", "size": 7.211102550927978}, {"name": "Unknown", "size": 12.806248474865697}, {"name": "TP-Link", "size": 6.0}, {"name": "Apple", "size": 10.770329614269007}, {"name": "Samsung", "size": 8.717797887081348}]}, {"name": "Zte", "children": [{"name": "Pegatron", "size": 7.483314773547883}]}, {"name": "GlodioTe", "size": 5.656854249492381}, {"name": "MitsumiE", "size": 7.483314773547883}, {"name": "AskeyCom", "children": [{"name": "Samsung", "size": 4.898979485566356}, {"name": "ASUS", "size": 4.47213595499958}, {"name": "Huawei", "size": 4.898979485566356}, {"name": "Synology", "size": 6.0}, {"name": "AskeyCom", "size": 6.324555320336759}, {"name": "Apple", "size": 6.324555320336759}]}, {"name": "Mitrasta", "size": 4.47213595499958}, {"name": "Unknown", "size": 6.0}, {"name": "Tecom", "size": 6.0}, {"name": "Mitrasta", "children": [{"name": "Unknown", "size": 4.0}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "Zte", "size": 4.0}]}, {"name": "Amper", "size": 4.898979485566356}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.47213595499958}, {"name": "Apple", "size": 5.291502622129181}]}, {"name": "Zte", "children": [{"name": "Unknown", "size": 5.656854249492381}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Samsung", "size": 5.656854249492381}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 6.0}, {"name": "HonHaiPr", "size": 4.47213595499958}]}, {"name": "Mitrasta", "children": [{"name": "Apple", "size": 4.0}, {"name": "Apple", "size": 5.656854249492381}, {"name": "Mitrasta", "size": 4.898979485566356}, {"name": "Apple", "size": 6.0}, {"name": "Samsung", "size": 4.47213595499958}]}, {"name": "Bq", "size": 3.4641016151377544}, {"name": "Unknown", "children": [{"name": "Mitrasta", "size": 4.0}]}, {"name": "Unknown", "size": 8.246211251235321}, {"name": "Huawei", "size": 8.0}, {"name": "Unknown", "children": [{"name": "Apple", "size": 5.656854249492381}, {"name": "AirgoNet", "size": 4.47213595499958}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Apple", "size": 6.0}, {"name": "Unknown", "size": 4.898979485566356}]}, {"name": "Bq", "size": 6.928203230275509}, {"name": "MitsumiE", "size": 6.0}, {"name": "Arcadyan", "size": 4.898979485566356}, {"name": "Netgear", "size": 2.8284271247461903}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "Zte", "children": [{"name": "Bq", "size": 6.0}]}, {"name": "GarminIn", "size": 6.0}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Arcadyan", "size": 4.898979485566356}, {"name": "Samsung", "size": 5.291502622129181}]}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 5.291502622129181}, {"name": "Comtrend", "size": 4.47213595499958}]}, {"name": "Zte", "size": 4.47213595499958}, {"name": "D-Link", "size": 5.291502622129181}, {"name": "Arcadyan", "children": [{"name": "Huawei", "size": 5.291502622129181}, {"name": "Arcadyan", "size": 6.928203230275509}, {"name": "Samsung", "size": 6.928203230275509}, {"name": "Bq", "size": 6.324555320336759}, {"name": "Nokia", "size": 7.211102550927978}]}, {"name": "HP", "size": 5.291502622129181}, {"name": "D-Link", "size": 8.246211251235321}, {"name": "Zte", "size": 4.898979485566356}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.0}]}, {"name": "TP-Link", "children": [{"name": "Apple", "size": 9.797958971132712}, {"name": "Apple", "size": 10.0}, {"name": "Huawei", "size": 9.797958971132712}, {"name": "Arcadyan", "size": 9.38083151964686}]}, {"name": "Zte", "children": [{"name": "TP-Link", "size": 16.492422502470642}, {"name": "Zte", "size": 16.492422502470642}, {"name": "Apple", "size": 13.856406460551018}, {"name": "XiaomiCo", "size": 16.3707055437449}, {"name": "BelkinIn", "size": 7.211102550927978}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "RealtekS", "size": 16.0}]}, {"name": "Arcadyan", "size": 4.898979485566356}]} ================================================ FILE: templates/flare2.html ================================================ ================================================ FILE: templates/index.html ================================================ Heimdall WiFi Radar by G4lile0

Heimdall WiFi Radar

Heavily based on the great PHAT Snifer by Lars Juhl Jensen

{% for addr, data in beacons %} {% endfor %}
MAC SSID Channel Vendor RSSI (dBm)
{{addr}} {{data['ssid']}} {{data['channel']}} {{data['vendor']}} {{data['rssi']}}

{% for addr, data in clients %} {% endfor %}
MAC Beacon SSID Channel Vendor RSSI (dBm)
{{addr}} {{data['beacon']}} {{data['ssid']}} {{data['channel']}} {{data['vendor']}} {{data['rssi']}}