[Automatic update for 2022-05-15]

Update manuf, services enterprise numbers, translations, and other items.
This commit is contained in:
Gerald Combs 2022-05-15 16:40:28 +00:00
parent 8020aea27a
commit d5f99ef126
17 changed files with 256 additions and 63 deletions

View File

@ -4693,6 +4693,7 @@ Mikhail Gusarov <dottedmag[AT]dottedmag.net>
Milan Stute <mstute[AT]seemoo.tu-darmstadt.de>
Milos Jovanovic <jeyem815[AT]gmail.com>
Miltos Patsiouras <mipatsio[AT]gmail.com>
Min Wang <wang[AT]mins.app>
Minh Phan <phanducnhatminh[AT]gmail.com>
Mirko Parthey <mirko.parthey[AT]web.de>
Moraney Jalil <moraney.jalil[AT]outlook.com>

20
NEWS
View File

@ -1,4 +1,4 @@
Wireshark 3.7.0 Release Notes
Wireshark 3.7.1 Release Notes
This is an experimental release intended to test new features for
Wireshark 4.0.
@ -10,9 +10,9 @@ Wireshark 3.7.0 Release Notes
Whats New
Note: We do not ship official packages for 32-bit Windows for this
branch. If you need to use Wireshark on that platform, please use the
3.6 branch. Issue 17779[1]
Note: We do not ship official 32-bit Windows packages for this branch.
If you need to use Wireshark on that platform, please install the
latest 3.6 release. Issue 17779[1]
• The PCRE2 library (https://www.pcre.org/) is now a required
dependency to build Wireshark.
@ -107,6 +107,9 @@ Wireshark 3.7.0 Release Notes
functions. Previously only protocol fields and slices were
syntactically valid function arguments.
• Adds the universal quantifiers "any" and "all" to any
relational operator: all tcp.port > 1024.
• The `text2pcap` command and the “Import from Hex Dump” feature
have been updated and enhanced:
@ -114,6 +117,13 @@ Wireshark 3.7.0 Release Notes
capture file formats that wiretap library supports, using the
same `-F` option as `editcap`, `mergecap`, and `tshark`.
• Consistent with the other command line tools like `editcap`,
`mergecap`, `tshark`, and the "Import from Hex Dump" option
within Wireshark, the default capture file format for `text2pcap`
is now pcapng. The `-n` flag to select pcapng (instead of the
previous default, pcap) has been has been deprecated and will be
removed in a future release.
• `text2pcap` supports selecting the encapsulation type of the
output file format using the wiretap library short names with an
`-E` option, similiar to the `-T` option of `editcap`.
@ -245,7 +255,7 @@ Wireshark 3.7.0 Release Notes
A complete FAQ is available on the Wireshark web site[7].
Last updated 2022-05-11 17:15:23 UTC
Last updated 2022-05-12 02:13:42 UTC
References

View File

@ -1,4 +1,4 @@
Capinfos (Wireshark) 3.7.0 (v3.7.0rc0-98-g71ccbe9f3748)
Capinfos (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Print various information (infos) about capture files.
See https://www.wireshark.org for more information.

View File

@ -1,4 +1,4 @@
Dumpcap (Wireshark) 3.7.0 (v3.7.0rc0-1333-g7d171d378238)
Dumpcap (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Capture network packets and dump them into a pcapng or pcap file.
See https://www.wireshark.org for more information.

View File

@ -1,4 +1,4 @@
Editcap (Wireshark) 3.7.0 (v3.7.0rc0-1783-g4d9470e7dd9d)
Editcap (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Edit and/or translate the format of capture files.
See https://www.wireshark.org for more information.

View File

@ -1,4 +1,4 @@
Mergecap (Wireshark) 3.7.0 (v3.7.0rc0-33-g0d276b47d120)
Mergecap (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Merge two or more capture files into one.
See https://www.wireshark.org for more information.

View File

@ -1,4 +1,4 @@
Rawshark (Wireshark) 3.7.0 (v3.7.0rc0-906-g40256c64e098)
Rawshark (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Dump and analyze network traffic.
See https://www.wireshark.org for more information.

View File

@ -1,4 +1,4 @@
Reordercap (Wireshark) 3.7.0 (v3.7.0rc0-33-g0d276b47d120)
Reordercap (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Reorder timestamps of input file frames into output file.
See https://www.wireshark.org for more information.

View File

@ -1,4 +1,4 @@
Text2pcap (Wireshark) 3.7.0 (v3.7.0rc0-1506-g9b49cbff2912)
Text2pcap (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Generate a capture file from an ASCII hexdump of packets.
See https://www.wireshark.org for more information.
@ -41,7 +41,7 @@ Input:
(def: 16: hexadecimal) No effect in hexdump mode.
Output:
-F <capture type> set the output file type; default is pcap.
-F <capture type> set the output file type; default is pcapng.
an empty "-F" option will list the file types.
-E <encap type> set the output file encapsulation type; default is
ether (Ethernet). An empty "-E" option will list
@ -52,7 +52,6 @@ Output:
numbers.
Example: -l 7 for ARCNet packets.
-m <max-packet> max packet length in output; default is 262144
-n use pcapng instead of pcap as output format.
-N <intf-name> assign name to the interface in the pcapng file.
Prepend dummy header:

View File

@ -1,4 +1,4 @@
TShark (Wireshark) 3.7.0 (v3.7.0rc0-1506-g9b49cbff2912)
TShark (Wireshark) 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Dump and analyze network traffic.
See https://www.wireshark.org for more information.

View File

@ -1,4 +1,4 @@
Wireshark 3.7.0 (v3.7.0rc0-1333-g7d171d378238)
Wireshark 3.7.1 (v3.7.1rc0-27-gf2fb1662b23b)
Interactively dump and analyze network traffic.
See https://www.wireshark.org for more information.

View File

@ -5,7 +5,7 @@
# The format used here is: <NUMERICAL_ID><SPACE><NAME>
# Where SPACE can be any sequence of spaces and tabs.
#
# (last updated 2022-05-07)
# (last updated 2022-05-14)
0 Reserved
1 NxNetworks
@ -28222,7 +28222,7 @@
28379 Open Systems International, Inc.
28380 01edge technologies
28381 Red Lion Controls (N-Tron)
28382 AirCell LLC
28382 Intelsat Inflight LLC
28383 Open1X
28384 PConRails, LLC
28385 Columbia Weather Systems, Inc.
@ -58637,3 +58637,25 @@
58845 Heldele GmbH
58846 Advertising Specialty Institute
58847 Energys
58848 Bensalem Township School District
58849 Beijing Cgprintech Technology Co.,Ltd
58850 CNH Industrial
58851 Maria Parham Health
58852 China Digital Video
58853 Suono Telecom Srl
58854 unibob
58855 novaroll
58856 The Hope Center for Cancer Care
58857 Borough of Quakertown
58858 Beijing ThreatBook Technology Co., Ltd.
58859 PLNDRM
58860 Vector Technologies, LLC
58861 Shaanxi Gangsion Electronic Technology Co., Ltd
58862 Australian Digital Health Authority
58863 IIIoT Technologies Co.,Ltd
58864 Airgain, Inc.
58865 CTMA
58866 Parity Security
58867 Gristlepit Labs
58868 secore.ly GmbH
58869 Teal Communications

Can't render this file because it is too large.

View File

@ -9,7 +9,7 @@ See tools/asterix/README.md for details.
Data source:
https://zoranbosnjak.github.io/asterix-specs
git revision: 42d6a1efb67793c344c28193482218d827287433
git revision: 090e6eddb8011294e3056a2b9c79475a9f6c5702
*/

View File

@ -3017,6 +3017,7 @@ static const value_string usb_vendors_vals[] = {
{ 0x22e0, "secunet Security Networks AG" },
{ 0x22e8, "Cambridge Audio" },
{ 0x2304, "Pinnacle Systems, Inc." },
{ 0x2309, "TimeLink Technology Co., Ltd" },
{ 0x230d, "Teracom" },
{ 0x2314, "INQ Mobile" },
{ 0x2318, "Shining Technologies, Inc. [hex]" },
@ -23407,6 +23408,11 @@ static const value_string usb_products_vals[] = {
{ 0x2304061d, "PCTV Deluxe (NTSC) Device" },
{ 0x2304061e, "PCTV Deluxe (PAL) Device" },
{ 0x23042304, "1689" },
{ 0x23091001, "Touch Device(hid)" },
{ 0x23091005, "Touch Device" },
{ 0x23091006, "Touch Device(2)" },
{ 0x23091007, "MulTouch Device(hid)" },
{ 0x23091009, "Touch Device(hid)" },
{ 0x230d0103, "Huwaii 3g wireless modem" },
{ 0x23180011, "CitiDISK Jr. IDE Enclosure" },
{ 0x23190014, "TSM01 Air Mouse + Keyboard" },

View File

@ -6,8 +6,8 @@
*
* List of PCI ID's
*
* Version: 2022.05.03
* Date: 2022-05-03 03:15:01
* Version: 2022.05.09
* Date: 2022-05-09 03:15:02
*
* Maintained by Albert Pool, Martin Mares, and other volunteers from
* the PCI ID Project at https://pci-ids.ucw.cz/.
@ -131,6 +131,8 @@ pci_id_t pci_vid_018A[] = {
pci_id_t pci_vid_01DE[] = {
{0x01DE, 0xFFFF, 0xFFFF, 0xFFFF, "Oxide Computer Company(0x01DE)"},
{0x01DE, 0x0000, 0xFFFF, 0xFFFF, "Propolis NVMe Controller(0x0000)"},
{0x01DE, 0x0001, 0xFFFF, 0xFFFF, "Propolis xHCI Controller(0x0001)"},
}; /* pci_vid_01DE[] */
pci_id_t pci_vid_0200[] = {
@ -882,7 +884,7 @@ pci_id_t pci_vid_1000[] = {
{0x1000, 0x00A5, 0x1028, 0x213E, "PERC H765i MX(0x1028-0x213E)"},
{0x1000, 0x00A5, 0x1028, 0x213F, "PERC H365i Adapter(0x1028-0x213F)"},
{0x1000, 0x00A5, 0x1028, 0x2140, "PERC H365i Front(0x1028-0x2140)"},
{0x1000, 0x00A5, 0x1028, 0x2141, "PERC H360 MX(0x1028-0x2141)"},
{0x1000, 0x00A5, 0x1028, 0x2141, "PERC H365i MX(0x1028-0x2141)"},
{0x1000, 0x00A5, 0x1028, 0x2142, "HBA465e Adapter(0x1028-0x2142)"},
{0x1000, 0x00A5, 0x1028, 0x2209, "HBA465i Adapter(0x1028-0x2209)"},
{0x1000, 0x00A5, 0x1028, 0x220A, "HBA465i Front(0x1028-0x220A)"},
@ -7119,6 +7121,8 @@ pci_id_t pci_vid_1054[] = {
pci_id_t pci_vid_1055[] = {
{0x1055, 0xFFFF, 0xFFFF, 0xFFFF, "Microchip Technology / SMSC(0x1055)"},
{0x1055, 0x7430, 0xFFFF, 0xFFFF, "LAN7430(0x7430)"},
{0x1055, 0x7431, 0xFFFF, 0xFFFF, "LAN7431(0x7431)"},
{0x1055, 0x9130, 0xFFFF, 0xFFFF, "SLC90E66 [Victory66] IDE(0x9130)"},
{0x1055, 0x9460, 0xFFFF, 0xFFFF, "SLC90E66 [Victory66] ISA(0x9460)"},
{0x1055, 0x9462, 0xFFFF, 0xFFFF, "SLC90E66 [Victory66] USB(0x9462)"},
@ -13131,8 +13135,9 @@ pci_id_t pci_vid_10DE[] = {
{0x10DE, 0x223F, 0xFFFF, 0xFFFF, "GA102GL(0x223F)"},
{0x10DE, 0x228B, 0xFFFF, 0xFFFF, "GA104 High Definition Audio Controller(0x228B)"},
{0x10DE, 0x2296, 0xFFFF, 0xFFFF, "Tegra PCIe Endpoint Virtual Network(0x2296)"},
{0x10DE, 0x2302, 0xFFFF, 0xFFFF, "GA103(0x2302)"},
{0x10DE, 0x2321, 0xFFFF, 0xFFFF, "GA103(0x2321)"},
{0x10DE, 0x2302, 0xFFFF, 0xFFFF, "GH100(0x2302)"},
{0x10DE, 0x2321, 0xFFFF, 0xFFFF, "GH100(0x2321)"},
{0x10DE, 0x2336, 0xFFFF, 0xFFFF, "GH100 [H100 96GB](0x2336)"},
{0x10DE, 0x2414, 0xFFFF, 0xFFFF, "GA103 [GeForce RTX 3060 Ti](0x2414)"},
{0x10DE, 0x2420, 0xFFFF, 0xFFFF, "GA103M [GeForce RTX 3080 Ti Mobile](0x2420)"},
{0x10DE, 0x2438, 0xFFFF, 0xFFFF, "GA103GLM [RTX A5500 Laptop GPU](0x2438)"},
@ -19592,8 +19597,42 @@ pci_id_t pci_vid_1344[] = {
{0x1344, 0x5190, 0xFFFF, 0xFFFF, "9200 ECO NVMe SSD(0x5190)"},
{0x1344, 0x5191, 0xFFFF, 0xFFFF, "9200 PRO NVMe SSD(0x5191)"},
{0x1344, 0x5192, 0xFFFF, 0xFFFF, "9200 MAX NVMe SSD(0x5192)"},
{0x1344, 0x51A2, 0xFFFF, 0xFFFF, "9300 PRO NVMe SSD(0x51A2)"},
{0x1344, 0x51A3, 0xFFFF, 0xFFFF, "9300 MAX NVMe SSD(0x51A3)"},
{0x1344, 0x51A2, 0xFFFF, 0xFFFF, "7300 PRO NVMe SSD(0x51A2)"},
{0x1344, 0x51A3, 0xFFFF, 0xFFFF, "7300 MAX NVMe SSD(0x51A3)"},
{0x1344, 0x51B1, 0xFFFF, 0xFFFF, "9300 PRO NVMe SSD(0x51B1)"},
{0x1344, 0x51B1, 0x1344, 0x4000, "3.84TB U.2(0x1344-0x4000)"},
{0x1344, 0x51B1, 0x1344, 0x5000, "7.68TB U.2(0x1344-0x5000)"},
{0x1344, 0x51B1, 0x1344, 0x6000, "15.36TB U.2(0x1344-0x6000)"},
{0x1344, 0x51B2, 0xFFFF, 0xFFFF, "9300 MAX NVMe SSD(0x51B2)"},
{0x1344, 0x51B2, 0x1344, 0x4000, "3.2TB U.2(0x1344-0x4000)"},
{0x1344, 0x51B2, 0x1344, 0x5000, "6.4 TB U.2(0x1344-0x5000)"},
{0x1344, 0x51B2, 0x1344, 0x6000, "12.8TB U.2(0x1344-0x6000)"},
{0x1344, 0x51C0, 0xFFFF, 0xFFFF, "7400 PRO NVMe SSD(0x51C0)"},
{0x1344, 0x51C0, 0x1344, 0x1100, "M.2 480GB(0x1344-0x1100)"},
{0x1344, 0x51C0, 0x1344, 0x2000, "U.3 960GB(0x1344-0x2000)"},
{0x1344, 0x51C0, 0x1344, 0x2100, "M.2 960GB(0x1344-0x2100)"},
{0x1344, 0x51C0, 0x1344, 0x2600, "E1.S 960GB(0x1344-0x2600)"},
{0x1344, 0x51C0, 0x1344, 0x2B00, "M.2 1920GB(0x1344-0x2B00)"},
{0x1344, 0x51C0, 0x1344, 0x2D00, "E1.2 1920GB(0x1344-0x2D00)"},
{0x1344, 0x51C0, 0x1344, 0x3000, "U.3 1920GB(0x1344-0x3000)"},
{0x1344, 0x51C0, 0x1344, 0x3E00, "M.2 3840GB(0x1344-0x3E00)"},
{0x1344, 0x51C0, 0x1344, 0x3F00, "E1.S 3840GB(0x1344-0x3F00)"},
{0x1344, 0x51C0, 0x1344, 0x4000, "U.3 3840GB(0x1344-0x4000)"},
{0x1344, 0x51C0, 0x1344, 0x5000, "U.3 7680GB(0x1344-0x5000)"},
{0x1344, 0x51C1, 0xFFFF, 0xFFFF, "7400 MAX NVMe SSD(0x51C1)"},
{0x1344, 0x51C1, 0x1344, 0x1100, "M.2 400GB(0x1344-0x1100)"},
{0x1344, 0x51C1, 0x1344, 0x2000, "U.3 800GB(0x1344-0x2000)"},
{0x1344, 0x51C1, 0x1344, 0x2100, "M.2 800GB(0x1344-0x2100)"},
{0x1344, 0x51C1, 0x1344, 0x2600, "E1.S 800GB(0x1344-0x2600)"},
{0x1344, 0x51C1, 0x1344, 0x2B00, "M.2 1600GB(0x1344-0x2B00)"},
{0x1344, 0x51C1, 0x1344, 0x2D00, "E1.S 1600GB(0x1344-0x2D00)"},
{0x1344, 0x51C1, 0x1344, 0x3000, "U.3 1600GB(0x1344-0x3000)"},
{0x1344, 0x51C1, 0x1344, 0x3E00, "M.2 3200GB(0x1344-0x3E00)"},
{0x1344, 0x51C1, 0x1344, 0x3F00, "E1.S 3200GB(0x1344-0x3F00)"},
{0x1344, 0x51C1, 0x1344, 0x4000, "U.3 3200GB(0x1344-0x4000)"},
{0x1344, 0x51C1, 0x1344, 0x5000, "U.3 6400GB(0x1344-0x5000)"},
{0x1344, 0x51C3, 0xFFFF, 0xFFFF, "7450 PRO NVMe SSD(0x51C3)"},
{0x1344, 0x51C4, 0xFFFF, 0xFFFF, "7450 MAX NVMe SSD(0x51C4)"},
}; /* pci_vid_1344[] */
pci_id_t pci_vid_1345[] = {
@ -21742,6 +21781,8 @@ pci_id_t pci_vid_1425[] = {
{0x1425, 0x6088, 0xFFFF, 0xFFFF, "T62100-6088 Unified Wire Ethernet Controller(0x6088)"},
{0x1425, 0x6089, 0xFFFF, 0xFFFF, "T62100-6089 Unified Wire Ethernet Controller(0x6089)"},
{0x1425, 0x608A, 0xFFFF, 0xFFFF, "T62100-608a Unified Wire Ethernet Controller(0x608A)"},
{0x1425, 0x6092, 0xFFFF, 0xFFFF, "T62100-KR Unified Wire Ethernet Controller(0x6092)"},
{0x1425, 0x6092, 0x01DE, 0xFFF9, "Gimlet T6(0x01DE-0xFFF9)"},
{0x1425, 0x6401, 0xFFFF, 0xFFFF, "T6225-CR Unified Wire Ethernet Controller(0x6401)"},
{0x1425, 0x6402, 0xFFFF, 0xFFFF, "T6225-SO-CR Unified Wire Ethernet Controller(0x6402)"},
{0x1425, 0x6403, 0xFFFF, 0xFFFF, "T6425-CR Unified Wire Ethernet Controller(0x6403)"},
@ -21766,6 +21807,8 @@ pci_id_t pci_vid_1425[] = {
{0x1425, 0x6488, 0xFFFF, 0xFFFF, "T62100-6088 Unified Wire Ethernet Controller(0x6488)"},
{0x1425, 0x6489, 0xFFFF, 0xFFFF, "T62100-6089 Unified Wire Ethernet Controller(0x6489)"},
{0x1425, 0x648A, 0xFFFF, 0xFFFF, "T62100-608a Unified Wire Ethernet Controller(0x648A)"},
{0x1425, 0x6492, 0xFFFF, 0xFFFF, "T62100-KR Unified Wire Ethernet Controller(0x6492)"},
{0x1425, 0x6492, 0x01DE, 0xFFF9, "Gimlet T6(0x01DE-0xFFF9)"},
{0x1425, 0x6501, 0xFFFF, 0xFFFF, "T6225-CR Unified Wire Storage Controller(0x6501)"},
{0x1425, 0x6502, 0xFFFF, 0xFFFF, "T6225-SO-CR Unified Wire Storage Controller(0x6502)"},
{0x1425, 0x6503, 0xFFFF, 0xFFFF, "T6425-CR Unified Wire Storage Controller(0x6503)"},
@ -21790,6 +21833,7 @@ pci_id_t pci_vid_1425[] = {
{0x1425, 0x6588, 0xFFFF, 0xFFFF, "T62100-6088 Unified Wire Storage Controller(0x6588)"},
{0x1425, 0x6589, 0xFFFF, 0xFFFF, "T62100-6089 Unified Wire Storage Controller(0x6589)"},
{0x1425, 0x658A, 0xFFFF, 0xFFFF, "T62100-608a Unified Wire Storage Controller(0x658A)"},
{0x1425, 0x6592, 0xFFFF, 0xFFFF, "T62100-KR Unified Wire Storage Controller(0x6592)"},
{0x1425, 0x6601, 0xFFFF, 0xFFFF, "T6225-CR Unified Wire Storage Controller(0x6601)"},
{0x1425, 0x6602, 0xFFFF, 0xFFFF, "T6225-SO-CR Unified Wire Storage Controller(0x6602)"},
{0x1425, 0x6603, 0xFFFF, 0xFFFF, "T6425-CR Unified Wire Storage Controller(0x6603)"},
@ -21814,6 +21858,7 @@ pci_id_t pci_vid_1425[] = {
{0x1425, 0x6688, 0xFFFF, 0xFFFF, "T62100-6088 Unified Wire Storage Controller(0x6688)"},
{0x1425, 0x6689, 0xFFFF, 0xFFFF, "T62100-6089 Unified Wire Storage Controller(0x6689)"},
{0x1425, 0x668A, 0xFFFF, 0xFFFF, "T62100-608a Unified Wire Storage Controller(0x668A)"},
{0x1425, 0x6692, 0xFFFF, 0xFFFF, "T62100-KR Unified Wire Storage Controller(0x6692)"},
{0x1425, 0x6801, 0xFFFF, 0xFFFF, "T6225-CR Unified Wire Ethernet Controller [VF](0x6801)"},
{0x1425, 0x6802, 0xFFFF, 0xFFFF, "T6225-SO-CR Unified Wire Ethernet Controller [VF](0x6802)"},
{0x1425, 0x6803, 0xFFFF, 0xFFFF, "T6425-CR Unified Wire Ethernet Controller [VF](0x6803)"},
@ -28587,7 +28632,9 @@ pci_id_t pci_vid_1AEE[] = {
pci_id_t pci_vid_1AF4[] = {
{0x1AF4, 0xFFFF, 0xFFFF, 0xFFFF, "Red Hat, Inc.(0x1AF4)"},
{0x1AF4, 0x1000, 0xFFFF, 0xFFFF, "Virtio network device(0x1000)"},
{0x1AF4, 0x1000, 0x01DE, 0xFFFB, "Propolis Virtio network device(0x01DE-0xFFFB)"},
{0x1AF4, 0x1001, 0xFFFF, 0xFFFF, "Virtio block device(0x1001)"},
{0x1AF4, 0x1001, 0x01DE, 0xFFFA, "Propolis Virtio block device(0x01DE-0xFFFA)"},
{0x1AF4, 0x1002, 0xFFFF, 0xFFFF, "Virtio memory balloon(0x1002)"},
{0x1AF4, 0x1003, 0xFFFF, 0xFFFF, "Virtio console(0x1003)"},
{0x1AF4, 0x1004, 0xFFFF, 0xFFFF, "Virtio SCSI(0x1004)"},
@ -30348,6 +30395,51 @@ pci_id_t pci_vid_1F2F[] = {
{0x1F2F, 0x1513, 0x1F2F, 0x6118, "KM560 U.2 7.68TB NVMe SSD(0x1F2F-0x6118)"},
}; /* pci_vid_1F2F[] */
pci_id_t pci_vid_1F3F[] = {
{0x1F3F, 0xFFFF, 0xFFFF, 0xFFFF, "3SNIC Ltd(0x1F3F)"},
{0x1F3F, 0x2100, 0xFFFF, 0xFFFF, "3SRAID SAS/SATA HBA(0x2100)"},
{0x1F3F, 0x2100, 0x1F3F, 0x0120, "HBA 32 Ports(0x1F3F-0x0120)"},
{0x1F3F, 0x2100, 0x1F3F, 0x0125, "HBA 40 Ports(0x1F3F-0x0125)"},
{0x1F3F, 0x2100, 0x1F3F, 0x0180, "HBA 16 Ports(0x1F3F-0x0180)"},
{0x1F3F, 0x2100, 0x1F3F, 0x0185, "HBA 8 Ports(0x1F3F-0x0185)"},
{0x1F3F, 0x2200, 0xFFFF, 0xFFFF, "3SRAID RAID controller(0x2200)"},
{0x1F3F, 0x2200, 0x1F3F, 0x0185, "RAID Controller 16 Ports with 2G Cache(0x1F3F-0x0185)"},
{0x1F3F, 0x2200, 0x1F3F, 0x01A1, "RAID Controller 40 Ports with 2G Cache(0x1F3F-0x01A1)"},
{0x1F3F, 0x2200, 0x1F3F, 0x01A4, "RAID Controller 16 Ports with 4G Cache(0x1F3F-0x01A4)"},
{0x1F3F, 0x2200, 0x1F3F, 0x01A8, "RAID Controller 32 Ports with 4G Cache(0x1F3F-0x01A8)"},
{0x1F3F, 0x2200, 0x1F3F, 0x01AD, "RAID Controller 40 Ports with 4G Cache(0x1F3F-0x01AD)"},
{0x1F3F, 0x9001, 0xFFFF, 0xFFFF, "Ethernet VF(0x9001)"},
{0x1F3F, 0x9001, 0x1F3F, 0x1000, "Ethernet VF(0x1F3F-0x1000)"},
{0x1F3F, 0x9002, 0xFFFF, 0xFFFF, "Ethernet VF Hyper-V(0x9002)"},
{0x1F3F, 0x9002, 0x1F3F, 0x1000, "Ethernet VF Hyper-V(0x1F3F-0x1000)"},
{0x1F3F, 0x9003, 0xFFFF, 0xFFFF, "Ethernet SDI VF(0x9003)"},
{0x1F3F, 0x9003, 0x1F3F, 0x1000, "Ethernet SDI VF(0x1F3F-0x1000)"},
{0x1F3F, 0x9004, 0xFFFF, 0xFFFF, "Ethernet SDI VF Hyper-V(0x9004)"},
{0x1F3F, 0x9004, 0x1F3F, 0x1000, "Ethernet SDI VF Hyper-V(0x1F3F-0x1000)"},
{0x1F3F, 0x9008, 0xFFFF, 0xFFFF, "3SFC VF(0x9008)"},
{0x1F3F, 0x9008, 0x1F3F, 0x1000, "3SFC VF(0x1F3F-0x1000)"},
{0x1F3F, 0x9009, 0xFFFF, 0xFFFF, "3SFC VF Hyper-V(0x9009)"},
{0x1F3F, 0x9009, 0x1F3F, 0x1000, "3SFC VF Hyper-V(0x1F3F-0x1000)"},
{0x1F3F, 0x9010, 0xFFFF, 0xFFFF, "3SFC FC Controller(0x9010)"},
{0x1F3F, 0x9010, 0x1F3F, 0x0041, "Dual Port 16GE FC to PCIe Gen4 x16 Adapter(0x1F3F-0x0041)"},
{0x1F3F, 0x9010, 0x1F3F, 0x0061, "Dual Port 32GE FC to PCIe Gen4 x16 Adapter(0x1F3F-0x0061)"},
{0x1F3F, 0x9020, 0xFFFF, 0xFFFF, "Ethernet Network Adapter(0x9020)"},
{0x1F3F, 0x9020, 0x1F3F, 0x0051, "Dual Port 25GE Ethernet Network Adapter(0x1F3F-0x0051)"},
{0x1F3F, 0x9020, 0x1F3F, 0x0052, "Quad Port 25GE Ethernet Network Adapter(0x1F3F-0x0052)"},
{0x1F3F, 0x9020, 0x1F3F, 0x00A1, "Dual Port 100GE Ethernet Network Adapter(0x1F3F-0x00A1)"},
{0x1F3F, 0x9030, 0xFFFF, 0xFFFF, "IPU(0x9030)"},
{0x1F3F, 0x9030, 0x1F3F, 0x0051, "Dual Port 25GE IPU(0x1F3F-0x0051)"},
{0x1F3F, 0x9031, 0xFFFF, 0xFFFF, "SDI5.0(0x9031)"},
{0x1F3F, 0x9031, 0x1F3F, 0x0051, "Dual Port 25GE SDI5.0lite(0x1F3F-0x0051)"},
{0x1F3F, 0x9031, 0x1F3F, 0x00A1, "Dual Port 100GE SDI5.0(0x1F3F-0x00A1)"},
{0x1F3F, 0x9032, 0xFFFF, 0xFFFF, "SDI5.1(0x9032)"},
{0x1F3F, 0x9032, 0x1F3F, 0x00A1, "Dual Port 100GE SDI5.1(0x1F3F-0x00A1)"},
}; /* pci_vid_1F3F[] */
pci_id_t pci_vid_1FAA[] = {
{0x1FAA, 0xFFFF, 0xFFFF, 0xFFFF, "Hexaflake (Shanghai) Information Technology Co., Ltd.(0x1FAA)"},
}; /* pci_vid_1FAA[] */
pci_id_t pci_vid_1FAB[] = {
{0x1FAB, 0xFFFF, 0xFFFF, 0xFFFF, "Unifabrix Ltd.(0x1FAB)"},
{0x1FAB, 0x0000, 0xFFFF, 0xFFFF, "Nexus Alpha IVPU(0x0000)"},
@ -31133,14 +31225,6 @@ pci_id_t pci_vid_5168[] = {
{0x5168, 0x0301, 0xFFFF, 0xFFFF, "FlyDVB-T(0x0301)"},
}; /* pci_vid_5168[] */
pci_id_t pci_vid_51D8[] = {
{0x51D8, 0xFFFF, 0xFFFF, 0xFFFF, "Alder Lake-P Serial IO I2C Controller #2(0x51D8)"},
}; /* pci_vid_51D8[] */
pci_id_t pci_vid_51D9[] = {
{0x51D9, 0xFFFF, 0xFFFF, 0xFFFF, "Alder Lake-P Serial IO I2C Controller #3(0x51D9)"},
}; /* pci_vid_51D9[] */
pci_id_t pci_vid_5301[] = {
{0x5301, 0xFFFF, 0xFFFF, 0xFFFF, "Alliance Semiconductor Corp.(0x5301)"},
{0x5301, 0x0001, 0xFFFF, 0xFFFF, "ProMotion aT3D(0x0001)"},
@ -31447,11 +31531,11 @@ pci_id_t pci_vid_6688[] = {
pci_id_t pci_vid_6766[] = {
{0x6766, 0xFFFF, 0xFFFF, 0xFFFF, "Glenfly Tech Co., Ltd.(0x6766)"},
{0x6766, 0x3D00, 0xFFFF, 0xFFFF, "Arise-GT-10C0(0x3D00)"},
{0x6766, 0x3D02, 0xFFFF, 0xFFFF, "Arise 1020(0x3D02)"},
{0x6766, 0x3D02, 0xFFFF, 0xFFFF, "Arise1020(0x3D02)"},
{0x6766, 0x3D03, 0xFFFF, 0xFFFF, "Arise-GT-1040(0x3D03)"},
{0x6766, 0x3D04, 0xFFFF, 0xFFFF, "Arise1010(0x3D04)"},
{0x6766, 0x3D40, 0xFFFF, 0xFFFF, "Arise-GT-10C0 High Definition Audio Controller(0x3D40)"},
{0x6766, 0x3D41, 0xFFFF, 0xFFFF, "Arise 1020 High Definition Audio Controller(0x3D41)"},
{0x6766, 0x3D41, 0xFFFF, 0xFFFF, "Arise1020 High Definition Audio Controller(0x3D41)"},
}; /* pci_vid_6766[] */
pci_id_t pci_vid_6899[] = {
@ -33226,6 +33310,7 @@ pci_id_t pci_vid_8086[] = {
{0x8086, 0x1234, 0xFFFF, 0xFFFF, "430MX - 82371MX Mobile PCI I/O IDE Xcelerator (MPIIX)(0x1234)"},
{0x8086, 0x1235, 0xFFFF, 0xFFFF, "430MX - 82437MX Mob. System Ctrlr (MTSC) & 82438MX Data Path (MTDP)(0x1235)"},
{0x8086, 0x1237, 0xFFFF, 0xFFFF, "440FX - 82441FX PMC [Natoma](0x1237)"},
{0x8086, 0x1237, 0x01DE, 0xFFFE, "Propolis Virtual 440FX(0x01DE-0xFFFE)"},
{0x8086, 0x1237, 0x1AF4, 0x1100, "Qemu virtual machine(0x1AF4-0x1100)"},
{0x8086, 0x1239, 0xFFFF, 0xFFFF, "82371FB PIIX IDE Interface(0x1239)"},
{0x8086, 0x123B, 0xFFFF, 0xFFFF, "82380PB PCI to PCI Docking Bridge(0x123B)"},
@ -38580,6 +38665,7 @@ pci_id_t pci_vid_8086[] = {
{0x8086, 0x6FFD, 0xFFFF, 0xFFFF, "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent(0x6FFD)"},
{0x8086, 0x6FFE, 0xFFFF, 0xFFFF, "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent(0x6FFE)"},
{0x8086, 0x7000, 0xFFFF, 0xFFFF, "82371SB PIIX3 ISA [Natoma/Triton II](0x7000)"},
{0x8086, 0x7000, 0x01DE, 0xFFFD, "Propolis Virtual PIIX3 ISA Controller(0x01DE-0xFFFD)"},
{0x8086, 0x7000, 0x1AF4, 0x1100, "Qemu virtual machine(0x1AF4-0x1100)"},
{0x8086, 0x7010, 0xFFFF, 0xFFFF, "82371SB PIIX3 IDE [Natoma/Triton II](0x7010)"},
{0x8086, 0x7010, 0x1AF4, 0x1100, "Qemu virtual machine(0x1AF4-0x1100)"},
@ -38597,6 +38683,7 @@ pci_id_t pci_vid_8086[] = {
{0x8086, 0x7112, 0x15AD, 0x1976, "Virtual Machine Chipset(0x15AD-0x1976)"},
{0x8086, 0x7112, 0x1AF4, 0x1100, "QEMU Virtual Machine(0x1AF4-0x1100)"},
{0x8086, 0x7113, 0xFFFF, 0xFFFF, "82371AB/EB/MB PIIX4 ACPI(0x7113)"},
{0x8086, 0x7113, 0x01DE, 0xFFFC, "Propolis Virtual PIIX4 PM Controller(0x01DE-0xFFFC)"},
{0x8086, 0x7113, 0x15AD, 0x1976, "Virtual Machine Chipset(0x15AD-0x1976)"},
{0x8086, 0x7113, 0x1AF4, 0x1100, "Qemu virtual machine(0x1AF4-0x1100)"},
{0x8086, 0x7120, 0xFFFF, 0xFFFF, "82810 GMCH (Graphics Memory Controller Hub)(0x7120)"},
@ -38670,6 +38757,9 @@ pci_id_t pci_vid_8086[] = {
{0x8086, 0x7AA4, 0xFFFF, 0xFFFF, "Alder Lake-S PCH SPI Controller(0x7AA4)"},
{0x8086, 0x7AA7, 0xFFFF, 0xFFFF, "Alder Lake-S PCH Shared SRAM(0x7AA7)"},
{0x8086, 0x7AB4, 0xFFFF, 0xFFFF, "Alder Lake-S PCH PCI Express Root Port #13(0x7AB4)"},
{0x8086, 0x7AB8, 0xFFFF, 0xFFFF, "Alder Lake-S PCH PCI Express Root Port #1(0x7AB8)"},
{0x8086, 0x7AB9, 0xFFFF, 0xFFFF, "Alder Lake-S PCH PCI Express Root Port #2(0x7AB9)"},
{0x8086, 0x7ABC, 0xFFFF, 0xFFFF, "Alder Lake-S PCH PCI Express Root Port #5(0x7ABC)"},
{0x8086, 0x7ABD, 0xFFFF, 0xFFFF, "Alder Lake-S PCH PCI Express Root Port #6(0x7ABD)"},
{0x8086, 0x7ACC, 0xFFFF, 0xFFFF, "Alder Lake-S PCH I2C Controller #0(0x7ACC)"},
{0x8086, 0x7AD0, 0xFFFF, 0xFFFF, "Alder Lake-S HD Audio Controller(0x7AD0)"},
@ -41095,7 +41185,7 @@ pci_vid_index_t pci_vid_index[] = {
{0x0123, 1, pci_vid_0123 },
{0x0128, 1, pci_vid_0128 },
{0x018A, 2, pci_vid_018A },
{0x01DE, 1, pci_vid_01DE },
{0x01DE, 3, pci_vid_01DE },
{0x0200, 1, pci_vid_0200 },
{0x021B, 2, pci_vid_021B },
{0x0270, 1, pci_vid_0270 },
@ -41203,7 +41293,7 @@ pci_vid_index_t pci_vid_index[] = {
{0x1052, 1, pci_vid_1052 },
{0x1053, 1, pci_vid_1053 },
{0x1054, 17, pci_vid_1054 },
{0x1055, 6, pci_vid_1055 },
{0x1055, 8, pci_vid_1055 },
{0x1056, 1, pci_vid_1056 },
{0x1057, 85, pci_vid_1057 },
{0x1058, 1, pci_vid_1058 },
@ -41337,7 +41427,7 @@ pci_vid_index_t pci_vid_index[] = {
{0x10DB, 1, pci_vid_10DB },
{0x10DC, 6, pci_vid_10DC },
{0x10DD, 3, pci_vid_10DD },
{0x10DE, 3119, pci_vid_10DE },
{0x10DE, 3120, pci_vid_10DE },
{0x10DF, 127, pci_vid_10DF },
{0x10E0, 7, pci_vid_10E0 },
{0x10E1, 5, pci_vid_10E1 },
@ -41935,7 +42025,7 @@ pci_vid_index_t pci_vid_index[] = {
{0x1341, 1, pci_vid_1341 },
{0x1342, 1, pci_vid_1342 },
{0x1343, 1, pci_vid_1343 },
{0x1344, 15, pci_vid_1344 },
{0x1344, 49, pci_vid_1344 },
{0x1345, 1, pci_vid_1345 },
{0x1347, 1, pci_vid_1347 },
{0x1349, 1, pci_vid_1349 },
@ -42151,7 +42241,7 @@ pci_vid_index_t pci_vid_index[] = {
{0x1422, 1, pci_vid_1422 },
{0x1423, 1, pci_vid_1423 },
{0x1424, 1, pci_vid_1424 },
{0x1425, 668, pci_vid_1425 },
{0x1425, 674, pci_vid_1425 },
{0x1426, 1, pci_vid_1426 },
{0x1427, 1, pci_vid_1427 },
{0x1428, 1, pci_vid_1428 },
@ -42922,7 +43012,7 @@ pci_vid_index_t pci_vid_index[] = {
{0x1AEC, 1, pci_vid_1AEC },
{0x1AED, 17, pci_vid_1AED },
{0x1AEE, 1, pci_vid_1AEE },
{0x1AF4, 21, pci_vid_1AF4 },
{0x1AF4, 23, pci_vid_1AF4 },
{0x1AF5, 1, pci_vid_1AF5 },
{0x1AFA, 1, pci_vid_1AFA },
{0x1B03, 3, pci_vid_1B03 },
@ -43106,6 +43196,8 @@ pci_vid_index_t pci_vid_index[] = {
{0x1F02, 1, pci_vid_1F02 },
{0x1F03, 8, pci_vid_1F03 },
{0x1F2F, 7, pci_vid_1F2F },
{0x1F3F, 38, pci_vid_1F3F },
{0x1FAA, 1, pci_vid_1FAA },
{0x1FAB, 2, pci_vid_1FAB },
{0x1FC0, 3, pci_vid_1FC0 },
{0x1FC1, 3, pci_vid_1FC1 },
@ -43193,8 +43285,6 @@ pci_vid_index_t pci_vid_index[] = {
{0x5143, 1, pci_vid_5143 },
{0x5145, 2, pci_vid_5145 },
{0x5168, 3, pci_vid_5168 },
{0x51D8, 1, pci_vid_51D8 },
{0x51D9, 1, pci_vid_51D9 },
{0x5301, 2, pci_vid_5301 },
{0x5333, 145, pci_vid_5333 },
{0x5431, 1, pci_vid_5431 },
@ -43239,7 +43329,7 @@ pci_vid_index_t pci_vid_index[] = {
{0x7FED, 1, pci_vid_7FED },
{0x8008, 4, pci_vid_8008 },
{0x807D, 1, pci_vid_807D },
{0x8086, 8213, pci_vid_8086 },
{0x8086, 8219, pci_vid_8086 },
{0x8088, 51, pci_vid_8088 },
{0x80EE, 3, pci_vid_80EE },
{0x8322, 1, pci_vid_8322 },

100
manuf
View File

@ -45,23 +45,23 @@
# http://standards-oui.ieee.org/cid/cid.csv:
# Content-Length: 12235
# Last-Modified: Sun, 08 May 2022 16:00:28 GMT
# Last-Modified: Sun, 15 May 2022 16:00:28 GMT
# http://standards-oui.ieee.org/iab/iab.csv:
# Content-Length: 381465
# Last-Modified: Sun, 08 May 2022 16:00:42 GMT
# Last-Modified: Sun, 15 May 2022 16:00:41 GMT
# http://standards-oui.ieee.org/oui/oui.csv:
# Content-Length: 2953536
# Last-Modified: Sun, 08 May 2022 16:01:24 GMT
# Content-Length: 2958812
# Last-Modified: Sun, 15 May 2022 16:01:17 GMT
# http://standards-oui.ieee.org/oui28/mam.csv:
# Content-Length: 459978
# Last-Modified: Sun, 08 May 2022 16:00:52 GMT
# Content-Length: 460953
# Last-Modified: Sun, 15 May 2022 16:00:50 GMT
# http://standards-oui.ieee.org/oui36/oui36.csv:
# Content-Length: 441775
# Last-Modified: Sun, 08 May 2022 16:01:11 GMT
# Content-Length: 442872
# Last-Modified: Sun, 15 May 2022 16:01:09 GMT
00:00:00 00:00:00 Officially Xerox, but 0:0:0:0:0:0 is more common
00:00:01 Xerox Xerox Corporation
@ -9926,7 +9926,7 @@
00:25:DC Sumitomo Sumitomo Electric Industries, Ltd
00:25:DD Sunnytek Sunnytek Information Co., Ltd.
00:25:DE Probits Probits Co., LTD.
00:25:DF Private
00:25:DF TaserInt Taser International Inc.
00:25:E0 CeedTecS CeedTec Sdn Bhd
00:25:E1 Shanghai Shanghai Seeyoo Electronic & Technology Co., Ltd
00:25:E2 Everspri Everspring Industry Co., Ltd.
@ -15794,7 +15794,7 @@
00:80:FF SocDeTel Soc. De Teleinformatique Rtc
00:81:C4 Cisco Cisco Systems, Inc
00:81:F9 TexasIns Texas Instruments
00:84:ED Private
00:84:ED LexmarkI Lexmark International, Inc.
00:86:9C PaloAlto Palo Alto Networks
00:86:A0 Private
00:87:01 SamsungE Samsung Electronics Co.,Ltd
@ -17333,6 +17333,7 @@
00:FA:21 SamsungE Samsung Electronics Co.,Ltd
00:FA:3B CloosEle Cloos Electronic Gmbh
00:FA:B6 KontaktM Kontakt Micro-Location Sp z o.o.
00:FB:F9 Axiado Axiado Corporation
00:FC:58 WebSilic WebSilicon Ltd.
00:FC:70 Intrepid Intrepid Control Systems, Inc.
00:FC:8B AmazonTe Amazon Technologies Inc.
@ -17397,6 +17398,7 @@
04:15:D9 Viwone
04:17:B6 SmartInn Smart Innovation LLC
04:18:0F SamsungE Samsung Electronics Co.,Ltd
04:18:92 HuaweiTe Huawei Technologies Co.,Ltd
04:18:B6 Private
04:18:D6 Ubiquiti Ubiquiti Networks Inc.
04:19:7F Graspher Grasphere Japan
@ -17935,6 +17937,7 @@
08:18:1A zte zte corporation
08:18:4C Thomas A. S. Thomas, Inc.
08:19:A6 HuaweiTe Huawei Technologies Co.,Ltd
08:1A:1E Shenzhen Shenzhen iComm Semiconductor CO.,LTD
08:1C:6E XiaomiCo Xiaomi Communications Co Ltd
08:1D:C4 ThermoFi Thermo Fisher Scientific Messtechnik GmbH
08:1D:FB Shanghai Shanghai Mexon Communication Technology Co.,Ltd
@ -19152,6 +19155,7 @@
14:61:02 AlpsAlpi Alps Alpine
14:61:2F Avaya Avaya Inc
14:63:08 JabilCir Jabil Circuit (Shanghai) Ltd.
14:65:6A HuaweiTe Huawei Technologies Co.,Ltd
14:66:B7 Advanced Advanced Design Technology Pty Ltd
14:69:A2 SichuanT Sichuan Tianyi Comheart Telecom Co.,LTD
14:6A:0B CypressE Cypress Electronics Limited
@ -19799,7 +19803,7 @@
1C:21:D1:F0:00:00/28 Private
1C:23:2C SamsungE Samsung Electronics Co.,Ltd
1C:23:4F EDMIEuro EDMI Europe Ltd
1C:24:CD AskeyCom Askey Computer Corp.
1C:24:CD AskeyCom Askey Computer Corp
1C:24:EB Burlywoo Burlywood
1C:25:E1 ChinaMob China Mobile IOT Company Limited
1C:27:04 zte zte corporation
@ -21801,11 +21805,20 @@
30:3A:BA Guangzho Guangzhou BaoLun Electronics Co., Ltd
30:3D:08 GlinttTe Glintt Tes S.A.
30:3D:51 IEEERegi IEEE Registration Authority
30:3D:51:00:00:00/28 FinkTele Fink Telecom Services GmbH
30:3D:51:10:00:00/28 Shenzhen Shenzhen Wlink Technology Co., Ltd.
30:3D:51:20:00:00/28 HarmanCo Harman Connected Services Corporation India Pvt. Ltd.
30:3D:51:30:00:00/28 SASystem S & A Systems
30:3D:51:40:00:00/28 DspreadT Dspread Technology (Beijing) Inc.
30:3D:51:50:00:00/28 MediaHub Media Hub Digital Smart Home Pty Ltd.
30:3D:51:60:00:00/28 Amber-Li Amber-Link Network Technology Co.,Ltd.
30:3D:51:70:00:00/28 DestinyA Destiny Automate Limited
30:3D:51:80:00:00/28 HeildbaA The Heil Co dba AWTI 3rd Eye Cam
30:3D:51:90:00:00/28 Annapurn Annapurna labs
30:3D:51:A0:00:00/28 TeraNXTG TeraNXT Global India Pvt Ltd.
30:3D:51:B0:00:00/28 LabmanAu Labman Automation
30:3D:51:C0:00:00/28 TalkGo TalkGo, Inc.
30:3D:51:D0:00:00/28 XORUK XOR UK Corporation Limited
30:3E:A7 IntelCor Intel Corporate
30:3E:AD SonavoxC Sonavox Canada Inc
30:3F:5D PtHanSun Pt Han Sung Electoronics Indonesia
@ -23153,6 +23166,7 @@
3C:A6:2F AVMAudio AVM Audiovisuelles Marketing und Computersysteme GmbH
3C:A6:F6 Apple Apple, Inc.
3C:A7:2B MRVCommu MRV Communications (Networks) LTD
3C:A7:AE zte zte corporation
3C:A8:2A HewlettP Hewlett Packard
3C:A8:ED smartlig smart light technology
3C:A9:16 HuaweiDe Huawei Device Co., Ltd.
@ -24294,6 +24308,7 @@
44:6F:F8 Dyson Dyson Limited
44:70:0B Iffu
44:70:98 MingHong Ming Hong Technology (Shen Zhen) Limited
44:71:47 BeijingX Beijing Xiaomi Electronics Co.,Ltd
44:73:D6 Logitech
44:74:6C Sony Sony Corporation
44:76:54 HuaweiTe Huawei Technologies Co.,Ltd
@ -24677,6 +24692,7 @@
48:88:CA Motorola Motorola (Wuhan) Mobility Technologies Communication Co., Ltd.
48:89:E7 IntelCor Intel Corporate
48:8A:D2 MercuryC Mercury Communication Technologies Co.,Ltd.
48:8A:E8 vivoMobi vivo Mobile Communication Co., Ltd.
48:8B:0A Cisco Cisco Systems, Inc
48:8C:63 HuaweiDe Huawei Device Co., Ltd.
48:8D:36 Arcadyan Arcadyan Corporation
@ -24884,7 +24900,7 @@
4C:33:29 Sweroam
4C:33:4E Hightech
4C:34:88 IntelCor Intel Corporate
4C:36:4E Panasoni Panasonic Corporation Connected Solutions Company
4C:36:4E Panasoni Panasonic Connect Co., Ltd.
4C:38:D5 MitacCom Mitac Computing Technology Corporation
4C:38:D8 ARRISGro ARRIS Group, Inc.
4C:39:09 HPLElect HPL Electric & Power Private Limited
@ -24947,6 +24963,7 @@
4C:62:55 Sanmina- Sanmina-Sci System De Mexico S.A. De C.V.
4C:62:7B SmartCow SmartCow AI Technologies Taiwan Ltd.
4C:63:71 XiaomiCo Xiaomi Communications Co Ltd
4C:63:AD HuaweiDe Huawei Device Co., Ltd.
4C:63:EB Applicat Application Solutions (Electronics and Vision) Ltd
4C:64:D9 Guangdon Guangdong Leawin Group Co., Ltd
4C:65:A8 IEEERegi IEEE Registration Authority
@ -25298,6 +25315,7 @@
50:3D:EB Zhejiang Zhejiang Tmall Technology Co., Ltd.
50:3E:7C LeiShenI LeiShen Intelligent System Co.Ltd
50:3E:AA Tp-LinkT Tp-Link Technologies Co.,Ltd.
50:3F:50 HuaweiDe Huawei Device Co., Ltd.
50:3F:56 Syncmold Syncmold Enterprise Corp
50:3F:98 Cmitech
50:40:61 Nokia
@ -25344,7 +25362,7 @@
50:5B:C2 LiteonTe Liteon Technology Corporation
50:5D:7A zte zte corporation
50:5D:AC HuaweiTe Huawei Technologies Co.,Ltd
50:5F:B5 AskeyCom Askey Computer Corp.
50:5F:B5 AskeyCom Askey Computer Corp
50:60:28 Xirrus Xirrus Inc.
50:61:84 Avaya Avaya Inc
50:61:BF Cisco Cisco Systems, Inc
@ -25367,6 +25385,7 @@
50:62:55:D0:00:00/28 COTTElec COTT Electronics
50:62:55:E0:00:00/28 Shinsoft Shinsoft Co., Ltd.
50:63:13 HonHaiPr Hon Hai Precision Ind. Co.,Ltd.
50:63:91 HuaweiTe Huawei Technologies Co.,Ltd
50:64:2B XIAOMIEl XIAOMI Electronics,CO.,LTD
50:64:41 Greenlee
50:65:83 TexasIns Texas Instruments
@ -25989,6 +26008,7 @@
58:2F:40 Nintendo Nintendo Co.,Ltd
58:2F:42 Universa Universal Electric Corporation
58:2F:F7 Sagemcom Sagemcom Broadband SAS
58:30:5B Shanghai Shanghai Junqian Sensing Technology Co.,LTD
58:31:12 Drust
58:32:77 Reliance Reliance Communications LLC
58:34:3B GlovastT Glovast Technology Ltd.
@ -26274,6 +26294,7 @@
5C:02:72 SiliconL Silicon Laboratories
5C:03:39 HuaweiTe Huawei Technologies Co.,Ltd
5C:04:5A NAStageL Company NA Stage & Light
5C:07:58 Ufispace Ufispace Co., LTD.
5C:07:6F ThoughtC Thought Creator
5C:09:47 Apple Apple, Inc.
5C:09:79 HuaweiTe Huawei Technologies Co.,Ltd
@ -27885,6 +27906,7 @@
6C:B5:6B HUMAX HUMAX Co., Ltd.
6C:B6:CA DIVUS DIVUS GmbH
6C:B7:49 HuaweiTe Huawei Technologies Co.,Ltd
6C:B7:E2 HuaweiTe Huawei Technologies Co.,Ltd
6C:B7:F4 SamsungE Samsung Electronics Co.,Ltd
6C:B8:81 zte zte corporation
6C:B9:C5 DeltaNet Delta Networks, Inc.
@ -27994,6 +28016,7 @@
70:0F:EC Poindus Poindus Systems Corp.
70:10:5C Cisco Cisco Systems, Inc
70:10:6F HewlettP Hewlett Packard Enterprise
70:11:0E zte zte corporation
70:11:24 Apple Apple, Inc.
70:11:35 Livesecu Livesecu co., Ltd
70:11:AE MusicLif Music Life LTD
@ -28230,6 +28253,7 @@
70:9A:0B ItalianI Italian Institute of Technology
70:9B:A5 Shenzhen Shenzhen Y&D Electronics Co.,LTD.
70:9B:FC Bryton Bryton Inc.
70:9C:45 HuaweiTe Huawei Technologies Co.,Ltd
70:9C:8F Nero Nero AG
70:9C:D1 IntelCor Intel Corporate
70:9E:29 SonyInte Sony Interactive Entertainment Inc.
@ -32678,6 +32702,7 @@
74:9D:79 Sercomm Sercomm Corporation.
74:9D:8F HuaweiTe Huawei Technologies Co.,Ltd
74:9D:DC 2Wire 2Wire Inc
74:9E:75 ArubaaHe Aruba, a Hewlett Packard Enterprise Company
74:9E:A5 Ohsung
74:9E:AF Apple Apple, Inc.
74:9E:F5 SamsungE Samsung Electronics Co.,Ltd
@ -32970,6 +32995,7 @@
78:59:68 HonHaiPr Hon Hai Precision Ind. Co.,Ltd.
78:5B:64 HuaweiDe Huawei Device Co., Ltd.
78:5C:28 PrimeMot Prime Motion Inc.
78:5C:5E HuaweiTe Huawei Technologies Co.,Ltd
78:5C:72 HiosoTec Hioso Technology Co., Ltd.
78:5D:C8 LGElectr LG Electronics
78:5E:A2 SunitecE Sunitec Enterprise Co.,Ltd
@ -33842,6 +33868,7 @@
80:61:5F BeijingS Beijing Sinead Technology Co., Ltd.
80:61:8F Shenzhen Shenzhen sangfei consumer communications co.,ltd
80:64:59 Nimbus Nimbus Inc.
80:64:6F Espressi Espressif Inc.
80:64:7A OlaSense Ola Sense Inc
80:65:59 EMMicroe EM Microelectronic
80:65:6D SamsungE Samsung Electronics Co.,Ltd
@ -34669,7 +34696,7 @@
88:B1:E1 MojoNetw Mojo Networks, Inc.
88:B2:91 Apple Apple, Inc.
88:B3:62 NokiaSha Nokia Shanghai Bell Co., Ltd.
88:B4:36 Private
88:B4:36 FUJIFILM FUJIFILM Corporation
88:B4:A6 Motorola Motorola Mobility LLC, a Lenovo Company
88:B6:27 GembirdE Gembird Europe BV
88:B6:6B easynetw easynetworks
@ -34736,7 +34763,7 @@
88:DA:33 BeijingX Beijing Xiaoyuer Network Technology Co., Ltd
88:DC:96 EnGenius EnGenius Technologies, Inc.
88:DD:79 Voltaire
88:DE:7C AskeyCom Askey Computer Corp.
88:DE:7C AskeyCom Askey Computer Corp
88:DE:A9 Roku Roku, Inc.
88:DF:9E NewH3CTe New H3C Technologies Co., Ltd
88:E0:34 Shinwain Shinwa industries(China) ltd.
@ -34871,6 +34898,7 @@
8C:1F:64:01:70:00/36 Farmote Farmote Limited
8C:1F:64:01:A0:00/36 Paragraf
8C:1F:64:01:E0:00/36 SCIREQSc SCIREQ Scientific Respiratory Equipment Inc
8C:1F:64:04:30:00/36 AperNet AperNet, LLC
8C:1F:64:04:50:00/36 Veilux Veilux Inc.
8C:1F:64:05:90:00/36 MBconnec MB connect line GmbH Fernwartungssysteme
8C:1F:64:05:F0:00/36 ESCADAUT ESCAD AUTOMATION GmbH
@ -34883,6 +34911,7 @@
8C:1F:64:08:60:00/36 WEPTECHe WEPTECH elektronik GmbH
8C:1F:64:08:B0:00/36 Shanghai Shanghai Shenxu Technology Co., Ltd
8C:1F:64:08:F0:00/36 AixContr AixControl GmbH
8C:1F:64:09:80:00/36 Agvoluti Agvolution GmbH
8C:1F:64:09:90:00/36 Pantheru Pantherun Technologies Pvt Ltd
8C:1F:64:09:B0:00/36 Taiv
8C:1F:64:09:F0:00/36 MBconnec MB connect line GmbH Fernwartungssysteme
@ -34899,6 +34928,7 @@
8C:1F:64:0E:00:00/36 Autophar Autopharma
8C:1F:64:0E:60:00/36 Cleanwat Cleanwatts Digital, S.A.
8C:1F:64:0E:A0:00/36 SmartSky SmartSky Networks LLC
8C:1F:64:0E:F0:00/36 Dave Dave Srl
8C:1F:64:0F:00:00/36 Xylon
8C:1F:64:0F:90:00/36 ikanInte ikan International LLC
8C:1F:64:10:10:00/36 ASW-ATI ASW-ATI Srl
@ -35066,11 +35096,13 @@
8C:1F:64:57:A0:00/36 NPOECO-I NPO ECO-INTECH Ltd.
8C:1F:64:57:B0:00/36 PotterEl Potter Electric Signal Company
8C:1F:64:58:10:00/36 SpectraD SpectraDynamics, Inc.
8C:1F:64:58:C0:00/36 EarMicro Ear Micro LLC
8C:1F:64:59:F0:00/36 DeltaCom Delta Computers LLC.
8C:1F:64:5A:C0:00/36 YUYAMAMF YUYAMA MFG Co.,Ltd
8C:1F:64:5A:E0:00/36 SuzhouMo Suzhou Motorcomm Electronic Technology Co., Ltd
8C:1F:64:5B:30:00/36 eumigind eumig industrie-TV GmbH.
8C:1F:64:5B:C0:00/36 Heitec Heitec Ag
8C:1F:64:5C:B0:00/36 dinosys
8C:1F:64:5D:30:00/36 EloyWate Eloy Water
8C:1F:64:5E:50:00/36 Telemetr Telemetrics Inc.
8C:1F:64:5F:50:00/36 HongSeok HongSeok Ltd.
@ -35101,6 +35133,7 @@
8C:1F:64:67:A0:00/36 MG MG s.r.l.
8C:1F:64:67:F0:00/36 Hamamats Hamamatsu Photonics K.K.
8C:1F:64:68:30:00/36 Slat
8C:1F:64:68:50:00/36 SancharC Sanchar Communication Systems
8C:1F:64:69:70:00/36 Sontay Sontay Ltd.
8C:1F:64:69:E0:00/36 AT-Autom AT-Automation Technology GmbH
8C:1F:64:6A:80:00/36 Bulwark
@ -35112,6 +35145,7 @@
8C:1F:64:6C:60:00/36 Fit
8C:1F:64:6C:D0:00/36 WuhanXin Wuhan Xingtuxinke ELectronic Co.,Ltd
8C:1F:64:6C:F0:00/36 Italora
8C:1F:64:6D:50:00/36 HTKHambu HTK Hamburg GmbH
8C:1F:64:6E:30:00/36 ViewSoni ViewSonic International Corporation
8C:1F:64:6E:A0:00/36 KMtronic KMtronic ltd
8C:1F:64:6F:40:00/36 Elsist Elsist Srl
@ -35154,11 +35188,13 @@
8C:1F:64:7B:70:00/36 Weidmann Weidmann Tecnologia Electrica de Mexico
8C:1F:64:7B:80:00/36 TimeMach TimeMachines Inc.
8C:1F:64:7B:90:00/36 Devicero Deviceroy
8C:1F:64:7B:C0:00/36 GOdevelo GO development GmbH
8C:1F:64:7C:80:00/36 JacquetD Jacquet Dechaume
8C:1F:64:7C:F0:00/36 Transdig Transdigital Pty Ltd
8C:1F:64:7D:20:00/36 Enlaps
8C:1F:64:7D:30:00/36 SuntechE Suntech Engineering
8C:1F:64:7D:60:00/36 AlgodueE Algodue Elettronica Srl
8C:1F:64:7D:80:00/36 HIROSAWA HIROSAWA ELECTRIC Co.,Ltd.
8C:1F:64:7D:D0:00/36 TAKASAKI TAKASAKI KYODO COMPUTING CENTER Co.,LTD.
8C:1F:64:7D:E0:00/36 SOCNOCAI SOCNOC AI Inc
8C:1F:64:7E:C0:00/36 Methods2 Methods2Business B.V.
@ -35180,6 +35216,7 @@
8C:1F:64:87:80:00/36 GreenAcc Green Access Ltd
8C:1F:64:88:30:00/36 DEUTA-WE DEUTA-WERKE GmbH
8C:1F:64:88:D0:00/36 Pantheru Pantherun Technologies Pvt Ltd
8C:1F:64:89:00:00/36 WonATech WonATech Co., Ltd.
8C:1F:64:89:20:00/36 MDIIndus MDI Industrial
8C:1F:64:89:E0:00/36 Cinetix Cinetix Srl
8C:1F:64:8A:40:00/36 GenesisT Genesis Technologies AG
@ -35282,6 +35319,7 @@
8C:1F:64:B0:30:00/36 Shenzhen Shenzhen Pisoftware Technology Co.,Ltd.
8C:1F:64:B0:C0:00/36 Barkodes Barkodes Bilgisayar Sistemleri Bilgi Iletisim ve Y
8C:1F:64:B1:00:00/36 MTUAeroE MTU Aero Engines AG
8C:1F:64:B1:30:00/36 Abode Abode Systems Inc
8C:1F:64:B2:20:00/36 Blighter Blighter Surveillance Systems Ltd
8C:1F:64:B2:C0:00/36 SanminaI Sanmina Israel Medical Systems Ltd
8C:1F:64:B3:B0:00/36 Sicon Sicon srl
@ -35321,6 +35359,7 @@
8C:1F:64:C2:70:00/36 LiftVent Lift Ventures, Inc
8C:1F:64:C2:80:00/36 TornadoS Tornado Spectral Systems Inc.
8C:1F:64:C2:F0:00/36 PowerEle Power Electronics Espana, S.L.
8C:1F:64:C3:50:00/36 PeterHub Peter Huber Kaeltemaschinenbau AG
8C:1F:64:C3:80:00/36 Eco-Adap Eco-Adapt
8C:1F:64:C3:A0:00/36 YUSURTec YUSUR Technology Co., Ltd.
8C:1F:64:C4:00:00/36 Sciospec Sciospec Scientific Instruments GmbH
@ -35338,6 +35377,7 @@
8C:1F:64:CA:10:00/36 Pantheru Pantherun Technologies Pvt Ltd
8C:1F:64:CA:60:00/36 ReliaSpe ReliaSpeak Information Technology Co., Ltd.
8C:1F:64:CA:D0:00/36 GeneralM General Motors
8C:1F:64:CA:F0:00/36 BRSSiste BRS Sistemas Eletrônicos
8C:1F:64:CB:E0:00/36 CircaEnt Circa Enterprises Inc
8C:1F:64:CC:60:00/36 GeniusVi Genius Vision Digital Private Limited
8C:1F:64:CC:B0:00/36 suzhouyu suzhou yuecrown Electronic Technology Co.,LTD
@ -35853,6 +35893,7 @@
90:23:5B AmazonTe Amazon Technologies Inc.
90:23:B4 NewH3CTe New H3C Technologies Co., Ltd
90:23:EC Availink Availink, Inc.
90:25:F2 HuaweiTe Huawei Technologies Co.,Ltd
90:27:2B Algorab Algorab S.r.l.
90:27:59 NanjingJ Nanjing Jiahao Technology Co., Ltd.
90:27:E4 Apple Apple, Inc.
@ -36343,6 +36384,7 @@
94:9F:3F OptekDig Optek Digital Technology company limited
94:9F:B4 ChengDuJ ChengDu JiaFaAnTai Technology Co.,Ltd
94:A0:4E BostexTe Bostex Technology Co., LTD
94:A0:7D HuaweiDe Huawei Device Co., Ltd.
94:A1:A2 AMPAKTec AMPAK Technology, Inc.
94:A3:CA KonnectO KonnectONE, LLC
94:A4:08 Shenzhen Shenzhen Trolink Technology CO, LTD
@ -36682,6 +36724,7 @@
98:5F:D3 Microsof Microsoft Corporation
98:60:22 EMW EMW Co., Ltd.
98:60:CA Apple Apple, Inc.
98:66:10 zte zte corporation
98:66:EA Industri Industrial Control Communications, Inc.
98:67:2E Skullcan Skullcandy
98:69:8A Apple Apple, Inc.
@ -36755,6 +36798,7 @@
98:80:BB:D0:00:00/28 Wyebot Wyebot, Inc.
98:80:BB:E0:00:00/28 DMedTech D.Med Technical Products GmbH
98:80:EE SamsungE Samsung Electronics Co.,Ltd
98:81:8A HuaweiDe Huawei Device Co., Ltd.
98:82:17 Disrupti Disruptive Ltd
98:83:89 SamsungE Samsung Electronics Co.,Ltd
98:84:E3 TexasIns Texas Instruments
@ -37411,6 +37455,7 @@ A0:2B:B8 HewlettP Hewlett Packard
A0:2C:36 Fn-LinkT Fn-Link Technology Limited
A0:2D:13 AirTiesW AirTies Wireless Networks
A0:2E:F3 UnitedIn United Integrated Services Co., Led.
A0:31:31 Procenne Procenne Digital Security
A0:31:DB HuaweiTe Huawei Technologies Co.,Ltd
A0:32:99 LenovoBe Lenovo (Beijing) Co., Ltd.
A0:34:1B Adero Adero Inc
@ -38354,6 +38399,7 @@ A8:A5:E2 MSF-Vath MSF-Vathauer Antriebstechnik GmbH & Co KG
A8:A6:48 QingdaoH Qingdao Hisense Communications Co.,Ltd.
A8:A6:68 zte zte corporation
A8:A7:95 HonHaiPr Hon Hai Precision Ind. Co.,Ltd.
A8:AA:7C HuaweiDe Huawei Device Co., Ltd.
A8:AB:B5 Apple Apple, Inc.
A8:AD:3D Alcatel- Alcatel-Lucent Shanghai Bell Co., Ltd
A8:B0:88 eero eero inc.
@ -38518,6 +38564,7 @@ AC:2B:6E IntelCor Intel Corporate
AC:2D:A3 TXTR TXTR GmbH
AC:2D:A9 TecnoMob Tecno Mobile Limited
AC:2F:A8 Humannix Humannix Co.,Ltd.
AC:31:84 HuaweiDe Huawei Device Co., Ltd.
AC:31:9D Shenzhen Shenzhen TG-NET Botone Technology Co.,Ltd.
AC:33:0B JapanCom Japan Computer Vision Corp.
AC:33:28 HuaweiDe Huawei Device Co., Ltd.
@ -38706,6 +38753,7 @@ AC:B3:13 ARRISGro ARRIS Group, Inc.
AC:B3:B5 HuaweiTe Huawei Technologies Co.,Ltd
AC:B5:66 RenesasE Renesas Electronics (Penang) Sdn. Bhd.
AC:B5:7D LiteonTe Liteon Technology Corporation
AC:B6:87 Arcadyan Arcadyan Corporation
AC:B7:4F METELsro METEL s.r.o.
AC:B8:59 UnibandE Uniband Electronic Corp,
AC:B9:2F Hangzhou Hangzhou Hikvision Digital Technology Co.,Ltd.
@ -38939,6 +38987,7 @@ B0:75:4D Nokia
B0:75:D5 zte zte corporation
B0:76:1B HuaweiTe Huawei Technologies Co.,Ltd
B0:77:AC ARRISGro ARRIS Group, Inc.
B0:78:39 GDMideaA GD Midea Air-Conditioning Equipment Co.,Ltd.
B0:78:70 Wi-NEXT Wi-NEXT, Inc.
B0:78:F0 BeijingH Beijing HuaqinWorld Technology Co.,Ltd.
B0:79:08 Cummings Cummings Engineering
@ -39412,6 +39461,7 @@ B4:BF:F6 SamsungE Samsung Electronics Co.,Ltd
B4:C0:F5 Shenzhen Shenzhen TINNO Mobile Technology Corp.
B4:C1:70 YichipMi Yi chip Microelectronics (Hangzhou) Co., Ltd
B4:C2:6A GarminIn Garmin International
B4:C2:F7 HuaweiDe Huawei Device Co., Ltd.
B4:C4:4E VXLeTech VXL eTech Pvt Ltd
B4:C4:76 WuhanMar Wuhan Maritime Communication Research Institute
B4:C4:FC XiaomiCo Xiaomi Communications Co Ltd
@ -39516,7 +39566,7 @@ B8:19:04 NokiaSha Nokia Shanghai Bell Co., Ltd.
B8:19:99 Nesys
B8:1D:AA LGElectr LG Electronics (Mobile Communications)
B8:1F:5E ApptionL Apption Labs Limited
B8:20:8E Panasoni Panasonic Corporation Connected Solutions Company
B8:20:8E Panasoni Panasonic Connect Co., Ltd.
B8:20:E7 Guangzho Guangzhou Horizontal Information & Network Integration Co. Ltd
B8:21:1C Apple Apple, Inc.
B8:22:4F SichuanT Sichuan Tianyi Comheart Telecom Co.,LTD
@ -40104,7 +40154,7 @@ BC:D2:06 HuaweiTe Huawei Technologies Co.,Ltd
BC:D2:95 Cisco Cisco Systems, Inc
BC:D5:B6 d2dtechn d2d technologies
BC:D7:13 OwlLabs Owl Labs
BC:D7:67 Private
BC:D7:67 BAEAplli BAE Systems Apllied Intelligence
BC:D7:A5 ArubaaHe Aruba, a Hewlett Packard Enterprise Company
BC:D7:CE ChinaMob China Mobile (Hangzhou) Information Technology Co., Ltd.
BC:D7:D4 Roku Roku, Inc
@ -40280,6 +40330,7 @@ C0:6C:6D MagneMot MagneMotion, Inc.
C0:6D:1A TianjinH Tianjin Henxinhuifeng Technology Co.,Ltd.
C0:6D:ED Hangzhou Hangzhou Hikvision Digital Technology Co.,Ltd.
C0:70:09 HuaweiTe Huawei Technologies Co.,Ltd
C0:71:AA ShenZhen ShenZhen OnMicro Electronics Co.,Ltd.
C0:74:2B Shenzhen Shenzhen Xunlong Software Co.,Limited
C0:74:AD Grandstr Grandstream Networks, Inc.
C0:78:31 HuaweiDe Huawei Device Co., Ltd.
@ -40437,7 +40488,7 @@ C0:D3:91:70:00:00/28 ALNETz ALNETz Co.,LTD
C0:D3:91:80:00:00/28 XenaSecu Xena Security Limited
C0:D3:91:90:00:00/28 xxter xxter bv
C0:D3:91:A0:00:00/28 AlphaAud Alpha Audiotronics, Inc.
C0:D3:91:B0:00:00/28 Private
C0:D3:91:B0:00:00/28 Celliber Celliber Technologies Pvt Limited
C0:D3:91:C0:00:00/28 Zhinengg Zhinengguo technology company limited
C0:D3:91:D0:00:00/28 Regulus Regulus Co.,Ltd.
C0:D3:91:E0:00:00/28 SamsaraN Samsara Networks Inc
@ -40667,6 +40718,7 @@ C4:74:1E zte zte corporation
C4:74:69 Bt9
C4:74:F8 HotPeppe Hot Pepper, Inc.
C4:75:AB IntelCor Intel Corporate
C4:75:EA HuaweiTe Huawei Technologies Co.,Ltd
C4:77:AB BeijingA Beijing ASU Tech Co.,Ltd
C4:77:AF Advanced Advanced Digital Broadcast SA
C4:78:A2 HuaweiDe Huawei Device Co., Ltd.
@ -41465,6 +41517,7 @@ CC:94:70 Kinestra Kinestral Technologies, Inc.
CC:95:D7 Vizio Vizio, Inc
CC:96:35 LVS LVS Co.,Ltd.
CC:96:A0 HuaweiTe Huawei Technologies Co.,Ltd
CC:96:E5 Dell Dell Inc.
CC:98:8B SONYVisu SONY Visual Products Inc.
CC:98:91 Cisco Cisco Systems, Inc
CC:99:16 Integrat Integrated Device Technology (Malaysia) Sdn. Bhd.
@ -41501,6 +41554,7 @@ CC:B6:91 NECMagnu NECMagnusCommunications
CC:B8:88 AnBSecur AnB Securite s.a.
CC:B8:A8 AMPAKTec AMPAK Technology, Inc.
CC:B8:F1 EagleKin Eagle Kingdom Technologies Limited
CC:BA:6F HuaweiTe Huawei Technologies Co.,Ltd
CC:BB:FE HuaweiTe Huawei Technologies Co.,Ltd
CC:BC:E3 HuaweiTe Huawei Technologies Co.,Ltd
CC:BD:35 Steinel Steinel GmbH
@ -42927,6 +42981,7 @@ DC:A9:04 Apple Apple, Inc.
DC:A9:56 Guangdon Guangdong Oppo Mobile Telecommunications Corp.,Ltd
DC:A9:71 IntelCor Intel Corporate
DC:A9:89 Macandc
DC:AA:43 Shenzhen Shenzhen Terca Information Technology Co., Ltd.
DC:AD:9E GreenPri GreenPriz
DC:AE:04 CELOXICA CELOXICA Ltd
DC:AE:EB RuckusWi Ruckus Wireless
@ -42979,6 +43034,7 @@ DC:D9:16 HuaweiTe Huawei Technologies Co.,Ltd
DC:D9:AE NokiaSha Nokia Shanghai Bell Co., Ltd.
DC:DA:4F GetckTec Getck Technology, Inc
DC:DA:80 NewH3CTe New H3C Technologies Co., Ltd
DC:DB:27 HuaweiDe Huawei Device Co., Ltd.
DC:DB:70 TonfunkS Tonfunk Systementwicklung und Service GmbH
DC:DC:07 TRP TRP Systems BV
DC:DC:E2 SamsungE Samsung Electronics Co.,Ltd
@ -43146,6 +43202,7 @@ E0:55:3D CiscoMer Cisco Meraki
E0:55:97 Emergent Emergent Vision Technologies Inc.
E0:56:F4 AxesNetw AxesNetwork Solutions inc.
E0:58:9E LaerdalM Laerdal Medical
E0:5A:1B Espressi Espressif Inc.
E0:5A:9F IEEERegi IEEE Registration Authority
E0:5A:9F:00:00:00/28 Annapurn Annapurna labs
E0:5A:9F:10:00:00/28 AitecSys Aitec System Co., Ltd.
@ -43919,6 +43976,7 @@ E8:9F:EC ChengduK Chengdu Kt Electronic Hi-Tech Co.,Ltd
E8:A0:CD Nintendo Nintendo Co.,Ltd
E8:A1:F8 zte zte corporation
E8:A2:45 JuniperN Juniper Networks
E8:A3:4E HuaweiTe Huawei Technologies Co.,Ltd
E8:A3:64 SignalPa Signal Path International / Peachtree Audio
E8:A4:C1 DeepSeaE Deep Sea Electronics Ltd
E8:A6:60 HuaweiTe Huawei Technologies Co.,Ltd
@ -44095,6 +44153,7 @@ EC:1B:BD SiliconL Silicon Laboratories
EC:1C:5D Siemens Siemens AG
EC:1D:7F zte zte corporation
EC:1D:8B Cisco Cisco Systems, Inc
EC:1D:9E QuectelW Quectel Wireless Solutions Co.,Ltd.
EC:1F:72 SamsungE Samsung Electro-Mechanics(Thailand)
EC:21:25 Toshiba Toshiba Corp.
EC:21:9F VidaBox VidaBox LLC
@ -44321,6 +44380,7 @@ EC:E1:A9 Cisco Cisco Systems, Inc
EC:E2:FD SKGElect SKG Electric Group(Thailand) Co., Ltd.
EC:E5:12 tado tado GmbH
EC:E5:55 Hirschma Hirschmann Automation
EC:E6:1D HuaweiDe Huawei Device Co., Ltd.
EC:E6:A2 Fiberhom Fiberhome Telecommunication Technologies Co.,LTD
EC:E7:44 Omntecmf Omntec mfg. inc
EC:E7:A7 IntelCor Intel Corporate
@ -44772,6 +44832,7 @@ F4:15:FD Shanghai Shanghai Pateo Electronic Equipment Manufacturing Co., Ltd.
F4:17:B8 AirTiesW AirTies Wireless Networks
F4:19:E2 Volterra
F4:1B:A1 Apple Apple, Inc.
F4:1C:71 Shenzhen Shenzhen Sanmu Communication Technology Co., Ltd
F4:1C:95 BeijingY Beijing Yunyi Times Technology Co,.Ltd
F4:1D:6B HuaweiTe Huawei Technologies Co.,Ltd
F4:1E:26 Simon-Ka Simon-Kaloi Engineering
@ -45011,6 +45072,7 @@ F4:B7:E2 HonHaiPr Hon Hai Precision Ind. Co.,Ltd.
F4:B8:5E TexasIns Texas Instruments
F4:B8:98 TexasIns Texas Instruments
F4:B8:A7 zte zte corporation
F4:BB:C7 vivoMobi vivo Mobile Communication Co., Ltd.
F4:BC:97 Shenzhen Shenzhen Crave Communication Co., LTD
F4:BC:DA Shenzhen Shenzhen Jingxun Software Telecommunication Technology Co.,Ltd
F4:BD:7C Chengduj Chengdu jinshi communication Co., LTD
@ -45523,6 +45585,7 @@ FC:03:9F SamsungE Samsung Electronics Co.,Ltd
FC:04:1C Guangdon Guangdong Oppo Mobile Telecommunications Corp.,Ltd
FC:06:47 Cortland Cortland Research, LLC
FC:06:ED M2Motive M2Motive Technology Inc.
FC:07:36 HuaweiDe Huawei Device Co., Ltd.
FC:07:A0 LREMedic LRE Medical GmbH
FC:08:4A Fujitsu Fujitsu Limited
FC:08:77 PrentkeR Prentke Romich Company
@ -45539,6 +45602,7 @@ FC:10:C6 TaicangT Taicang T&W Electronics
FC:11:86 Logic3 Logic3 plc
FC:11:93 HuaweiTe Huawei Technologies Co.,Ltd
FC:12:2C HuaweiTe Huawei Technologies Co.,Ltd
FC:12:63 AskeyCom Askey Computer Corp
FC:13:49 GlobalAp Global Apps Corp.
FC:13:F0 Bouffalo Bouffalo Lab (Nanjing) Co., Ltd.
FC:14:99 AimoreAc Aimore Acoustics Incorporation

View File

@ -5795,6 +5795,7 @@ amt-soap-https 16993/tcp/udp # Intel(R) AMT SOAP/HTTPS
amt-redir-tcp 16994/tcp/udp # Intel(R) AMT Redirection/TCP
amt-redir-tls 16995/tcp/udp # Intel(R) AMT Redirection/TLS
isode-dua 17007/tcp/udp
ncpu 17010/tcp # Plan 9 cpu port
vestasdlp 17184/tcp # Vestas Data Layer Protocol
soundsvirtual 17185/tcp/udp # Sounds Virtual
chipper 17219/tcp/udp # Chipper