diff --git a/.mailmap b/.mailmap index 55bd44b67..afd0c7361 100644 --- a/.mailmap +++ b/.mailmap @@ -142,3 +142,10 @@ Lukáš Říha Alan Robertson Martin Steuer Matthias-Christian Ott +Larry Bernstone +Michał Szczepański +Tomasz Bachorski <34866781+nulsoh@users.noreply.github.com> +Zachary Winnerman <33329648+winnerman-pythian@users.noreply.github.com> +Vladislav Vishnyakov +Robert Kolchmeyer +George Gaydarov diff --git a/.mkosi/mkosi.arch b/.mkosi/mkosi.arch index a823a95e7..d7f6bc866 100644 --- a/.mkosi/mkosi.arch +++ b/.mkosi/mkosi.arch @@ -50,7 +50,7 @@ BuildPackages= kmod libcap libgcrypt - libidn + libidn2 libmicrohttpd libseccomp libtool @@ -66,7 +66,6 @@ BuildPackages= python-lxml qrencode xz -# TODO use libidn2 once it's available in official repositories Packages= - libidn + libidn2 diff --git a/.travis.yml b/.travis.yml index 5d63474c1..1f09a78fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,178 @@ -language: c -compiler: - - gcc -before_install: - - sudo apt-get update -qq - - sudo apt-get install autotools-dev automake autoconf libtool libdbus-1-dev libcap-dev libblkid-dev libmount-dev libpam-dev libcryptsetup-dev libaudit-dev libacl1-dev libattr1-dev libselinux-dev liblzma-dev libgcrypt-dev libqrencode-dev libmicrohttpd-dev gperf python2.7-dev -script: ./autogen.sh && ./configure && make V=1 && sudo ./systemd-machine-id-setup && make check && make distcheck -after_failure: cat test-suite.log +sudo: required + +services: + - docker + +jobs: + include: + - stage: build docker image + env: + # The machine id will be passed to Dockerfile for later checks + - MACHINE_ID=$(cat /var/lib/dbus/machine-id) + before_script: &update + # Ensure the latest version of docker is installed + - sudo apt-get update + - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce + - docker --version + - env > .env + script: + # Copy content of CI_DIR into WORKDIR + - find $CI_DIR -maxdepth 1 -type f -exec cp -t . {} + + - echo "ENV GIT_SHA ${TRAVIS_COMMIT}" >> Dockerfile + - echo "ENV MACHINE_ID ${MACHINE_ID}" >> Dockerfile + - echo "$(git log -1 ${TRAVIS_COMMIT})" >> COMMITINFO + # Build docker container + - $CI_SCRIPT_DIR/build-docker-image.sh + + - docker login -u="${DOCKER_USERNAME}" -p="${DOCKER_PASSWORD}" + - docker push ${DOCKER_REPOSITORY} + + - stage: build + language: c + compiler: gcc + env: + # The machine id will be passed to container + - MACHINE_ID=$(cat /var/lib/dbus/machine-id) + before_script: *update + script: + - docker run -dit --name travis_build ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} bash + - docker exec -u 0 -ti travis_build bash -c "echo ${MACHINE_ID} > /etc/machine-id" + - docker exec -ti travis_build meson build + - docker exec -ti travis_build ninja -C build + # Commit it to the new image that will be used for testing + - docker commit -m "systemd build state" -a "${AUTHOR_NAME}" travis_build ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} + - docker login -u="${DOCKER_USERNAME}" -p="${DOCKER_PASSWORD}" + - docker push ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} + + - stage: test + language: c + compiler: gcc + before_script: *update + script: + - docker run --privileged --net=host -dit --name travis_test ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} bash + - docker exec -ti travis_test ninja -C build test + - docker commit -m "systemd test state" -a "${AUTHOR_NAME}" travis_test ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} + - docker login -u="${DOCKER_USERNAME}" -p="${DOCKER_PASSWORD}" + - docker push ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} + + - stage: coverity scan + language: c + compiler: gcc + before_script: *update + env: + - COVERITY_SCAN_PROJECT_NAME="$TRAVIS_REPO_SLUG" + - COVERITY_SCAN_NOTIFICATION_EMAIL="${AUTHOR_EMAIL}" + - COVERITY_SCAN_BRANCH_PATTERN="$TRAVIS_BRANCH" + # Disable CCACHE for cov-build to compilation units correctly + - CCACHE_DISABLE=1 + # Token for systemd/systemd Coverity Scan Analysis + # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created + # via the "travis encrypt" command using the project repo's public key + - secure: "UNQLspT89GYWuVKFqW5W5RyqqnYg5RvX20IrNraOddhpdV9nhKBtozrfmhGXDGZwfHGWHt6g7YROlD/NIMvDvThVJIEYvSQiXCoo2zRrwkl2siET5MjPfRG8numiLq0KX47KGmyBJISJZCgDUdNGqqGwgf7AhDN78I3XtgqjFT1z0mGl8n0wiFpKPi7i3nECvF4Mk7xCCHqwByaq0z5G9NkVlOvP1EyCxwv3B6I5Umfch7ibp7iH44YnVXILK+yEry5dMuctYwYkDouR80ChEPQQ5fhhpO4++HJmFuSpfMTeCHpucAd2xwSUijejYeN/GNQ177GxSSk/8hRBGcuSK8T/WJ+KiuJPhZObV8mw+a6+qdQssWY4F9jya5ZKbZ/yTbxjtQ0m4AgtL28P9bEze8pLh16zFMX+hIEuoFSNmJqmtNttfbD5TKyYVZml59s9wvhlvMnlNpRSQva88OAOjXtiA41g+XtTxxpfW9mgd7HYhzSBs1efNiK7PfkANgve7KIYMAmCAqasgb1IIAyX7stOlJH06QOFXNH55PmJLkkKyL3SMQzgryMDWegU+XbS8t43r0x14WLuE7sc9JtnOr/G8hthFaMRp8xLy9aCBwyEIkEsyWa50VMoZDa3Spdb4r1CKBwcGdCbyE4rCehwEIznbfrsSovhwiUds7bbhBU=" + script: + # Copy content of CI_DIR into WORKDIR + - find $CI_DIR -maxdepth 1 -type f -exec cp -t . {} + + # Build container for current user + - $CI_SCRIPT_DIR/build-docker-image.sh + + # For kernel version 4.8+ + - sudo sysctl vsyscall=emulate || true + # Prepare environment for Coverity tool + - | + PLATFORM=`uname` + export TOOL_BASE="/tmp/coverity-scan-analysis" + export SCAN_URL="https://scan.coverity.com" + export UPLOAD_URL="https://scan.coverity.com/builds" + export TOOL_ARCHIVE="/tmp/cov-analysis-${PLATFORM}.tgz" + + # Get Coverity tool + - $CI_TOOL_DIR/get-coverity.sh + - TOOL_DIR="$(find $TOOL_BASE -type d -name 'cov-analysis*')" + + # Export env variables for Coverity scan + - env | grep -E "TRAVIS|COV|TOOL|URL" > .cov-env + - | + docker run -dit --env-file .cov-env \ + -v ${TOOL_BASE}:${TOOL_BASE}:ro \ + --name travis_coverity_scan ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} bash + # Make sure Coverity script is executable + - docker cp scripts/coverity.sh travis_coverity_scan:/usr/local/bin + # Preconfigure with meson to prevent Coverity from capturing meson metadata + # Set compiler flag to prevent emit failure + - docker exec -it travis_coverity_scan sh -c "CFLAGS='-D_Float128=long\ double' meson cov-build -Dman=false" + # Run Coverity Analysis + - docker exec -it travis_coverity_scan coverity.sh build + - docker exec -it travis_coverity_scan coverity.sh upload + + - stage: clean docker + language: python + # python: + # - "3.6" Probably broken ATM + env: + - SIZE_LIMIT="3000" # Limit in MBs + - TAG_LIMIT="3" # Number of tags to be kept at the time + before-script: + - sudo apt-get -y install python3 + script: + # Get docker-remote tool and setup venv + - sudo $CI_TOOL_DIR/get-docker-remote.sh + # Activate virtual environment to be able to use docker-remote safely + - source venv/bin/activate + # Check the size and tag limit of the repo + - REPO_SIZE=$(docker-remote repository --size $DOCKER_REPOSITORY) + - TAG_COUNT=$(docker-remote tags --count $DOCKER_REPOSITORY) + - 'echo -e "\033[33;1mCurrent repository size: $REPO_SIZE in $TAG_COUNT tags \033[0m"' + - | + if [[ ${REPO_SIZE%.*} -gt $SIZE_LIMIT ]] || [[ $TAG_COUNT -gt $TAG_LIMIT ]] + then + docker-remote --login $DOCKER_USERNAME:$DOCKER_PASSWORD \ + tags --assumeyes --pop-back --keep $TAG_LIMIT $DOCKER_REPOSITORY + fi + + + +# Specify the order of stages and conditions +stages: + # Helper stage to determine whether coverity stage should be allowed + - name: initialization + + - name: build docker image + if: type != cron + - name: build + if: type != cron + - name: test + if: type != cron + + # These stages run separately, the resulting container will not be pushed to Docker Hub + # This stage will only run on special conditions + - name: coverity scan + if: type = cron + + # Check for repository size and clean Docker repo if necessary + - name: clean Docker + if: type = cron + +env: + global: + # Secure Docker Hub credentials + - secure: "TY61ufmEJyxCer8vuAlQ3mYwGRynFZXPCFTxKgIzobAHHyE1Zwx0bZDDwDd88Gdgz7EGnOJtMABfa0axfPOK9il5u7lYmmZ8Usa0HAvKavkpSRnw2b16zz88N98x3DyaIquvg2J8iQpHHoM32+BGiAS7P8BiYTO6r+E0CMPYC0Ylh7eHVSBGfWbR9m+yCo/mDIEAWyop6Jv4rTMN4qP9U7e6Kou7m/AJeiCWMaR7rlanpLFNQi3+qF/Mt5dbE7LVLNSOkmpg/FPw34g4RC5mfLAh+c8YBadqo6kFA6qV1b931or0aZUYVtobI6UwC9U1GGqzfCTjXuVMNgPBBQ6n3JMt91mFFkP0lXdGMxpBNbwFL/btBrt2a359L/wNtqv6PuSJwJ3oTe/FP++X6xjbM7LcAHZMWZiK+0BFefNOUcRzBpaEJ2nGNzcLKHn4Bl0pl4LwZ0uVocN8RBwHnDX+hyUwwQPoQTLJQB9tpwDweIzftt9KmrIHmL9v7KZXR4s/8CKpNfVQ/XSysdtsK+7EKK5AsnbMNrZLjpH7D0Lo/Xp92/eJ2UGyqI7awJbJGPV2FNwyGcojDEXIBUsVssUjb5+B4LpHP1x4UQe/m9SuPJdtRB0R7PKe/tyPD3GTyfVO9K7imQATDdnMY32nkWXmXej8YWo76yA732rTZRZtFAc=" + - secure: "NAEzWn5Ru6IqDA1RSyTVhpIp2iQluumg0EOI111EN7qWWGUDNgAZi+QgvRI+OBNyuMpBpN/GX1Ys4YxUDos1F/fhm2vytoB4A/LG463FQsSVP3wnyMFJTSOI8H0jgK41xj79qiww7edbfq93MZ/XS95Ws4tUTi/0etUGvAgIHGgofFCPPdMNkOvSHLgzSnYfydzLuD9FVpCgvpbJnQ+47XHyN+sKoA+OlZ+EfIOVZt+Mk/dqYrsM7MRKEfplk1MvUiJpHvrw+xWTslCIiO03V6ws091fBMgedIFRpsySrsd1KwH8JIeOK6KFn5W7Q53auzZkKYk7ymknlJt4WVBy7Qg33njMQ53t3qMQYTRUIV4dcR60cdII7tatzgpKBcycxHQMAshOYPT6pYhSsO6JEKgiO+ZhOxvqWGwtEeH9Zq7P4ft8Q7GJhRkdi0X0WY7/6RjwinO/1LLj1LODim3mDFfAK7xS7e+nQW/JEOdWohT2+qm97j9IOZeQtPtdqZP9F8HJXgw6WjiGJIXMF3Ov9GkQh4uJyMYJ6hN7T3iRoenV86Dzgg6u5Ku131Ziwvlm+n94qlXF8Jl47wCcAS7VmyYxMft1gH+Zs+4Wq7KO0vysmnEk6rCqb87ZQSDOdTzBfK9HTyyAqmBCgS4Dp5x7/xOBMVXfq/SOb9c3Sh/JItA=" + - DOCKER_REPOSITORY=$DOCKER_USERNAME/systemd + + - ADMIN_EMAIL=macermak@redhat.com + + - AUTHOR_NAME="$(git log -1 $TRAVIS_COMMIT --pretty=\"%aN\")" + - AUTHOR_EMAIL="$(git log -1 $TRAVIS_COMMIT --pretty=\"%aE\")" + + - CI_DIR="$TRAVIS_BUILD_DIR/travis-ci" + - CI_TOOL_DIR="$CI_DIR/tools" + - CI_SCRIPT_DIR="$CI_DIR/scripts" + notifications: + email: + recipients: + - ${ADMIN_EMAIL} + - ${AUTHOR_EMAIL} irc: channels: - "irc.freenode.org#systemd" diff --git a/CODING_STYLE b/CODING_STYLE index 4119cfec2..ae818126c 100644 --- a/CODING_STYLE +++ b/CODING_STYLE @@ -1,9 +1,11 @@ - 8ch indent, no tabs, except for files in man/ which are 2ch indent, and still no tabs -- We prefer /* comments */ over // comments, please. This is not C++, after - all. (Yes we know that C99 supports both kinds of comments, but still, - please!) +- We prefer /* comments */ over // comments in code you commit, please. This + way // comments are left for developers to use for local, temporary + commenting of code for debug purposes (i.e. uncommittable stuff), making such + comments easily discernable from explanatory, documenting code comments + (i.e. committable stuff). - Don't break code lines too eagerly. We do *not* force line breaks at 80ch, all of today's screens should be much larger than that. But diff --git a/ENVIRONMENT.md b/ENVIRONMENT.md index 4ae561a89..581bf3c23 100644 --- a/ENVIRONMENT.md +++ b/ENVIRONMENT.md @@ -13,10 +13,21 @@ documented in the proper man pages. All tools: +* `$SYSTEMD_OFFLINE=[0|1]` — if set to `1`, then `systemctl` will + refrain from talking to PID 1; this has the same effect as the historical + detection of `chroot()`. Setting this variable to `0` instead has a similar + effect as `SYSTEMD_IGNORE_CHROOT=1`; i.e. tools will try to + communicate with PID 1 even if a `chroot()` environment is detected. + You almost certainly want to set this to `1` if you maintain a package build system + or similar and are trying to use a modern container system and not plain + `chroot()`. + * `$SYSTEMD_IGNORE_CHROOT=1` — if set, don't check whether being invoked in a - chroot() environment. This is particularly relevant for systemctl, as it will - not alter its behaviour for chroot() environments if set. (Normally it - refrains from talking to PID 1 in such a case.) + `chroot()` environment. This is particularly relevant for systemctl, as it + will not alter its behaviour for `chroot()` environments if set. Normally it + refrains from talking to PID 1 in such a case; turning most operations such + as `start` into no-ops. If that's what's explicitly desired, you might + consider setting `SYSTEMD_OFFLINE=1`. * `$SD_EVENT_PROFILE_DELAYS=1` — if set, the sd-event event loop implementation will print latency information at runtime. diff --git a/HACKING b/HACKING index 6267c58e2..e9a159ba9 100644 --- a/HACKING +++ b/HACKING @@ -79,3 +79,38 @@ for systemd (this example is for Fedora): And after that, head over to your repo on github and click "Compare & pull request" Happy hacking! + + +FUZZERS + +systemd includes fuzzers in src/fuzz that use libFuzzer and are automatically +run by OSS-Fuzz (https://github.com/google/oss-fuzz) with sanitizers. To add a +fuzz target, create a new src/fuzz/fuzz-foo.c file with a LLVMFuzzerTestOneInput +function and add it to the list in src/fuzz/meson.build. + +Whenever possible, a seed corpus and a dictionary should also be added with new +fuzz targets. The dictionary should be named src/fuzz/fuzz-foo.dict and the seed +corpus should be built and exported as $OUT/fuzz-foo_seed_corpus.zip in +scripts/oss-fuzz.sh. + +The fuzzers can be built locally if you have libFuzzer installed by running +scripts/oss-fuzz.sh. You should also confirm that the fuzzer runs in the +OSS-Fuzz environment by checking out the OSS-Fuzz repo, and then running +commands like this: + + python infra/helper.py build_image systemd + python infra/helper.py build_fuzzers --sanitizer memory systemd ../systemd + python infra/helper.py run_fuzzer systemd fuzz-foo + +If you find a bug that impacts the security of systemd, please follow the +guidance in .github/CONTRIBUTING.md on how to report a security vulnerability. + +For more details on building fuzzers and integrating with OSS-Fuzz, visit: + + https://github.com/google/oss-fuzz/blob/master/docs/new_project_guide.md + + https://llvm.org/docs/LibFuzzer.html + + https://github.com/google/fuzzer-test-suite/blob/master/tutorial/libFuzzerTutorial.md + + https://chromium.googlesource.com/chromium/src/testing/libfuzzer/+/HEAD/efficient_fuzzer.md diff --git a/NEWS b/NEWS index 1def98212..2021a2350 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,195 @@ systemd System and Service Manager +CHANGES WITH 237: + + * Some keyboards come with a zoom see-saw or rocker which until now got + mapped to the Linux "zoomin/out" keys in hwdb. However, these + keycodes are not recognized by any major desktop. They now produce + Up/Down key events so that they can be used for scrolling. + + * INCOMPATIBILITY: systemd-tmpfiles' "f" lines changed behaviour + slightly: previously, if an argument was specified for lines of this + type (i.e. the right-most column was set) this string was appended to + existing files each time systemd-tmpfiles was run. This behaviour was + different from what the documentation said, and not particularly + useful, as repeated systemd-tmpfiles invocations would not be + idempotent and grow such files without bounds. With this release + behaviour has been altered slightly, to match what the documentation + says: lines of this type only have an effect if the indicated files + don't exist yet, and only then the argument string is written to the + file. + + * FUTURE INCOMPATIBILITY: In systemd v238 we intend to slightly change + systemd-tmpfiles behaviour: previously, read-only files owned by root + were always excluded from the file "aging" algorithm (i.e. the + automatic clean-up of directories like /tmp based on + atime/mtime/ctime). We intend to drop this restriction, and age files + by default even when owned by root and read-only. This behaviour was + inherited from older tools, but there have been requests to remove + it, and it's not obvious why this restriction was made in the first + place. Please speak up now, if you are aware of software that reqires + this behaviour, otherwise we'll remove the restriction in v238. + + * A new environment variable $SYSTEMD_OFFLINE is now understood by + systemctl. It takes a boolean argument. If on, systemctl assumes it + operates on an "offline" OS tree, and will not attempt to talk to the + service manager. Previously, this mode was implicitly enabled if a + chroot() environment was detected, and this new environment variable + now provides explicit control. + + * .path and .socket units may now be created transiently, too. + Previously only service, mount, automount and timer units were + supported as transient units. The systemd-run tool has been updated + to expose this new functionality, you may hence use it now to bind + arbitrary commands to path or socket activation on-the-fly from the + command line. Moreover, almost all properties are now exposed for the + unit types that already supported transient operation. + + * The systemd-mount command gained support for a new --owner= parameter + which takes a user name, which is then resolved and included in uid= + and gid= mount options string of the file system to mount. + + * A new unit condition ConditionControlGroupController= has been added + that checks whether a specific cgroup controller is available. + + * Unit files, udev's .link files, and systemd-networkd's .netdev and + .network files all gained support for a new condition + ConditionKernelVersion= for checking against specific kernel + versions. + + * In systemd-networkd, the [IPVLAN] section in .netdev files gained + support for configuring device flags in the Flags= setting. In the + same files, the [Tunnel] section gained support for configuring + AllowLocalRemote=. The [Route] section in .network files gained + support for configuring InitialCongestionWindow=, + InitialAdvertisedReceiveWindow= and QuickAck=. The [DHCP] section now + understands RapidCommit=. + + * systemd-networkd's DHCPv6 support gained support for Prefix + Delegation. + + * sd-bus gained support for a new "watch-bind" feature. When this + feature is enabled, an sd_bus connection may be set up to connect to + an AF_UNIX socket in the file system as soon as it is created. This + functionality is useful for writing early-boot services that + automatically connect to the system bus as soon as it is started, + without ugly time-based polling. systemd-networkd and + systemd-resolved have been updated to make use of this + functionality. busctl exposes this functionality in a new + --watch-bind= command line switch. + + * sd-bus will now optionally synthesize a local "Connected" signal as + soon as a D-Bus connection is set up fully. This message mirrors the + already existing "Disconnected" signal which is synthesized when the + connection is terminated. This signal is generally useful but + particularly handy in combination with the "watch-bind" feature + described above. Synthesizing of this message has to be requested + explicitly through the new API call sd_bus_set_connected_signal(). In + addition a new call sd_bus_is_ready() has been added that checks + whether a connection is fully set up (i.e. between the "Connected" and + "Disconnected" signals). + + * sd-bus gained two new calls sd_bus_request_name_async() and + sd_bus_release_name_async() for asynchronously registering bus + names. Similar, there is now sd_bus_add_match_async() for installing + a signal match asynchronously. All of systemd's own services have + been updated to make use of these calls. Doing these operations + asynchronously has two benefits: it reduces the risk of deadlocks in + case of cyclic dependencies between bus services, and it speeds up + service initialization since synchronization points for bus + round-trips are removed. + + * sd-bus gained two new calls sd_bus_match_signal() and + sd_bus_match_signal_async(), which are similar to sd_bus_add_match() + and sd_bus_add_match_async() but instead of taking a D-Bus match + string take match fields as normal function parameters. + + * sd-bus gained two new calls sd_bus_set_sender() and + sd_bus_message_set_sender() for setting the sender name of outgoing + messages (either for all outgoing messages or for just one specific + one). These calls are only useful in direct connections as on + brokered connections the broker fills in the sender anyway, + overwriting whatever the client filled in. + + * sd-event gained a new pseudo-handle that may be specified on all API + calls where an "sd_event*" object is expected: SD_EVENT_DEFAULT. When + used this refers to the default event loop object of the calling + thread. Note however that this does not implicitly allocate one — + which has to be done prior by using sd_event_default(). Similarly + sd-bus gained three new pseudo-handles SD_BUS_DEFAULT, + SD_BUS_DEFAULT_USER, SD_BUS_DEFAULT_SYSTEM that may be used to refer + to the default bus of the specified type of the calling thread. Here + too this does not implicitly allocate bus connection objects, this + has to be done prior with sd_bus_default() and friends. + + * sd-event gained a new call pair + sd_event_source_{get|set}_io_fd_own(). This may be used to request + automatic closure of the file descriptor an IO event source watches + when the event source is destroyed. + + * systemd-networkd gained support for natively configuring WireGuard + connections. + + * In previous versions systemd synthesized user records both for the + "nobody" (UID 65534) and "root" (UID 0) users in nss-systemd and + internally. In order to simplify distribution-wide renames of the + "nobody" user (like it is planned in Fedora: nfsnobody → nobody), a + new transitional flag file has been added: if + /etc/systemd/dont-synthesize-nobody exists synthesizing of the 65534 + user and group record within the systemd codebase is disabled. + + * systemd-notify gained a new --uid= option for selecting the source + user/UID to use for notification messages sent to the service + manager. + + * journalctl gained a new --grep= option to list only entries in which + the message matches a certain pattern. By default matching is case + insensitive if the pattern is lowercase, and case sensitive + otherwise. Option --case-sensitive=yes|no can be used to override + this an specify case sensitivity or case insensitivity. + + * There's now a "systemd-analyze service-watchdogs" command for printing + the current state of the service runtime watchdog, and optionally + enabling or disabling the per-service watchdogs system-wide if given a + boolean argument (i.e. the concept you configure in WatchdogSec=), for + debugging purposes. There's also a kernel command line option + systemd.service_watchdogs= for controlling the same. + + * Two new "log-level" and "log-target" options for systemd-analyze were + addded that merge the now deprecated get-log-level, set-log-level and + get-log-target, set-log-target pairs. The deprecated options are still + understood for backwards compatibility. The two new options print the + current value when no arguments are given, and set them when a + level/target is given as an argument. + + * sysusers.d's "u" lines now optionally accept both a UID and a GID + specification, separated by a ":" character, in order to create users + where UID and GID do not match. + + Contributions from: Adam Duskett, Alan Jenkins, Alexander Kuleshov, + Alexis Deruelle, Andrew Jeddeloh, Armin Widegreen, Batuhan Osman + Taşkaya, Björn Esser, bleep_blop, Bruce A. Johnson, Chris Down, Clinton + Roy, Colin Walters, Daniel Rusek, Dimitri John Ledkov, Dmitry Rozhkov, + Evgeny Vereshchagin, Ewout van Mansom, Felipe Sateler, Franck Bui, + Frantisek Sumsal, George Gaydarov, Gianluca Boiano, Hans-Christian + Noren Egtvedt, Hans de Goede, Henrik Grindal Bakken, Jan Alexander + Steffens, Jan Klötzke, Jason A. Donenfeld, jdkbx, Jérémy Rosen, + Jerónimo Borque, John Lin, John Paul Herold, Jonathan Rudenberg, Jörg + Thalheim, Ken (Bitsko) MacLeod, Larry Bernstone, Lennart Poettering, + Lucas Werkmeister, Maciej S. Szmigiero, Marek Čermák, Martin Pitt, + Mathieu Malaterre, Matthew Thode, Matthias-Christian Ott, Max Harmathy, + Michael Biebl, Michael Vogt, Michal Koutný, Michal Sekletar, Michał + Szczepański, Mike Gilbert, Nathaniel McCallum, Nicolas Chauvet, Olaf + Hering, Olivier Schwander, Patrik Flykt, Paul Cercueil, Peter Hutterer, + Piotr Drąg, Raphael Vogelgsang, Reverend Homer, Robert Kolchmeyer, + Samuel Dionne-Riel, Sergey Ptashnick, Shawn Landden, Susant Sahani, + Sylvain Plantefève, Thomas H. P. Andersen, Thomas Huth, Tomasz + Bachorski, Vladislav Vishnyakov, Wieland Hoffmann, Yu Watanabe, Zachary + Winnerman, Zbigniew Jędrzejewski-Szmek, Дамјан Георгиевски, Дилян + Палаузов + + — Brno, 2018-01-28 + CHANGES WITH 236: * The modprobe.d/ drop-in for the bonding.ko kernel module introduced @@ -2074,6 +2264,13 @@ CHANGES WITH 229: d /run/lock/lockdev 0775 root lock - + * The settings StartLimitBurst=, StartLimitInterval=, StartLimitAction= + and RebootArgument= have been moved from the [Service] section of + unit files to [Unit], and they are now supported on all unit types, + not just service units. Of course, systemd will continue to + understand these settings also at the old location, in order to + maintain compatibility. + Contributions from: Abdo Roig-Maranges, Alban Crequy, Aleksander Adamowski, Alexander Kuleshov, Andreas Pokorny, Andrei Borzenkov, Andrew Wilcox, Arthur Clement, Beniamino Galvani, Casey Schaufler, @@ -5314,7 +5511,7 @@ CHANGES WITH 209: option as supported by Debian is added. It allows indicating which LUKS slot to use on disk, speeding up key loading. - * The sd_journald_sendv() API call has been checked and + * The sd_journal_sendv() API call has been checked and officially declared to be async-signal-safe so that it may be invoked from signal handlers for logging purposes. diff --git a/README b/README index b245564f5..8807e5cfe 100644 --- a/README +++ b/README @@ -69,11 +69,10 @@ REQUIREMENTS: create additional symlinks in /dev/disk/ and /dev/tape: CONFIG_BLK_DEV_BSG - Required for PrivateNetwork= and PrivateDevices= in service units: + Required for PrivateNetwork= in service units: CONFIG_NET_NS - CONFIG_DEVPTS_MULTIPLE_INSTANCES Note that systemd-localed.service and other systemd units use - PrivateNetwork and PrivateDevices so this is effectively required. + PrivateNetwork so this is effectively required. Required for PrivateUsers= in service units: CONFIG_USER_NS @@ -82,7 +81,7 @@ REQUIREMENTS: CONFIG_IPV6 CONFIG_AUTOFS4_FS CONFIG_TMPFS_XATTR - CONFIG_{TMPFS,EXT4,XFS,BTRFS_FS,...}_POSIX_ACL + CONFIG_{TMPFS,EXT4_FS,XFS,BTRFS_FS,...}_POSIX_ACL CONFIG_SECCOMP CONFIG_SECCOMP_FILTER (required for seccomp support) CONFIG_CHECKPOINT_RESTORE (for the kcmp() syscall) @@ -119,6 +118,9 @@ REQUIREMENTS: isn't. The next best thing is to make this change through a modprobe.d drop-in. This is shipped by default, see modprobe.d/systemd.conf. + Required for systemd-nspawn: + CONFIG_DEVPTS_MULTIPLE_INSTANCES or Linux kernel >= 4.7 + Note that kernel auditing is broken when used with systemd's container code. When using systemd in conjunction with containers, please make sure to either turn off auditing at diff --git a/TODO b/TODO index 0c20012b2..a77028c7b 100644 --- a/TODO +++ b/TODO @@ -24,6 +24,38 @@ Janitorial Clean-ups: Features: +* maybe rework get_user_creds() to query the user database if $SHELL is used + for root, but only then. + +* there should be path_hash_ops and we should use it in tmpfiles' hashmap object to deal with identical but differently spelt paths + +* be stricter with fds we receive for the fdstore: close them asynchronously + +* calenderspec: add support for week numbers and day numbers within a + year. This would allow us to define "bi-weekly" triggers safely. + +* add support for recursive bpf firewalling as supported by the newest kernel + +* add bpf-based implementation of devices cgroup controller logic for compat with cgroupsv2 as supported by newest kernel + +* introduce sd_id128_get_boot_app_specific() which is like + sd_id128_get_machine_app_specific(). After all on long-running systems both + IDs have similar properties. + +* emulate properties of the root cgroup on controllers that don't support such + properties natively on cpu/io/memory, the way we already do it for + "pids". Also, add the same logic to cgtop. + +* set TasksAccounting=1 on the root slice if we are running on the root cgroup, + and similar for the others, as soon as we emulate them properly. After all, + Linux keeps these system-wide stats anyway, and it costs nothing to expose + them. + +* sd-bus: add vtable flag, that may be used to request client creds implicitly + and asynchronously before dispatching the operation + +* implement transient socket unit. + * make use of ethtool veth peer info in machined, for automatically finding out host-side interface pointing to the container. @@ -41,10 +73,6 @@ Features: the runtime dir as we maintain for the fdstore: i.e. keep it around as long as the unit is running or has a job queued. -* hook up sd-bus' creds stuff with SO_PEERGROUPS - -* add async version of sd_bus_add_match and make use of that - * support projid-based quota in machinectl for containers, and then drop implicit btrfs loopback magic in machined @@ -136,9 +164,6 @@ Features: O_NONBLOCK on it. That way people can control if and when to block for logging. -* tighten sd_notify() MAINPID= checks a bit: don't accept foreign PIDs (i.e. - PIDs not managed by the service manager) - * hostnamed: populate form factor data from a new hwdb database, so that old yogas can be recognized as "convertible" too, even if they predate the DMI "convertible" form factor @@ -165,9 +190,6 @@ Features: "systemd-gdb" for attaching to the start-up of any system service in its natural habitat. -* replace all canonicalize_file_name() invocations by chase_symlinks(), in - particulr those where a rootdir is relevant. - * maybe introduce gpt auto discovery for /var/tmp? * maybe add gpt-partition-based user management: each user gets his own @@ -291,10 +313,6 @@ Features: * docs: bring http://www.freedesktop.org/wiki/Software/systemd/MyServiceCantGetRealtime up to date -* mounting and unmounting mount points manually with different source - devices will result in collected on all devices used. - http://lists.freedesktop.org/archives/systemd-devel/2015-April/030225.html - * add a job mode that will fail if a transaction would mean stopping running units. Use this in timedated to manage the NTP service state. @@ -315,7 +333,7 @@ Features: * Rework systemctl's GetAll property parsing to use the generic bus_map_all_properties() API * Port various tools to make use of verbs.[ch], where applicable: busctl, - coredumpctl, hostnamectl, localectl, systemd-analyze, timedatectl + coredumpctl, hostnamectl, localectl, timedatectl * hostnamectl: show root image uuid @@ -482,14 +500,12 @@ Features: - see if we can introduce a new sd_bus_get_owner_machine_id() call to retrieve the machine ID of the machine of the bus itself - see if we can drop more message validation on the sending side - add API to clone sd_bus_message objects - - make AddMatch calls on dbus1 transports async? - longer term: priority inheritance - dbus spec updates: - NameLost/NameAcquired obsolete - GVariant - path escaping - update systemd.special(7) to mention that dbus.socket is only about the compatibility socket now - - test bloom filter generation indexes * sd-event - allow multiple signal handlers per signal? @@ -588,8 +604,6 @@ Features: * exec: when deinitializating a tty device fix the perms and group, too, not only when initializing. Set access mode/gid to 0620/tty. -* service: watchdog logic: for testing purposes allow ping, but do not require pong - * journal: - consider introducing implicit _TTY= + _PPID= + _EUID= + _EGID= + _FSUID= + _FSGID= fields - import and delete pstore filesystem content at startup diff --git a/TRANSIENT-SETTINGS.md b/TRANSIENT-SETTINGS.md index 17fe0604e..3614456ac 100644 --- a/TRANSIENT-SETTINGS.md +++ b/TRANSIENT-SETTINGS.md @@ -2,20 +2,20 @@ Our intention is to make all settings that are available as unit file settings also available for transient units, through the D-Bus API. At the moment, some -unit types (socket, swap, path) are not supported at all via unit types, but -most others are pretty well supported, with some notable omissions. +unit types (device, swap, target) are not supported at all via unit types, +but most others are pretty well supported, with some notable omissions. The lists below contain all settings currently available in unit files. The ones currently available in transient units are prefixed with `✓`. ## Generic Unit Settings -Only the most important generic unit settings are available for transient units. +Most generic unit settings are available for transient units. ``` ✓ Description= - Documentation= - SourcePath= +✓ Documentation= +✓ SourcePath= ✓ Requires= ✓ Requisite= ✓ Wants= @@ -27,67 +27,70 @@ Only the most important generic unit settings are available for transient units. ✓ PropagatesReloadTo= ✓ ReloadPropagatedFrom= ✓ PartOf= - JoinsNamespaceOf= - RequiresMountsFor= - StopWhenUnneeded= - RefuseManualStart= - RefuseManualStop= - AllowIsolate= +✓ JoinsNamespaceOf= +✓ RequiresMountsFor= +✓ StopWhenUnneeded= +✓ RefuseManualStart= +✓ RefuseManualStop= +✓ AllowIsolate= ✓ DefaultDependencies= - OnFailureJobMode= - OnFailureIsolate= - IgnoreOnIsolate= - JobTimeoutSec= - JobRunningTimeoutSec= - JobTimeoutAction= - JobTimeoutRebootArgument= - StartLimitIntervalSec=SECONDS - StartLimitBurst=UNSIGNED - StartLimitAction=ACTION +✓ OnFailureJobMode= +✓ IgnoreOnIsolate= +✓ JobTimeoutSec= +✓ JobRunningTimeoutSec= +✓ JobTimeoutAction= +✓ JobTimeoutRebootArgument= +✓ StartLimitIntervalSec=SECONDS +✓ StartLimitBurst=UNSIGNED +✓ StartLimitAction=ACTION ✓ FailureAction= ✓ SuccessAction= ✓ AddRef= - RebootArgument=STRING - ConditionPathExists= - ConditionPathExistsGlob= - ConditionPathIsDirectory= - ConditionPathIsSymbolicLink= - ConditionPathIsMountPoint= - ConditionPathIsReadWrite= - ConditionDirectoryNotEmpty= - ConditionFileNotEmpty= - ConditionFileIsExecutable= - ConditionNeedsUpdate= - ConditionFirstBoot= - ConditionKernelCommandLine= - ConditionArchitecture= - ConditionVirtualization= - ConditionSecurity= - ConditionCapability= - ConditionHost= - ConditionACPower= - ConditionUser= - ConditionGroup= - AssertPathExists= - AssertPathExistsGlob= - AssertPathIsDirectory= - AssertPathIsSymbolicLink= - AssertPathIsMountPoint= - AssertPathIsReadWrite= - AssertDirectoryNotEmpty= - AssertFileNotEmpty= - AssertFileIsExecutable= - AssertNeedsUpdate= - AssertFirstBoot= - AssertKernelCommandLine= - AssertArchitecture= - AssertVirtualization= - AssertSecurity= - AssertCapability= - AssertHost= - AssertACPower= - AssertUser= - AssertGroup= +✓ RebootArgument=STRING +✓ ConditionPathExists= +✓ ConditionPathExistsGlob= +✓ ConditionPathIsDirectory= +✓ ConditionPathIsSymbolicLink= +✓ ConditionPathIsMountPoint= +✓ ConditionPathIsReadWrite= +✓ ConditionDirectoryNotEmpty= +✓ ConditionFileNotEmpty= +✓ ConditionFileIsExecutable= +✓ ConditionNeedsUpdate= +✓ ConditionFirstBoot= +✓ ConditionKernelCommandLine= +✓ ConditionKernelVersion= +✓ ConditionArchitecture= +✓ ConditionVirtualization= +✓ ConditionSecurity= +✓ ConditionCapability= +✓ ConditionHost= +✓ ConditionACPower= +✓ ConditionUser= +✓ ConditionGroup= +✓ ConditionControlGroupController= +✓ AssertPathExists= +✓ AssertPathExistsGlob= +✓ AssertPathIsDirectory= +✓ AssertPathIsSymbolicLink= +✓ AssertPathIsMountPoint= +✓ AssertPathIsReadWrite= +✓ AssertDirectoryNotEmpty= +✓ AssertFileNotEmpty= +✓ AssertFileIsExecutable= +✓ AssertNeedsUpdate= +✓ AssertFirstBoot= +✓ AssertKernelCommandLine= +✓ AssertKernelVersion= +✓ AssertArchitecture= +✓ AssertVirtualization= +✓ AssertSecurity= +✓ AssertCapability= +✓ AssertHost= +✓ AssertACPower= +✓ AssertUser= +✓ AssertGroup= +✓ AssertControlGroupController= ✓ CollectMode= ``` @@ -254,63 +257,63 @@ All process killing settings are available for transient units: ## Service Unit Settings -Only the most important service settings are available for transient units. +Most service unit settings are available for transient units. ``` - PIDFile= +✓ PIDFile= ✓ ExecStartPre= ✓ ExecStart= ✓ ExecStartPost= ✓ ExecReload= ✓ ExecStop= ✓ ExecStopPost= - RestartSec= - TimeoutStartSec= - TimeoutStopSec= - TimeoutSec= +✓ RestartSec= +✓ TimeoutStartSec= +✓ TimeoutStopSec= +✓ TimeoutSec= ✓ RuntimeMaxSec= - WatchdogSec= +✓ WatchdogSec= ✓ Type= ✓ Restart= - PermissionsStartOnly= - RootDirectoryStartOnly= +✓ PermissionsStartOnly= +✓ RootDirectoryStartOnly= ✓ RemainAfterExit= - GuessMainPID= - RestartPreventExitStatus= - RestartForceExitStatus= - SuccessExitStatus= +✓ GuessMainPID= +✓ RestartPreventExitStatus= +✓ RestartForceExitStatus= +✓ SuccessExitStatus= ✓ NonBlocking= - BusName= +✓ BusName= ✓ FileDescriptorStoreMax= ✓ NotifyAccess= Sockets= - USBFunctionDescriptors= - USBFunctionStrings= +✓ USBFunctionDescriptors= +✓ USBFunctionStrings= ``` ## Mount Unit Settings -Only the most important mount unit settings are currently available to transient units: +All mount unit settings are available to transient units: ``` ✓ What= - Where= +✓ Where= ✓ Options= ✓ Type= - TimeoutSec= - DirectoryMode= - SloppyOptions= - LazyUnmount= - ForceUnmount= +✓ TimeoutSec= +✓ DirectoryMode= +✓ SloppyOptions= +✓ LazyUnmount= +✓ ForceUnmount= ``` ## Automount Unit Settings -Only one automount unit setting is currently available to transient units: +All automount unit setting is available to transient units: ``` - Where= - DirectoryMode= +✓ Where= +✓ DirectoryMode= ✓ TimeoutIdleSec= ``` @@ -325,7 +328,7 @@ Most timer unit settings are available to transient units. ✓ OnStartupSec= ✓ OnUnitActiveSec= ✓ OnUnitInactiveSec= - Persistent= +✓ Persistent= ✓ WakeSystem= ✓ RemainAfterElapse= ✓ AccuracySec= @@ -341,71 +344,74 @@ of their own beyond the generic unit and resource control settings. ## Scope Unit Settings Scope units are fully supported as transient units (in fact they only exist as -such), but they have no settings of their own beyond the generic unit and -resource control settings. +such). + +``` +✓ TimeoutStopSec= +``` ## Socket Unit Settings -Socket units are currently not available at all as transient units: +Most socket unit settings are available to transient units. ``` - ListenStream= - ListenDatagram= - ListenSequentialPacket= - ListenFIFO= - ListenNetlink= - ListenSpecial= - ListenMessageQueue= - ListenUSBFunction= - SocketProtocol= - BindIPv6Only= - Backlog= - BindToDevice= - ExecStartPre= - ExecStartPost= - ExecStopPre= - ExecStopPost= - TimeoutSec= - SocketUser= - SocketGroup= - SocketMode= - DirectoryMode= - Accept= - Writable= - MaxConnections= - MaxConnectionsPerSource= - KeepAlive= - KeepAliveTimeSec= - KeepAliveIntervalSec= - KeepAliveProbes= - DeferAcceptSec= - NoDelay= - Priority= - ReceiveBuffer= - SendBuffer= - IPTOS= - IPTTL= - Mark= - PipeSize= - FreeBind= - Transparent= - Broadcast= - PassCredentials= - PassSecurity= - TCPCongestion= - ReusePort= - MessageQueueMaxMessages= - MessageQueueMessageSize= - RemoveOnStop= - Symlinks= - FileDescriptorName= +✓ ListenStream= +✓ ListenDatagram= +✓ ListenSequentialPacket= +✓ ListenFIFO= +✓ ListenNetlink= +✓ ListenSpecial= +✓ ListenMessageQueue= +✓ ListenUSBFunction= +✓ SocketProtocol= +✓ BindIPv6Only= +✓ Backlog= +✓ BindToDevice= +✓ ExecStartPre= +✓ ExecStartPost= +✓ ExecStopPre= +✓ ExecStopPost= +✓ TimeoutSec= +✓ SocketUser= +✓ SocketGroup= +✓ SocketMode= +✓ DirectoryMode= +✓ Accept= +✓ Writable= +✓ MaxConnections= +✓ MaxConnectionsPerSource= +✓ KeepAlive= +✓ KeepAliveTimeSec= +✓ KeepAliveIntervalSec= +✓ KeepAliveProbes= +✓ DeferAcceptSec= +✓ NoDelay= +✓ Priority= +✓ ReceiveBuffer= +✓ SendBuffer= +✓ IPTOS= +✓ IPTTL= +✓ Mark= +✓ PipeSize= +✓ FreeBind= +✓ Transparent= +✓ Broadcast= +✓ PassCredentials= +✓ PassSecurity= +✓ TCPCongestion= +✓ ReusePort= +✓ MessageQueueMaxMessages= +✓ MessageQueueMessageSize= +✓ RemoveOnStop= +✓ Symlinks= +✓ FileDescriptorName= Service= - TriggerLimitIntervalSec= - TriggerLimitBurst= - SmackLabel= - SmackLabelIPIn= - SmackLabelIPOut= - SELinuxContextFromNet= +✓ TriggerLimitIntervalSec= +✓ TriggerLimitBurst= +✓ SmackLabel= +✓ SmackLabelIPIn= +✓ SmackLabelIPOut= +✓ SELinuxContextFromNet= ``` ## Swap Unit Settings @@ -421,17 +427,17 @@ Swap units are currently not available at all as transient units: ## Path Unit Settings -Path units are currently not available at all as transient units: +Most path unit settings are available to transient units. ``` - PathExists= - PathExistsGlob= - PathChanged= - PathModified= - DirectoryNotEmpty= +✓ PathExists= +✓ PathExistsGlob= +✓ PathChanged= +✓ PathModified= +✓ DirectoryNotEmpty= Unit= - MakeDirectory= - DirectoryMode= +✓ MakeDirectory= +✓ DirectoryMode= ``` ## Install Section diff --git a/UIDS-GIDS.md b/UIDS-GIDS.md index d44d93d14..e19cc8816 100644 --- a/UIDS-GIDS.md +++ b/UIDS-GIDS.md @@ -17,22 +17,23 @@ i.e. 0…4294967295. However, four UIDs are special on Linux: 1. 0 → The `root` super-user 2. 65534 → The `nobody` UID, also called the "overflow" UID or similar. It's - where various subsystems map unmappable users to, for example NFS or user - namespacing. (The latter can be changed with a sysctl during runtime, but - that's not supported on `systemd`. If you do change it you void your - warranty.) Because Fedora is a bit confused the `nobody` user is called - `nfsnobody` there (and they have a different `nobody` user at UID 99). I - hope this will be corrected eventually though. (Also, some distributions - call the `nobody` group `nogroup`. I wish they didn't.) + where various subsystems map unmappable users to, for example file systems + only supporting 16bit UIDs, NFS or user namespacing. (The latter can be + changed with a sysctl during runtime, but that's not supported on + `systemd`. If you do change it you void your warranty.) Because Fedora is a + bit confused the `nobody` user is called `nfsnobody` there (and they have a + different `nobody` user at UID 99). I hope this will be corrected eventually + though. (Also, some distributions call the `nobody` group `nogroup`. I wish + they didn't.) 3. 4294967295, aka "32bit `(uid_t) -1`" → This UID is not a valid user ID, as - setresuid(), chown() and friends treat -1 as a special request to not change - the UID of the process/file. This UID is hence not available for assignment - to users in the user database. + `setresuid()`, `chown()` and friends treat -1 as a special request to not + change the UID of the process/file. This UID is hence not available for + assignment to users in the user database. -4. 65535, aka "16bit `(uid_t) -1`" → Once upon a time `uid_t` used to be 16bit, and - programs compiled for that would hence assume that `(uid_t) -1` is 65535. This - UID is hence not usable either. +4. 65535, aka "16bit `(uid_t) -1`" → Before Linux kernel 2.4 `uid_t` used to be + 16bit, and programs compiled for that would hence assume that `(uid_t) -1` + is 65535. This UID is hence not usable either. The `nss-systemd` glibc NSS module will synthesize user database records for the UIDs 0 and 65534 if the system user database doesn't list them. This means diff --git a/catalog/systemd.fr.catalog.in b/catalog/systemd.fr.catalog.in index 36c87147a..6df3b00f3 100644 --- a/catalog/systemd.fr.catalog.in +++ b/catalog/systemd.fr.catalog.in @@ -346,3 +346,21 @@ Defined-By: systemd Support: %SUPPORT_URL% L'unité (unit) @UNIT@ s'est arrêtée et a consommé les ressources indiquées. + +-- 50876a9db00f4c40bde1a2ad381c3a1b +Subject: Le système est configuré d'une manière qui pourrait causer des problèmes +Defined-By: systemd +Support: %SUPPORT_URL% + +Les étiquettes suivantes sont possibles : +- "split-usr" — /usr est un système de fichiers séparé et nétait pas + monté quand systemd a été démarré +- "cgroups-missing" — le noyau a été compilé sans le support des groupes + de contrôle (cgroups) ou l'accès aux fichiers d'interface est restreint +- "var-run-bad" — /var/run n'est pas un lien symbolique vers /run +- "overflowuid-not-65534" — l'ID utilisé par le noyau pour l'utilisateur + "unknown" (avec NFS ou l'espace de noms utilisateurs) n'est pas 65534 +- "overflowgid-not-65534" — l'ID utilisé par le noyau pour le groupe + "unknown" (avec NFS ou l'espace de noms utilisateurs) n'est pas 65534 + +Le présent système est étiqueté @TAINT@. diff --git a/catalog/systemd.pl.catalog.in b/catalog/systemd.pl.catalog.in index 3641db2e6..3352a59a2 100644 --- a/catalog/systemd.pl.catalog.in +++ b/catalog/systemd.pl.catalog.in @@ -49,7 +49,7 @@ Support: %SUPPORT_URL% @JOURNAL_NAME@ (@JOURNAL_PATH@) obecnie używa @CURRENT_USE_PRETTY@. Maksymalnie może używać @MAX_USE_PRETTY@. -Zostawianie co najmniej @DISK_KEEP_FREE_PRETTY@ wolnego (z obecnie dostępnego @DISK_AVAILABLE_PRETTY@ miejsca na dysku). +Zostawianie co najmniej @DISK_KEEP_FREE_PRETTY@ wolnego (z obecnie dostępnego @DISK_AVAILABLE_PRETTY@ miejsca na dysku). Wymuszone ograniczenie użycia wynosi więc @LIMIT_PRETTY@, z czego @AVAILABLE_PRETTY@ jest nadal dostępne. Ograniczenia kontrolujące ilość miejsca na dysku używanego przez dziennik @@ -94,13 +94,13 @@ Zwykle wskazuje to na błąd programistyczny w danym programie i powinno zosta zgłoszone jego producentowi jako błąd. -- 5aadd8e954dc4b1a8c954d63fd9e1137 -Subject: Plik core został skrócony do @SIZE_LIMIT@ B. +Subject: Plik core został skrócony do @SIZE_LIMIT@ B. Defined-By: systemd Support: %SUPPORT_URL% Documentation: man:coredump.conf(5) Proces miał więcej zmapowanej pamięci niż maksimum dla przetwarzania i miejsca -skonfigurowane przez systemd-coredump(8). Tylko pierwsze @SIZE_LIMIT@ B +skonfigurowane przez systemd-coredump(8). Tylko pierwsze @SIZE_LIMIT@ B zostało zapisanych. Ten plik core może nadal być używalny, ale narzędzia typu gdb(1) będą ostrzegały o skróceniu pliku. @@ -144,7 +144,7 @@ Subject: Zmiana czasu Defined-By: systemd Support: %SUPPORT_URL% -Zegar systemowy został zmieniony na @REALTIME@ μs po 1 stycznia 1970. +Zegar systemowy został zmieniony na @REALTIME@ μs po 1 stycznia 1970. -- 45f82f4aef7a4bbf942ce861d1f20990 Subject: Zmiana strefy czasowej na @TIMEZONE@ @@ -163,11 +163,11 @@ uruchamiania systemu zostały uruchomione. Proszę zauważyć, że nie oznacza to, że komputer jest bezczynny, jako że usługi mogą wciąż kończyć proces uruchamiania. -Uruchamianie jądra zajęło @KERNEL_USEC@ μs. +Uruchamianie jądra zajęło @KERNEL_USEC@ μs. -Uruchamianie początkowego dysku RAM zajęło @INITRD_USEC@ μs. +Uruchamianie początkowego dysku RAM zajęło @INITRD_USEC@ μs. -Uruchamianie przestrzeni użytkownika zajęło @USERSPACE_USEC@ μs. +Uruchamianie przestrzeni użytkownika zajęło @USERSPACE_USEC@ μs. -- eed00a68ffd84e31882105fd973abdd1 Subject: Ukończono uruchamianie menedżera użytkownika @@ -179,7 +179,7 @@ Wszystkie usługi zakolejkowane do włączenia zostały uruchomione. Proszę zauważyć, że inne usługi mogą być nadal uruchamiane lub zostać uruchomione później. -Uruchamianie menedżera zajęło @USERSPACE_USEC@ μs. +Uruchamianie menedżera zajęło @USERSPACE_USEC@ μs. -- 6bbd95ee977941e497c48be27c254128 Subject: Przejście do stanu uśpienia @SLEEP@ @@ -200,7 +200,7 @@ Subject: Zainicjowano wyłączenie systemu Defined-By: systemd Support: %SUPPORT_URL% -Zainicjowano wyłączenie systemd. Wyłączenie zostało rozpoczęte i wszystkie +Zainicjowano wyłączenie systemu. Wyłączenie zostało rozpoczęte i wszystkie usługi systemowe zostały zakończone, a wszystkie systemy plików odmontowane. -- 7d4958e842da4a758f6c1cdc7b36dcc5 @@ -353,3 +353,22 @@ Defined-By: systemd Support: %SUPPORT_URL% Jednostka @UNIT@ została ukończona, zużywając wskazane zasoby. + +-- 50876a9db00f4c40bde1a2ad381c3a1b +Subject: System jest skonfigurowany w sposób, który może powodować problemy +Defined-By: systemd +Support: %SUPPORT_URL% + +Możliwe są następujące „etykiety”: +• „split-usr” — /usr jest oddzielnym systemem plików, który nie był + zamontowany w czasie uruchomienia systemd, +• „cgroups-missing” — jądro zostało skompilowane bez obsługi cgroups + lub dostęp do oczekiwanych plików interfejsu jest ograniczony, +• „var-run-bad” — /var/run nie jest dowiązaniem symbolicznym do /run, +• „overflowuid-not-65534” — identyfikator użytkownika dla „nieznanych” + użytkowników (przy wykorzystaniu przestrzeni nazw użytkowników lub NFS) + nie wynosi 65534, +• „overflowgid-not-65534” — identyfikator grupy dla „nieznanych” + użytkowników (przy wykorzystaniu przestrzeni nazw użytkowników lub NFS) + nie wynosi 65534. +Obecny system ma etykietę „@TAINT@”. diff --git a/catalog/systemd.ru.catalog.in b/catalog/systemd.ru.catalog.in index 25ee6acfb..be6410b50 100644 --- a/catalog/systemd.ru.catalog.in +++ b/catalog/systemd.ru.catalog.in @@ -396,3 +396,24 @@ Defined-By: systemd Support: %SUPPORT_URL% Юнит @UNIT@ завершен. Приводится статистика по потребленным им ресурсам. + +# Subject: The system is configured in a way that might cause problems +-- 50876a9db00f4c40bde1a2ad381c3a1b +Subject: Выявлены потенциальные проблемы в конфигурации системы +Defined-By: systemd +Support: %SUPPORT_URL% + +Перечень всех возможных меток, указывающих на проблемы конфигурации: +- "split-usr" — каталог /usr расположен на отдельной файловой системе, + которая не была смонтирована на момент запуска systemd +- "cgroups-missing" — ядро собрано без поддержки контрольных групп, либо + отсутствуют права для доступа к интерфейсным файлам контрольных групп +- "var-run-bad" — /var/run не является символьной ссылкой на /run +- "overflowuid-not-65534" — используемый ядром UID для "неизвестных" + пользователей (применяется в NFS и пространствах имен пользователей) + не равен 65534 +- "overflowgid-not-65534" — используемый ядром GID для "неизвестных" + пользователей (применяется в NFS и пространствах имен пользователей) + не равен 65534 + +В вашей системе присутствуют следующие проблемы: @TAINT@. diff --git a/coccinelle/debug-logging.cocci b/coccinelle/debug-logging.cocci new file mode 100644 index 000000000..9084cf773 --- /dev/null +++ b/coccinelle/debug-logging.cocci @@ -0,0 +1,8 @@ +@@ +@@ +- _unlikely_(log_get_max_level() >= LOG_DEBUG) ++ DEBUG_LOGGING +@@ +@@ +- log_get_max_level() >= LOG_DEBUG ++ DEBUG_LOGGING diff --git a/coccinelle/enotsup.cocci b/coccinelle/enotsup.cocci new file mode 100644 index 000000000..c65734d38 --- /dev/null +++ b/coccinelle/enotsup.cocci @@ -0,0 +1,4 @@ +@@ +@@ +- ENOTSUP ++ EOPNOTSUPP diff --git a/coccinelle/exit-0.cocci b/coccinelle/exit-0.cocci new file mode 100644 index 000000000..8b8160057 --- /dev/null +++ b/coccinelle/exit-0.cocci @@ -0,0 +1,16 @@ +@@ +@@ +- exit(0); ++ exit(EXIT_SUCCESS); +@@ +@@ +- _exit(0); ++ _exit(EXIT_SUCCESS); +@@ +@@ +- exit(1); ++ exit(EXIT_FAILURE); +@@ +@@ +- _exit(1); ++ _exit(EXIT_FAILURE); diff --git a/coccinelle/isempty.cocci b/coccinelle/isempty.cocci index 1374ee40d..d8d527588 100644 --- a/coccinelle/isempty.cocci +++ b/coccinelle/isempty.cocci @@ -6,10 +6,55 @@ expression s; @@ expression s; @@ +- strv_length(s) <= 0 ++ strv_isempty(s) +@@ +expression s; +@@ +- strv_length(s) > 0 ++ !strv_isempty(s) +@@ +expression s; +@@ +- strv_length(s) != 0 ++ !strv_isempty(s) +@@ +expression s; +@@ - strlen(s) == 0 + isempty(s) @@ expression s; @@ +- strlen(s) <= 0 ++ isempty(s) +@@ +expression s; +@@ +- strlen(s) > 0 ++ !isempty(s) +@@ +expression s; +@@ +- strlen(s) != 0 ++ !isempty(s) +@@ +expression s; +@@ - strlen_ptr(s) == 0 + isempty(s) +@@ +expression s; +@@ +- strlen_ptr(s) <= 0 ++ isempty(s) +@@ +expression s; +@@ +- strlen_ptr(s) > 0 ++ !isempty(s) +@@ +expression s; +@@ +- strlen_ptr(s) != 0 ++ !isempty(s) diff --git a/coccinelle/memzero.cocci b/coccinelle/memzero.cocci new file mode 100644 index 000000000..ebdc3f6a2 --- /dev/null +++ b/coccinelle/memzero.cocci @@ -0,0 +1,30 @@ +@@ +expression s; +@@ +- memset(&s, 0, sizeof(s)) ++ zero(s) +@@ +expression s; +@@ +- memset(s, 0, sizeof(*s)) ++ zero(*s) +@@ +expression s; +@@ +- bzero(&s, sizeof(s)) ++ zero(s) +@@ +expression s; +@@ +- bzero(s, sizeof(*s)) ++ zero(*s) +@@ +expression a, b; +@@ +- memset(a, 0, b) ++ memzero(a, b) +@@ +expression a, b; +@@ +- bzero(a, b) ++ memzero(a, b) diff --git a/coccinelle/o-ndelay.occi b/coccinelle/o-ndelay.occi new file mode 100644 index 000000000..669424a05 --- /dev/null +++ b/coccinelle/o-ndelay.occi @@ -0,0 +1,4 @@ +@@ +@@ +- O_NDELAY ++ O_NONBLOCK diff --git a/coccinelle/strempty.cocci b/coccinelle/strempty.cocci index e3bd0a1f5..13ceb338f 100644 --- a/coccinelle/strempty.cocci +++ b/coccinelle/strempty.cocci @@ -8,3 +8,41 @@ expression s; @@ - s ? s : "" + strempty(s) +@@ +expression s; +@@ +- if (!s) +- s = ""; ++ s = strempty(s); +@@ +expression s; +@@ +- s ?: "(null)" ++ strnull(s) +@@ +expression s; +@@ +- s ? s : "(null)" ++ strnull(s) +@@ +expression s; +@@ +- if (!s) +- s = "(null)"; ++ s = strnull(s); +@@ +expression s; +@@ +- s ?: "n/a" ++ strna(s) +@@ +expression s; +@@ +- s ? s : "n/a" ++ strna(s) +@@ +expression s; +@@ +- if (!s) +- s = "n/a"; ++ s = strna(s); diff --git a/hwdb/20-OUI.hwdb b/hwdb/20-OUI.hwdb index 20d168c48..294101ff0 100644 --- a/hwdb/20-OUI.hwdb +++ b/hwdb/20-OUI.hwdb @@ -510,7 +510,7 @@ OUI:0000A7* ID_OUI_FROM_DATABASE=NETWORK COMPUTING DEVICES INC. OUI:0000A8* - ID_OUI_FROM_DATABASE=STRATUS COMPUTER INC. + ID_OUI_FROM_DATABASE=Stratus Technologies OUI:0000A9* ID_OUI_FROM_DATABASE=NETWORK SYSTEMS CORP. @@ -3834,7 +3834,7 @@ OUI:0004FB* ID_OUI_FROM_DATABASE=Commtech, Inc. OUI:0004FC* - ID_OUI_FROM_DATABASE=Stratus Computer (DE), Inc. + ID_OUI_FROM_DATABASE=Stratus Technologies OUI:0004FD* ID_OUI_FROM_DATABASE=Japan Control Engineering Co., Ltd. @@ -5886,7 +5886,7 @@ OUI:0007A7* ID_OUI_FROM_DATABASE=A-Z Inc. OUI:0007A8* - ID_OUI_FROM_DATABASE=Haier Group Technologies Ltd. + ID_OUI_FROM_DATABASE=Haier Group Technologies Ltd OUI:0007A9* ID_OUI_FROM_DATABASE=Novasonics @@ -17094,7 +17094,7 @@ OUI:00165B* ID_OUI_FROM_DATABASE=Grip Audio OUI:00165C* - ID_OUI_FROM_DATABASE=Trackflow Ltd + ID_OUI_FROM_DATABASE=Trackflow Ltd. OUI:00165D* ID_OUI_FROM_DATABASE=AirDefense, Inc. @@ -25140,7 +25140,7 @@ OUI:00200D* ID_OUI_FROM_DATABASE=CARL ZEISS OUI:00200E* - ID_OUI_FROM_DATABASE=SATELLITE TECHNOLOGY MGMT, INC + ID_OUI_FROM_DATABASE=NSSLGlobal Technologies AS OUI:00200F* ID_OUI_FROM_DATABASE=EBRAINS Inc @@ -26706,7 +26706,7 @@ OUI:002217* ID_OUI_FROM_DATABASE=Neat Electronics OUI:002218* - ID_OUI_FROM_DATABASE=Verivue Inc. + ID_OUI_FROM_DATABASE=AKAMAI TECHNOLOGIES INC OUI:002219* ID_OUI_FROM_DATABASE=Dell Inc. @@ -27585,7 +27585,7 @@ OUI:00233C* ID_OUI_FROM_DATABASE=Alflex OUI:00233D* - ID_OUI_FROM_DATABASE=Novero holding B.V. + ID_OUI_FROM_DATABASE=Laird Technologies OUI:00233E* ID_OUI_FROM_DATABASE=Alcatel-Lucent IPD @@ -28965,7 +28965,7 @@ OUI:00250B* ID_OUI_FROM_DATABASE=CENTROFACTOR INC OUI:00250C* - ID_OUI_FROM_DATABASE=Enertrac + ID_OUI_FROM_DATABASE=Senet Inc OUI:00250D* ID_OUI_FROM_DATABASE=GZT Telkom-Telmor sp. z o.o. @@ -33035,6 +33035,9 @@ OUI:0056CD* OUI:0057D2* ID_OUI_FROM_DATABASE=Cisco Systems, Inc +OUI:00583F* + ID_OUI_FROM_DATABASE=PC Aquarius + OUI:005907* ID_OUI_FROM_DATABASE=LenovoEMC Products USA, LLC @@ -33899,6 +33902,9 @@ OUI:0071CC* OUI:007263* ID_OUI_FROM_DATABASE=Netcore Technology Inc. +OUI:007278* + ID_OUI_FROM_DATABASE=Cisco Systems, Inc + OUI:00738D* ID_OUI_FROM_DATABASE=Shenzhen TINNO Mobile Technology Corp. @@ -35670,7 +35676,7 @@ OUI:00A020* ID_OUI_FROM_DATABASE=CITICORP/TTI OUI:00A021* - ID_OUI_FROM_DATABASE=General Dynamics + ID_OUI_FROM_DATABASE=General Dynamics Mission Systems OUI:00A022* ID_OUI_FROM_DATABASE=CENTRE FOR DEVELOPMENT OF ADVANCED COMPUTING @@ -36563,6 +36569,9 @@ OUI:00BD3A* OUI:00BD82* ID_OUI_FROM_DATABASE=Shenzhen YOUHUA Technology Co., Ltd +OUI:00BE3B* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:00BE75* ID_OUI_FROM_DATABASE=Cisco Systems, Inc @@ -37373,6 +37382,9 @@ OUI:00CAE5* OUI:00CB00* ID_OUI_FROM_DATABASE=Private +OUI:00CBB4* + ID_OUI_FROM_DATABASE=SHENZHEN ATEKO PHOTOELECTRICITY CO.,LTD + OUI:00CBBD* ID_OUI_FROM_DATABASE=Cambridge Broadband Networks Ltd. @@ -37388,6 +37400,9 @@ OUI:00CDFE* OUI:00CF1C* ID_OUI_FROM_DATABASE=Communication Machinery Corporation +OUI:00CFC0* + ID_OUI_FROM_DATABASE=China Mobile Group Device Co.,Ltd. + OUI:00D000* ID_OUI_FROM_DATABASE=FERRAN SCIENTIFIC, INC. @@ -38268,7 +38283,7 @@ OUI:00E008* ID_OUI_FROM_DATABASE=AMAZING CONTROLS! INC. OUI:00E009* - ID_OUI_FROM_DATABASE=MARATHON TECHNOLOGIES CORP. + ID_OUI_FROM_DATABASE=Stratus Technologies OUI:00E00A* ID_OUI_FROM_DATABASE=DIBA, INC. @@ -39374,6 +39389,9 @@ OUI:046785* OUI:0469F8* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:046B1B* + ID_OUI_FROM_DATABASE=SYSDINE Co., Ltd. + OUI:046C9D* ID_OUI_FROM_DATABASE=Cisco Systems, Inc @@ -39476,6 +39494,9 @@ OUI:0488E2* OUI:048A15* ID_OUI_FROM_DATABASE=Avaya Inc +OUI:048AE1* + ID_OUI_FROM_DATABASE=FLEXTRONICS MANUFACTURING(ZHUHAI)CO.,LTD. + OUI:048B42* ID_OUI_FROM_DATABASE=Skspruce Technologies @@ -39620,6 +39641,9 @@ OUI:04CF25* OUI:04D13A* ID_OUI_FROM_DATABASE=Xiaomi Communications Co Ltd +OUI:04D3B0* + ID_OUI_FROM_DATABASE=Intel Corporate + OUI:04D3CF* ID_OUI_FROM_DATABASE=Apple, Inc. @@ -39662,6 +39686,9 @@ OUI:04E0C4* OUI:04E1C8* ID_OUI_FROM_DATABASE=IMS Soluções em Energia Ltda. +OUI:04E229* + ID_OUI_FROM_DATABASE=Qingdao Haier Technology Co.,Ltd + OUI:04E2F8* ID_OUI_FROM_DATABASE=AEP Ticketing solutions srl @@ -39716,6 +39743,9 @@ OUI:04F938* OUI:04FA3F* ID_OUI_FROM_DATABASE=Opticore Inc. +OUI:04FA83* + ID_OUI_FROM_DATABASE=Qingdao Haier Technology Co.,Ltd + OUI:04FE31* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd @@ -40472,6 +40502,9 @@ OUI:0896AD* OUI:0896D7* ID_OUI_FROM_DATABASE=AVM GmbH +OUI:089734* + ID_OUI_FROM_DATABASE=Hewlett Packard Enterprise + OUI:089758* ID_OUI_FROM_DATABASE=Shenzhen Strong Rising Electronics Co.,Ltd DongGuan Subsidiary @@ -40589,6 +40622,9 @@ OUI:08D833* OUI:08DF1F* ID_OUI_FROM_DATABASE=Bose Corporation +OUI:08DFCB* + ID_OUI_FROM_DATABASE=Systrome Networks + OUI:08E5DA* ID_OUI_FROM_DATABASE=NANJING FUJITSU COMPUTER PRODUCTS CO.,LTD. @@ -40685,6 +40721,9 @@ OUI:08F2F4* OUI:08F4AB* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:08F69C* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:08F6F8* ID_OUI_FROM_DATABASE=GET Engineering @@ -40757,6 +40796,9 @@ OUI:0C1DC2* OUI:0C2026* ID_OUI_FROM_DATABASE=noax Technologies AG +OUI:0C2138* + ID_OUI_FROM_DATABASE=Hengstler GmbH + OUI:0C2369* ID_OUI_FROM_DATABASE=Honeywell SPS @@ -40775,6 +40817,9 @@ OUI:0C2A69* OUI:0C2AE7* ID_OUI_FROM_DATABASE=Beijing General Research Institute of Mining and Metallurgy +OUI:0C2C54* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:0C2D89* ID_OUI_FROM_DATABASE=QiiQ Communications Inc. @@ -40928,6 +40973,51 @@ OUI:0C72D9* OUI:0C73BE* ID_OUI_FROM_DATABASE=Dongguan Haimai Electronie Technology Co.,Ltd +OUI:0C73EB0* + ID_OUI_FROM_DATABASE=Gemini Data Loggers (UK) Limited + +OUI:0C73EB1* + ID_OUI_FROM_DATABASE=EVERSEC TECHNOLOGY CORPORATION + +OUI:0C73EB2* + ID_OUI_FROM_DATABASE=Deltapath, Inc. + +OUI:0C73EB3* + ID_OUI_FROM_DATABASE=Tiinlab Acoustic Technology (Shenzhen) Co., Ltd. + +OUI:0C73EB4* + ID_OUI_FROM_DATABASE=U-PASS.CO.,LTD + +OUI:0C73EB5* + ID_OUI_FROM_DATABASE=Husty M.Styczen J.Hupert Sp.J. + +OUI:0C73EB6* + ID_OUI_FROM_DATABASE=Green Fox Electro AS + +OUI:0C73EB7* + ID_OUI_FROM_DATABASE=Dinkle Enterprise Co., Ltd. + +OUI:0C73EB8* + ID_OUI_FROM_DATABASE=Beijing Miiiw Technology Co., Ltd + +OUI:0C73EB9* + ID_OUI_FROM_DATABASE=Beijing L&S Lancom Platform Tech. Co., Ltd. + +OUI:0C73EBA* + ID_OUI_FROM_DATABASE=Pi Innovo LLC + +OUI:0C73EBB* + ID_OUI_FROM_DATABASE=Synaccess Networks + +OUI:0C73EBC* + ID_OUI_FROM_DATABASE=Shenzhen Samchung Video Technology Co., Ltd. + +OUI:0C73EBD* + ID_OUI_FROM_DATABASE=D-Link (Shanghai)Limited Corp. + +OUI:0C73EBE* + ID_OUI_FROM_DATABASE=Taiwan Pulse Motion Co., Ltd. + OUI:0C74C2* ID_OUI_FROM_DATABASE=Apple, Inc. @@ -40946,6 +41036,9 @@ OUI:0C771A* OUI:0C7D7C* ID_OUI_FROM_DATABASE=Kexiang Information Technology Co, Ltd. +OUI:0C8063* + ID_OUI_FROM_DATABASE=TP-LINK TECHNOLOGIES CO.,LTD. + OUI:0C8112* ID_OUI_FROM_DATABASE=Private @@ -41060,6 +41153,9 @@ OUI:0CB2B7* OUI:0CB319* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:0CB34F* + ID_OUI_FROM_DATABASE=Shenzhen Xiaoqi Intelligent Technology Co., Ltd. + OUI:0CB459* ID_OUI_FROM_DATABASE=Marketech International Corp. @@ -41430,7 +41526,7 @@ OUI:101C0C* ID_OUI_FROM_DATABASE=Apple, Inc. OUI:101D51* - ID_OUI_FROM_DATABASE=8Mesh Networks + ID_OUI_FROM_DATABASE=8Mesh Networks Limited OUI:101DC0* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd @@ -41573,6 +41669,9 @@ OUI:1062EB* OUI:1064E2* ID_OUI_FROM_DATABASE=ADFweb.com s.r.l. +OUI:106530* + ID_OUI_FROM_DATABASE=Dell Inc. + OUI:1065A3* ID_OUI_FROM_DATABASE=Core Brands LLC @@ -41654,6 +41753,9 @@ OUI:109266* OUI:1093E9* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:1094BB* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:10954B* ID_OUI_FROM_DATABASE=Megabyte Ltd. @@ -41702,6 +41804,9 @@ OUI:10B1F8* OUI:10B26B* ID_OUI_FROM_DATABASE=base Co.,Ltd. +OUI:10B36F* + ID_OUI_FROM_DATABASE=Bowei Technology Company Limited + OUI:10B713* ID_OUI_FROM_DATABASE=Private @@ -41900,6 +42005,9 @@ OUI:140708* OUI:1407E0* ID_OUI_FROM_DATABASE=Abrantix AG +OUI:1409DC* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:140C5B* ID_OUI_FROM_DATABASE=PLNetworks @@ -41993,6 +42101,9 @@ OUI:141FBAE* OUI:141FBAF* ID_OUI_FROM_DATABASE=Private +OUI:14205E* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:1422DB* ID_OUI_FROM_DATABASE=eero inc. @@ -42266,6 +42377,9 @@ OUI:1499E2* OUI:149A10* ID_OUI_FROM_DATABASE=Microsoft Corporation +OUI:149B2F* + ID_OUI_FROM_DATABASE=JiangSu ZhongXie Intelligent Technology co., LTD + OUI:149D09* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -43022,6 +43136,9 @@ OUI:18F0E4* OUI:18F145* ID_OUI_FROM_DATABASE=NetComm Wireless Limited +OUI:18F1D8* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:18F292* ID_OUI_FROM_DATABASE=Shannon Systems @@ -43058,6 +43175,9 @@ OUI:18FF0F* OUI:18FF2E* ID_OUI_FROM_DATABASE=Shenzhen Rui Ying Da Technology Co., Ltd +OUI:1C0042* + ID_OUI_FROM_DATABASE=NARI Technology Co., Ltd. + OUI:1C0656* ID_OUI_FROM_DATABASE=IDY Corporation @@ -43985,6 +44105,9 @@ OUI:2012D5* OUI:2013E0* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:2016B9* + ID_OUI_FROM_DATABASE=Intel Corporate + OUI:2016D8* ID_OUI_FROM_DATABASE=Liteon Technology Corporation @@ -44069,6 +44192,9 @@ OUI:2046F9* OUI:204747* ID_OUI_FROM_DATABASE=Dell Inc. +OUI:2047DA* + ID_OUI_FROM_DATABASE=Xiaomi Communications Co Ltd + OUI:2047ED* ID_OUI_FROM_DATABASE=BSkyB Ltd @@ -44555,6 +44681,9 @@ OUI:242642* OUI:2429FE* ID_OUI_FROM_DATABASE=KYOCERA Corporation +OUI:242E02* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:242FFA* ID_OUI_FROM_DATABASE=Toshiba Global Commerce Solutions @@ -44883,7 +45012,7 @@ OUI:24C696* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd OUI:24C848* - ID_OUI_FROM_DATABASE=mywerk system GmbH + ID_OUI_FROM_DATABASE=mywerk Portal GmbH OUI:24C86E* ID_OUI_FROM_DATABASE=Chaney Instrument Co. @@ -44981,6 +45110,9 @@ OUI:24F094* OUI:24F0FF* ID_OUI_FROM_DATABASE=GHT Co., Ltd. +OUI:24F128* + ID_OUI_FROM_DATABASE=Telstra + OUI:24F27F* ID_OUI_FROM_DATABASE=Hewlett Packard Enterprise @@ -45047,6 +45179,9 @@ OUI:281471* OUI:28162E* ID_OUI_FROM_DATABASE=2Wire Inc +OUI:2816A8* + ID_OUI_FROM_DATABASE=Microsoft Corporation + OUI:2816AD* ID_OUI_FROM_DATABASE=Intel Corporate @@ -45437,6 +45572,9 @@ OUI:28A6DB* OUI:28AC67* ID_OUI_FROM_DATABASE=Mach Power, Rappresentanze Internazionali s.r.l. +OUI:28AC9E* + ID_OUI_FROM_DATABASE=Cisco Systems, Inc + OUI:28AD3E* ID_OUI_FROM_DATABASE=Shenzhen TONG BO WEI Technology CO.,LTD @@ -45749,6 +45887,12 @@ OUI:28FD80F* OUI:28FECD* ID_OUI_FROM_DATABASE=Lemobile Information Technology (Beijing) Co., Ltd. +OUI:28FEDE* + ID_OUI_FROM_DATABASE=COMESTA, Inc. + +OUI:28FF3C* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:28FF3E* ID_OUI_FROM_DATABASE=zte corporation @@ -45935,6 +46079,9 @@ OUI:2C27D7* OUI:2C282D* ID_OUI_FROM_DATABASE=BBK EDUCATIONAL ELECTRONICS CORP.,LTD. +OUI:2C28B7* + ID_OUI_FROM_DATABASE=Hangzhou Ruiying technology co., LTD + OUI:2C2997* ID_OUI_FROM_DATABASE=Microsoft Corporation @@ -46322,6 +46469,9 @@ OUI:2CB693* OUI:2CB69D* ID_OUI_FROM_DATABASE=RED Digital Cinema +OUI:2CB8ED* + ID_OUI_FROM_DATABASE=SonicWall + OUI:2CBABA* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd @@ -46493,6 +46643,9 @@ OUI:30055C* OUI:30074D* ID_OUI_FROM_DATABASE=SAMSUNG ELECTRO-MECHANICS(THAILAND) +OUI:300AC5* + ID_OUI_FROM_DATABASE=Ruio telecommunication technologies Co., Limited + OUI:300B9C* ID_OUI_FROM_DATABASE=Delta Mobile Systems, Inc. @@ -46541,8 +46694,50 @@ OUI:301966* OUI:301A28* ID_OUI_FROM_DATABASE=Mako Networks Ltd -OUI:301F9A* - ID_OUI_FROM_DATABASE=IEEE Registration Authority +OUI:301F9A0* + ID_OUI_FROM_DATABASE=ILSAN ELECTRONICS + +OUI:301F9A1* + ID_OUI_FROM_DATABASE=Dewesoft d.o.o. + +OUI:301F9A2* + ID_OUI_FROM_DATABASE=CHISON Medical Technologies Co., Ltd. + +OUI:301F9A3* + ID_OUI_FROM_DATABASE=MICOMSOFT CO.,LTD. + +OUI:301F9A4* + ID_OUI_FROM_DATABASE=NCM Supplies, Inc. + +OUI:301F9A5* + ID_OUI_FROM_DATABASE=Beijing Surestar Technology Co. Ltd, + +OUI:301F9A6* + ID_OUI_FROM_DATABASE=YiSheng technology co.,LTD + +OUI:301F9A7* + ID_OUI_FROM_DATABASE=Triax A/S + +OUI:301F9A8* + ID_OUI_FROM_DATABASE=FINE TRIUMPH TECHNOLOGY CORP.,LTD. + +OUI:301F9A9* + ID_OUI_FROM_DATABASE=Private + +OUI:301F9AA* + ID_OUI_FROM_DATABASE=HUNAN CHANGSHA HENGJIAN TECHNOLDGY DEVELPMENT CO.,LTD. + +OUI:301F9AB* + ID_OUI_FROM_DATABASE=Smart Component Technologies LTD + +OUI:301F9AC* + ID_OUI_FROM_DATABASE=Origami Group Limited + +OUI:301F9AD* + ID_OUI_FROM_DATABASE=OLIMEX Ltd + +OUI:301F9AE* + ID_OUI_FROM_DATABASE=Shenzhen Fengliyuan Energy Conservating Technology Co. Ltd OUI:30215B* ID_OUI_FROM_DATABASE=Shenzhen Ostar Display Electronic Co.,Ltd @@ -46707,7 +46902,7 @@ OUI:30786B* ID_OUI_FROM_DATABASE=TIANJIN Golden Pentagon Electronics Co., Ltd. OUI:3078C2* - ID_OUI_FROM_DATABASE=Innowireless, Co. Ltd. + ID_OUI_FROM_DATABASE=Innowireless / QUCELL Networks OUI:307BAC* ID_OUI_FROM_DATABASE=New H3C Technologies Co., Ltd @@ -46877,6 +47072,9 @@ OUI:30D587* OUI:30D6C9* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:30D9D9* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:30DE86* ID_OUI_FROM_DATABASE=Cedac Software S.r.l. @@ -47312,6 +47510,9 @@ OUI:346987* OUI:346AC2* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:346B46* + ID_OUI_FROM_DATABASE=Sagemcom Broadband SAS + OUI:346BD3* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -47399,6 +47600,9 @@ OUI:348A7B* OUI:348AAE* ID_OUI_FROM_DATABASE=Sagemcom Broadband SAS +OUI:348B75* + ID_OUI_FROM_DATABASE=LAVA INTERNATIONAL(H.K) LIMITED + OUI:348F27* ID_OUI_FROM_DATABASE=Ruckus Wireless @@ -47681,6 +47885,9 @@ OUI:34E70B* OUI:34E71C* ID_OUI_FROM_DATABASE=Shenzhen YOUHUA Technology Co., Ltd +OUI:34E894* + ID_OUI_FROM_DATABASE=TP-LINK TECHNOLOGIES CO.,LTD. + OUI:34E911* ID_OUI_FROM_DATABASE=vivo Mobile Communication Co., Ltd. @@ -47864,6 +48071,9 @@ OUI:382DE8* OUI:3831AC* ID_OUI_FROM_DATABASE=WEG +OUI:3835FB* + ID_OUI_FROM_DATABASE=Sagemcom Broadband SAS + OUI:38378B* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -48089,6 +48299,9 @@ OUI:388345* OUI:388602* ID_OUI_FROM_DATABASE=Flexoptix GmbH +OUI:38892C* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:3889DC* ID_OUI_FROM_DATABASE=Opticon Sensors Europe B.V. @@ -48173,6 +48386,9 @@ OUI:38AD8E* OUI:38ADBE* ID_OUI_FROM_DATABASE=New H3C Technologies Co., Ltd +OUI:38AF29* + ID_OUI_FROM_DATABASE=Zhejiang Dahua Technology Co., Ltd. + OUI:38AFD7* ID_OUI_FROM_DATABASE=FUJITSU LIMITED @@ -48239,6 +48455,9 @@ OUI:38B8EBD* OUI:38B8EBE* ID_OUI_FROM_DATABASE=Wyres SAS +OUI:38BAF8* + ID_OUI_FROM_DATABASE=Intel Corporate + OUI:38BB23* ID_OUI_FROM_DATABASE=OzVision America LLC @@ -48512,6 +48731,9 @@ OUI:3C15C2* OUI:3C15EA* ID_OUI_FROM_DATABASE=TESCOM CO., LTD. +OUI:3C15FB* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:3C1710* ID_OUI_FROM_DATABASE=Sagemcom Broadband SAS @@ -48545,6 +48767,39 @@ OUI:3C1E04* OUI:3C1E13* ID_OUI_FROM_DATABASE=HANGZHOU SUNRISE TECHNOLOGY CO., LTD +OUI:3C24F00* + ID_OUI_FROM_DATABASE=SHENZHEN PINSIDA TECHNOLOGY CO.,LTD. + +OUI:3C24F01* + ID_OUI_FROM_DATABASE=Abrites Ltd. + +OUI:3C24F03* + ID_OUI_FROM_DATABASE=Wisycom + +OUI:3C24F04* + ID_OUI_FROM_DATABASE=Inter-Coastal Electronics + +OUI:3C24F06* + ID_OUI_FROM_DATABASE=Inter Action Corporation + +OUI:3C24F07* + ID_OUI_FROM_DATABASE=Swissdotnet SA + +OUI:3C24F09* + ID_OUI_FROM_DATABASE=Siemens AG - Siemens Deutschland Mobility + +OUI:3C24F0A* + ID_OUI_FROM_DATABASE=Shenzhen Bestway Technology Co., Ltd + +OUI:3C24F0B* + ID_OUI_FROM_DATABASE=COMATIS + +OUI:3C24F0C* + ID_OUI_FROM_DATABASE=Authentico Technologies + +OUI:3C24F0D* + ID_OUI_FROM_DATABASE=Travis Holding B.V. + OUI:3C25D7* ID_OUI_FROM_DATABASE=Nokia Corporation @@ -48965,6 +49220,9 @@ OUI:3CCB7C* OUI:3CCD5A* ID_OUI_FROM_DATABASE=Technische Alternative GmbH +OUI:3CCD5D* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:3CCD93* ID_OUI_FROM_DATABASE=LG ELECTRONICS INC @@ -49016,6 +49274,9 @@ OUI:3CDFBD* OUI:3CE072* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:3CE1A1* + ID_OUI_FROM_DATABASE=Universal Global Scientific Industrial Co., Ltd. + OUI:3CE5A6* ID_OUI_FROM_DATABASE=Hangzhou H3C Technologies Co., Limited @@ -49031,6 +49292,9 @@ OUI:3CE824* OUI:3CEA4F* ID_OUI_FROM_DATABASE=2Wire Inc +OUI:3CEAF9* + ID_OUI_FROM_DATABASE=JUBIXCOLTD + OUI:3CEAFB* ID_OUI_FROM_DATABASE=NSE AG @@ -49271,6 +49535,9 @@ OUI:404E36* OUI:404EEB* ID_OUI_FROM_DATABASE=Higher Way Electronic Co., Ltd. +OUI:4050B5* + ID_OUI_FROM_DATABASE=Shenzhen New Species Technology Co., Ltd. + OUI:4050E0* ID_OUI_FROM_DATABASE=Milton Security Group LLC @@ -49319,6 +49586,9 @@ OUI:406186* OUI:40618E* ID_OUI_FROM_DATABASE=Stella-Green Co +OUI:406231* + ID_OUI_FROM_DATABASE=GIFA + OUI:4062B6* ID_OUI_FROM_DATABASE=Tele system communication @@ -49385,6 +49655,9 @@ OUI:407FE0* OUI:408256* ID_OUI_FROM_DATABASE=Continental Automotive GmbH +OUI:40831D* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:4083DE* ID_OUI_FROM_DATABASE=Zebra Technologies Inc @@ -49610,6 +49883,9 @@ OUI:40CBC0* OUI:40CD3A* ID_OUI_FROM_DATABASE=Z3 Technology +OUI:40CD7A* + ID_OUI_FROM_DATABASE=Qingdao Hisense Communications Co.,Ltd. + OUI:40CE24* ID_OUI_FROM_DATABASE=Cisco Systems, Inc @@ -49706,6 +49982,9 @@ OUI:40EF4C* OUI:40F02F* ID_OUI_FROM_DATABASE=Liteon Technology Corporation +OUI:40F04E* + ID_OUI_FROM_DATABASE=Integrated Device Technology (Malaysia) Sdn. Bhd. + OUI:40F14C* ID_OUI_FROM_DATABASE=ISE Europe SPRL @@ -49829,6 +50108,9 @@ OUI:441CA8* OUI:441E91* ID_OUI_FROM_DATABASE=ARVIDA Intelligent Electronics Technology Co.,Ltd. +OUI:441E98* + ID_OUI_FROM_DATABASE=Ruckus Wireless + OUI:441EA1* ID_OUI_FROM_DATABASE=Hewlett Packard @@ -49868,6 +50150,9 @@ OUI:44334C* OUI:44348F* ID_OUI_FROM_DATABASE=MXT INDUSTRIAL LTDA +OUI:4434A7* + ID_OUI_FROM_DATABASE=ARRIS Group, Inc. + OUI:44356F* ID_OUI_FROM_DATABASE=Neterix @@ -49979,6 +50264,9 @@ OUI:44656A* OUI:44666E* ID_OUI_FROM_DATABASE=IP-LINE +OUI:4466FC* + ID_OUI_FROM_DATABASE=GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + OUI:446755* ID_OUI_FROM_DATABASE=Orbit Irrigation @@ -50312,6 +50600,51 @@ OUI:480362* OUI:48066A* ID_OUI_FROM_DATABASE=Tempered Networks, Inc. +OUI:480BB20* + ID_OUI_FROM_DATABASE=Ridango AS + +OUI:480BB21* + ID_OUI_FROM_DATABASE=BAJA ELECTRONICS TECHNOLOGY LIMITED + +OUI:480BB22* + ID_OUI_FROM_DATABASE=Thales CETCA Avionics CO., Ltd + +OUI:480BB23* + ID_OUI_FROM_DATABASE=shanghai Rinlink Intelligent Technology Co., Ltd. + +OUI:480BB24* + ID_OUI_FROM_DATABASE=Hangzhou Freely Communication Co., Ltd. + +OUI:480BB25* + ID_OUI_FROM_DATABASE=Solaredge LTD. + +OUI:480BB26* + ID_OUI_FROM_DATABASE=annapurnalabs + +OUI:480BB27* + ID_OUI_FROM_DATABASE=Beijing Dragon Resources Limited. + +OUI:480BB28* + ID_OUI_FROM_DATABASE=BravoCom(xiamen)TechCo.Ltd + +OUI:480BB29* + ID_OUI_FROM_DATABASE=Microprogram Information Co., Ltd + +OUI:480BB2A* + ID_OUI_FROM_DATABASE=XIAMEN RONGTA TECHNOLOGY CO.,LTD. + +OUI:480BB2B* + ID_OUI_FROM_DATABASE=Popit Oy + +OUI:480BB2C* + ID_OUI_FROM_DATABASE=SHENZHEN TOPWELL TECHNOLOGY CO..LTD + +OUI:480BB2D* + ID_OUI_FROM_DATABASE=M2Lab Ltd. + +OUI:480BB2E* + ID_OUI_FROM_DATABASE=Beijing MFOX technology Co., Ltd. + OUI:480C49* ID_OUI_FROM_DATABASE=NAKAYO Inc @@ -50456,6 +50789,9 @@ OUI:485D36* OUI:485D60* ID_OUI_FROM_DATABASE=AzureWave Technology Inc. +OUI:48605F* + ID_OUI_FROM_DATABASE=LG Electronics (Mobile Communications) + OUI:4860BC* ID_OUI_FROM_DATABASE=Apple, Inc. @@ -50615,6 +50951,9 @@ OUI:48A6D2* OUI:48A74E* ID_OUI_FROM_DATABASE=zte corporation +OUI:48A91C* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:48A9D2* ID_OUI_FROM_DATABASE=Wistron Neweb Corporation @@ -50732,6 +51071,9 @@ OUI:48DB50* OUI:48DCFB* ID_OUI_FROM_DATABASE=Nokia Corporation +OUI:48DD9D* + ID_OUI_FROM_DATABASE=ITEL MOBILE LIMITED + OUI:48DF1C* ID_OUI_FROM_DATABASE=Wuhan NEC Fibre Optic Communications industry Co. Ltd @@ -51233,6 +51575,9 @@ OUI:4CBCA5* OUI:4CBD8F* ID_OUI_FROM_DATABASE=Hangzhou Hikvision Digital Technology Co.,Ltd. +OUI:4CC00A* + ID_OUI_FROM_DATABASE=vivo Mobile Communication Co., Ltd. + OUI:4CC206* ID_OUI_FROM_DATABASE=Somfy @@ -51263,6 +51608,9 @@ OUI:4CCC6A* OUI:4CD08A* ID_OUI_FROM_DATABASE=HUMAX Co., Ltd. +OUI:4CD0CB* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:4CD637* ID_OUI_FROM_DATABASE=Qsono Electronics Co., Ltd @@ -51488,6 +51836,9 @@ OUI:501CB0* OUI:501CBF* ID_OUI_FROM_DATABASE=Cisco Systems, Inc +OUI:501D93* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:501E2D* ID_OUI_FROM_DATABASE=StreamUnlimited Engineering GmbH @@ -51611,6 +51962,9 @@ OUI:50502A* OUI:505065* ID_OUI_FROM_DATABASE=TAKT Corporation +OUI:5050CE* + ID_OUI_FROM_DATABASE=Hangzhou Dianyixia Communication Technology Co. Ltd. + OUI:5052D2* ID_OUI_FROM_DATABASE=Hangzhou Telin Technologies Co., Limited @@ -51638,6 +51992,12 @@ OUI:50584F* OUI:505AC6* ID_OUI_FROM_DATABASE=GUANGDONG SUPER TELECOM CO.,LTD. +OUI:505BC2* + ID_OUI_FROM_DATABASE=Liteon Technology Corporation + +OUI:505DAC* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:506028* ID_OUI_FROM_DATABASE=Xirrus Inc. @@ -51797,6 +52157,9 @@ OUI:509F27* OUI:509F3B* ID_OUI_FROM_DATABASE=OI ELECTRIC CO.,LTD +OUI:50A009* + ID_OUI_FROM_DATABASE=Xiaomi Communications Co Ltd + OUI:50A054* ID_OUI_FROM_DATABASE=Actineon @@ -51851,6 +52214,9 @@ OUI:50A4D0D* OUI:50A4D0E* ID_OUI_FROM_DATABASE=Sagetech Corporation +OUI:50A67F* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:50A6E3* ID_OUI_FROM_DATABASE=David Clark Company @@ -51896,6 +52262,9 @@ OUI:50B888* OUI:50B8A2* ID_OUI_FROM_DATABASE=ImTech Technologies LLC, +OUI:50BC96* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:50BD5F* ID_OUI_FROM_DATABASE=TP-LINK TECHNOLOGIES CO.,LTD. @@ -52361,6 +52730,9 @@ OUI:549359* OUI:549478* ID_OUI_FROM_DATABASE=Silvershore Technology Partners +OUI:549963* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:549A110* ID_OUI_FROM_DATABASE=Shenzhen Excera Technology Co.,Ltd. @@ -52994,6 +53366,9 @@ OUI:58B961* OUI:58B9E1* ID_OUI_FROM_DATABASE=Crystalfontz America, Inc. +OUI:58BAD4* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:58BC27* ID_OUI_FROM_DATABASE=Cisco Systems, Inc @@ -53048,6 +53423,9 @@ OUI:58D759* OUI:58D9D5* ID_OUI_FROM_DATABASE=Tenda Technology Co.,Ltd.Dongguan branch +OUI:58DB15* + ID_OUI_FROM_DATABASE=TECNO MOBILE LIMITED + OUI:58DB8D* ID_OUI_FROM_DATABASE=Fast Co., Ltd. @@ -53153,6 +53531,9 @@ OUI:58F67B* OUI:58F6BF* ID_OUI_FROM_DATABASE=Kyoto University +OUI:58F987* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:58F98E* ID_OUI_FROM_DATABASE=SECUDOS GmbH @@ -53225,6 +53606,9 @@ OUI:5C0339* OUI:5C076F* ID_OUI_FROM_DATABASE=Thought Creator +OUI:5C0947* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:5C0979* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -53267,6 +53651,9 @@ OUI:5C18B5* OUI:5C1A6F* ID_OUI_FROM_DATABASE=Cambridge Industries(Group) Co.,Ltd. +OUI:5C1DD9* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:5C20D0* ID_OUI_FROM_DATABASE=Asoni Communication Co., Ltd. @@ -53885,6 +54272,9 @@ OUI:602AD0* OUI:602E20* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:6030D4* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:60313B* ID_OUI_FROM_DATABASE=Sunnovo International Limited @@ -54314,6 +54704,9 @@ OUI:60DB2A* OUI:60DE44* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:60DEF3* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:60E00E* ID_OUI_FROM_DATABASE=SHINSEI ELECTRONICS CO LTD @@ -54473,6 +54866,9 @@ OUI:641A22* OUI:641C67* ID_OUI_FROM_DATABASE=DIGIBRAS INDUSTRIA DO BRASILS/A +OUI:641CAE* + ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd + OUI:641CB0* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd @@ -54584,6 +54980,9 @@ OUI:6459F8* OUI:645A04* ID_OUI_FROM_DATABASE=Chicony Electronics Co., Ltd. +OUI:645AED* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:645D92* ID_OUI_FROM_DATABASE=SICHUAN TIANYI COMHEART TELECOMCO.,LTD @@ -54641,6 +55040,9 @@ OUI:646EEA* OUI:647002* ID_OUI_FROM_DATABASE=TP-LINK TECHNOLOGIES CO.,LTD. +OUI:647033* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:6472D8* ID_OUI_FROM_DATABASE=GooWi Technology Co.,Limited @@ -55082,6 +55484,9 @@ OUI:6828BA* OUI:6828F6* ID_OUI_FROM_DATABASE=Vubiq Networks, Inc. +OUI:682C7B* + ID_OUI_FROM_DATABASE=Cisco Systems, Inc + OUI:682DDC* ID_OUI_FROM_DATABASE=Wuhan Changjiang Electro-Communication Equipment CO.,LTD @@ -55241,6 +55646,9 @@ OUI:6886E7* OUI:68876B* ID_OUI_FROM_DATABASE=INQ Mobile Limited +OUI:688975* + ID_OUI_FROM_DATABASE=nuoxc + OUI:6889C1* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -55421,6 +55829,9 @@ OUI:68C90B* OUI:68CA00* ID_OUI_FROM_DATABASE=Octopus Systems Limited +OUI:68CAE4* + ID_OUI_FROM_DATABASE=Cisco Systems, Inc + OUI:68CC6E* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -55433,6 +55844,9 @@ OUI:68CD0F* OUI:68CE4E* ID_OUI_FROM_DATABASE=L-3 Communications Infrared Products +OUI:68D1BA* + ID_OUI_FROM_DATABASE=Shenzhen YOUHUA Technology Co., Ltd + OUI:68D1FD* ID_OUI_FROM_DATABASE=Shenzhen Trimax Technology Co.,Ltd @@ -55532,6 +55946,9 @@ OUI:68FCB3* OUI:68FEDA* ID_OUI_FROM_DATABASE=Fiberhome Telecommunication Technologies Co.,LTD +OUI:68FEF7* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:6C0273* ID_OUI_FROM_DATABASE=Shenzhen Jin Yun Video Equipment Co., Ltd. @@ -55586,6 +56003,9 @@ OUI:6C1E90* OUI:6C2056* ID_OUI_FROM_DATABASE=Cisco Systems, Inc +OUI:6C21A2* + ID_OUI_FROM_DATABASE=AMPAK Technology, Inc. + OUI:6C22AB* ID_OUI_FROM_DATABASE=Ainsworth Game Technology @@ -55628,6 +56048,9 @@ OUI:6C32DE* OUI:6C33A9* ID_OUI_FROM_DATABASE=Magicjack LP +OUI:6C3838* + ID_OUI_FROM_DATABASE=Marking System Technology Co., Ltd. + OUI:6C38A1* ID_OUI_FROM_DATABASE=Ubee Interactive Co., Limited @@ -55883,6 +56306,9 @@ OUI:6CADF8* OUI:6CAE8B* ID_OUI_FROM_DATABASE=IBM Corporation +OUI:6CAF15* + ID_OUI_FROM_DATABASE=Webasto SE + OUI:6CB0CE* ID_OUI_FROM_DATABASE=NETGEAR @@ -56033,6 +56459,9 @@ OUI:6CFFBE* OUI:700136* ID_OUI_FROM_DATABASE=FATEK Automation Corporation +OUI:7001B5* + ID_OUI_FROM_DATABASE=Cisco Systems, Inc + OUI:700258* ID_OUI_FROM_DATABASE=01DB-METRAVIB @@ -56084,6 +56513,9 @@ OUI:701AED* OUI:701CE7* ID_OUI_FROM_DATABASE=Intel Corporate +OUI:701D08* + ID_OUI_FROM_DATABASE=99IOT Shenzhen co.,ltd + OUI:701D7F* ID_OUI_FROM_DATABASE=Comtech Technology Co., Ltd. @@ -56366,6 +56798,9 @@ OUI:707938* OUI:707990* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:7079B3* + ID_OUI_FROM_DATABASE=Cisco Systems, Inc + OUI:707BE8* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -56588,6 +57023,12 @@ OUI:70B3D501F* OUI:70B3D5022* ID_OUI_FROM_DATABASE=Ravelin Ltd +OUI:70B3D5023* + ID_OUI_FROM_DATABASE=Cambridge Pixel + +OUI:70B3D5024* + ID_OUI_FROM_DATABASE=G+D Mobile Security + OUI:70B3D5025* ID_OUI_FROM_DATABASE=Elsuhd Net Ltd Co. @@ -56654,6 +57095,9 @@ OUI:70B3D5044* OUI:70B3D5046* ID_OUI_FROM_DATABASE=Shenzhen Rihuida Electronics Co,. Ltd +OUI:70B3D5049* + ID_OUI_FROM_DATABASE=APP Engineering, Inc. + OUI:70B3D504A* ID_OUI_FROM_DATABASE=Gecko Robotics Inc @@ -56900,6 +57344,9 @@ OUI:70B3D50D2* OUI:70B3D50D3* ID_OUI_FROM_DATABASE=TSAT AS +OUI:70B3D50D4* + ID_OUI_FROM_DATABASE=Guangzhou Male Industrial Animation Technology Co.,Ltd. + OUI:70B3D50D6* ID_OUI_FROM_DATABASE=TATTILE SRL @@ -56999,6 +57446,9 @@ OUI:70B3D510A* OUI:70B3D510C* ID_OUI_FROM_DATABASE=Vocality International Ltd +OUI:70B3D510E* + ID_OUI_FROM_DATABASE=Colorimetry Research, Inc + OUI:70B3D510F* ID_OUI_FROM_DATABASE=neQis @@ -57098,12 +57548,18 @@ OUI:70B3D513F* OUI:70B3D5140* ID_OUI_FROM_DATABASE=Virta Laboratories, Inc. +OUI:70B3D5141* + ID_OUI_FROM_DATABASE=M.T. S.R.L. + OUI:70B3D5142* ID_OUI_FROM_DATABASE=DAVE SRL OUI:70B3D5144* ID_OUI_FROM_DATABASE=GS Elektromedizinsiche Geräte G. Stemple GmbH +OUI:70B3D5145* + ID_OUI_FROM_DATABASE=Sicon srl + OUI:70B3D5146* ID_OUI_FROM_DATABASE=3City Electronics @@ -57137,6 +57593,9 @@ OUI:70B3D5152* OUI:70B3D5153* ID_OUI_FROM_DATABASE=Schneider Electric Motion USA +OUI:70B3D5154* + ID_OUI_FROM_DATABASE=Walk Horizon Technology (Beijing) Co., Ltd. + OUI:70B3D515C* ID_OUI_FROM_DATABASE=Woods Hole Oceanographic Institution @@ -57281,6 +57740,9 @@ OUI:70B3D51A3* OUI:70B3D51A5* ID_OUI_FROM_DATABASE=METRONIC APARATURA KONTROLNO - POMIAROWA +OUI:70B3D51A6* + ID_OUI_FROM_DATABASE=Robotelf Technologies (Chengdu) Co., Ltd. + OUI:70B3D51A8* ID_OUI_FROM_DATABASE=STC Rainbow Ltd. @@ -57332,6 +57794,9 @@ OUI:70B3D51C8* OUI:70B3D51CB* ID_OUI_FROM_DATABASE=MatchX GmbH +OUI:70B3D51CD* + ID_OUI_FROM_DATABASE=ELEUSI GmbH + OUI:70B3D51D0* ID_OUI_FROM_DATABASE=Shenzhen INVT Electric Co.,Ltd @@ -57431,6 +57896,9 @@ OUI:70B3D520F* OUI:70B3D5211* ID_OUI_FROM_DATABASE=Fracarro srl +OUI:70B3D5213* + ID_OUI_FROM_DATABASE=ETON Deutschland Electro Acoustic GmbH + OUI:70B3D5214* ID_OUI_FROM_DATABASE=signalparser @@ -57458,6 +57926,9 @@ OUI:70B3D5220* OUI:70B3D5222* ID_OUI_FROM_DATABASE=Marioff Corporation Oy +OUI:70B3D5224* + ID_OUI_FROM_DATABASE=Urbana Smart Solutions Pte Ltd + OUI:70B3D5226* ID_OUI_FROM_DATABASE=Yaviar @@ -57491,9 +57962,15 @@ OUI:70B3D5231* OUI:70B3D5232* ID_OUI_FROM_DATABASE=UCONSYS +OUI:70B3D5236* + ID_OUI_FROM_DATABASE=Monnit Corporation + OUI:70B3D5238* ID_OUI_FROM_DATABASE=Arete Associates +OUI:70B3D523A* + ID_OUI_FROM_DATABASE=Mesa Labs, Inc. + OUI:70B3D523C* ID_OUI_FROM_DATABASE=Quasonix, LLC @@ -57518,6 +57995,9 @@ OUI:70B3D524B* OUI:70B3D524D* ID_OUI_FROM_DATABASE=INFO CREATIVE (HK) LTD +OUI:70B3D524E* + ID_OUI_FROM_DATABASE=Chengdu Cove Technology CO.,LTD + OUI:70B3D524F* ID_OUI_FROM_DATABASE=ELBIT SYSTEMS BMD AND LAND EW - ELISRA LTD @@ -57527,12 +58007,18 @@ OUI:70B3D5250* OUI:70B3D5252* ID_OUI_FROM_DATABASE=Sierra Nevada Corporation +OUI:70B3D5253* + ID_OUI_FROM_DATABASE=Wimate Technology Solutions Private Limited + OUI:70B3D5254* ID_OUI_FROM_DATABASE=Spectrum Brands OUI:70B3D5255* ID_OUI_FROM_DATABASE=Asystems Corporation +OUI:70B3D5257* + ID_OUI_FROM_DATABASE=LG Electronics + OUI:70B3D5259* ID_OUI_FROM_DATABASE=Zebra Elektronik A.S. @@ -57599,6 +58085,9 @@ OUI:70B3D527D* OUI:70B3D527E* ID_OUI_FROM_DATABASE=Mettler Toledo Hi Speed +OUI:70B3D527F* + ID_OUI_FROM_DATABASE=ST Aerospace Systems + OUI:70B3D5283* ID_OUI_FROM_DATABASE=TextNinja Co. @@ -57647,6 +58136,9 @@ OUI:70B3D5297* OUI:70B3D529B* ID_OUI_FROM_DATABASE=DermaLumics S.L. +OUI:70B3D529C* + ID_OUI_FROM_DATABASE=Teko Telecom Srl + OUI:70B3D529D* ID_OUI_FROM_DATABASE=XTech2 SIA @@ -57659,6 +58151,9 @@ OUI:70B3D52A1* OUI:70B3D52A2* ID_OUI_FROM_DATABASE=Visualware, Inc. +OUI:70B3D52A4* + ID_OUI_FROM_DATABASE=GSP Sprachtechnologie GmbH + OUI:70B3D52A5* ID_OUI_FROM_DATABASE=Taitotekniikka @@ -57713,12 +58208,21 @@ OUI:70B3D52BD* OUI:70B3D52BE* ID_OUI_FROM_DATABASE=Coherent Logix, Inc. +OUI:70B3D52BF* + ID_OUI_FROM_DATABASE=FOSHAN VOHOM + OUI:70B3D52C2* ID_OUI_FROM_DATABASE=Quantum Detectors OUI:70B3D52C3* ID_OUI_FROM_DATABASE=Proterra +OUI:70B3D52C9* + ID_OUI_FROM_DATABASE=SEASON DESIGN TECHNOLOGY + +OUI:70B3D52CA* + ID_OUI_FROM_DATABASE=TATTILE SRL + OUI:70B3D52CC* ID_OUI_FROM_DATABASE=WeWork Companies, Inc. @@ -57812,6 +58316,9 @@ OUI:70B3D52FA* OUI:70B3D52FD* ID_OUI_FROM_DATABASE=Special Projects Group, Inc +OUI:70B3D52FE* + ID_OUI_FROM_DATABASE=Yaham Optoelectronics Co., Ltd + OUI:70B3D5300* ID_OUI_FROM_DATABASE=Novo DR Ltd. @@ -58097,6 +58604,9 @@ OUI:70B3D53A9* OUI:70B3D53AA* ID_OUI_FROM_DATABASE=RCATSONE +OUI:70B3D53AD* + ID_OUI_FROM_DATABASE=CT Company + OUI:70B3D53AE* ID_OUI_FROM_DATABASE=Exicom Technologies fze @@ -58115,6 +58625,9 @@ OUI:70B3D53B7* OUI:70B3D53B8* ID_OUI_FROM_DATABASE=nVideon, Inc. +OUI:70B3D53BA* + ID_OUI_FROM_DATABASE=Silex Inside + OUI:70B3D53BB* ID_OUI_FROM_DATABASE=A-M Systems @@ -58313,6 +58826,9 @@ OUI:70B3D5433* OUI:70B3D5435* ID_OUI_FROM_DATABASE=Wuhan Xingtuxinke ELectronic Co.,Ltd +OUI:70B3D5436* + ID_OUI_FROM_DATABASE=Henrich Electronics Corporation + OUI:70B3D5439* ID_OUI_FROM_DATABASE=TriLED @@ -58376,6 +58892,9 @@ OUI:70B3D5462* OUI:70B3D5465* ID_OUI_FROM_DATABASE=ENERGISME +OUI:70B3D5469* + ID_OUI_FROM_DATABASE=Gentec Systems Co. + OUI:70B3D546B* ID_OUI_FROM_DATABASE=Airborne Engineering Limited @@ -58475,6 +58994,9 @@ OUI:70B3D54A1* OUI:70B3D54A5* ID_OUI_FROM_DATABASE=Intermind Inc. +OUI:70B3D54A6* + ID_OUI_FROM_DATABASE=HZHY TECHNOLOGY + OUI:70B3D54A7* ID_OUI_FROM_DATABASE=aelettronica group srl @@ -58490,6 +59012,9 @@ OUI:70B3D54AD* OUI:70B3D54AE* ID_OUI_FROM_DATABASE=Reinhardt System- und Messelectronic GmbH +OUI:70B3D54AF* + ID_OUI_FROM_DATABASE=Agramkow Fluid Systems A/S + OUI:70B3D54B0* ID_OUI_FROM_DATABASE=Tecogen Inc. @@ -58499,6 +59024,9 @@ OUI:70B3D54B1* OUI:70B3D54B2* ID_OUI_FROM_DATABASE=Certus Operations Ltd +OUI:70B3D54B4* + ID_OUI_FROM_DATABASE=Hi Tech Systems Ltd + OUI:70B3D54B6* ID_OUI_FROM_DATABASE=VEILUX INC. @@ -58673,6 +59201,9 @@ OUI:70B3D5524* OUI:70B3D5525* ID_OUI_FROM_DATABASE=Plantiga Technologies Inc +OUI:70B3D5526* + ID_OUI_FROM_DATABASE=FlowNet LLC + OUI:70B3D5528* ID_OUI_FROM_DATABASE=Aplex Technology Inc. @@ -58694,6 +59225,9 @@ OUI:70B3D5530* OUI:70B3D5531* ID_OUI_FROM_DATABASE=ATEME +OUI:70B3D5532* + ID_OUI_FROM_DATABASE=Talleres de Escoriaza SA + OUI:70B3D5538* ID_OUI_FROM_DATABASE=sydetion UG (h.b.) @@ -58718,6 +59252,9 @@ OUI:70B3D5548* OUI:70B3D5549* ID_OUI_FROM_DATABASE=Procon automatic systems GmbH +OUI:70B3D554B* + ID_OUI_FROM_DATABASE=Brakels IT + OUI:70B3D554C* ID_OUI_FROM_DATABASE=Husty M.Styczen J.Hupert Sp.J. @@ -58739,6 +59276,9 @@ OUI:70B3D5551* OUI:70B3D5554* ID_OUI_FROM_DATABASE=Teletypes Manufacturing Plant +OUI:70B3D5555* + ID_OUI_FROM_DATABASE=SoftLab-NSK + OUI:70B3D5557* ID_OUI_FROM_DATABASE=HEITEC AG @@ -58778,6 +59318,9 @@ OUI:70B3D5570* OUI:70B3D5572* ID_OUI_FROM_DATABASE=CRDE +OUI:70B3D5576* + ID_OUI_FROM_DATABASE=Shandong Hospot IOT Technology Co.,Ltd. + OUI:70B3D5578* ID_OUI_FROM_DATABASE=IMAGE TECH CO.,LTD @@ -58946,6 +59489,9 @@ OUI:70B3D55DB* OUI:70B3D55DC* ID_OUI_FROM_DATABASE=FactoryLab B.V. +OUI:70B3D55DE* + ID_OUI_FROM_DATABASE=Hangzhou AwareTec Technology Co., Ltd + OUI:70B3D55E0* ID_OUI_FROM_DATABASE=Hexagon Metrology SAS @@ -58979,6 +59525,9 @@ OUI:70B3D55ED* OUI:70B3D55EE* ID_OUI_FROM_DATABASE=Mikrotron Mikrocomputer, Digital- und Analogtechnik GmbH +OUI:70B3D55EF* + ID_OUI_FROM_DATABASE=Star Systems International + OUI:70B3D55F0* ID_OUI_FROM_DATABASE=managee GmbH & Co KG @@ -59138,9 +59687,15 @@ OUI:70B3D564A* OUI:70B3D564C* ID_OUI_FROM_DATABASE=ACEMIS FRANCE +OUI:70B3D564E* + ID_OUI_FROM_DATABASE=BigStuff3, Inc. + OUI:70B3D5650* ID_OUI_FROM_DATABASE=GIFAS-ELECTRIC GmbH +OUI:70B3D5651* + ID_OUI_FROM_DATABASE=Roxford + OUI:70B3D5652* ID_OUI_FROM_DATABASE=Robert Bosch, LLC @@ -59153,6 +59708,9 @@ OUI:70B3D5654* OUI:70B3D5655* ID_OUI_FROM_DATABASE=AOT System GmbH +OUI:70B3D5656* + ID_OUI_FROM_DATABASE=SonoSound ApS + OUI:70B3D5658* ID_OUI_FROM_DATABASE=emperor brands @@ -59303,6 +59861,9 @@ OUI:70B3D56BE* OUI:70B3D56BF* ID_OUI_FROM_DATABASE=Otto Bihler Maschinenfabrik GmbH & Co. KG +OUI:70B3D56C1* + ID_OUI_FROM_DATABASE=Labtronik s.r.l. + OUI:70B3D56C5* ID_OUI_FROM_DATABASE=CJSC «Russian telecom equipment company» (CJSC RTEC) @@ -59327,6 +59888,9 @@ OUI:70B3D56D3* OUI:70B3D56D6* ID_OUI_FROM_DATABASE=KMtronic Ltd. +OUI:70B3D56D8* + ID_OUI_FROM_DATABASE=Shanghai YuanAn Environmental Protection Technology Co.,Ltd + OUI:70B3D56D9* ID_OUI_FROM_DATABASE=VECTARE Inc @@ -59423,6 +59987,9 @@ OUI:70B3D5708* OUI:70B3D5709* ID_OUI_FROM_DATABASE=AML +OUI:70B3D570A* + ID_OUI_FROM_DATABASE=PULLNET TECHNOLOGY, SA DE CV SSC1012302S73 + OUI:70B3D570F* ID_OUI_FROM_DATABASE=Alion Science & Technology @@ -59468,6 +60035,9 @@ OUI:70B3D5724* OUI:70B3D5727* ID_OUI_FROM_DATABASE=LP Technologies Inc. +OUI:70B3D5728* + ID_OUI_FROM_DATABASE=BCD Audio + OUI:70B3D5729* ID_OUI_FROM_DATABASE=EMAC, Inc. @@ -59501,6 +60071,9 @@ OUI:70B3D5735* OUI:70B3D5737* ID_OUI_FROM_DATABASE=SD Biosensor +OUI:70B3D5739* + ID_OUI_FROM_DATABASE=Zigencorp, Inc + OUI:70B3D573A* ID_OUI_FROM_DATABASE=Private @@ -59531,6 +60104,9 @@ OUI:70B3D5745* OUI:70B3D5747* ID_OUI_FROM_DATABASE=Eva Automation +OUI:70B3D5749* + ID_OUI_FROM_DATABASE=Granite River Labs Inc + OUI:70B3D574A* ID_OUI_FROM_DATABASE=Mettler Toledo Hi Speed @@ -59654,6 +60230,9 @@ OUI:70B3D5785* OUI:70B3D5789* ID_OUI_FROM_DATABASE=SEMEX-EngCon GmbH +OUI:70B3D578A* + ID_OUI_FROM_DATABASE=Hills Health Solutions + OUI:70B3D578B* ID_OUI_FROM_DATABASE=Jingtu Printing Systems Co., Ltd @@ -59699,6 +60278,9 @@ OUI:70B3D57A3* OUI:70B3D57A4* ID_OUI_FROM_DATABASE=Potter Electric Signal Co. LLC +OUI:70B3D57A5* + ID_OUI_FROM_DATABASE=Triton Electronics Ltd + OUI:70B3D57A6* ID_OUI_FROM_DATABASE=Electrolux @@ -59717,6 +60299,9 @@ OUI:70B3D57AA* OUI:70B3D57AB* ID_OUI_FROM_DATABASE=Microgate Srl +OUI:70B3D57AC* + ID_OUI_FROM_DATABASE=Verity Studios AG + OUI:70B3D57AD* ID_OUI_FROM_DATABASE=Insitu, Inc @@ -59780,6 +60365,9 @@ OUI:70B3D57CE* OUI:70B3D57CF* ID_OUI_FROM_DATABASE=ORCA Technologies, LLC +OUI:70B3D57D0* + ID_OUI_FROM_DATABASE=Cubitech + OUI:70B3D57D1* ID_OUI_FROM_DATABASE=Schneider Electric Motion USA @@ -59789,6 +60377,9 @@ OUI:70B3D57D2* OUI:70B3D57D5* ID_OUI_FROM_DATABASE=SICS Swedish ICT +OUI:70B3D57D7* + ID_OUI_FROM_DATABASE=Gedomo GmbH + OUI:70B3D57D9* ID_OUI_FROM_DATABASE=ATOM GIKEN Co.,Ltd. @@ -59897,6 +60488,9 @@ OUI:70B3D580D* OUI:70B3D580F* ID_OUI_FROM_DATABASE=Quickware Eng & Des LLC +OUI:70B3D5810* + ID_OUI_FROM_DATABASE=Advice + OUI:70B3D5811* ID_OUI_FROM_DATABASE=CJSC «INTERSET» @@ -60080,6 +60674,9 @@ OUI:70B3D5879* OUI:70B3D587B* ID_OUI_FROM_DATABASE=Liquid Instruments Pty Ltd +OUI:70B3D587C* + ID_OUI_FROM_DATABASE=Nautel Limited + OUI:70B3D587E* ID_OUI_FROM_DATABASE=Septentrio NV @@ -60170,6 +60767,12 @@ OUI:70B3D58B2* OUI:70B3D58B3* ID_OUI_FROM_DATABASE=Firefly RFID Solutions +OUI:70B3D58B4* + ID_OUI_FROM_DATABASE=Scenario Automation + +OUI:70B3D58B7* + ID_OUI_FROM_DATABASE=Contec DTx + OUI:70B3D58B9* ID_OUI_FROM_DATABASE=Toptech Systems, Inc. @@ -60212,6 +60815,9 @@ OUI:70B3D58D3* OUI:70B3D58D8* ID_OUI_FROM_DATABASE=VNG Corporation +OUI:70B3D58D9* + ID_OUI_FROM_DATABASE=MB connect line GmbH Fernwartungssysteme + OUI:70B3D58DB* ID_OUI_FROM_DATABASE=Kratos Analytical Ltd @@ -60224,6 +60830,9 @@ OUI:70B3D58E0* OUI:70B3D58E1* ID_OUI_FROM_DATABASE=WoKa-Elektronik GmbH +OUI:70B3D58E3* + ID_OUI_FROM_DATABASE=DORLET SAU + OUI:70B3D58E4* ID_OUI_FROM_DATABASE=Aplex Technology Inc. @@ -60269,6 +60878,9 @@ OUI:70B3D5902* OUI:70B3D5903* ID_OUI_FROM_DATABASE=Cymtec Ltd +OUI:70B3D5904* + ID_OUI_FROM_DATABASE=PHB Eletronica Ltda. + OUI:70B3D5906* ID_OUI_FROM_DATABASE=Aplex Technology Inc. @@ -60287,6 +60899,9 @@ OUI:70B3D590C* OUI:70B3D590D* ID_OUI_FROM_DATABASE=Modtronix Engineering +OUI:70B3D590E* + ID_OUI_FROM_DATABASE=Private + OUI:70B3D590F* ID_OUI_FROM_DATABASE=DTRON Communications (Pty) Ltd @@ -60365,6 +60980,9 @@ OUI:70B3D5938* OUI:70B3D5939* ID_OUI_FROM_DATABASE=Invertek Drives Ltd +OUI:70B3D593E* + ID_OUI_FROM_DATABASE=Systems With Intelligence Inc. + OUI:70B3D5940* ID_OUI_FROM_DATABASE=Paradigm Technology Services B.V. @@ -60491,6 +61109,9 @@ OUI:70B3D598F* OUI:70B3D5991* ID_OUI_FROM_DATABASE=Javasparrow Inc. +OUI:70B3D5993* + ID_OUI_FROM_DATABASE=ioThings + OUI:70B3D5994* ID_OUI_FROM_DATABASE=KeFF Networks @@ -60710,6 +61331,9 @@ OUI:70B3D5A10* OUI:70B3D5A12* ID_OUI_FROM_DATABASE=QUERCUS TECHNOLOGIES, S.L. +OUI:70B3D5A13* + ID_OUI_FROM_DATABASE=Uplevel Systems Inc + OUI:70B3D5A15* ID_OUI_FROM_DATABASE=Intercore GmbH @@ -60917,6 +61541,9 @@ OUI:70B3D5A8B* OUI:70B3D5A8E* ID_OUI_FROM_DATABASE=OMESH CITY GROUP +OUI:70B3D5A90* + ID_OUI_FROM_DATABASE=ERA a.s. + OUI:70B3D5A91* ID_OUI_FROM_DATABASE=IDEAL INDUSTRIES Ltd t/a Casella @@ -60980,6 +61607,9 @@ OUI:70B3D5AAD* OUI:70B3D5AAE* ID_OUI_FROM_DATABASE=Nuviz Oy +OUI:70B3D5AAF* + ID_OUI_FROM_DATABASE=Exi Flow Measurement Ltd + OUI:70B3D5AB0* ID_OUI_FROM_DATABASE=OSR R&D ISRAEL LTD @@ -61046,6 +61676,9 @@ OUI:70B3D5AD5* OUI:70B3D5AD6* ID_OUI_FROM_DATABASE=Lemonade Lab Inc +OUI:70B3D5AD8* + ID_OUI_FROM_DATABASE=Euklis by GSG International + OUI:70B3D5ADA* ID_OUI_FROM_DATABASE=Private @@ -61247,6 +61880,9 @@ OUI:70B3D5B3F* OUI:70B3D5B40* ID_OUI_FROM_DATABASE=Wuhan Xingtuxinke ELectronic Co.,Ltd +OUI:70B3D5B43* + ID_OUI_FROM_DATABASE=ZAO ZEO + OUI:70B3D5B44* ID_OUI_FROM_DATABASE=ENTEC Electric & Electronic Co., LTD. @@ -61295,6 +61931,9 @@ OUI:70B3D5B6D* OUI:70B3D5B72* ID_OUI_FROM_DATABASE=UB330.net d.o.o. +OUI:70B3D5B74* + ID_OUI_FROM_DATABASE=OnYield Inc Ltd + OUI:70B3D5B77* ID_OUI_FROM_DATABASE=Motec Pty Ltd @@ -61370,6 +62009,9 @@ OUI:70B3D5BA1* OUI:70B3D5BA2* ID_OUI_FROM_DATABASE=MAMAC Systems, Inc. +OUI:70B3D5BA3* + ID_OUI_FROM_DATABASE=TIAMA + OUI:70B3D5BA4* ID_OUI_FROM_DATABASE=EIWA GIKEN INC. @@ -61535,6 +62177,9 @@ OUI:70B3D5C0E* OUI:70B3D5C0F* ID_OUI_FROM_DATABASE=Honeywell Safety Products USA, Inc +OUI:70B3D5C11* + ID_OUI_FROM_DATABASE=Ariston Thermo s.p.a. + OUI:70B3D5C12* ID_OUI_FROM_DATABASE=Beijing Wisetone Information Technology Co.,Ltd. @@ -61553,6 +62198,9 @@ OUI:70B3D5C17* OUI:70B3D5C1B* ID_OUI_FROM_DATABASE=Labinvent JSC +OUI:70B3D5C1C* + ID_OUI_FROM_DATABASE=D.E.M. SPA + OUI:70B3D5C1D* ID_OUI_FROM_DATABASE=Kranze Technology Solutions @@ -61775,6 +62423,9 @@ OUI:70B3D5C9D* OUI:70B3D5C9F* ID_OUI_FROM_DATABASE=Triax A/S +OUI:70B3D5CA2* + ID_OUI_FROM_DATABASE=De Haardt bv + OUI:70B3D5CA4* ID_OUI_FROM_DATABASE=Netemera Sp. z o.o. @@ -62036,6 +62687,12 @@ OUI:70B3D5D47* OUI:70B3D5D48* ID_OUI_FROM_DATABASE=HEADROOM Broadcast GmbH +OUI:70B3D5D4A* + ID_OUI_FROM_DATABASE=OÜ ELIKO Tehnoloogia Arenduskeskus + +OUI:70B3D5D4B* + ID_OUI_FROM_DATABASE=Hermann Lümmen GmbH + OUI:70B3D5D4C* ID_OUI_FROM_DATABASE=Elystec Technology Co., Ltd @@ -62072,6 +62729,9 @@ OUI:70B3D5D5B* OUI:70B3D5D5C* ID_OUI_FROM_DATABASE=Critical Link LLC +OUI:70B3D5D5F* + ID_OUI_FROM_DATABASE=Core Balance Co., Ltd. + OUI:70B3D5D60* ID_OUI_FROM_DATABASE=Flintab AB @@ -62099,6 +62759,9 @@ OUI:70B3D5D6B* OUI:70B3D5D6C* ID_OUI_FROM_DATABASE=GP Systems GmbH +OUI:70B3D5D6F* + ID_OUI_FROM_DATABASE=X-SPEX GmbH + OUI:70B3D5D70* ID_OUI_FROM_DATABASE=Rational Production srl Unipersonale @@ -62144,6 +62807,9 @@ OUI:70B3D5D86* OUI:70B3D5D87* ID_OUI_FROM_DATABASE=Zigen Corp +OUI:70B3D5D89* + ID_OUI_FROM_DATABASE=Resolution Systems + OUI:70B3D5D8B* ID_OUI_FROM_DATABASE=Lenoxi Automation s.r.o. @@ -62216,6 +62882,9 @@ OUI:70B3D5DAD* OUI:70B3D5DB0* ID_OUI_FROM_DATABASE=Arnouse Digital Devices Corp +OUI:70B3D5DB1* + ID_OUI_FROM_DATABASE=Biovigil Hygiene Technologies + OUI:70B3D5DB2* ID_OUI_FROM_DATABASE=Micro Electroninc Products @@ -62306,6 +62975,9 @@ OUI:70B3D5DEE* OUI:70B3D5DF0* ID_OUI_FROM_DATABASE=astozi consulting Tomasz Zieba +OUI:70B3D5DF1* + ID_OUI_FROM_DATABASE=CoXlab Inc. + OUI:70B3D5DF2* ID_OUI_FROM_DATABASE=AML @@ -62351,6 +63023,9 @@ OUI:70B3D5E08* OUI:70B3D5E09* ID_OUI_FROM_DATABASE=L-3 communications ComCept Division +OUI:70B3D5E0B* + ID_OUI_FROM_DATABASE=ENTEC Electric & Electronic Co., LTD. + OUI:70B3D5E0D* ID_OUI_FROM_DATABASE=Sigma Connectivity AB @@ -62702,6 +63377,9 @@ OUI:70B3D5EF2* OUI:70B3D5EF3* ID_OUI_FROM_DATABASE=octoScope +OUI:70B3D5EF5* + ID_OUI_FROM_DATABASE=DEUTA-WERKE GmbH + OUI:70B3D5EF6* ID_OUI_FROM_DATABASE=CHARGELIB @@ -62735,6 +63413,9 @@ OUI:70B3D5F03* OUI:70B3D5F05* ID_OUI_FROM_DATABASE=Motomuto Aps +OUI:70B3D5F06* + ID_OUI_FROM_DATABASE=WARECUBE,INC + OUI:70B3D5F07* ID_OUI_FROM_DATABASE=DUVAL MESSIEN @@ -62765,6 +63446,9 @@ OUI:70B3D5F13* OUI:70B3D5F17* ID_OUI_FROM_DATABASE=VITEC +OUI:70B3D5F19* + ID_OUI_FROM_DATABASE=Vitro Technology Corporation + OUI:70B3D5F1A* ID_OUI_FROM_DATABASE=Sator Controls s.r.o. @@ -63017,6 +63701,9 @@ OUI:70B3D5FB5* OUI:70B3D5FB6* ID_OUI_FROM_DATABASE=KRONOTECH SRL +OUI:70B3D5FB7* + ID_OUI_FROM_DATABASE=SAICE + OUI:70B3D5FBA* ID_OUI_FROM_DATABASE=Apogee Applied Research, Inc. @@ -63119,6 +63806,9 @@ OUI:70B3D5FEC* OUI:70B3D5FEF* ID_OUI_FROM_DATABASE=HANGZHOU HUALAN MICROELECTRONIQUE CO.,LTD +OUI:70B3D5FF0* + ID_OUI_FROM_DATABASE=E-MetroTel + OUI:70B3D5FF1* ID_OUI_FROM_DATABASE=Data Strategy Limited @@ -63170,6 +63860,9 @@ OUI:70C6AC* OUI:70C76F* ID_OUI_FROM_DATABASE=INNO S +OUI:70C833* + ID_OUI_FROM_DATABASE=Wirepas Oy + OUI:70C94E* ID_OUI_FROM_DATABASE=Liteon Technology Corporation @@ -63365,6 +64058,9 @@ OUI:740ABC* OUI:740EDB* ID_OUI_FROM_DATABASE=Optowiz Co., Ltd +OUI:7412BB* + ID_OUI_FROM_DATABASE=Fiberhome Telecommunication Technologies Co.,LTD + OUI:741489* ID_OUI_FROM_DATABASE=SRT Wireless @@ -63755,6 +64451,9 @@ OUI:749D8F* OUI:749DDC* ID_OUI_FROM_DATABASE=2Wire Inc +OUI:749EAF* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:74A02F* ID_OUI_FROM_DATABASE=Cisco Systems, Inc @@ -64139,6 +64838,9 @@ OUI:7819F7* OUI:781C5A* ID_OUI_FROM_DATABASE=SHARP Corporation +OUI:781D4A* + ID_OUI_FROM_DATABASE=zte corporation + OUI:781DBA* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -64202,6 +64904,9 @@ OUI:78324F* OUI:783690* ID_OUI_FROM_DATABASE=Yulong Computer Telecommunication Scientific (Shenzhen) Co.,Ltd +OUI:7836CC* + ID_OUI_FROM_DATABASE=GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + OUI:783A84* ID_OUI_FROM_DATABASE=Apple, Inc. @@ -64514,6 +65219,9 @@ OUI:78B5D2* OUI:78B6C1* ID_OUI_FROM_DATABASE=AOBO Telecom Co.,Ltd +OUI:78B6EC* + ID_OUI_FROM_DATABASE=Scuf Gaming International LLC + OUI:78B81A* ID_OUI_FROM_DATABASE=INTER SALES A/S @@ -64820,6 +65528,9 @@ OUI:78F882* OUI:78F944* ID_OUI_FROM_DATABASE=Private +OUI:78F9B4* + ID_OUI_FROM_DATABASE=Nokia + OUI:78FC14* ID_OUI_FROM_DATABASE=Family Zone Cyber Safety Ltd @@ -65219,6 +65930,9 @@ OUI:7C7630* OUI:7C7635* ID_OUI_FROM_DATABASE=Intel Corporate +OUI:7C7668* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:7C7673* ID_OUI_FROM_DATABASE=ENMAS GmbH @@ -65285,6 +65999,9 @@ OUI:7C9A9B* OUI:7CA15D* ID_OUI_FROM_DATABASE=GN ReSound A/S +OUI:7CA177* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:7CA237* ID_OUI_FROM_DATABASE=King Slide Technology CO., LTD. @@ -65624,6 +66341,9 @@ OUI:800184* OUI:8002DF* ID_OUI_FROM_DATABASE=ORA Inc. +OUI:800588* + ID_OUI_FROM_DATABASE=Ruijie Networks Co.,LTD + OUI:8005DF* ID_OUI_FROM_DATABASE=Montage Technology Group Limited @@ -65744,6 +66464,9 @@ OUI:8030DC* OUI:803457* ID_OUI_FROM_DATABASE=OT Systems Limited +OUI:8035C1* + ID_OUI_FROM_DATABASE=Xiaomi Communications Co Ltd + OUI:803773* ID_OUI_FROM_DATABASE=NETGEAR @@ -66098,6 +66821,9 @@ OUI:80C6CA* OUI:80C755* ID_OUI_FROM_DATABASE=Panasonic Appliances Company +OUI:80C7C5* + ID_OUI_FROM_DATABASE=Fiberhome Telecommunication Technologies Co.,LTD + OUI:80C862* ID_OUI_FROM_DATABASE=Openpeak, Inc @@ -66254,6 +66980,9 @@ OUI:8404D2* OUI:840B2D* ID_OUI_FROM_DATABASE=SAMSUNG ELECTRO MECHANICS CO., LTD. +OUI:840D8E* + ID_OUI_FROM_DATABASE=Espressif Inc. + OUI:840F45* ID_OUI_FROM_DATABASE=Shanghai GMT Digital Technologies Co., Ltd @@ -66488,6 +67217,9 @@ OUI:8463D6* OUI:84683E* ID_OUI_FROM_DATABASE=Intel Corporate +OUI:846878* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:846AED* ID_OUI_FROM_DATABASE=Wireless Tsukamoto.,co.LTD @@ -66845,6 +67577,9 @@ OUI:84EF18* OUI:84F129* ID_OUI_FROM_DATABASE=Metrascale Inc. +OUI:84F3EB* + ID_OUI_FROM_DATABASE=Espressif Inc. + OUI:84F493* ID_OUI_FROM_DATABASE=OMS spol. s.r.o. @@ -66890,6 +67625,9 @@ OUI:880FB6* OUI:881036* ID_OUI_FROM_DATABASE=Panodic(ShenZhen) Electronics Limted +OUI:881196* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:88124E* ID_OUI_FROM_DATABASE=Qualcomm Inc. @@ -66905,6 +67643,9 @@ OUI:8817A3* OUI:8818AE* ID_OUI_FROM_DATABASE=Tamron Co., Ltd +OUI:881908* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:881B99* ID_OUI_FROM_DATABASE=SHENZHEN XIN FEI JIA ELECTRONIC CO. LTD. @@ -66977,6 +67718,9 @@ OUI:883C1C* OUI:883D24* ID_OUI_FROM_DATABASE=Google, Inc. +OUI:883F4A* + ID_OUI_FROM_DATABASE=Texas Instruments + OUI:883FD3* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -67091,8 +67835,50 @@ OUI:885D90F* OUI:885DFB* ID_OUI_FROM_DATABASE=zte corporation -OUI:885FE8* - ID_OUI_FROM_DATABASE=IEEE Registration Authority +OUI:885FE80* + ID_OUI_FROM_DATABASE=Jungheinrich Norderstedt AG & Co. KG + +OUI:885FE81* + ID_OUI_FROM_DATABASE=Apoidea Technology Co., Ltd. + +OUI:885FE82* + ID_OUI_FROM_DATABASE=Opto Engineering + +OUI:885FE83* + ID_OUI_FROM_DATABASE=Sonnet Labs Inc. + +OUI:885FE84* + ID_OUI_FROM_DATABASE=Beijing laiwei Technology Co.,Ltd + +OUI:885FE85* + ID_OUI_FROM_DATABASE=Hauch & Bach ApS + +OUI:885FE86* + ID_OUI_FROM_DATABASE=Shenzhen Xin Kingbrand Enterprises Co.,Ltd + +OUI:885FE87* + ID_OUI_FROM_DATABASE=Red Technologies, LLC. + +OUI:885FE88* + ID_OUI_FROM_DATABASE=Changsha Xiangji-Haidun Technology Co., Ltd + +OUI:885FE89* + ID_OUI_FROM_DATABASE=Sowee + +OUI:885FE8A* + ID_OUI_FROM_DATABASE=Lisle Design Ltd + +OUI:885FE8B* + ID_OUI_FROM_DATABASE=Shenzhen ORVIBO Technology Co., Ltd + +OUI:885FE8C* + ID_OUI_FROM_DATABASE=Inor Process AB + +OUI:885FE8D* + ID_OUI_FROM_DATABASE=zhejiang yuanwang communication technolgy co.,ltd + +OUI:885FE8E* + ID_OUI_FROM_DATABASE=Unicom Global, Inc. OUI:88615A* ID_OUI_FROM_DATABASE=Siano Mobile Silicon Ltd. @@ -67226,6 +68012,9 @@ OUI:8894F9* OUI:8895B9* ID_OUI_FROM_DATABASE=Unified Packet Systems Crop +OUI:88964E* + ID_OUI_FROM_DATABASE=ARRIS Group, Inc. + OUI:889676* ID_OUI_FROM_DATABASE=TTC MARCONI s.r.o. @@ -67325,6 +68114,9 @@ OUI:88AD43* OUI:88ADD2* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:88AE07* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:88AE1D* ID_OUI_FROM_DATABASE=COMPAL INFORMATION (KUNSHAN) CO., LTD. @@ -67415,6 +68207,9 @@ OUI:88D37B* OUI:88D50C* ID_OUI_FROM_DATABASE=GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +OUI:88D652* + ID_OUI_FROM_DATABASE=AMERGINT Technologies + OUI:88D7BC* ID_OUI_FROM_DATABASE=DEP Company @@ -67433,6 +68228,9 @@ OUI:88DC96* OUI:88DD79* ID_OUI_FROM_DATABASE=Voltaire +OUI:88DE7C* + ID_OUI_FROM_DATABASE=Askey Computer Corp. + OUI:88DEA9* ID_OUI_FROM_DATABASE=Roku, Inc. @@ -67472,6 +68270,9 @@ OUI:88E90F* OUI:88E917* ID_OUI_FROM_DATABASE=Tamaggo +OUI:88E9FE* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:88ED1C* ID_OUI_FROM_DATABASE=Cudo Communication Co., Ltd. @@ -68276,6 +69077,9 @@ OUI:903CAE* OUI:903D5A* ID_OUI_FROM_DATABASE=Shenzhen Wision Technology Holding Limited +OUI:903D68* + ID_OUI_FROM_DATABASE=G-Printec, Inc. + OUI:903D6B* ID_OUI_FROM_DATABASE=Zicon Technology Corp. @@ -68720,6 +69524,9 @@ OUI:90DA6A* OUI:90DB46* ID_OUI_FROM_DATABASE=E-LEAD ELECTRONIC CO., LTD +OUI:90DD5D* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:90DFB7* ID_OUI_FROM_DATABASE=s.m.s smart microwave sensors GmbH @@ -69023,6 +69830,9 @@ OUI:9486D4* OUI:94877C* ID_OUI_FROM_DATABASE=ARRIS Group, Inc. +OUI:9487E0* + ID_OUI_FROM_DATABASE=Xiaomi Communications Co Ltd + OUI:948815* ID_OUI_FROM_DATABASE=Infinique Worldwide Inc @@ -69065,6 +69875,9 @@ OUI:9498A2* OUI:949901* ID_OUI_FROM_DATABASE=Shenzhen YITOA Digital Appliance CO.,LTD +OUI:949990* + ID_OUI_FROM_DATABASE=VTC Telecommunications + OUI:949AA9* ID_OUI_FROM_DATABASE=Microsoft Corporation @@ -69074,6 +69887,9 @@ OUI:949BFD* OUI:949C55* ID_OUI_FROM_DATABASE=Alta Data Technologies +OUI:949D57* + ID_OUI_FROM_DATABASE=Panasonic do Brasil Limitada + OUI:949F3E* ID_OUI_FROM_DATABASE=Sonos, Inc. @@ -69143,6 +69959,9 @@ OUI:94BBAE* OUI:94BF1E* ID_OUI_FROM_DATABASE=eflow Inc. / Smart Device Planning and Development Division +OUI:94BF2D* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:94BF95* ID_OUI_FROM_DATABASE=Shenzhen Coship Electronics Co., Ltd @@ -69248,6 +70067,9 @@ OUI:94DF58* OUI:94E0D0* ID_OUI_FROM_DATABASE=HealthStream Taiwan Inc. +OUI:94E1AC* + ID_OUI_FROM_DATABASE=Hangzhou Hikvision Digital Technology Co.,Ltd. + OUI:94E226* ID_OUI_FROM_DATABASE=D. ORtiz Consulting, LLC @@ -69422,6 +70244,9 @@ OUI:9810E8* OUI:981333* ID_OUI_FROM_DATABASE=zte corporation +OUI:9814D2* + ID_OUI_FROM_DATABASE=Avonic + OUI:9816EC* ID_OUI_FROM_DATABASE=IC Intracom @@ -70016,6 +70841,12 @@ OUI:9C2A70* OUI:9C2A83* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:9C2EA1* + ID_OUI_FROM_DATABASE=Xiaomi Communications Co Ltd + +OUI:9C2F73* + ID_OUI_FROM_DATABASE=Universal Tiancheng Technology (Beijing) Co., Ltd. + OUI:9C305B* ID_OUI_FROM_DATABASE=Hon Hai Precision Ind. Co.,Ltd. @@ -70241,6 +71072,9 @@ OUI:9C7BD2* OUI:9C7DA3* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:9C7F57* + ID_OUI_FROM_DATABASE=DERA Co. Ltd + OUI:9C807D* ID_OUI_FROM_DATABASE=SYSCABLE Korea Inc. @@ -70334,6 +71168,9 @@ OUI:9CA577* OUI:9CA5C0* ID_OUI_FROM_DATABASE=vivo Mobile Communication Co., Ltd. +OUI:9CA615* + ID_OUI_FROM_DATABASE=TP-LINK TECHNOLOGIES CO.,LTD. + OUI:9CA69D* ID_OUI_FROM_DATABASE=Whaley Technology Co.Ltd @@ -70478,12 +71315,21 @@ OUI:9CE374* OUI:9CE635* ID_OUI_FROM_DATABASE=Nintendo Co., Ltd. +OUI:9CE65E* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:9CE6E7* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd OUI:9CE7BD* ID_OUI_FROM_DATABASE=Winduskorea co., Ltd +OUI:9CE82B* + ID_OUI_FROM_DATABASE=vivo Mobile Communication Co., Ltd. + +OUI:9CE895* + ID_OUI_FROM_DATABASE=New H3C Technologies Co., Ltd + OUI:9CE951* ID_OUI_FROM_DATABASE=Shenzhen Sang Fei Consumer Communications Ltd., Co. @@ -70523,6 +71369,9 @@ OUI:9CFC01* OUI:9CFCD1* ID_OUI_FROM_DATABASE=Aetheris Technology (Shanghai) Co., Ltd. +OUI:9CFEA1* + ID_OUI_FROM_DATABASE=Fiberhome Telecommunication Technologies Co.,LTD + OUI:9CFFBE* ID_OUI_FROM_DATABASE=OTSL Inc. @@ -70769,6 +71618,9 @@ OUI:A055DE* OUI:A056B2* ID_OUI_FROM_DATABASE=Harman/Becker Automotive Systems GmbH +OUI:A056F3* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:A057E3* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -70850,6 +71702,9 @@ OUI:A073FC* OUI:A07591* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:A075EA* + ID_OUI_FROM_DATABASE=BoxLock, Inc. + OUI:A07771* ID_OUI_FROM_DATABASE=Vialis BV @@ -70982,6 +71837,9 @@ OUI:A0ADA1* OUI:A0AFBD* ID_OUI_FROM_DATABASE=Intel Corporate +OUI:A0B045* + ID_OUI_FROM_DATABASE=Halong Mining + OUI:A0B100* ID_OUI_FROM_DATABASE=ShenZhen Cando Electronics Co.,Ltd @@ -71201,6 +72059,9 @@ OUI:A0E534* OUI:A0E5E9* ID_OUI_FROM_DATABASE=enimai Inc +OUI:A0E617* + ID_OUI_FROM_DATABASE=MATIS + OUI:A0E6F8* ID_OUI_FROM_DATABASE=Texas Instruments @@ -71759,6 +72620,9 @@ OUI:A49005* OUI:A491B1* ID_OUI_FROM_DATABASE=Technicolor +OUI:A4933F* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:A4934C* ID_OUI_FROM_DATABASE=Cisco Systems, Inc @@ -72485,6 +73349,9 @@ OUI:A8F274* OUI:A8F470* ID_OUI_FROM_DATABASE=Fujian Newland Communication Science Technologies Co.,Ltd. +OUI:A8F5AC* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:A8F7E0* ID_OUI_FROM_DATABASE=PLANET Technology Corporation @@ -72668,6 +73535,9 @@ OUI:AC319D* OUI:AC34CB* ID_OUI_FROM_DATABASE=Shanhai GBCOM Communication Technology Co. Ltd +OUI:AC35EE* + ID_OUI_FROM_DATABASE=FN-LINK TECHNOLOGY LIMITED + OUI:AC3613* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd @@ -73316,6 +74186,9 @@ OUI:B04089* OUI:B0411D* ID_OUI_FROM_DATABASE=ITTIM Technologies +OUI:B0416F* + ID_OUI_FROM_DATABASE=Shenzhen Maxtang Computer Co.,Ltd + OUI:B0435D* ID_OUI_FROM_DATABASE=NuLEDs, Inc. @@ -73460,6 +74333,9 @@ OUI:B0808C* OUI:B081D8* ID_OUI_FROM_DATABASE=I-sys Corp +OUI:B083D6* + ID_OUI_FROM_DATABASE=ARRIS Group, Inc. + OUI:B083FE* ID_OUI_FROM_DATABASE=Dell Inc. @@ -73533,7 +74409,7 @@ OUI:B0A2E7* ID_OUI_FROM_DATABASE=Shenzhen TINNO Mobile Technology Corp. OUI:B0A37E* - ID_OUI_FROM_DATABASE=Qingdao Haier Telecom Co.,Ltd + ID_OUI_FROM_DATABASE=QING DAO HAIER TELECOM CO.,LTD. OUI:B0A72A* ID_OUI_FROM_DATABASE=Ensemble Designs, Inc. @@ -74204,6 +75080,9 @@ OUI:B4B88D* OUI:B4BFF6* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:B4C0F5* + ID_OUI_FROM_DATABASE=Shenzhen TINNO Mobile Technology Corp. + OUI:B4C170* ID_OUI_FROM_DATABASE=Yi chip Microelectronics (Hangzhou) Co., Ltd @@ -74222,6 +75101,9 @@ OUI:B4C810* OUI:B4CCE9* ID_OUI_FROM_DATABASE=PROSYST +OUI:B4CD27* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:B4CEF6* ID_OUI_FROM_DATABASE=HTC Corporation @@ -74258,6 +75140,9 @@ OUI:B4DF3B* OUI:B4DFFA* ID_OUI_FROM_DATABASE=Litemax Electronics Inc. +OUI:B4E01D* + ID_OUI_FROM_DATABASE=CONCEPTION ELECTRONIQUE + OUI:B4E0CD* ID_OUI_FROM_DATABASE=Fusion-io, Inc @@ -74465,6 +75350,9 @@ OUI:B83E59* OUI:B8415F* ID_OUI_FROM_DATABASE=ASP AG +OUI:B841A4* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:B843E4* ID_OUI_FROM_DATABASE=Vlatacom @@ -74996,6 +75884,9 @@ OUI:BC25F0* OUI:BC261D* ID_OUI_FROM_DATABASE=HONG KONG TECON TECHNOLOGY +OUI:BC2643* + ID_OUI_FROM_DATABASE=Elprotronic Inc. + OUI:BC282C* ID_OUI_FROM_DATABASE=e-Smart Systems Pvt. Ltd @@ -75032,6 +75923,9 @@ OUI:BC307D* OUI:BC307E* ID_OUI_FROM_DATABASE=Wistron Neweb Corporation +OUI:BC325F* + ID_OUI_FROM_DATABASE=Zhejiang Dahua Technology Co., Ltd. + OUI:BC34000* ID_OUI_FROM_DATABASE=Redvision CCTV @@ -75494,6 +76388,9 @@ OUI:BCDDC2* OUI:BCE09D* ID_OUI_FROM_DATABASE=Eoslink +OUI:BCE143* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:BCE59F* ID_OUI_FROM_DATABASE=WATERWORLD Technology Co.,LTD @@ -75872,6 +76769,9 @@ OUI:C0B339* OUI:C0B357* ID_OUI_FROM_DATABASE=Yoshiki Electronics Industry Ltd. +OUI:C0B658* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:C0B713* ID_OUI_FROM_DATABASE=Beijing Xiaoyuer Technology Co. Ltd. @@ -76010,6 +76910,9 @@ OUI:C0EAE4* OUI:C0EE40* ID_OUI_FROM_DATABASE=Laird Technologies +OUI:C0EEB5* + ID_OUI_FROM_DATABASE=Enice Network. + OUI:C0EEFB* ID_OUI_FROM_DATABASE=OnePlus Tech (Shenzhen) Ltd @@ -76451,6 +77354,9 @@ OUI:C495A2* OUI:C49805* ID_OUI_FROM_DATABASE=Minieum Networks, Inc +OUI:C49880* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:C49A02* ID_OUI_FROM_DATABASE=LG Electronics (Mobile Communications) @@ -76922,6 +77828,9 @@ OUI:C88447* OUI:C88550* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:C88629* + ID_OUI_FROM_DATABASE=Shenzhen Duubee Intelligent Technologies Co.,LTD. + OUI:C88722* ID_OUI_FROM_DATABASE=Lumenpulse @@ -77114,6 +78023,9 @@ OUI:C8CD72* OUI:C8D019* ID_OUI_FROM_DATABASE=Shanghai Tigercel Communication Technology Co.,Ltd +OUI:C8D083* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:C8D10B* ID_OUI_FROM_DATABASE=Nokia Corporation @@ -77148,7 +78060,7 @@ OUI:C8D719* ID_OUI_FROM_DATABASE=Cisco-Linksys, LLC OUI:C8D779* - ID_OUI_FROM_DATABASE=Qingdao Haier Telecom Co.,Ltd + ID_OUI_FROM_DATABASE=QING DAO HAIER TELECOM CO.,LTD. OUI:C8D7B0* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd @@ -77672,6 +78584,9 @@ OUI:CC90E8* OUI:CC912B* ID_OUI_FROM_DATABASE=TE Connectivity Touch Solutions +OUI:CC934A* + ID_OUI_FROM_DATABASE=Sierra Wireless + OUI:CC944A* ID_OUI_FROM_DATABASE=Pfeiffer Vacuum GmbH @@ -77771,9 +78686,15 @@ OUI:CCBE59* OUI:CCBE71* ID_OUI_FROM_DATABASE=OptiLogix BV +OUI:CCC079* + ID_OUI_FROM_DATABASE=Murata Manufacturing Co., Ltd. + OUI:CCC104* ID_OUI_FROM_DATABASE=Applied Technical Systems +OUI:CCC2E0* + ID_OUI_FROM_DATABASE=Raisecom Technology CO., LTD + OUI:CCC3EA* ID_OUI_FROM_DATABASE=Motorola Mobility LLC, a Lenovo Company @@ -78290,6 +79211,9 @@ OUI:D07650E* OUI:D07650F* ID_OUI_FROM_DATABASE=Private +OUI:D076E7* + ID_OUI_FROM_DATABASE=TP-LINK TECHNOLOGIES CO.,LTD. + OUI:D07714* ID_OUI_FROM_DATABASE=Motorola Mobility LLC, a Lenovo Company @@ -78809,6 +79733,9 @@ OUI:D46132* OUI:D4619D* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:D461DA* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:D461FE* ID_OUI_FROM_DATABASE=Hangzhou H3C Technologies Co., Limited @@ -78872,6 +79799,9 @@ OUI:D46F42* OUI:D47208* ID_OUI_FROM_DATABASE=Bragi GmbH +OUI:D47226* + ID_OUI_FROM_DATABASE=zte corporation + OUI:D476EA* ID_OUI_FROM_DATABASE=zte corporation @@ -79211,6 +80141,9 @@ OUI:D816C1* OUI:D8182B* ID_OUI_FROM_DATABASE=Conti Temic Microelectronic GmbH +OUI:D818D3* + ID_OUI_FROM_DATABASE=Juniper Networks + OUI:D8197A* ID_OUI_FROM_DATABASE=Nuheara Ltd @@ -79286,6 +80219,9 @@ OUI:D83214* OUI:D8325A* ID_OUI_FROM_DATABASE=Shenzhen YOUHUA Technology Co., Ltd +OUI:D832E3* + ID_OUI_FROM_DATABASE=Xiaomi Communications Co Ltd + OUI:D8337F* ID_OUI_FROM_DATABASE=Office FA.com Co.,Ltd. @@ -79823,6 +80759,9 @@ OUI:DC2008* OUI:DC2834* ID_OUI_FROM_DATABASE=HAKKO Corporation +OUI:DC2919* + ID_OUI_FROM_DATABASE=AltoBeam (Xiamen) Technology Ltd, Co. + OUI:DC293A* ID_OUI_FROM_DATABASE=Shenzhen Nuoshi Technology Co., LTD. @@ -79857,7 +80796,7 @@ OUI:DC309C* ID_OUI_FROM_DATABASE=Heyrex Limited OUI:DC330D* - ID_OUI_FROM_DATABASE=Qingdao Haier Telecom Co.,Ltd + ID_OUI_FROM_DATABASE=QING DAO HAIER TELECOM CO.,LTD. OUI:DC3350* ID_OUI_FROM_DATABASE=TechSAT GmbH @@ -80195,6 +81134,9 @@ OUI:DCD2FC* OUI:DCD321* ID_OUI_FROM_DATABASE=HUMAX Co., Ltd. +OUI:DCD3A2* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:DCD52A* ID_OUI_FROM_DATABASE=Sunny Heart Limited @@ -80219,6 +81161,9 @@ OUI:DCDC07* OUI:DCDD24* ID_OUI_FROM_DATABASE=Energica Motor Company SpA +OUI:DCDE4F* + ID_OUI_FROM_DATABASE=Gionee Communication Equipment Co Ltd + OUI:DCDECA* ID_OUI_FROM_DATABASE=Akyllor @@ -80366,6 +81311,9 @@ OUI:E01877* OUI:E0191D* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:E019D8* + ID_OUI_FROM_DATABASE=BH TECHNOLOGIES + OUI:E01AEA* ID_OUI_FROM_DATABASE=Allied Telesis, Inc. @@ -80432,6 +81380,9 @@ OUI:E0319E* OUI:E031D0* ID_OUI_FROM_DATABASE=SZ Telstar CO., LTD +OUI:E0338E* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:E034E4* ID_OUI_FROM_DATABASE=Feit Electric Company, Inc. @@ -80447,6 +81398,9 @@ OUI:E036E3* OUI:E037BF* ID_OUI_FROM_DATABASE=Wistron Neweb Corporation +OUI:E0383F* + ID_OUI_FROM_DATABASE=zte corporation + OUI:E039D7* ID_OUI_FROM_DATABASE=Plexxi, Inc. @@ -80570,6 +81524,9 @@ OUI:E07C13* OUI:E07C62* ID_OUI_FROM_DATABASE=Whistle Labs, Inc. +OUI:E07DEA* + ID_OUI_FROM_DATABASE=Texas Instruments + OUI:E07F53* ID_OUI_FROM_DATABASE=TECHBOARD SRL @@ -80918,6 +81875,9 @@ OUI:E4029B* OUI:E40439* ID_OUI_FROM_DATABASE=TomTom Software Ltd +OUI:E40EEE* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:E4115B* ID_OUI_FROM_DATABASE=Hewlett Packard @@ -81026,6 +81986,9 @@ OUI:E441E6* OUI:E442A6* ID_OUI_FROM_DATABASE=Intel Corporate +OUI:E4434B* + ID_OUI_FROM_DATABASE=Dell Inc. + OUI:E446BD* ID_OUI_FROM_DATABASE=C&C TECHNIC TAIWAN CO., LTD. @@ -81044,6 +82007,9 @@ OUI:E44C6C* OUI:E44E18* ID_OUI_FROM_DATABASE=Gardasoft VisionLimited +OUI:E44E76* + ID_OUI_FROM_DATABASE=CHAMPIONTECH ENTERPRISE (SHENZHEN) INC + OUI:E44F29* ID_OUI_FROM_DATABASE=MA Lighting Technology GmbH @@ -81083,6 +82049,9 @@ OUI:E45D52* OUI:E45D75* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:E46059* + ID_OUI_FROM_DATABASE=Pingtek Co., Ltd. + OUI:E46251* ID_OUI_FROM_DATABASE=HAO CHENG GROUP LIMITED @@ -81152,6 +82121,9 @@ OUI:E48184* OUI:E481B3* ID_OUI_FROM_DATABASE=Shenzhen ACT Industrial Co.,Ltd. +OUI:E482CC* + ID_OUI_FROM_DATABASE=Jumptronic GmbH + OUI:E48399* ID_OUI_FROM_DATABASE=ARRIS Group, Inc. @@ -81173,6 +82145,9 @@ OUI:E48D8C* OUI:E48F34* ID_OUI_FROM_DATABASE=Vodafone Italia S.p.A. +OUI:E48F65* + ID_OUI_FROM_DATABASE=Yelatma Instrument Making Enterprise, JSC + OUI:E49069* ID_OUI_FROM_DATABASE=Rockwell Automation @@ -81377,6 +82352,9 @@ OUI:E4E0A6* OUI:E4E0C5* ID_OUI_FROM_DATABASE=Samsung Electronics Co.,Ltd +OUI:E4E130* + ID_OUI_FROM_DATABASE=TCT mobile ltd + OUI:E4E409* ID_OUI_FROM_DATABASE=LEIFHEIT AG @@ -81804,7 +82782,7 @@ OUI:E89A8F* ID_OUI_FROM_DATABASE=QUANTA COMPUTER INC. OUI:E89AFF* - ID_OUI_FROM_DATABASE=Fujian Landi Commercial Equipment Co.,Ltd + ID_OUI_FROM_DATABASE=Fujian LANDI Commercial Equipment Co.,Ltd OUI:E89D87* ID_OUI_FROM_DATABASE=Toshiba @@ -82001,6 +82979,9 @@ OUI:E8F724* OUI:E8F928* ID_OUI_FROM_DATABASE=RFTECH SRL +OUI:E8FAF7* + ID_OUI_FROM_DATABASE=Guangdong Uniteddata Holding Group Co., Ltd. + OUI:E8FC60* ID_OUI_FROM_DATABASE=ELCOM Innovations Private Limited @@ -82307,6 +83288,9 @@ OUI:EC9233* OUI:EC9327* ID_OUI_FROM_DATABASE=MEMMERT GmbH + Co. KG +OUI:EC9365* + ID_OUI_FROM_DATABASE=Mapper.ai, Inc. + OUI:EC93ED* ID_OUI_FROM_DATABASE=DDoS-Guard LTD @@ -82394,6 +83378,9 @@ OUI:ECAAA0* OUI:ECADB8* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:ECAF97* + ID_OUI_FROM_DATABASE=GIT + OUI:ECB0E1* ID_OUI_FROM_DATABASE=Ciena Corporation @@ -82574,6 +83561,9 @@ OUI:F008F1* OUI:F00D5C* ID_OUI_FROM_DATABASE=JinQianMao Technology Co.,Ltd. +OUI:F00E1D* + ID_OUI_FROM_DATABASE=Megafone Limited + OUI:F00FEC* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD @@ -82589,6 +83579,9 @@ OUI:F015B9* OUI:F0182B* ID_OUI_FROM_DATABASE=LG Chem +OUI:F01898* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:F01B6C* ID_OUI_FROM_DATABASE=vivo Mobile Communication Co., Ltd. @@ -82742,12 +83735,18 @@ OUI:F0407B* OUI:F041C80* ID_OUI_FROM_DATABASE=LINPA ACOUSTIC TECHNOLOGY CO.,LTD +OUI:F041C81* + ID_OUI_FROM_DATABASE=DongGuan Siyoto Electronics Co., Ltd + OUI:F041C82* ID_OUI_FROM_DATABASE=Shenzhen Medica Technology Development Co., Ltd. OUI:F041C83* ID_OUI_FROM_DATABASE=SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD +OUI:F041C84* + ID_OUI_FROM_DATABASE=Candelic Limited + OUI:F041C85* ID_OUI_FROM_DATABASE=XI'AN MEI SHANG MEI WIRELESS TECHNOLOGY.Co., Ltd. @@ -82757,9 +83756,15 @@ OUI:F041C86* OUI:F041C87* ID_OUI_FROM_DATABASE=Nanchang BlackShark Co.,Ltd. +OUI:F041C88* + ID_OUI_FROM_DATABASE=POSTIUM KOREA CO., LTD. + OUI:F041C89* ID_OUI_FROM_DATABASE=Shenzhen Nufilo Electronic Technology Co., Ltd. +OUI:F041C8A* + ID_OUI_FROM_DATABASE=Telstra + OUI:F041C8B* ID_OUI_FROM_DATABASE=Powervault Ltd @@ -82769,6 +83774,9 @@ OUI:F041C8C* OUI:F041C8D* ID_OUI_FROM_DATABASE=ATN Media Group FZ LLC +OUI:F041C8E* + ID_OUI_FROM_DATABASE=Shenzhen Umind Technology Co., Ltd. + OUI:F0421C* ID_OUI_FROM_DATABASE=Intel Corporate @@ -82790,6 +83798,9 @@ OUI:F04B6A* OUI:F04BF2* ID_OUI_FROM_DATABASE=JTECH Communications, Inc. +OUI:F04CD5* + ID_OUI_FROM_DATABASE=Maxlinear, Inc + OUI:F04DA2* ID_OUI_FROM_DATABASE=Dell Inc. @@ -82946,6 +83957,9 @@ OUI:F09838* OUI:F0989D* ID_OUI_FROM_DATABASE=Apple, Inc. +OUI:F099B6* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:F099BF* ID_OUI_FROM_DATABASE=Apple, Inc. @@ -82955,6 +83969,9 @@ OUI:F09A51* OUI:F09CBB* ID_OUI_FROM_DATABASE=RaonThink Inc. +OUI:F09CD7* + ID_OUI_FROM_DATABASE=Guangzhou Blue Cheetah Intelligent Technology Co., Ltd. + OUI:F09CE9* ID_OUI_FROM_DATABASE=Aerohive Networks Inc. @@ -83027,6 +84044,9 @@ OUI:F0AD4E* OUI:F0AE51* ID_OUI_FROM_DATABASE=Xi3 Corp +OUI:F0AF50* + ID_OUI_FROM_DATABASE=Phantom Intelligence + OUI:F0B052* ID_OUI_FROM_DATABASE=Ruckus Wireless @@ -83045,6 +84065,9 @@ OUI:F0B479* OUI:F0B5B7* ID_OUI_FROM_DATABASE=Disruptive Technologies Research AS +OUI:F0B5D1* + ID_OUI_FROM_DATABASE=Texas Instruments + OUI:F0B6EB* ID_OUI_FROM_DATABASE=Poslab Technology Co., Ltd. @@ -83657,6 +84680,9 @@ OUI:F4B85E* OUI:F4B8A7* ID_OUI_FROM_DATABASE=zte corporation +OUI:F4BC97* + ID_OUI_FROM_DATABASE=Shenzhen Crave Communication Co., LTD + OUI:F4BD7C* ID_OUI_FROM_DATABASE=Chengdu jinshi communication Co., LTD @@ -84155,6 +85181,9 @@ OUI:F86ECF* OUI:F86EEE* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:F86FC1* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:F871FE* ID_OUI_FROM_DATABASE=The Goldman Sachs Group, Inc. @@ -84281,6 +85310,9 @@ OUI:F89550* OUI:F895C7* ID_OUI_FROM_DATABASE=LG Electronics (Mobile Communications) +OUI:F895EA* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:F897CF* ID_OUI_FROM_DATABASE=DAESHIN-INFORMATION TECHNOLOGY CO., LTD. @@ -84290,6 +85322,9 @@ OUI:F8983A* OUI:F898B9* ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD +OUI:F898EF* + ID_OUI_FROM_DATABASE=HUAWEI TECHNOLOGIES CO.,LTD + OUI:F89955* ID_OUI_FROM_DATABASE=Fortress Technology Inc @@ -84500,6 +85535,9 @@ OUI:F8DFA8* OUI:F8E079* ID_OUI_FROM_DATABASE=Motorola Mobility LLC, a Lenovo Company +OUI:F8E44E* + ID_OUI_FROM_DATABASE=MCOT INC. + OUI:F8E4FB* ID_OUI_FROM_DATABASE=Actiontec Electronics, Inc @@ -84548,6 +85586,9 @@ OUI:F8F25A* OUI:F8F464* ID_OUI_FROM_DATABASE=Rawe Electonic GmbH +OUI:F8F532* + ID_OUI_FROM_DATABASE=ARRIS Group, Inc. + OUI:F8F7D3* ID_OUI_FROM_DATABASE=International Communications Corporation @@ -84674,6 +85715,9 @@ OUI:FC27A2* OUI:FC2A54* ID_OUI_FROM_DATABASE=Connected Data, Inc. +OUI:FC2A9C* + ID_OUI_FROM_DATABASE=Apple, Inc. + OUI:FC2D5E* ID_OUI_FROM_DATABASE=zte corporation @@ -84812,6 +85856,9 @@ OUI:FC65DE* OUI:FC683E* ID_OUI_FROM_DATABASE=Directed Perception, Inc +OUI:FC6947* + ID_OUI_FROM_DATABASE=Texas Instruments + OUI:FC6C31* ID_OUI_FROM_DATABASE=LXinstruments GmbH @@ -84860,6 +85907,9 @@ OUI:FC8F90* OUI:FC8FC4* ID_OUI_FROM_DATABASE=Intelligent Technology Inc. +OUI:FC90FA* + ID_OUI_FROM_DATABASE=Independent Technologies + OUI:FC9114* ID_OUI_FROM_DATABASE=Technicolor CH USA Inc. @@ -84878,6 +85928,9 @@ OUI:FC9947* OUI:FC9AFA* ID_OUI_FROM_DATABASE=Motus Global Inc. +OUI:FC9BC6* + ID_OUI_FROM_DATABASE=Sumavision Technologies Co.,Ltd + OUI:FC9DD8* ID_OUI_FROM_DATABASE=Beijing TongTongYiLian Science and Technology Ltd. @@ -84938,6 +85991,9 @@ OUI:FCB58A* OUI:FCB698* ID_OUI_FROM_DATABASE=Cambridge Industries(Group) Co.,Ltd. +OUI:FCB7F0* + ID_OUI_FROM_DATABASE=Idaho National Laboratory + OUI:FCBBA1* ID_OUI_FROM_DATABASE=Shenzhen Minicreate Technology Co.,Ltd @@ -85025,6 +86081,9 @@ OUI:FCE33C* OUI:FCE557* ID_OUI_FROM_DATABASE=Nokia Corporation +OUI:FCE66A* + ID_OUI_FROM_DATABASE=Industrial Software Co + OUI:FCE892* ID_OUI_FROM_DATABASE=Hangzhou Lancable Technology Co.,Ltd diff --git a/hwdb/20-acpi-vendor.hwdb.patch b/hwdb/20-acpi-vendor.hwdb.patch index 0d9be6053..e91e9eca1 100644 --- a/hwdb/20-acpi-vendor.hwdb.patch +++ b/hwdb/20-acpi-vendor.hwdb.patch @@ -1,5 +1,5 @@ ---- 20-acpi-vendor.hwdb.base 2017-12-14 15:57:48.154005635 +0100 -+++ 20-acpi-vendor.hwdb 2017-12-14 15:57:48.160005689 +0100 +--- 20-acpi-vendor.hwdb.base 2018-01-25 13:07:40.178983802 +0100 ++++ 20-acpi-vendor.hwdb 2018-01-25 13:07:40.183983802 +0100 @@ -3,6 +3,8 @@ # Data imported from: # http://www.uefi.org/uefi-pnp-export diff --git a/hwdb/20-pci-vendor-model.hwdb b/hwdb/20-pci-vendor-model.hwdb index e6ed2e377..3d8ddf1f3 100644 --- a/hwdb/20-pci-vendor-model.hwdb +++ b/hwdb/20-pci-vendor-model.hwdb @@ -53,6 +53,9 @@ pci:v00000100* pci:v00000123* ID_VENDOR_FROM_DATABASE=General Dynamics +pci:v00000128* + ID_VENDOR_FROM_DATABASE=Dell (wrong ID) + pci:v0000018A* ID_VENDOR_FROM_DATABASE=LevelOne @@ -1664,6 +1667,9 @@ pci:v00001000d00000097* pci:v00001000d00000097sv00001000sd00003090* ID_MODEL_FROM_DATABASE=SAS3008 PCI-Express Fusion-MPT SAS-3 (SAS9311-8i) +pci:v00001000d00000097sv00001000sd000030A0* + ID_MODEL_FROM_DATABASE=SAS3008 PCI-Express Fusion-MPT SAS-3 (SAS9300-8e) + pci:v00001000d00000097sv00001000sd000030E0* ID_MODEL_FROM_DATABASE=SAS3008 PCI-Express Fusion-MPT SAS-3 (SAS9300-8i) @@ -2157,7 +2163,10 @@ pci:v00001002d0000131D* ID_MODEL_FROM_DATABASE=Kaveri [Radeon R6 Graphics] pci:v00001002d000015DD* - ID_MODEL_FROM_DATABASE=Radeon Vega 8 Mobile + ID_MODEL_FROM_DATABASE=Vega [Radeon Vega 8 Mobile] + +pci:v00001002d000015FF* + ID_MODEL_FROM_DATABASE=Vega [Radeon Vega 28 Mobile] pci:v00001002d00001714* ID_MODEL_FROM_DATABASE=BeaverCreek HDMI Audio [Radeon HD 6500D and 6400G-6600G series] @@ -6683,6 +6692,9 @@ pci:v00001002d000067BE* pci:v00001002d000067C0* ID_MODEL_FROM_DATABASE=Ellesmere [Radeon Pro WX 7100] +pci:v00001002d000067C2* + ID_MODEL_FROM_DATABASE=Ellesmere [Radeon Pro V7300X / V7350x2] + pci:v00001002d000067C4* ID_MODEL_FROM_DATABASE=Ellesmere [Radeon Pro WX 7100] @@ -6704,6 +6716,9 @@ pci:v00001002d000067CC* pci:v00001002d000067CF* ID_MODEL_FROM_DATABASE=Ellesmere [Polaris10] +pci:v00001002d000067D0* + ID_MODEL_FROM_DATABASE=Ellesmere [Radeon Pro V7300X / V7350x2] + pci:v00001002d000067DF* ID_MODEL_FROM_DATABASE=Ellesmere [Radeon RX 470/480/570/580] @@ -6762,7 +6777,7 @@ pci:v00001002d000067DFsv00001DA2sd0000E353* ID_MODEL_FROM_DATABASE=Ellesmere [Radeon RX 470/480/570/580] (Sapphire Radeon RX 580 Pulse 8GB) pci:v00001002d000067DFsv00001DA2sd0000E366* - ID_MODEL_FROM_DATABASE=Ellesmere [Radeon RX 470/480/570/580] (Radeon RX 570) + ID_MODEL_FROM_DATABASE=Ellesmere [Radeon RX 470/480/570/580] (Nitro+ Radeon RX 580 4GB) pci:v00001002d000067E0* ID_MODEL_FROM_DATABASE=Baffin [Polaris11] @@ -6780,7 +6795,7 @@ pci:v00001002d000067E9* ID_MODEL_FROM_DATABASE=Baffin [Polaris11] pci:v00001002d000067EB* - ID_MODEL_FROM_DATABASE=Baffin [Polaris11] + ID_MODEL_FROM_DATABASE=Baffin [Radeon Pro V5300X] pci:v00001002d000067EF* ID_MODEL_FROM_DATABASE=Baffin [Radeon RX 460/560D / Pro 450/455/460/560] @@ -6911,6 +6926,9 @@ pci:v00001002d00006818sv0000174Bsd00008B04* pci:v00001002d00006819* ID_MODEL_FROM_DATABASE=Pitcairn PRO [Radeon HD 7850 / R7 265 / R9 270 1024SP] +pci:v00001002d00006819sv00001043sd0000042C* + ID_MODEL_FROM_DATABASE=Pitcairn PRO [Radeon HD 7850 / R7 265 / R9 270 1024SP] (Radeon HD 7850) + pci:v00001002d00006819sv00001682sd00007269* ID_MODEL_FROM_DATABASE=Pitcairn PRO [Radeon HD 7850 / R7 265 / R9 270 1024SP] (Radeon R9 270 1024SP) @@ -7397,12 +7415,30 @@ pci:v00001002d00006842* pci:v00001002d00006843* ID_MODEL_FROM_DATABASE=Thames [Radeon HD 7670M] +pci:v00001002d00006860* + ID_MODEL_FROM_DATABASE=Vega 10 [Radeon Instinct MI25] + pci:v00001002d00006861* ID_MODEL_FROM_DATABASE=Vega 10 XT [Radeon PRO WX 9100] +pci:v00001002d00006862* + ID_MODEL_FROM_DATABASE=Vega 10 XT [Radeon PRO SSG] + pci:v00001002d00006863* ID_MODEL_FROM_DATABASE=Vega 10 XTX [Radeon Vega Frontier Edition] +pci:v00001002d00006864* + ID_MODEL_FROM_DATABASE=Vega + +pci:v00001002d00006867* + ID_MODEL_FROM_DATABASE=Vega + +pci:v00001002d00006868* + ID_MODEL_FROM_DATABASE=Vega + +pci:v00001002d0000686C* + ID_MODEL_FROM_DATABASE=Vega 10 [Radeon Instinct MI25 MxGPU] + pci:v00001002d0000687F* ID_MODEL_FROM_DATABASE=Vega 10 XT [Radeon RX Vega 64] @@ -8918,6 +8954,9 @@ pci:v00001002d00006939sv0000148Csd00009380* pci:v00001002d00006939sv0000174Bsd0000E308* ID_MODEL_FROM_DATABASE=Tonga PRO [Radeon R9 285/380] (Radeon R9 380 Nitro 4G D5) +pci:v00001002d0000694C* + ID_MODEL_FROM_DATABASE=Vega [Radeon RX Vega M] + pci:v00001002d00006980* ID_MODEL_FROM_DATABASE=Polaris12 @@ -8931,7 +8970,7 @@ pci:v00001002d00006986* ID_MODEL_FROM_DATABASE=Polaris12 pci:v00001002d00006987* - ID_MODEL_FROM_DATABASE=Polaris12 + ID_MODEL_FROM_DATABASE=Lexa [Radeon E9171 MCM] pci:v00001002d00006995* ID_MODEL_FROM_DATABASE=Lexa XT [Radeon PRO WX 2100] @@ -11957,6 +11996,21 @@ pci:v00001022d00001424* pci:v00001022d00001426* ID_MODEL_FROM_DATABASE=Family 15h (Models 30h-3fh) Processor Root Port +pci:v00001022d0000142E* + ID_MODEL_FROM_DATABASE=Liverpool Processor Function 0 + +pci:v00001022d0000142F* + ID_MODEL_FROM_DATABASE=Liverpool Processor Function 1 + +pci:v00001022d00001430* + ID_MODEL_FROM_DATABASE=Liverpool Processor Function 2 + +pci:v00001022d00001431* + ID_MODEL_FROM_DATABASE=Liverpool Processor Function 3 + +pci:v00001022d00001432* + ID_MODEL_FROM_DATABASE=Liverpool Processor Function 4 + pci:v00001022d00001436* ID_MODEL_FROM_DATABASE=Liverpool Processor Root Complex @@ -16119,22 +16173,25 @@ pci:v0000104Cd0000802Esv00001028sd0000018D* ID_MODEL_FROM_DATABASE=PCI7x20 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller (Inspiron 700m/710m) pci:v0000104Cd00008031* - ID_MODEL_FROM_DATABASE=PCIxx21/x515 Cardbus Controller + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11/PCIx515 PC Card Controller pci:v0000104Cd00008031sv00001025sd00000064* - ID_MODEL_FROM_DATABASE=PCIxx21/x515 Cardbus Controller (Extensa 3000 series laptop) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11/PCIx515 PC Card Controller (Extensa 3000 series laptop) pci:v0000104Cd00008031sv00001025sd00000080* - ID_MODEL_FROM_DATABASE=PCIxx21/x515 Cardbus Controller (Aspire 5024WLMi) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11/PCIx515 PC Card Controller (Aspire 5024WLMi) pci:v0000104Cd00008031sv0000103Csd00000934* - ID_MODEL_FROM_DATABASE=PCIxx21/x515 Cardbus Controller (Compaq nw8240/nx8220) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11/PCIx515 PC Card Controller (Compaq nw8240/nx8220) + +pci:v0000104Cd00008031sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11/PCIx515 PC Card Controller (Compaq nc6220 Notebook PC) pci:v0000104Cd00008031sv0000103Csd0000099C* - ID_MODEL_FROM_DATABASE=PCIxx21/x515 Cardbus Controller (NX6110/NC6120) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11/PCIx515 PC Card Controller (NX6110/NC6120) pci:v0000104Cd00008031sv0000103Csd0000308B* - ID_MODEL_FROM_DATABASE=PCIxx21/x515 Cardbus Controller (MX6125) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11/PCIx515 PC Card Controller (MX6125) pci:v0000104Cd00008032* ID_MODEL_FROM_DATABASE=OHCI Compliant IEEE 1394 Host Controller @@ -16155,46 +16212,55 @@ pci:v0000104Cd00008032sv0000103Csd0000308B* ID_MODEL_FROM_DATABASE=OHCI Compliant IEEE 1394 Host Controller (MX6125) pci:v0000104Cd00008033* - ID_MODEL_FROM_DATABASE=PCIxx21 Integrated FlashMedia Controller + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Flash Media Controller pci:v0000104Cd00008033sv00001025sd00000064* - ID_MODEL_FROM_DATABASE=PCIxx21 Integrated FlashMedia Controller (Extensa 3000 series laptop) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Flash Media Controller (Extensa 3000 series laptop) pci:v0000104Cd00008033sv00001025sd00000080* - ID_MODEL_FROM_DATABASE=PCIxx21 Integrated FlashMedia Controller (Aspire 5024WLMi) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Flash Media Controller (Aspire 5024WLMi) pci:v0000104Cd00008033sv0000103Csd00000934* - ID_MODEL_FROM_DATABASE=PCIxx21 Integrated FlashMedia Controller (Compaq nw8240/nx8220) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Flash Media Controller (Compaq nw8240/nx8220) + +pci:v0000104Cd00008033sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Flash Media Controller (Compaq nc6220 Notebook PC) pci:v0000104Cd00008033sv0000103Csd0000099C* - ID_MODEL_FROM_DATABASE=PCIxx21 Integrated FlashMedia Controller (NX6110/NC6120) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Flash Media Controller (NX6110/NC6120) pci:v0000104Cd00008033sv0000103Csd0000308B* - ID_MODEL_FROM_DATABASE=PCIxx21 Integrated FlashMedia Controller (MX6125) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Flash Media Controller (MX6125) pci:v0000104Cd00008034* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 SD Host Controller pci:v0000104Cd00008034sv00001025sd00000080* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller (Aspire 5024WLMi) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 SD Host Controller (Aspire 5024WLMi) pci:v0000104Cd00008034sv0000103Csd00000934* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller (Compaq nw8240/nx8220) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 SD Host Controller (Compaq nw8240/nx8220) + +pci:v0000104Cd00008034sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 SD Host Controller (Compaq nc6220 Notebook PC) pci:v0000104Cd00008034sv0000103Csd0000099C* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller (NX6110/NC6120) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 SD Host Controller (NX6110/NC6120) pci:v0000104Cd00008034sv0000103Csd0000308B* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller (MX6125) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 SD Host Controller (MX6125) pci:v0000104Cd00008035* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Smart Card Controller + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Smart Card Controller pci:v0000104Cd00008035sv0000103Csd00000934* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Smart Card Controller (Compaq nw8240/nx8220) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Smart Card Controller (Compaq nw8240/nx8220) + +pci:v0000104Cd00008035sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Smart Card Controller (Compaq nc6220 Notebook PC) pci:v0000104Cd00008035sv0000103Csd0000099C* - ID_MODEL_FROM_DATABASE=PCI6411/6421/6611/6621/7411/7421/7611/7621 Smart Card Controller (NX6110/NC6120) + ID_MODEL_FROM_DATABASE=PCIxx21/PCIxx11 Smart Card Controller (NX6110/NC6120) pci:v0000104Cd00008036* ID_MODEL_FROM_DATABASE=PCI6515 Cardbus Controller @@ -16233,19 +16299,19 @@ pci:v0000104Cd0000803Asv0000104Dsd0000902D* ID_MODEL_FROM_DATABASE=PCIxx12 OHCI Compliant IEEE 1394 Host Controller (VAIO VGN-NR120E) pci:v0000104Cd0000803B* - ID_MODEL_FROM_DATABASE=5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) + ID_MODEL_FROM_DATABASE=PCIxx12 Flash Media Controller pci:v0000104Cd0000803Bsv0000103Csd0000309F* - ID_MODEL_FROM_DATABASE=5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) (nx9420) + ID_MODEL_FROM_DATABASE=PCIxx12 Flash Media Controller (nx9420) pci:v0000104Cd0000803Bsv0000103Csd000030A3* - ID_MODEL_FROM_DATABASE=5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) (Compaq nw8440) + ID_MODEL_FROM_DATABASE=PCIxx12 Flash Media Controller (Compaq nw8440) pci:v0000104Cd0000803Bsv0000104Dsd00008212* - ID_MODEL_FROM_DATABASE=5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) (VAIO VGN-N21E) + ID_MODEL_FROM_DATABASE=PCIxx12 Flash Media Controller (VAIO VGN-N21E) pci:v0000104Cd0000803Bsv0000104Dsd0000902D* - ID_MODEL_FROM_DATABASE=5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) (VAIO VGN-NR120E) + ID_MODEL_FROM_DATABASE=PCIxx12 Flash Media Controller (VAIO VGN-NR120E) pci:v0000104Cd0000803C* ID_MODEL_FROM_DATABASE=PCIxx12 SDA Standard Compliant SD Host Controller @@ -16742,6 +16808,54 @@ pci:v0000104Dd000090A4* pci:v0000104Dd000090BC* ID_MODEL_FROM_DATABASE=SxS Pro+ memory card +pci:v0000104Dd000090C8* + ID_MODEL_FROM_DATABASE=Belize ACPI + +pci:v0000104Dd000090C9* + ID_MODEL_FROM_DATABASE=Belize Ethernet Controller + +pci:v0000104Dd000090CA* + ID_MODEL_FROM_DATABASE=Belize SATA AHCI Controller + +pci:v0000104Dd000090CB* + ID_MODEL_FROM_DATABASE=Belize SD/MMC Host Controller + +pci:v0000104Dd000090CC* + ID_MODEL_FROM_DATABASE=Belize PCI Express Glue and Miscellaneous Devices + +pci:v0000104Dd000090CD* + ID_MODEL_FROM_DATABASE=Belize DMA Controller + +pci:v0000104Dd000090CE* + ID_MODEL_FROM_DATABASE=Belize Memory (DDR3/SPM) + +pci:v0000104Dd000090CF* + ID_MODEL_FROM_DATABASE=Belize USB 3.0 xHCI Host Controller + +pci:v0000104Dd000090D7* + ID_MODEL_FROM_DATABASE=Baikal ACPI + +pci:v0000104Dd000090D8* + ID_MODEL_FROM_DATABASE=Baikal Ethernet Controller + +pci:v0000104Dd000090D9* + ID_MODEL_FROM_DATABASE=Baikal SATA AHCI Controller + +pci:v0000104Dd000090DA* + ID_MODEL_FROM_DATABASE=Baikal SD/MMC Host Controller + +pci:v0000104Dd000090DB* + ID_MODEL_FROM_DATABASE=Baikal PCI Express Glue and Miscellaneous Devices + +pci:v0000104Dd000090DC* + ID_MODEL_FROM_DATABASE=Baikal DMA Controller + +pci:v0000104Dd000090DD* + ID_MODEL_FROM_DATABASE=Baikal Memory (DDR3/SPM) + +pci:v0000104Dd000090DE* + ID_MODEL_FROM_DATABASE=Baikal USB 3.0 xHCI Host Controller + pci:v0000104E* ID_VENDOR_FROM_DATABASE=Oak Technology, Inc @@ -18476,6 +18590,18 @@ pci:v00001077d00008070sv00001077sd00000001* pci:v00001077d00008070sv00001077sd00000002* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (10GE 2P QL41112HxCU-DE Adapter) +pci:v00001077d00008070sv00001077sd00000005* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (QLogic 4x10GE QL41164HMRJ CNA) + +pci:v00001077d00008070sv00001077sd00000006* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (QLogic 4x10GE QL41164HMCU CNA) + +pci:v00001077d00008070sv00001077sd00000007* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (QLogic 2x1GE+2x10GE QL41264HMCU CNA) + +pci:v00001077d00008070sv00001077sd00000009* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (QLogic 2x1GE+2x10GE QL41162HMRJ CNA) + pci:v00001077d00008070sv00001077sd0000000B* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (25GE 2P QL41262HxCU-DE Adapter) @@ -18506,9 +18632,24 @@ pci:v00001077d00008080sv00001077sd00000001* pci:v00001077d00008080sv00001077sd00000002* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (10GE 2P QL41112HxCU-DE Adapter) +pci:v00001077d00008080sv00001077sd00000005* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (QLogic 4x10GE QL41164HMRJ CNA) + +pci:v00001077d00008080sv00001077sd00000006* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (QLogic 4x10GE QL41164HMCU CNA) + +pci:v00001077d00008080sv00001077sd00000007* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (QLogic 2x1GE+2x10GE QL41264HMCU CNA) + +pci:v00001077d00008080sv00001077sd00000009* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (QLogic 2x1GE+2x10GE QL41162HMRJ CNA) + pci:v00001077d00008080sv00001077sd0000000B* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (25GE 2P QL41262HxCU-DE Adapter) +pci:v00001077d00008080sv00001077sd0000000C* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (QLogic 2x25GE QL41262HMCU CNA) + pci:v00001077d00008080sv00001077sd0000000D* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) (FastLinQ QL41262H 25GbE FCoE Adapter) @@ -18524,9 +18665,24 @@ pci:v00001077d00008084sv00001077sd00000001* pci:v00001077d00008084sv00001077sd00000002* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (10GE 2P QL41112HxCU-DE Adapter) +pci:v00001077d00008084sv00001077sd00000005* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (QLogic 4x10GE QL41164HMRJ CNA) + +pci:v00001077d00008084sv00001077sd00000006* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (QLogic 4x10GE QL41164HMCU CNA) + +pci:v00001077d00008084sv00001077sd00000007* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (QLogic 2x25GE QL41262HMCU CNA) + +pci:v00001077d00008084sv00001077sd00000009* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (QLogic 2x1GE+2x10GE QL41162HMRJ CNA) + pci:v00001077d00008084sv00001077sd0000000B* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (25GE 2P QL41262HxCU-DE Adapter) +pci:v00001077d00008084sv00001077sd0000000C* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (QLogic 2x25GE QL41262HMCU CNA) + pci:v00001077d00008084sv00001077sd0000000D* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) (FastLinQ QL41262H 25GbE iSCSI Adapter) @@ -18542,9 +18698,24 @@ pci:v00001077d00008090sv00001077sd00000001* pci:v00001077d00008090sv00001077sd00000002* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (10GE 2P QL41112HxCU-DE Adapter) +pci:v00001077d00008090sv00001077sd00000005* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (QLogic 4x10GE QL41164HMRJ CNA) + +pci:v00001077d00008090sv00001077sd00000006* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (QLogic 4x10GE QL41164HMCU CNA) + +pci:v00001077d00008090sv00001077sd00000007* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (QLogic 2x1GE+2x10GE QL41264HMCU CNA) + +pci:v00001077d00008090sv00001077sd00000009* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (QLogic 2x1GE+2x10GE QL41162HMRJ CNA) + pci:v00001077d00008090sv00001077sd0000000B* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (25GE 2P QL41262HxCU-DE Adapter) +pci:v00001077d00008090sv00001077sd0000000C* + ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (QLogic 2x25GE QL41262HMCU CNA) + pci:v00001077d00008090sv00001077sd0000000D* ID_MODEL_FROM_DATABASE=FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) (FastLinQ QL41262H 25GbE FCoE Adapter (SR-IOV VF)) @@ -32154,7 +32325,7 @@ pci:v000010DEd000013DA* ID_MODEL_FROM_DATABASE=GM204M [GeForce GTX 980 Mobile] pci:v000010DEd000013E7* - ID_MODEL_FROM_DATABASE=GM204 [GeForce GTX 980 Engineering Sample] + ID_MODEL_FROM_DATABASE=GM204GL [GeForce GTX 980 Engineering Sample] pci:v000010DEd000013F0* ID_MODEL_FROM_DATABASE=GM204GL [Quadro M5000] @@ -32168,6 +32339,9 @@ pci:v000010DEd000013F2* pci:v000010DEd000013F3* ID_MODEL_FROM_DATABASE=GM204GL [Tesla M6] +pci:v000010DEd000013F3sv000010DEsd00001184* + ID_MODEL_FROM_DATABASE=GM204GL [Tesla M6] (GRID M6-8Q) + pci:v000010DEd000013F8* ID_MODEL_FROM_DATABASE=GM204GLM [Quadro M5000M / M5000 SE] @@ -32357,6 +32531,9 @@ pci:v000010DEd00001BB7sv00001462sd000011E9* pci:v000010DEd00001BB8* ID_MODEL_FROM_DATABASE=GP104GLM [Quadro P3000 Mobile] +pci:v000010DEd00001BC7* + ID_MODEL_FROM_DATABASE=GP104 [P104-101] + pci:v000010DEd00001BE0* ID_MODEL_FROM_DATABASE=GP104M [GeForce GTX 1080 Mobile] @@ -32381,6 +32558,12 @@ pci:v000010DEd00001C02* pci:v000010DEd00001C03* ID_MODEL_FROM_DATABASE=GP106 [GeForce GTX 1060 6GB] +pci:v000010DEd00001C04* + ID_MODEL_FROM_DATABASE=GP106 [GeForce GTX 1060 5GB] + +pci:v000010DEd00001C06* + ID_MODEL_FROM_DATABASE=GP106 [GeForce GTX 1060 6GB Rev. 2] + pci:v000010DEd00001C07* ID_MODEL_FROM_DATABASE=GP106 [P106-100] @@ -32462,8 +32645,11 @@ pci:v000010DEd00001D01* pci:v000010DEd00001D10* ID_MODEL_FROM_DATABASE=GP108M [GeForce MX150] +pci:v000010DEd00001D33* + ID_MODEL_FROM_DATABASE=GP108GL [Quadro P500] + pci:v000010DEd00001D81* - ID_MODEL_FROM_DATABASE=GV100 + ID_MODEL_FROM_DATABASE=GV100 [TITAN V] pci:v000010DEd00001DB1* ID_MODEL_FROM_DATABASE=GV100 [Tesla V100 SXM2] @@ -32546,6 +32732,9 @@ pci:v000010DFd0000E200* pci:v000010DFd0000E200sv00001014sd000003F1* ID_MODEL_FROM_DATABASE=LightPulse LPe16002 (PCIe2 16 Gb 2-port Fibre Channel Adapter (FC EL5B; CCIN 577F)) +pci:v000010DFd0000E200sv000010DFsd0000E282* + ID_MODEL_FROM_DATABASE=LightPulse LPe16002 (Flex System FC5054 4-port 16Gb FC Adapter) + pci:v000010DFd0000E208* ID_MODEL_FROM_DATABASE=LightPulse 16Gb Fibre Channel Host Adapter (Lancer-VF) @@ -33063,25 +33252,28 @@ pci:v000010ECd00008129sv000011ECsd00008129* ID_MODEL_FROM_DATABASE=RTL-8129 (RTL8111/8168 PCIe Gigabit Ethernet (misconfigured)) pci:v000010ECd00008136* - ID_MODEL_FROM_DATABASE=RTL8101/2/6E PCI Express Fast Ethernet controller + ID_MODEL_FROM_DATABASE=RTL810xE PCI Express Fast Ethernet controller pci:v000010ECd00008136sv0000103Csd00001985* - ID_MODEL_FROM_DATABASE=RTL8101/2/6E PCI Express Fast Ethernet controller (RTL8106E on Pavilion 17-e163sg Notebook PC) + ID_MODEL_FROM_DATABASE=RTL810xE PCI Express Fast Ethernet controller (RTL8106E on Pavilion 17-e163sg Notebook PC) pci:v000010ECd00008136sv0000103Csd00002A8C* - ID_MODEL_FROM_DATABASE=RTL8101/2/6E PCI Express Fast Ethernet controller (Compaq 500B Microtower) + ID_MODEL_FROM_DATABASE=RTL810xE PCI Express Fast Ethernet controller (Compaq 500B Microtower) pci:v000010ECd00008136sv0000103Csd00002AB1* - ID_MODEL_FROM_DATABASE=RTL8101/2/6E PCI Express Fast Ethernet controller (Pavilion p6774) + ID_MODEL_FROM_DATABASE=RTL810xE PCI Express Fast Ethernet controller (Pavilion p6774) pci:v000010ECd00008136sv0000103Csd000030CC* - ID_MODEL_FROM_DATABASE=RTL8101/2/6E PCI Express Fast Ethernet controller (Pavilion dv6700) + ID_MODEL_FROM_DATABASE=RTL810xE PCI Express Fast Ethernet controller (Pavilion dv6700) pci:v000010ECd00008136sv00001179sd0000FF64* - ID_MODEL_FROM_DATABASE=RTL8101/2/6E PCI Express Fast Ethernet controller (RTL8102E PCI-E Fast Ethernet NIC) + ID_MODEL_FROM_DATABASE=RTL810xE PCI Express Fast Ethernet controller (RTL8102E PCI-E Fast Ethernet NIC) pci:v000010ECd00008136sv000017C0sd00001053* - ID_MODEL_FROM_DATABASE=RTL8101/2/6E PCI Express Fast Ethernet controller (RTL8101e Medion WIM 2210 Notebook PC [MD96850]) + ID_MODEL_FROM_DATABASE=RTL810xE PCI Express Fast Ethernet controller (RTL8101e Medion WIM 2210 Notebook PC [MD96850]) + +pci:v000010ECd00008137* + ID_MODEL_FROM_DATABASE=RTL8104E PCIe Fast Ethernet Controller pci:v000010ECd00008138* ID_MODEL_FROM_DATABASE=RT8139 (B/C) Cardbus Fast Ethernet Adapter @@ -41738,47 +41930,131 @@ pci:v000011FEd00000044* pci:v000011FEd00000045* ID_MODEL_FROM_DATABASE=RocketPort Infinity Octa, 8port, DB +pci:v000011FEd00000046* + ID_MODEL_FROM_DATABASE=RocketPort INFINITY 4-port w/external I/F + pci:v000011FEd00000047* ID_MODEL_FROM_DATABASE=RocketPort Infinity 4port, RJ45 +pci:v000011FEd00000048* + ID_MODEL_FROM_DATABASE=RocketPort INFINITY 4J (4-port) w/RJ45 connectors + +pci:v000011FEd0000004A* + ID_MODEL_FROM_DATABASE=RocketPort INFINITY Plus 4-port + +pci:v000011FEd0000004B* + ID_MODEL_FROM_DATABASE=RocketPort INFINITY Plus 8-port + +pci:v000011FEd0000004C* + ID_MODEL_FROM_DATABASE=RocketModem INFINITY III 8-port + +pci:v000011FEd0000004D* + ID_MODEL_FROM_DATABASE=RocketModem INFINITY III 4-port + +pci:v000011FEd0000004E* + ID_MODEL_FROM_DATABASE=RocketPort INFINITY Plus 2-port + pci:v000011FEd0000004F* ID_MODEL_FROM_DATABASE=RocketPort Infinity 2port, SMPTE +pci:v000011FEd00000050* + ID_MODEL_FROM_DATABASE=RocketPort INFINITY Plus 4-port RJ45 + +pci:v000011FEd00000051* + ID_MODEL_FROM_DATABASE=RocketPort INFINITY Plus 8-port RJ11 + pci:v000011FEd00000052* ID_MODEL_FROM_DATABASE=RocketPort Infinity Octa, 8port, SMPTE +pci:v000011FEd00000060* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 8-port w/Octa Cable + +pci:v000011FEd00000061* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 32-port w/external I/F + +pci:v000011FEd00000062* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 8-Port w/external I/F + +pci:v000011FEd00000063* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 16-port w/external I/F + +pci:v000011FEd00000064* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 4-port w/Quad Cable + +pci:v000011FEd00000065* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 8-port w/Octa Cable + +pci:v000011FEd00000066* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 4-port w/external I/F + +pci:v000011FEd00000067* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 4J (4-port) w/RJ45 connectors + +pci:v000011FEd00000068* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS 8J (8-port) w/RJ11 connectors + +pci:v000011FEd0000006F* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS SMPTE 2-port + +pci:v000011FEd00000072* + ID_MODEL_FROM_DATABASE=RocketPort EXPRESS SMPTE 8-port w/external I/F + pci:v000011FEd00000801* - ID_MODEL_FROM_DATABASE=RocketPort UPCI 32 port w/external I/F + ID_MODEL_FROM_DATABASE=RocketPort uPCI 32-port w/external I/F pci:v000011FEd00000802* - ID_MODEL_FROM_DATABASE=RocketPort UPCI 8 port w/external I/F + ID_MODEL_FROM_DATABASE=RocketPort uPCI 8-port w/external I/F pci:v000011FEd00000803* - ID_MODEL_FROM_DATABASE=RocketPort UPCI 16 port w/external I/F + ID_MODEL_FROM_DATABASE=RocketPort uPCI 16-port w/external I/F pci:v000011FEd00000805* - ID_MODEL_FROM_DATABASE=RocketPort UPCI 8 port w/octa cable + ID_MODEL_FROM_DATABASE=RocketPort uPCI 8-port w/Octa Cable + +pci:v000011FEd0000080B* + ID_MODEL_FROM_DATABASE=RocketPort Plus uPCI 8-port w/Octa Cable pci:v000011FEd0000080C* - ID_MODEL_FROM_DATABASE=RocketModem III 8 port + ID_MODEL_FROM_DATABASE=RocketModem III 8-port pci:v000011FEd0000080D* - ID_MODEL_FROM_DATABASE=RocketModem III 4 port + ID_MODEL_FROM_DATABASE=RcoketModem III 4-port + +pci:v000011FEd0000080E* + ID_MODEL_FROM_DATABASE=RocketPort uPCI 2-port RS232 w/DB9 connectors + +pci:v000011FEd0000080F* + ID_MODEL_FROM_DATABASE=RocketPort uPCI SMPTE 2-port pci:v000011FEd00000810* - ID_MODEL_FROM_DATABASE=RocketPort UPCI Plus 4 port RS232 + ID_MODEL_FROM_DATABASE=RocketPort Plus uPCI 4J (4-port) w/RJ45 connectors pci:v000011FEd00000811* - ID_MODEL_FROM_DATABASE=RocketPort UPCI Plus 8 port RS232 + ID_MODEL_FROM_DATABASE=RocketPort Plus uPCI 8J (8-port) w/RJ11 connectors pci:v000011FEd00000812* - ID_MODEL_FROM_DATABASE=RocketPort UPCI Plus 8 port RS422 + ID_MODEL_FROM_DATABASE=RocketPort Plus uPCI 422 8-port + +pci:v000011FEd00000813* + ID_MODEL_FROM_DATABASE=RocketModem IV uPCI 8-port + +pci:v000011FEd00000814* + ID_MODEL_FROM_DATABASE=RocketModem IV uPCI 4-port pci:v000011FEd00000903* ID_MODEL_FROM_DATABASE=RocketPort Compact PCI 16 port w/external I/F pci:v000011FEd00008015* - ID_MODEL_FROM_DATABASE=RocketPort 4-port UART 16954 + ID_MODEL_FROM_DATABASE=RocketPort 550 4-port + +pci:v000011FEd00008805* + ID_MODEL_FROM_DATABASE=RocketPort uPCI 4-port w/Quad Cable + +pci:v000011FEd0000880B* + ID_MODEL_FROM_DATABASE=RocketPort Plus uPCI 4-port w/Quad Cable + +pci:v000011FEd00008812* + ID_MODEL_FROM_DATABASE=RocketPort Plus uPCI 4-port RS422 w/Quad Cable pci:v000011FF* ID_VENDOR_FROM_DATABASE=Scion Corporation @@ -46415,6 +46691,9 @@ pci:v000013A8d00000254* pci:v000013A8d00000258* ID_MODEL_FROM_DATABASE=XR17V258 Octal UART PCI controller +pci:v000013A8d00000352* + ID_MODEL_FROM_DATABASE=XR17V3521 Dual PCIe UART + pci:v000013A9* ID_VENDOR_FROM_DATABASE=Siemens Medical Systems, Ultrasound Group @@ -48368,6 +48647,9 @@ pci:v00001425d000050AA* pci:v00001425d000050AB* ID_MODEL_FROM_DATABASE=T520-50AB Unified Wire Ethernet Controller +pci:v00001425d000050AC* + ID_MODEL_FROM_DATABASE=T540-50AC Unified Wire Ethernet Controller + pci:v00001425d00005401* ID_MODEL_FROM_DATABASE=T520-CR Unified Wire Ethernet Controller @@ -48554,6 +48836,9 @@ pci:v00001425d000054AA* pci:v00001425d000054AB* ID_MODEL_FROM_DATABASE=T520-50AB Unified Wire Ethernet Controller +pci:v00001425d000054AC* + ID_MODEL_FROM_DATABASE=T540-50AC Unified Wire Ethernet Controller + pci:v00001425d00005501* ID_MODEL_FROM_DATABASE=T520-CR Unified Wire Storage Controller @@ -48734,6 +49019,15 @@ pci:v00001425d000055A8* pci:v00001425d000055A9* ID_MODEL_FROM_DATABASE=T580-50A9 Unified Wire Storage Controller +pci:v00001425d000055AA* + ID_MODEL_FROM_DATABASE=T580-50AA Unified Wire Storage Controller + +pci:v00001425d000055AB* + ID_MODEL_FROM_DATABASE=T520-50AB Unified Wire Storage Controller + +pci:v00001425d000055AC* + ID_MODEL_FROM_DATABASE=T540-50AC Unified Wire Storage Controller + pci:v00001425d00005601* ID_MODEL_FROM_DATABASE=T520-CR Unified Wire Storage Controller @@ -48920,6 +49214,9 @@ pci:v00001425d000056AA* pci:v00001425d000056AB* ID_MODEL_FROM_DATABASE=T520-50AB Unified Wire Storage Controller +pci:v00001425d000056AC* + ID_MODEL_FROM_DATABASE=T540-50AC Unified Wire Storage Controller + pci:v00001425d00005701* ID_MODEL_FROM_DATABASE=T520-CR Unified Wire Ethernet Controller @@ -49223,6 +49520,9 @@ pci:v00001425d000058AA* pci:v00001425d000058AB* ID_MODEL_FROM_DATABASE=T520-50AB Unified Wire Ethernet Controller [VF] +pci:v00001425d000058AC* + ID_MODEL_FROM_DATABASE=T540-50AC Unified Wire Ethernet Controller [VF] + pci:v00001425d00006001* ID_MODEL_FROM_DATABASE=T6225-CR Unified Wire Ethernet Controller @@ -49283,6 +49583,9 @@ pci:v00001425d00006085* pci:v00001425d00006086* ID_MODEL_FROM_DATABASE=T6225-6086 Unified Wire Ethernet Controller +pci:v00001425d00006087* + ID_MODEL_FROM_DATABASE=T6225-6087 Unified Wire Ethernet Controller + pci:v00001425d00006401* ID_MODEL_FROM_DATABASE=T6225-CR Unified Wire Ethernet Controller @@ -49343,6 +49646,9 @@ pci:v00001425d00006485* pci:v00001425d00006486* ID_MODEL_FROM_DATABASE=T6225-6086 Unified Wire Ethernet Controller +pci:v00001425d00006487* + ID_MODEL_FROM_DATABASE=T6225-6087 Unified Wire Ethernet Controller + pci:v00001425d00006501* ID_MODEL_FROM_DATABASE=T6225-CR Unified Wire Storage Controller @@ -49403,6 +49709,9 @@ pci:v00001425d00006585* pci:v00001425d00006586* ID_MODEL_FROM_DATABASE=T6225-6086 Unified Wire Storage Controller +pci:v00001425d00006587* + ID_MODEL_FROM_DATABASE=T6225-6087 Unified Wire Storage Controller + pci:v00001425d00006601* ID_MODEL_FROM_DATABASE=T6225-CR Unified Wire Storage Controller @@ -49463,6 +49772,9 @@ pci:v00001425d00006685* pci:v00001425d00006686* ID_MODEL_FROM_DATABASE=T6225-6086 Unified Wire Storage Controller +pci:v00001425d00006687* + ID_MODEL_FROM_DATABASE=T6225-6087 Unified Wire Storage Controller + pci:v00001425d00006801* ID_MODEL_FROM_DATABASE=T6225-CR Unified Wire Ethernet Controller [VF] @@ -49523,6 +49835,9 @@ pci:v00001425d00006885* pci:v00001425d00006886* ID_MODEL_FROM_DATABASE=T6225-6086 Unified Wire Ethernet Controller [VF] +pci:v00001425d00006887* + ID_MODEL_FROM_DATABASE=T6225-6087 Unified Wire Ethernet Controller [VF] + pci:v00001425d0000A000* ID_MODEL_FROM_DATABASE=PE10K Unified Wire Ethernet Controller @@ -51023,6 +51338,9 @@ pci:v000014E4d00001657sv0000103Csd000022BE* pci:v000014E4d00001657sv0000103Csd00003383* ID_MODEL_FROM_DATABASE=NetXtreme BCM5719 Gigabit Ethernet PCIe (Ethernet 1Gb 4-port 331T Adapter) +pci:v000014E4d00001657sv000014E4sd00001904* + ID_MODEL_FROM_DATABASE=NetXtreme BCM5719 Gigabit Ethernet PCIe (4-port 1Gb Ethernet Adapter) + pci:v000014E4d00001659* ID_MODEL_FROM_DATABASE=NetXtreme BCM5721 Gigabit Ethernet PCI Express @@ -51233,6 +51551,9 @@ pci:v000014E4d0000167Dsv0000103Csd00000934* pci:v000014E4d0000167Dsv0000103Csd00000940* ID_MODEL_FROM_DATABASE=NetXtreme BCM5751M Gigabit Ethernet PCI Express (Compaq nw8240 Mobile Workstation) +pci:v000014E4d0000167Dsv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=NetXtreme BCM5751M Gigabit Ethernet PCI Express (Compaq nc6220 Notebook PC) + pci:v000014E4d0000167Dsv000017AAsd00002081* ID_MODEL_FROM_DATABASE=NetXtreme BCM5751M Gigabit Ethernet PCI Express (ThinkPad R60e) @@ -54152,6 +54473,12 @@ pci:v00001556d00001100* pci:v00001556d0000110F* ID_MODEL_FROM_DATABASE=PCI Express Core Reference Design Virtual Function +pci:v00001556d00001110* + ID_MODEL_FROM_DATABASE=XpressRich Reference Design + +pci:v00001556d00001113* + ID_MODEL_FROM_DATABASE=XpressSwitch + pci:v00001557* ID_VENDOR_FROM_DATABASE=MEDIASTAR Co Ltd @@ -54614,6 +54941,9 @@ pci:v000015B3d0000020D* pci:v000015B3d0000020F* ID_MODEL_FROM_DATABASE=MT28908A0 Family [ConnectX-6 Flash Recovery] +pci:v000015B3d00000210* + ID_MODEL_FROM_DATABASE=MT28908A0 Family [ConnectX-6 Secure Flash Recovery] + pci:v000015B3d00000211* ID_MODEL_FROM_DATABASE=MT416842 Family [BlueField SoC Flash Recovery] @@ -54629,6 +54959,9 @@ pci:v000015B3d00000262* pci:v000015B3d00000263* ID_MODEL_FROM_DATABASE=MT27710 [ConnectX-4 Lx Programmable Virtual Function] EN +pci:v000015B3d00000264* + ID_MODEL_FROM_DATABASE=Innova-2 Flex Burn image + pci:v000015B3d00000281* ID_MODEL_FROM_DATABASE=NPS-600 Flash Recovery @@ -54638,6 +54971,9 @@ pci:v000015B3d00001002* pci:v000015B3d00001003* ID_MODEL_FROM_DATABASE=MT27500 Family [ConnectX-3] +pci:v000015B3d00001003sv00001014sd000004B5* + ID_MODEL_FROM_DATABASE=MT27500 Family [ConnectX-3] (PCIe3 40GbE RoCE Converged Host Bus Adapter for Power) + pci:v000015B3d00001003sv0000103Csd00001777* ID_MODEL_FROM_DATABASE=MT27500 Family [ConnectX-3] (InfiniBand FDR/EN 10/40Gb Dual Port 544FLR-QSFP Adapter (Rev Cx)) @@ -54767,6 +55103,9 @@ pci:v000015B3d00001012* pci:v000015B3d00001013* ID_MODEL_FROM_DATABASE=MT27700 Family [ConnectX-4] +pci:v000015B3d00001013sv00001014sd000004F7* + ID_MODEL_FROM_DATABASE=MT27700 Family [ConnectX-4] (PCIe3 2-port 100 GbE (NIC and RoCE) QSFP28 Adapter for Power) + pci:v000015B3d00001013sv000015B3sd00000003* ID_MODEL_FROM_DATABASE=MT27700 Family [ConnectX-4] (Mellanox Technologies ConnectX-4 Stand-up single-port 40GbE MCX413A-BCAT) @@ -54794,6 +55133,9 @@ pci:v000015B3d00001014* pci:v000015B3d00001015* ID_MODEL_FROM_DATABASE=MT27710 Family [ConnectX-4 Lx] +pci:v000015B3d00001015sv000015B3sd00000004* + ID_MODEL_FROM_DATABASE=MT27710 Family [ConnectX-4 Lx] (ConnectX-4 Lx Stand-up dual-port 10GbE MCX4121A-XCAT) + pci:v000015B3d00001015sv000015B3sd00000005* ID_MODEL_FROM_DATABASE=MT27710 Family [ConnectX-4 Lx] (Mellanox Technologies ConnectX-4 Lx Stand-up single-port 40GbE MCX4131A-BCAT) @@ -54899,6 +55241,9 @@ pci:v000015B3d00006732* pci:v000015B3d0000673C* ID_MODEL_FROM_DATABASE=MT26428 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE] +pci:v000015B3d0000673Csv00001014sd00000415* + ID_MODEL_FROM_DATABASE=MT26428 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE] (PCIe2 2-port 4X InfiniBand QDR Adapter for Power) + pci:v000015B3d0000673Csv00001014sd00000487* ID_MODEL_FROM_DATABASE=MT26428 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE] (GX++ 1-port 4X IB QDR Adapter for Power 795) @@ -54962,6 +55307,9 @@ pci:v000015B3d00007122* pci:v000015B3d00007123* ID_MODEL_FROM_DATABASE=NPS-600 network interface VF +pci:v000015B3d00008200* + ID_MODEL_FROM_DATABASE=Innova-2 Flex Shell Logic + pci:v000015B3d0000A2D0* ID_MODEL_FROM_DATABASE=MT416842 BlueField SoC Crypto enabled @@ -55064,6 +55412,9 @@ pci:v000015B7* pci:v000015B7d00002001* ID_MODEL_FROM_DATABASE=Skyhawk Series NVME SSD +pci:v000015B7d00005001* + ID_MODEL_FROM_DATABASE=WD Black NVMe SSD + pci:v000015B8* ID_VENDOR_FROM_DATABASE=ADDI-DATA GmbH @@ -55508,6 +55859,21 @@ pci:v00001629d00001007* pci:v00001629d00002002* ID_MODEL_FROM_DATABASE=Fast Universal Data Output +pci:v00001629d00003100* + ID_MODEL_FROM_DATABASE=IO31000 Frame Synchronizer and I/O + +pci:v00001629d00003200* + ID_MODEL_FROM_DATABASE=IO32000 Frame Synchronizer and I/O + +pci:v00001629d00004002* + ID_MODEL_FROM_DATABASE=High Rate Demodulator + +pci:v00001629d00005001* + ID_MODEL_FROM_DATABASE=High Rate FEC + +pci:v00001629d00006001* + ID_MODEL_FROM_DATABASE=High Rate Demodulator and FEC + pci:v00001631* ID_VENDOR_FROM_DATABASE=Packard Bell B.V. @@ -56402,6 +56768,9 @@ pci:v0000168Cd00000029sv00001186sd00003A7A* pci:v0000168Cd00000029sv00001186sd00003A7D* ID_MODEL_FROM_DATABASE=AR922X Wireless Network Adapter (DWA-552 802.11n Xtreme N Desktop Adapter (rev A3)) +pci:v0000168Cd00000029sv0000168Csd00000029* + ID_MODEL_FROM_DATABASE=AR922X Wireless Network Adapter + pci:v0000168Cd00000029sv0000168Csd00002096* ID_MODEL_FROM_DATABASE=AR922X Wireless Network Adapter (Compex WLM200NX / Wistron DNMA-92) @@ -56939,6 +57308,9 @@ pci:v000016D5d00007013* pci:v000016D5d00007014* ID_MODEL_FROM_DATABASE=AP445: 32-Channel Isolated Digital Output Module +pci:v000016D5d00007015* + ID_MODEL_FROM_DATABASE=AP471 48-Channel TTL Level Digital Input/Output Module + pci:v000016D5d00007016* ID_MODEL_FROM_DATABASE=AP470 48-Channel TTL Level Digital Input/Output Module @@ -56957,6 +57329,12 @@ pci:v000016D5d0000701A* pci:v000016D5d0000701B* ID_MODEL_FROM_DATABASE=AP231-16 16-Bit, 16-Channel Analog Output Module +pci:v000016D5d0000701C* + ID_MODEL_FROM_DATABASE=AP225 12-Bit, 16-Channel Analog Output Module with Waveform Memory + +pci:v000016D5d0000701D* + ID_MODEL_FROM_DATABASE=AP235 16-Bit, 16-Channel Analog Output Module with Waveform Memory + pci:v000016D5d00007021* ID_MODEL_FROM_DATABASE=APA7-201 Reconfigurable Artix-7 FPGA module 48 TTL channels @@ -56972,6 +57350,15 @@ pci:v000016D5d00007024* pci:v000016D5d00007027* ID_MODEL_FROM_DATABASE=AP418 16-Channel High Voltage Digital Input/Output Module +pci:v000016D5d00007029* + ID_MODEL_FROM_DATABASE=AP342 14-bit, 12-Channel Isolated Simultaneous Conversion Analog Input Module + +pci:v000016D5d0000702A* + ID_MODEL_FROM_DATABASE=AP226 12-Bit, 8-Channel Isolated Analog Output Module + +pci:v000016D5d0000702B* + ID_MODEL_FROM_DATABASE=AP236 16-Bit, 8-Channel Isolated Analog Output Module + pci:v000016D5d00007042* ID_MODEL_FROM_DATABASE=AP482 Counter Timer Module with TTL Level Input/Output @@ -59435,6 +59822,15 @@ pci:v00001924d00000A03sv00001924sd0000801A* pci:v00001924d00000A03sv00001924sd0000801B* ID_MODEL_FROM_DATABASE=SFC9220 10/40G Ethernet Controller (SFN8522-R3 8000 Series 10G Adapter) +pci:v00001924d00000B03* + ID_MODEL_FROM_DATABASE=SFC9250 10/25/40/50/100G Ethernet Controller + +pci:v00001924d00000B03sv00001924sd0000801D* + ID_MODEL_FROM_DATABASE=SFC9250 10/25/40/50/100G Ethernet Controller (x2522-R1 2000 Series 10/25G Adapter) + +pci:v00001924d00000B03sv00001924sd0000801E* + ID_MODEL_FROM_DATABASE=SFC9250 10/25/40/50/100G Ethernet Controller (x2542-R1 2000 Series 40/100G Adapter) + pci:v00001924d00001803* ID_MODEL_FROM_DATABASE=SFC9020 10G Ethernet Controller (Virtual Function) @@ -59450,6 +59846,9 @@ pci:v00001924d00001923* pci:v00001924d00001A03* ID_MODEL_FROM_DATABASE=SFC9220 10/40G Ethernet Controller (Virtual Function) +pci:v00001924d00001B03* + ID_MODEL_FROM_DATABASE=SFC9250 10/25/40/50/100G Ethernet Controller (Virtual Function) + pci:v00001924d00006703* ID_MODEL_FROM_DATABASE=SFC4000 rev A iSCSI/Onload [Solarstorm] @@ -59510,6 +59909,9 @@ pci:v00001932* pci:v0000193C* ID_VENDOR_FROM_DATABASE=MAXIM Integrated Products +pci:v0000193D* + ID_VENDOR_FROM_DATABASE=Hangzhou H3C Technologies Co., Ltd. + pci:v0000193F* ID_VENDOR_FROM_DATABASE=AHA Products Group @@ -61340,6 +61742,12 @@ pci:v00001BBFd00000003* pci:v00001BBFd00000004* ID_MODEL_FROM_DATABASE=MAX4 +pci:v00001BCF* + ID_VENDOR_FROM_DATABASE=NEC Corporation + +pci:v00001BCFd0000001C* + ID_MODEL_FROM_DATABASE=Vector Engine 1.0 + pci:v00001BD0* ID_VENDOR_FROM_DATABASE=Astronics Corporation @@ -61871,9 +62279,27 @@ pci:v00001D65d000004DE* pci:v00001D6A* ID_VENDOR_FROM_DATABASE=Aquantia Corp. +pci:v00001D6Ad000007B1* + ID_MODEL_FROM_DATABASE=AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + +pci:v00001D6Ad000008B1* + ID_MODEL_FROM_DATABASE=AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + +pci:v00001D6Ad000011B1* + ID_MODEL_FROM_DATABASE=AQC111 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + +pci:v00001D6Ad000012B1* + ID_MODEL_FROM_DATABASE=AQC112 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + +pci:v00001D6Ad000087B1* + ID_MODEL_FROM_DATABASE=AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + pci:v00001D6Ad0000D107* ID_MODEL_FROM_DATABASE=AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] +pci:v00001D6Ad0000D108* + ID_MODEL_FROM_DATABASE=AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + pci:v00001D6C* ID_VENDOR_FROM_DATABASE=Atomic Rules LLC @@ -61940,6 +62366,96 @@ pci:v00001D87* pci:v00001D8F* ID_VENDOR_FROM_DATABASE=Enyx +pci:v00001D94* + ID_VENDOR_FROM_DATABASE=Chengdu Higon IC Design Co.Ltd + +pci:v00001D94d00001450* + ID_MODEL_FROM_DATABASE=Root Complex + +pci:v00001D94d00001451* + ID_MODEL_FROM_DATABASE=I/O Memory Management Unit + +pci:v00001D94d00001452* + ID_MODEL_FROM_DATABASE=PCIe Dummy Host Bridge + +pci:v00001D94d00001453* + ID_MODEL_FROM_DATABASE=PCIE GPP Bridge + +pci:v00001D94d00001454* + ID_MODEL_FROM_DATABASE=Internal PCIe GPP Bridge 0 to Bus B + +pci:v00001D94d00001455* + ID_MODEL_FROM_DATABASE=PCIe Dummy Function + +pci:v00001D94d00001456* + ID_MODEL_FROM_DATABASE=PSPCCP Command DMA Processor + +pci:v00001D94d00001458* + ID_MODEL_FROM_DATABASE=10 Gb Ethernet Controller Port 0/Port1 + +pci:v00001D94d00001459* + ID_MODEL_FROM_DATABASE=10 Gb Ethernet Controller Port 2/Port3 + +pci:v00001D94d0000145A* + ID_MODEL_FROM_DATABASE=PCIe Dummy Function + +pci:v00001D94d0000145B* + ID_MODEL_FROM_DATABASE=PCIE Non-Transparent Bridge + +pci:v00001D94d0000145C* + ID_MODEL_FROM_DATABASE=USB3 XHCI + +pci:v00001D94d0000145D* + ID_MODEL_FROM_DATABASE=Switch upstream in PCIe + +pci:v00001D94d0000145E* + ID_MODEL_FROM_DATABASE=Switch downstream in PCIe + +pci:v00001D94d0000145F* + ID_MODEL_FROM_DATABASE=USB 3.0 Host controller + +pci:v00001D94d00001460* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 0 + +pci:v00001D94d00001461* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 1 + +pci:v00001D94d00001462* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 2 + +pci:v00001D94d00001463* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 3 + +pci:v00001D94d00001464* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 4 + +pci:v00001D94d00001465* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 5 + +pci:v00001D94d00001466* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 6 + +pci:v00001D94d00001467* + ID_MODEL_FROM_DATABASE=Data Fabric: Device 18h; Function 7 + +pci:v00001D94d00001468* + ID_MODEL_FROM_DATABASE=NTBCCP + +pci:v00001D94d00007901* + ID_MODEL_FROM_DATABASE=FCH SATA Controller [AHCI mode] + +pci:v00001D94d00007904* + ID_MODEL_FROM_DATABASE=FCH SATA Controller [AHCI mode] + +pci:v00001D94d00007906* + ID_MODEL_FROM_DATABASE=FCH SD Flash Controller + +pci:v00001D94d0000790B* + ID_MODEL_FROM_DATABASE=FCH SMBus Controller + +pci:v00001D94d0000790E* + ID_MODEL_FROM_DATABASE=FCH LPC Bridge + pci:v00001D95* ID_VENDOR_FROM_DATABASE=Graphcore Ltd @@ -61973,6 +62489,36 @@ pci:v00001DE5d00001000* pci:v00001DE5d00002000* ID_MODEL_FROM_DATABASE=NoLoad Hardware Development Kit +pci:v00001DEF* + ID_VENDOR_FROM_DATABASE=Ampere Computing, LLC + +pci:v00001DEFd0000E005* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 0 [X-Gene 3] + +pci:v00001DEFd0000E006* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 1 [X-Gene 3] + +pci:v00001DEFd0000E007* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 2 [X-Gene 3] + +pci:v00001DEFd0000E008* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 3 [X-Gene 3] + +pci:v00001DEFd0000E009* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 4 [X-Gene 3] + +pci:v00001DEFd0000E00A* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 5 [X-Gene 3] + +pci:v00001DEFd0000E00B* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 6 [X-Gene 3] + +pci:v00001DEFd0000E00C* + ID_MODEL_FROM_DATABASE=Skylark PCI Express Root Port 7 [X-Gene 3] + +pci:v00001DF7* + ID_VENDOR_FROM_DATABASE=opencpi.org + pci:v00001FC0* ID_VENDOR_FROM_DATABASE=Ascom (Finland) Oy @@ -64088,6 +64634,12 @@ pci:v00007063d00005500* pci:v00007284* ID_VENDOR_FROM_DATABASE=HT OMEGA Inc. +pci:v00007357* + ID_VENDOR_FROM_DATABASE=IOxOS Technologies SA + +pci:v00007357d00007910* + ID_MODEL_FROM_DATABASE=7910 [Althea] + pci:v00007401* ID_VENDOR_FROM_DATABASE=EndRun Technologies @@ -69639,10 +70191,13 @@ pci:v00008086d000015CE* ID_MODEL_FROM_DATABASE=Ethernet Connection X553 10 GbE SFP+ pci:v00008086d000015D0* - ID_MODEL_FROM_DATABASE=Ethernet SDI Adapter FM10420-100GbE-QDA2 + ID_MODEL_FROM_DATABASE=Ethernet SDI Adapter pci:v00008086d000015D0sv00008086sd00000001* - ID_MODEL_FROM_DATABASE=Ethernet SDI Adapter FM10420-100GbE-QDA2 + ID_MODEL_FROM_DATABASE=Ethernet SDI Adapter (FM10420-100GbE-QDA2) + +pci:v00008086d000015D0sv00008086sd00000002* + ID_MODEL_FROM_DATABASE=Ethernet SDI Adapter (FM10840-MTP2) pci:v00008086d000015D1* ID_MODEL_FROM_DATABASE=Ethernet Controller 10G X550T @@ -69716,6 +70271,30 @@ pci:v00008086d000015E4* pci:v00008086d000015E5* ID_MODEL_FROM_DATABASE=Ethernet Connection X553 1GbE +pci:v00008086d000015E7* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 Bridge [Titan Ridge 2C 2018] + +pci:v00008086d000015E8* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 NHI [Titan Ridge 2C 2018] + +pci:v00008086d000015E9* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 2C 2018] + +pci:v00008086d000015EA* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] + +pci:v00008086d000015EB* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] + +pci:v00008086d000015EC* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] + +pci:v00008086d000015EF* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 Bridge [Titan Ridge DD 2018] + +pci:v00008086d000015F0* + ID_MODEL_FROM_DATABASE=JHL7540 Thunderbolt 3 USB Controller [Titan Ridge DD 2018] + pci:v00008086d00001600* ID_MODEL_FROM_DATABASE=Broadwell-U Host Bridge -OPI @@ -70991,6 +71570,9 @@ pci:v00008086d00001E2Dsv00001849sd00001E2D* pci:v00008086d00001E31* ID_MODEL_FROM_DATABASE=7 Series/C210 Series Chipset Family USB xHCI Host Controller +pci:v00008086d00001E31sv0000103Csd0000179B* + ID_MODEL_FROM_DATABASE=7 Series/C210 Series Chipset Family USB xHCI Host Controller (Elitebook 8470p) + pci:v00008086d00001E31sv0000103Csd000017AB* ID_MODEL_FROM_DATABASE=7 Series/C210 Series Chipset Family USB xHCI Host Controller (ProBook 6570b) @@ -71918,6 +72500,9 @@ pci:v00008086d00002448sv00001028sd0000040B* pci:v00008086d00002448sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801 Mobile PCI Bridge (Compaq nw8240 Mobile Workstation) +pci:v00008086d00002448sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801 Mobile PCI Bridge (Compaq nc6220 Notebook PC) + pci:v00008086d00002448sv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801 Mobile PCI Bridge (NX6110/NC6120) @@ -73904,6 +74489,9 @@ pci:v00008086d00002590sv00001028sd00000182* pci:v00008086d00002590sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (Compaq nw8240/nx8220) +pci:v00008086d00002590sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (Compaq nc6220 Notebook PC) + pci:v00008086d00002590sv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (NX6110/NC6120) @@ -74456,6 +75044,9 @@ pci:v00008086d00002641sv00001014sd00000568* pci:v00008086d00002641sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FBM (ICH6M) LPC Interface Bridge (Compaq nw8240/nx8220) +pci:v00008086d00002641sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FBM (ICH6M) LPC Interface Bridge (Compaq nc6220 Notebook PC) + pci:v00008086d00002641sv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801FBM (ICH6M) LPC Interface Bridge (NX6110/NC6120) @@ -74516,6 +75107,9 @@ pci:v00008086d00002658sv00001028sd00000179* pci:v00008086d00002658sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (Compaq nw8240/nx8220) +pci:v00008086d00002658sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (Compaq nc6220 Notebook PC) + pci:v00008086d00002658sv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (NX6110/NC6120) @@ -74555,6 +75149,9 @@ pci:v00008086d00002659sv00001028sd00000179* pci:v00008086d00002659sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (Compaq nw8240/nx8220) +pci:v00008086d00002659sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (Compaq nc6220 Notebook PC) + pci:v00008086d00002659sv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (NX6110/NC6120) @@ -74594,6 +75191,9 @@ pci:v00008086d0000265Asv00001028sd00000179* pci:v00008086d0000265Asv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (Compaq nw8240/nx8220) +pci:v00008086d0000265Asv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (Compaq nc6220 Notebook PC) + pci:v00008086d0000265Asv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (NX6110/NC6120) @@ -74669,6 +75269,9 @@ pci:v00008086d0000265Csv00001028sd00000179* pci:v00008086d0000265Csv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (Compaq nw8240/nx8220) +pci:v00008086d0000265Csv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (Compaq nc6220 Notebook PC) + pci:v00008086d0000265Csv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (NX6110/NC6120) @@ -74702,6 +75305,9 @@ pci:v00008086d00002660* pci:v00008086d00002660sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (Compaq nw8240 Mobile Workstation) +pci:v00008086d00002660sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (Compaq nc6220 Notebook PC) + pci:v00008086d00002660sv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (NX6110/NC6120) @@ -74720,6 +75326,9 @@ pci:v00008086d00002662* pci:v00008086d00002662sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (Compaq nw8240 Mobile Workstation) +pci:v00008086d00002662sv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (Compaq nc6220 Notebook PC) + pci:v00008086d00002662sv0000E4BFsd00000CCD* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (CCD-CALYPSO) @@ -74876,6 +75485,9 @@ pci:v00008086d0000266Fsv00001028sd00000177* pci:v00008086d0000266Fsv0000103Csd00000934* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (Compaq nw8240/nx8220) +pci:v00008086d0000266Fsv0000103Csd00000944* + ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (Compaq nc6220 Notebook PC) + pci:v00008086d0000266Fsv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (NX6110/NC6120) @@ -75092,6 +75704,24 @@ pci:v00008086d0000269Esv000015D9sd00008680* pci:v00008086d0000269Esv000015D9sd00009680* ID_MODEL_FROM_DATABASE=631xESB/632xESB IDE Controller (X7DBN Motherboard) +pci:v00008086d00002700* + ID_MODEL_FROM_DATABASE=Optane SSD 900P Series + +pci:v00008086d00002700sv00008086sd00003900* + ID_MODEL_FROM_DATABASE=Optane SSD 900P Series (900P Series [Add-in Card]) + +pci:v00008086d00002700sv00008086sd00003901* + ID_MODEL_FROM_DATABASE=Optane SSD 900P Series (900P Series [2.5" SFF]) + +pci:v00008086d00002701* + ID_MODEL_FROM_DATABASE=Optane DC P4800X Series SSD + +pci:v00008086d00002701sv00008086sd00003904* + ID_MODEL_FROM_DATABASE=Optane DC P4800X Series SSD (DC P4800X Series [Add-in Card]) + +pci:v00008086d00002701sv00008086sd00003905* + ID_MODEL_FROM_DATABASE=Optane DC P4800X Series SSD (DC P4800X Series [2.5" SFF]) + pci:v00008086d00002770* ID_MODEL_FROM_DATABASE=82945G/GZ/P/PL Memory Controller Hub @@ -75182,6 +75812,9 @@ pci:v00008086d00002792sv00001014sd00000582* pci:v00008086d00002792sv0000103Csd0000099C* ID_MODEL_FROM_DATABASE=Mobile 915GM/GMS/910GML Express Graphics Controller (NX6110/NC6120) +pci:v00008086d00002792sv0000103Csd0000308A* + ID_MODEL_FROM_DATABASE=Mobile 915GM/GMS/910GML Express Graphics Controller (Compaq nc6220 Notebook PC) + pci:v00008086d00002792sv00001043sd00001881* ID_MODEL_FROM_DATABASE=Mobile 915GM/GMS/910GML Express Graphics Controller (GMA 900 915GM Integrated Graphics) @@ -81267,7 +81900,7 @@ pci:v00008086d00004220sv0000103Csd00000934* ID_MODEL_FROM_DATABASE=PRO/Wireless 2200BG [Calexico2] Network Connection (Compaq nw8240/nx8220) pci:v00008086d00004220sv0000103Csd000012F6* - ID_MODEL_FROM_DATABASE=PRO/Wireless 2200BG [Calexico2] Network Connection (nc6120/nx8220/nw8240) + ID_MODEL_FROM_DATABASE=PRO/Wireless 2200BG [Calexico2] Network Connection (nc6120/nc6220/nw8240/nx8220) pci:v00008086d00004220sv00008086sd00002701* ID_MODEL_FROM_DATABASE=PRO/Wireless 2200BG [Calexico2] Network Connection (WM3B2200BG Mini-PCI Card) @@ -81710,6 +82343,9 @@ pci:v00008086d00005910* pci:v00008086d00005912* ID_MODEL_FROM_DATABASE=HD Graphics 630 +pci:v00008086d00005914* + ID_MODEL_FROM_DATABASE=Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + pci:v00008086d00005916* ID_MODEL_FROM_DATABASE=HD Graphics 620 @@ -81719,6 +82355,9 @@ pci:v00008086d00005916sv000017AAsd00002248* pci:v00008086d00005916sv000017AAsd0000224F* ID_MODEL_FROM_DATABASE=HD Graphics 620 (ThinkPad X1 Carbon 5th Gen) +pci:v00008086d00005917* + ID_MODEL_FROM_DATABASE=UHD Graphics 620 + pci:v00008086d0000591D* ID_MODEL_FROM_DATABASE=HD Graphics P630 @@ -82967,6 +83606,12 @@ pci:v00008086d00008C26sv0000103Csd00001909* pci:v00008086d00008C26sv000017AAsd0000220E* ID_MODEL_FROM_DATABASE=8 Series/C220 Series Chipset Family USB EHCI #1 (ThinkPad T440p) +pci:v00008086d00008C26sv000017AAsd00002210* + ID_MODEL_FROM_DATABASE=8 Series/C220 Series Chipset Family USB EHCI #1 (ThinkPad T540p) + +pci:v00008086d00008C26sv00002210sd000017AA* + ID_MODEL_FROM_DATABASE=8 Series/C220 Series Chipset Family USB EHCI #1 (ThinkPad T540p) + pci:v00008086d00008C2D* ID_MODEL_FROM_DATABASE=8 Series/C220 Series Chipset Family USB EHCI #2 @@ -85673,6 +86318,21 @@ pci:v00009005d0000028Fsv0000103Csd00001100* pci:v00009005d0000028Fsv0000103Csd00001101* ID_MODEL_FROM_DATABASE=Smart Storage PQI 12G SAS/PCIe 3 (Smart Array P416ie-m SR G10) +pci:v00009005d0000028Fsv0000152Dsd00008A22* + ID_MODEL_FROM_DATABASE=Smart Storage PQI 12G SAS/PCIe 3 (QS-8204-8i) + +pci:v00009005d0000028Fsv0000152Dsd00008A23* + ID_MODEL_FROM_DATABASE=Smart Storage PQI 12G SAS/PCIe 3 (QS-8238-16i) + +pci:v00009005d0000028Fsv0000152Dsd00008A24* + ID_MODEL_FROM_DATABASE=Smart Storage PQI 12G SAS/PCIe 3 (QS-8236-16i) + +pci:v00009005d0000028Fsv0000152Dsd00008A36* + ID_MODEL_FROM_DATABASE=Smart Storage PQI 12G SAS/PCIe 3 (QS-8240-24i) + +pci:v00009005d0000028Fsv0000152Dsd00008A37* + ID_MODEL_FROM_DATABASE=Smart Storage PQI 12G SAS/PCIe 3 (QS-8242-24i) + pci:v00009005d0000028Fsv00009005sd00000800* ID_MODEL_FROM_DATABASE=Smart Storage PQI 12G SAS/PCIe 3 (SmartRAID 3154-8i) @@ -86253,10 +86913,10 @@ pci:v0000BDBDd0000A127* ID_MODEL_FROM_DATABASE=UltraStudio Express pci:v0000BDBDd0000A129* - ID_MODEL_FROM_DATABASE=UltraStudio Mini Monitor + ID_MODEL_FROM_DATABASE=UltraStudio Mini Recorder pci:v0000BDBDd0000A12A* - ID_MODEL_FROM_DATABASE=UltraStudio Mini Recorder + ID_MODEL_FROM_DATABASE=UltraStudio Mini Monitor pci:v0000BDBDd0000A12D* ID_MODEL_FROM_DATABASE=UltraStudio 4K @@ -86300,6 +86960,21 @@ pci:v0000BDBDd0000A13F* pci:v0000BDBDd0000A140* ID_MODEL_FROM_DATABASE=DeckLink Duo 2 +pci:v0000BDBDd0000A141* + ID_MODEL_FROM_DATABASE=UltraStudio 4K Extreme 3 + +pci:v0000BDBDd0000A142* + ID_MODEL_FROM_DATABASE=UltraStudio HD Mini + +pci:v0000BDBDd0000A143* + ID_MODEL_FROM_DATABASE=DeckLink Mini Recorder 4K + +pci:v0000BDBDd0000A144* + ID_MODEL_FROM_DATABASE=DeckLink Mini Monitor 4K + +pci:v0000BDBDd0000A14B* + ID_MODEL_FROM_DATABASE=DeckLink 8K Pro + pci:v0000C001* ID_VENDOR_FROM_DATABASE=TSI Telsys diff --git a/hwdb/20-usb-vendor-model.hwdb b/hwdb/20-usb-vendor-model.hwdb index 632c46f3b..8458828ad 100644 --- a/hwdb/20-usb-vendor-model.hwdb +++ b/hwdb/20-usb-vendor-model.hwdb @@ -48422,6 +48422,93 @@ usb:v1519* usb:v1519p0020* ID_MODEL_FROM_DATABASE=HSIC Device +usb:v151F* + ID_VENDOR_FROM_DATABASE=Opal Kelly Incorporated + +usb:v151Fp0020* + ID_MODEL_FROM_DATABASE=XEM3001v1 + +usb:v151Fp0021* + ID_MODEL_FROM_DATABASE=XEM3001v2 + +usb:v151Fp0022* + ID_MODEL_FROM_DATABASE=XEM3010 + +usb:v151Fp0023* + ID_MODEL_FROM_DATABASE=XEM3005 + +usb:v151Fp0028* + ID_MODEL_FROM_DATABASE=XEM3050 + +usb:v151Fp002B* + ID_MODEL_FROM_DATABASE=XEM5010 + +usb:v151Fp002C* + ID_MODEL_FROM_DATABASE=XEM6001 + +usb:v151Fp002D* + ID_MODEL_FROM_DATABASE=XEM6010-LX45 + +usb:v151Fp002E* + ID_MODEL_FROM_DATABASE=XEM6010-LX150 + +usb:v151Fp0030* + ID_MODEL_FROM_DATABASE=XEM6006-LX16 + +usb:v151Fp0033* + ID_MODEL_FROM_DATABASE=XEM6002-LX9 + +usb:v151Fp0034* + ID_MODEL_FROM_DATABASE=XEM7001-A15 + +usb:v151Fp0036* + ID_MODEL_FROM_DATABASE=XEM7010-A50 + +usb:v151Fp0037* + ID_MODEL_FROM_DATABASE=XEM7010-A200 + +usb:v151Fp0120* + ID_MODEL_FROM_DATABASE=ZEM4310 + +usb:v151Fp0121* + ID_MODEL_FROM_DATABASE=XEM6310-LX45 + +usb:v151Fp0122* + ID_MODEL_FROM_DATABASE=XEM6310-LX150 + +usb:v151Fp0123* + ID_MODEL_FROM_DATABASE=XEM6310MT-LX45T + +usb:v151Fp0125* + ID_MODEL_FROM_DATABASE=XEM7350-K70T + +usb:v151Fp0126* + ID_MODEL_FROM_DATABASE=XEM7350-K160T + +usb:v151Fp0127* + ID_MODEL_FROM_DATABASE=XEM7350-K410T + +usb:v151Fp0128* + ID_MODEL_FROM_DATABASE=XEM6310MT-LX150T + +usb:v151Fp0129* + ID_MODEL_FROM_DATABASE=ZEM5305-A2 + +usb:v151Fp012B* + ID_MODEL_FROM_DATABASE=XEM7360-K160T + +usb:v151Fp012C* + ID_MODEL_FROM_DATABASE=XEM7360-K410T + +usb:v151Fp012D* + ID_MODEL_FROM_DATABASE=ZEM5310-A4 + +usb:v151Fp0130* + ID_MODEL_FROM_DATABASE=XEM7310-A75 + +usb:v151Fp0131* + ID_MODEL_FROM_DATABASE=XEM7310-A200 + usb:v1520* ID_VENDOR_FROM_DATABASE=Bitwire Corp. @@ -55958,6 +56045,45 @@ usb:v24E1p3001* usb:v24E1p3005* ID_MODEL_FROM_DATABASE=Radius +usb:v2516* + ID_VENDOR_FROM_DATABASE=Cooler Master Co., Ltd. + +usb:v2516p0003* + ID_MODEL_FROM_DATABASE=Storm Xornet + +usb:v2516p0004* + ID_MODEL_FROM_DATABASE=Storm QuickFire Rapid Mechanical Keyboard + +usb:v2516p0006* + ID_MODEL_FROM_DATABASE=Storm Recon + +usb:v2516p0007* + ID_MODEL_FROM_DATABASE=Storm Sentinel Advance II + +usb:v2516p0009* + ID_MODEL_FROM_DATABASE=Storm Quick Fire PRO + +usb:v2516p0011* + ID_MODEL_FROM_DATABASE=Storm Quick Fire TK + +usb:v2516p0017* + ID_MODEL_FROM_DATABASE=CM Storm Quick Fire Stealth + +usb:v2516p0020* + ID_MODEL_FROM_DATABASE=QuickFire Rapid-i Keyboard + +usb:v2516p0027* + ID_MODEL_FROM_DATABASE=CM Storm Coolermaster Novatouch TKL + +usb:v2516p002D* + ID_MODEL_FROM_DATABASE=Alcor mouse + +usb:v2516p0047* + ID_MODEL_FROM_DATABASE=MasterKeys Pro L + +usb:v2516p9494* + ID_MODEL_FROM_DATABASE=Sirus Headset + usb:v2632* ID_VENDOR_FROM_DATABASE=TwinMOS diff --git a/hwdb/60-evdev.hwdb b/hwdb/60-evdev.hwdb index eb04de686..ff28b7e03 100644 --- a/hwdb/60-evdev.hwdb +++ b/hwdb/60-evdev.hwdb @@ -47,6 +47,7 @@ evdev:input:b0003v05ACp021B* # Macbook4,1 evdev:input:b0003v05ACp0229* +evdev:input:b0003v05ACp022A* EVDEV_ABS_00=256:1471:12 EVDEV_ABS_01=256:831:12 @@ -94,6 +95,11 @@ evdev:input:b0003v05ACp025B* # ASUS ######################################### +# Asus F3Sg +evdev:name:SynPS/2 Synaptics TouchPad:dmi:*svnASUSTeKComputerInc.:pnF3Sg:* + EVDEV_ABS_00=0:6143:136 + EVDEV_ABS_01=1103:5856:61 + # Asus VivoBook E402SA evdev:name:Elan Touchpad:dmi:*svnASUSTeKCOMPUTERINC.:pnE402SA* EVDEV_ABS_00=::29 diff --git a/hwdb/60-keyboard.hwdb b/hwdb/60-keyboard.hwdb index 33895ed75..a265f1223 100644 --- a/hwdb/60-keyboard.hwdb +++ b/hwdb/60-keyboard.hwdb @@ -478,6 +478,10 @@ evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHewlett-Packard*:pnHP*Pavilion*dv7*Notebook*PC: evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHewlett-Packard*:pn*[pP][aA][vV][iI][lL][iI][oO][nN]*13*x360*:pvr* KEYBOARD_KEY_d7=unknown +# Purism Librem 13 V2 +evdev:atkbd:dmi:bvn*:bvr*:bd*:svnPurism*:pn*Librem13v2*:pvr* + KEYBOARD_KEY_56=backslash + # Elitebook evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHewlett-Packard*:pn*Compaq*:pvr* evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHewlett-Packard*:pn*EliteBook*:pvr* @@ -557,6 +561,7 @@ evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHewlett-Packard*:pnHP*ProBook4*:pvr* evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHP*:pnHP*ProBook*4*:pvr* # HP ZBook evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHewlett-Packard*:pnHPZBook*:pvr* +evdev:atkbd:dmi:bvn*:bvr*:bd*:svnHP*:pnHPZBook*:pvr* KEYBOARD_KEY_81=f20 # Fn+F8; Microphone mute button, should be micmute # HP Folio 1040g2 @@ -763,14 +768,14 @@ evdev:input:b0003v046DpC308* # Cordless Desktop S510 evdev:input:b0003v046DpC50C* - KEYBOARD_KEY_d4=zoomin - KEYBOARD_KEY_cc=zoomout + KEYBOARD_KEY_d4=up # zoomin + KEYBOARD_KEY_cc=down # zoomout # Wave cordless evdev:input:b0003v046DpC317* KEYBOARD_KEY_9001c=scale # expo - KEYBOARD_KEY_9001f=zoomout - KEYBOARD_KEY_90020=zoomin + KEYBOARD_KEY_9001f=down # zoomout + KEYBOARD_KEY_90020=up # zoomin KEYBOARD_KEY_9003d=prog1 # gadget KEYBOARD_KEY_90005=camera KEYBOARD_KEY_90018=media @@ -787,8 +792,8 @@ evdev:input:b0003v046DpC317* # Wave cordless evdev:input:b0003v046DpC517* - KEYBOARD_KEY_c101f=zoomout - KEYBOARD_KEY_c1020=zoomin + KEYBOARD_KEY_c101f=down # zoomout + KEYBOARD_KEY_c1020=up # zoomin KEYBOARD_KEY_c1005=camera KEYBOARD_KEY_c0183=media KEYBOARD_KEY_c1041=wordprocessor @@ -813,8 +818,8 @@ evdev:input:b0003v046DpC52[9B]* KEYBOARD_KEY_0c018a=mail KEYBOARD_KEY_0c0221=search KEYBOARD_KEY_0c00b8=ejectcd - KEYBOARD_KEY_0c022d=zoomin - KEYBOARD_KEY_0c022e=zoomout + KEYBOARD_KEY_0c022d=up # zoomin + KEYBOARD_KEY_0c022e=down # zoomout # Logitech Presenter R400 evdev:input:b0003v046DpC52D* @@ -889,8 +894,8 @@ evdev:atkbd:dmi:bvn*:bvr*:bd*:svnMEDIONNB:pnA555*:pvr* # Microsoft Natural Ergonomic Keyboard 4000 evdev:input:b0003v045Ep00DB* - KEYBOARD_KEY_c022d=zoomin - KEYBOARD_KEY_c022e=zoomout + KEYBOARD_KEY_c022d=up # zoomin + KEYBOARD_KEY_c022e=down # zoomout ########################################################### # Micro Star @@ -925,6 +930,7 @@ evdev:atkbd:dmi:bvn*:bvr*:bd*:svnMICRO-STAR*:pn*U-100*:pvr* evdev:atkbd:dmi:bvn*:bvr*:bd*:svnMICRO-STAR*:pn*U100*:pvr* evdev:atkbd:dmi:bvn*:bvr*:bd*:svnMICRO-STAR*:pn*N033:* evdev:atkbd:dmi:bvn*:bvr*:bd*:svnMicro-Star*:pn*VR420*:pvr* +evdev:atkbd:dmi:bvn*:bvr*:bd*:svnMicro-Star*:pn*PR200*:pvr* KEYBOARD_KEY_f7=reserved KEYBOARD_KEY_f8=reserved @@ -1182,8 +1188,8 @@ evdev:name:Sony Vaio Keys:dmi:bvn*:bvr*:bd*:svnSony*:pnVGN-Z21*:pvr* KEYBOARD_KEY_00=brightnessdown # Fn+F5 KEYBOARD_KEY_10=brightnessup # Fn+F6 KEYBOARD_KEY_11=switchvideomode # Fn+F7 - KEYBOARD_KEY_12=zoomout - KEYBOARD_KEY_14=zoomin + KEYBOARD_KEY_12=down # zoomout + KEYBOARD_KEY_14=up # zoomin KEYBOARD_KEY_15=suspend # Fn+F12 KEYBOARD_KEY_17=prog1 KEYBOARD_KEY_20=media @@ -1193,8 +1199,8 @@ evdev:name:Sony Vaio Keys:dmi:bvn*:bvr*:bd*:svnSony*:pnVGN-FW250*:pvr* evdev:name:Sony Vaio Keys:dmi:bvn*:bvr*:bd*:svnSony*:pnVPC*:pvr* KEYBOARD_KEY_05=f21 # Fn+F1 -> KEY_F21 (The actual touchpad toggle) - KEYBOARD_KEY_0d=zoomout # Fn+F9 - KEYBOARD_KEY_0e=zoomin # Fn+F10 + KEYBOARD_KEY_0d=down # Fn+F9 zoomout + KEYBOARD_KEY_0e=up # Fn+F10 zoomin ########################################################### # Toshiba @@ -1283,6 +1289,68 @@ evdev:atkbd:dmi:bvn*:bvr*:bd*:svnZepto:pnZnote*6615WD:* KEYBOARD_KEY_ae=! # volume down KEYBOARD_KEY_b0=! # volume up +########################################## +# Ideazon +########################################## + +# Ideazon Zboard Merc +evdev:input:b0003v1038p0210* + KEYBOARD_KEY_c0227=q + KEYBOARD_KEY_c0223=w + KEYBOARD_KEY_c0221=e + KEYBOARD_KEY_c0224=a + KEYBOARD_KEY_c0226=s + KEYBOARD_KEY_c0225=d + KEYBOARD_KEY_c0192=tab + KEYBOARD_KEY_c018a=leftalt + KEYBOARD_KEY_c022a=r + KEYBOARD_KEY_c0183=f10 + KEYBOARD_KEY_70059=1 + KEYBOARD_KEY_7005a=2 + KEYBOARD_KEY_7005b=3 + KEYBOARD_KEY_7005c=4 + KEYBOARD_KEY_7005d=5 + KEYBOARD_KEY_7005e=6 + KEYBOARD_KEY_7005f=7 + KEYBOARD_KEY_70060=8 + KEYBOARD_KEY_70061=9 + KEYBOARD_KEY_70062=0 + KEYBOARD_KEY_70057=equal + KEYBOARD_KEY_70077=capslock + KEYBOARD_KEY_70054=leftshift + KEYBOARD_KEY_70063=leftctrl + KEYBOARD_KEY_7006b=t + KEYBOARD_KEY_70067=f + KEYBOARD_KEY_7006c=g + KEYBOARD_KEY_7006d=v + KEYBOARD_KEY_7006e=b + KEYBOARD_KEY_70074=p + KEYBOARD_KEY_7006f=c + KEYBOARD_KEY_70055=space + KEYBOARD_KEY_70076=f9 + KEYBOARD_KEY_70046=f11 + KEYBOARD_KEY_70079=f6 + +# Ideazon Zboard Fang +evdev:input:b0003v1038p0310* + KEYBOARD_KEY_70059=1 + KEYBOARD_KEY_7005b=3 + KEYBOARD_KEY_70040=equal + KEYBOARD_KEY_70042=l + KEYBOARD_KEY_7002b=tab + KEYBOARD_KEY_7005e=capslock + KEYBOARD_KEY_700e2=leftalt + KEYBOARD_KEY_700e1=leftshift + KEYBOARD_KEY_700e0=leftctrl + KEYBOARD_KEY_70038=z + KEYBOARD_KEY_7003e=t + KEYBOARD_KEY_70015=r + KEYBOARD_KEY_70010=g + KEYBOARD_KEY_70050=n + KEYBOARD_KEY_70030=f9 + KEYBOARD_KEY_7002f=f11 + KEYBOARD_KEY_70046=f6 + ########################################################### # Other ########################################################### diff --git a/hwdb/60-sensor.hwdb b/hwdb/60-sensor.hwdb index b46e0564d..2e67741c3 100644 --- a/hwdb/60-sensor.hwdb +++ b/hwdb/60-sensor.hwdb @@ -66,12 +66,21 @@ sensor:modalias:acpi:INVN6500*:dmi:*svnASUSTeK*:*pnT100CHI* sensor:modalias:acpi:INVN6500*:dmi:*svnASUSTeK*:*pnT100TA* ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1 +sensor:modalias:acpi:INVN6500*:dmi:*svnASUSTeK*:pnT200TA* + ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1 + +sensor:modalias:acpi:INVN6500*:dmi:*svn*ASUSTeK*:*pn*TP300LA* + ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1 + sensor:modalias:acpi:INVN6500*:dmi:*svn*ASUSTeK*:*pn*TP300LD* ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1 sensor:modalias:acpi:SMO8500*:dmi:*svn*ASUSTeK*:*pn*TP300LJ* ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 +sensor:modalias:acpi:SMO8500*:dmi:*svn*ASUSTeK*:*pn*TP500LB* + ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1 + ######################################### # Axxo ######################################### @@ -82,7 +91,11 @@ sensor:modalias:acpi:SMO8500*:dmi:*:svnStandard:pnWCBT1011:* # Chuwi ######################################### -# Chuwi Vi8 Plus +# Chuwi Vi8 (CWI506) +sensor:modalias:acpi:BMA250E*:dmi:bvnINSYDECorp.:bvrCHUWI.D86JLBNR*:svnInsyde:pni86:* + ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 + +# Chuwi Vi8 Plus (CWI519) sensor:modalias:acpi:BOSC0200*:dmi:*:svnHampoo:pnD2D3_Vi8A1:* ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 @@ -90,6 +103,10 @@ sensor:modalias:acpi:BOSC0200*:dmi:*:svnHampoo:pnD2D3_Vi8A1:* sensor:modalias:acpi:BOSC0200*:dmi:*:svnHampoo:pnX1D3_C806N:* ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 +# Chuwi Hi10 Pro +sensor:modalias:acpi:BOSC0200*:dmi:*:svn*CHUWIINNOVATIONANDTECHNOLOGY*:pnHi10protablet:* + ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 + # Chuwi Hi13 sensor:modalias:acpi:KIOX000A*:dmi:svnChuwi*:pnHi13 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1 @@ -99,7 +116,7 @@ sensor:modalias:acpi:KIOX000A*:dmi:svnChuwi*:pnHi13 # match the entire dmi-alias, assuming that the use of a BOSC0200 + # bios-version + bios-date combo is unique sensor:modalias:acpi:BOSC0200*:dmi:bvnAmericanMegatrendsInc.:bvr5.11:bd05/07/2016:svnDefaultstring:pnDefaultstring:pvrDefaultstring:rvnHampoo:rnCherryTrailCR:rvrDefaultstring:cvnDefaultstring:ct3:cvrDefaultstring: - ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 + ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1 ######################################### # Cube @@ -154,6 +171,10 @@ sensor:modalias:acpi:KIOX000A*:dmi:bvnAmericanMegatrendsInc.:*:svnTobefilledbyO. sensor:modalias:acpi:BOSC0200*:dmi:bvnINSYDECorp.:bvrjumperx.T87.KFBNEE* ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 +# EZpad 6 Pro +sensor:modalias:acpi:BOSC0200*:dmi:*:svnJumper:pnEZpad:*:rvr.A006:* + ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, -1, 0; 0, 0, 1 + ######################################### # Lamina ######################################### @@ -172,6 +193,14 @@ sensor:modalias:acpi:NCPE0388*:dmi:*:rnLenovoYOGA510-14IKB:* sensor:modalias:acpi:BOSC0200:BOSC0200:dmi:*ThinkPadYoga11e3rdGen* ACCEL_MOUNT_MATRIX=0, 1, 0; -1, 0, 0; 0, 0, 1 +# Miix3-1030 +sensor:modalias:acpi:BMA250E*:dmi:bvnLENOVO:*:pvrLenovoMIIX3-1030:* + ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 + +# IdeaPad Miix 320 +sensor:modalias:acpi:*BOSC0200*:dmi:*:svnLENOVO*:pn80XF:* + ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1 + ######################################### # Peaq ######################################### @@ -200,10 +229,20 @@ sensor:modalias:acpi:BMA250E*:dmi:*:svnShenzhenPLOYER*:pnMOMO7W:* sensor:modalias:acpi:BMA250E*:dmi:bvnAmericanMegatrendsInc.:bvr3BAIR1013:bd08/22/2014:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnAMICorporation:rnAptioCRB:rvrTobefilledbyO.E.M.:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.: ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1 +######################################### +# Teclast +######################################### +sensor:modalias:acpi:KIOX000A*:dmi:*:svnTECLAST:pnX80Pro:* + ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1 + +sensor:modalias:acpi:KIOX000A*:dmi:*:svnTECLAST:pnX98PlusII:* + ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1 + ######################################### # Trekstor ######################################### sensor:modalias:acpi:BMA250*:dmi:*:bvrTREK.G.WI71C.JGBMRBA*:*:svnInsyde:pnST70416-6:* +sensor:modalias:acpi:BMA250*:dmi:*:bvrTREK.G.WI71C.JGBMRBA*:*:svnTrekStor:pnSurfTabwintron7.0ST70416-6:* ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1 ######################################### diff --git a/hwdb/70-mouse.hwdb b/hwdb/70-mouse.hwdb index 840fa4c9a..48fb1eb4d 100644 --- a/hwdb/70-mouse.hwdb +++ b/hwdb/70-mouse.hwdb @@ -548,6 +548,10 @@ mouse:usb:v045ep07b1:name:Microsoft Microsoft® Nano Transceiver v1.0: mouse:bluetooth:v045ep0702:name:Microsoft Wireless Laser Mouse 8000: MOUSE_DPI=1000@1000 +# Microsoft Sculpt Comfort Mouse +mouse:bluetooth:v045ep07a2:name:Microsoft Sculpt Comfort Mouse: + MOUSE_DPI=1000@2000 + # Microsoft Arc Touch Mouse SE: mouse:bluetooth:v045ep07f3:name:Arc Touch Mouse SE: MOUSE_DPI=1000@2000 diff --git a/hwdb/70-pointingstick.hwdb b/hwdb/70-pointingstick.hwdb index f1a86ff20..3f070e09d 100644 --- a/hwdb/70-pointingstick.hwdb +++ b/hwdb/70-pointingstick.hwdb @@ -108,6 +108,9 @@ evdev:name:TPPS/2 IBM TrackPoint:dmi:bvn*:bvr*:bd*:svnLENOVO:pn*:pvrThinkPadX220 evdev:name:TPPS/2 IBM TrackPoint:dmi:bvn*:bvr*:bd*:svnLENOVO:pn*:pvrThinkPadX230:* # Lenovo Thinkpad X230 tablet evdev:name:TPPS/2 IBM TrackPoint:dmi:bvn*:bvr*:bd*:svnLENOVO:pn*:pvrThinkPadX230Tablet:* +# Lenovo ThinkPad *30 series +evdev:name:TPPS/2 IBM TrackPoint:dmi:bvn*:bvr*:bd*:svnLENOVO:pn*:pvrThinkPad??30:* +evdev:name:TPPS/2 IBM TrackPoint:dmi:bvn*:bvr*:bd*:svnLENOVO:pn*:pvrThinkPad??30?:* # Lenovo Thinkpad *40 series evdev:name:TPPS/2 IBM TrackPoint:dmi:bvn*:bvr*:bd*:svnLENOVO:pn*:pvrThinkPad??40:* evdev:name:TPPS/2 IBM TrackPoint:dmi:bvn*:bvr*:bd*:svnLENOVO:pn*:pvrThinkPad??40?:* diff --git a/hwdb/ma-large.txt b/hwdb/ma-large.txt index f05f35a4b..04dc45a4a 100644 --- a/hwdb/ma-large.txt +++ b/hwdb/ma-large.txt @@ -2720,12 +2720,6 @@ D8DD5F (base 16) BALMUDA Inc. Moffett Field CALIFORNIA 94035 US -24-C8-48 (hex) mywerk system GmbH -24C848 (base 16) mywerk system GmbH - Dennis-Gabor-Str. 2 - Potsdam Brandenburg 14469 - DE - 2C-18-AE (hex) Trend Electronics Co., Ltd. 2C18AE (base 16) Trend Electronics Co., Ltd. 4F-3, No 17, Lane 77, Sec. 2 @@ -8894,12 +8888,6 @@ A8CE90 (base 16) CVC London SW20 0JW GB -00-22-18 (hex) Verivue Inc. -002218 (base 16) Verivue Inc. - 3 Carlisle Road - Westford MA 01886 - US - 00-22-12 (hex) CAI Networks, Inc. 002212 (base 16) CAI Networks, Inc. 4790 Irvine Blvd @@ -11846,12 +11834,6 @@ A8CE90 (base 16) CVC Gdansk 80299 PL -00-15-C4 (hex) FLOVEL CO., LTD. -0015C4 (base 16) FLOVEL CO., LTD. - The Tachihi building No,3 hall, 6-1, Sakae-cho, - Tokyo 190-0003 - US - 00-15-C9 (hex) Gumstix, Inc 0015C9 (base 16) Gumstix, Inc 3130 Alpine Road @@ -18212,12 +18194,6 @@ A8CE90 (base 16) CVC HSIN-CHU TW -00-50-89 (hex) SAFETY MANAGEMENT SYSTEMS -005089 (base 16) SAFETY MANAGEMENT SYSTEMS - BRANDERIJSTRAAT 6 - 5223 AS 'S-HERTOGENBOSCH' - NL - 00-50-66 (hex) AtecoM GmbH advanced telecomunication modules 005066 (base 16) AtecoM GmbH advanced telecomunication modules KAISERSTR. 100 @@ -26108,330 +26084,12 @@ D4258B (base 16) Intel Corporate Kulim Kedah 09000 MY -B4-F2-E8 (hex) ARRIS Group, Inc. -B4F2E8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -D0-E5-4D (hex) ARRIS Group, Inc. -D0E54D (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -70-85-C6 (hex) ARRIS Group, Inc. -7085C6 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -44-AA-F5 (hex) ARRIS Group, Inc. -44AAF5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-50-94 (hex) ARRIS Group, Inc. -005094 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -FC-8E-7E (hex) ARRIS Group, Inc. -FC8E7E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 00-E1-8C (hex) Intel Corporate 00E18C (base 16) Intel Corporate Lot 8, Jalan Hi-Tech 2/3 Kulim Kedah 09000 MY -90-3E-AB (hex) ARRIS Group, Inc. -903EAB (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -14-CF-E2 (hex) ARRIS Group, Inc. -14CFE2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -90-0D-CB (hex) ARRIS Group, Inc. -900DCB (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -20-73-55 (hex) ARRIS Group, Inc. -207355 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -C8-3F-B4 (hex) ARRIS Group, Inc. -C83FB4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E0-B7-0A (hex) ARRIS Group, Inc. -E0B70A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -78-71-9C (hex) ARRIS Group, Inc. -78719C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -D4-05-98 (hex) ARRIS Group, Inc. -D40598 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -94-62-69 (hex) ARRIS Group, Inc. -946269 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -8C-7F-3B (hex) ARRIS Group, Inc. -8C7F3B (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -40-B7-F3 (hex) ARRIS Group, Inc. -40B7F3 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -20-E5-64 (hex) ARRIS Group, Inc. -20E564 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -90-B1-34 (hex) ARRIS Group, Inc. -90B134 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -3C-43-8E (hex) ARRIS Group, Inc. -3C438E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E8-6D-52 (hex) ARRIS Group, Inc. -E86D52 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-D0 (hex) ARRIS Group, Inc. -0015D0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-CE (hex) ARRIS Group, Inc. -001DCE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-D4 (hex) ARRIS Group, Inc. -001DD4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-CD (hex) ARRIS Group, Inc. -001DCD (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -CC-A4-62 (hex) ARRIS Group, Inc. -CCA462 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -D0-39-B3 (hex) ARRIS Group, Inc. -D039B3 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-00-C5 (hex) ARRIS Group, Inc. -0000C5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -3C-36-E4 (hex) ARRIS Group, Inc. -3C36E4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-AC-E0 (hex) ARRIS Group, Inc. -00ACE0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -38-4C-90 (hex) ARRIS Group, Inc. -384C90 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -D4-0A-A9 (hex) ARRIS Group, Inc. -D40AA9 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -48-D3-43 (hex) ARRIS Group, Inc. -48D343 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E0-22-02 (hex) ARRIS Group, Inc. -E02202 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -2C-1D-B8 (hex) ARRIS Group, Inc. -2C1DB8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E4-57-40 (hex) ARRIS Group, Inc. -E45740 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-A3 (hex) ARRIS Group, Inc. -0023A3 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -64-ED-57 (hex) ARRIS Group, Inc. -64ED57 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-EE (hex) ARRIS Group, Inc. -0023EE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-21-43 (hex) ARRIS Group, Inc. -002143 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-AF (hex) ARRIS Group, Inc. -0023AF (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1A-DE (hex) ARRIS Group, Inc. -001ADE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-9A (hex) ARRIS Group, Inc. -00159A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-08-0E (hex) ARRIS Group, Inc. -00080E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-50-E3 (hex) ARRIS Group, Inc. -0050E3 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -94-CC-B9 (hex) ARRIS Group, Inc. -94CCB9 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1E-46 (hex) ARRIS Group, Inc. -001E46 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-18-C0 (hex) ARRIS Group, Inc. -0018C0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1A-66 (hex) ARRIS Group, Inc. -001A66 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-19-2C (hex) ARRIS Group, Inc. -00192C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-25-F1 (hex) ARRIS Group, Inc. -0025F1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -F8-7B-7A (hex) ARRIS Group, Inc. -F87B7A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -58-56-E8 (hex) ARRIS Group, Inc. -5856E8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 14-5E-45 (hex) Kaleao Limited 145E45 (base 16) Kaleao Limited Sheraton House, Castle Park @@ -27761,18 +27419,6 @@ F417B8 (base 16) AirTies Wireless Networks Augsburg Bayern 86199 DE -EC-70-97 (hex) ARRIS Group, Inc. -EC7097 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -C0-A0-0D (hex) ARRIS Group, Inc. -C0A00D (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - EC-83-50 (hex) Microsoft Corporation EC8350 (base 16) Microsoft Corporation One Microsoft Way @@ -28001,6 +27647,12 @@ D89C67 (base 16) Hon Hai Precision Ind. Co.,Ltd. Gumi Gyeongbuk 730-350 KR +28-BF-89 (hex) Fiberhome Telecommunication Technologies Co.,LTD +28BF89 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + C8-40-29 (hex) Fiberhome Telecommunication Technologies Co.,LTD C84029 (base 16) Fiberhome Telecommunication Technologies Co.,LTD No.5 DongXin Road @@ -28013,16 +27665,10 @@ CC0677 (base 16) Fiberhome Telecommunication Technologies Co.,LTD Wuhan Hubei 430074 CN -1C-39-8A (hex) Fiberhome Telecommunication Technologies Co.,LTD -1C398A (base 16) Fiberhome Telecommunication Technologies Co.,LTD +B0-E2-E5 (hex) Fiberhome Telecommunication Technologies Co.,LTD +B0E2E5 (base 16) Fiberhome Telecommunication Technologies Co.,LTD No.5 DongXin Road - Wuhan Hubei 430074 - CN - -10-77-B0 (hex) Fiberhome Telecommunication Technologies Co.,LTD -1077B0 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 + Wuhan City Hubei Province 430074 CN 88-94-7E (hex) Fiberhome Telecommunication Technologies Co.,LTD @@ -28037,16 +27683,16 @@ F4573E (base 16) Fiberhome Telecommunication Technologies Co.,LTD Wuhan Hubei 430074 CN -28-BF-89 (hex) Fiberhome Telecommunication Technologies Co.,LTD -28BF89 (base 16) Fiberhome Telecommunication Technologies Co.,LTD +1C-39-8A (hex) Fiberhome Telecommunication Technologies Co.,LTD +1C398A (base 16) Fiberhome Telecommunication Technologies Co.,LTD No.5 DongXin Road Wuhan Hubei 430074 CN -B0-E2-E5 (hex) Fiberhome Telecommunication Technologies Co.,LTD -B0E2E5 (base 16) Fiberhome Telecommunication Technologies Co.,LTD +10-77-B0 (hex) Fiberhome Telecommunication Technologies Co.,LTD +1077B0 (base 16) Fiberhome Telecommunication Technologies Co.,LTD No.5 DongXin Road - Wuhan City Hubei Province 430074 + Wuhan Hubei 430074 CN E4-30-22 (hex) Hanwha Techwin Security Vietnam @@ -28067,144 +27713,6 @@ F0B5B7 (base 16) Disruptive Technologies Research AS Blomsterdalen Hordaland 5258 NO -54-AE-27 (hex) Apple, Inc. -54AE27 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F4-37-B7 (hex) Apple, Inc. -F437B7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-31-C1 (hex) Apple, Inc. -7831C1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-7C-92 (hex) Apple, Inc. -8C7C92 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-E1-40 (hex) Apple, Inc. -D0E140 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-FD-EC (hex) Apple, Inc. -ACFDEC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -24-E3-14 (hex) Apple, Inc. -24E314 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -2C-BE-08 (hex) Apple, Inc. -2CBE08 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-3A-84 (hex) Apple, Inc. -783A84 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-B1-53 (hex) Apple, Inc. -84B153 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -64-76-BA (hex) Apple, Inc. -6476BA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-3E-AC (hex) Apple, Inc. -703EAC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-94-F8 (hex) Apple, Inc. -6C94F8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-78-8B (hex) Apple, Inc. -84788B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -2C-F0-EE (hex) Apple, Inc. -2CF0EE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-D9-3C (hex) Apple, Inc. -68D93C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F8-27-93 (hex) Apple, Inc. -F82793 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-E5-36 (hex) Apple, Inc. -04E536 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -88-1F-A1 (hex) Apple, Inc. -881FA1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-DB-56 (hex) Apple, Inc. -04DB56 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-1E-E7 (hex) Apple, Inc. -C81EE7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -34-36-3B (hex) Apple, Inc. -34363B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-1A-DA (hex) Apple, Inc. -C01ADA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - 80-CE-62 (hex) Hewlett Packard 80CE62 (base 16) Hewlett Packard 11445 Compaq Center Drive @@ -28223,30 +27731,6 @@ C01ADA (base 16) Apple, Inc. Wuhan Hubei Province 430223 CN -90-CC-24 (hex) Synaptics, Inc -90CC24 (base 16) Synaptics, Inc - 1251 McKay Drive - San Jose CA 95131-1709 - US - -80-41-26 (hex) HUAWEI TECHNOLOGIES CO.,LTD -804126 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -0C-C6-CC (hex) HUAWEI TECHNOLOGIES CO.,LTD -0CC6CC (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -3C-04-61 (hex) ARRIS Group, Inc. -3C0461 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 04-C2-41 (hex) Nokia 04C241 (base 16) Nokia 600 March Road @@ -28259,17 +27743,17 @@ C01ADA (base 16) Apple, Inc. Hangzhou Zhejiang 310052 CN -8C-F7-73 (hex) Nokia -8CF773 (base 16) Nokia - 600 March Road - Kanata Ontario K2K 2E6 - CA +80-41-26 (hex) HUAWEI TECHNOLOGIES CO.,LTD +804126 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN -3C-47-9B (hex) Theissen Training Systems, Inc. -3C479B (base 16) Theissen Training Systems, Inc. - 1225 SE 4th Terrace - Chiefland FL 32626 - US +0C-C6-CC (hex) HUAWEI TECHNOLOGIES CO.,LTD +0CC6CC (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN 70-5A-AC (hex) Samsung Electronics Co.,Ltd 705AAC (base 16) Samsung Electronics Co.,Ltd @@ -28295,6 +27779,90 @@ D4E6B7 (base 16) Samsung Electronics Co.,Ltd Gumi Gyeongbuk 730-350 KR +60-84-BD (hex) BUFFALO.INC +6084BD (base 16) BUFFALO.INC + AKAMONDORI Bld.,30-20,Ohsu 3-chome,Naka-ku + Nagoya Aichi Pref. 460-8315 + JP + +10-F9-EB (hex) Industria Fueguina de Relojería Electrónica s.a. +10F9EB (base 16) Industria Fueguina de Relojería Electrónica s.a. + Sarmiento 2920 + Rio Grande Tierra de Fuego V9420GIV + AR + +34-7E-CA (hex) NEXTWILL +347ECA (base 16) NEXTWILL + JJ-Building, 20, Deongmyeong-ro 71beon-gil1, Yuseong-gu + Daejeon 34155 + KR + +5C-5A-EA (hex) FORD +5C5AEA (base 16) FORD + 17425 Federal Drive + Allen Park MI 48101 + US + +5C-AA-FD (hex) Sonos, Inc. +5CAAFD (base 16) Sonos, Inc. + 614 Chapala St + Santa Barbara CA 93101 + US + +00-0E-58 (hex) Sonos, Inc. +000E58 (base 16) Sonos, Inc. + 614 Chapala St + Santa Barbara CA 93101 + US + +88-29-50 (hex) Netmoon Technology Co., Ltd +882950 (base 16) Netmoon Technology Co., Ltd + 2nd Floor, Building No.1, NO.319, Qingpi Avenue + Wenjiang District Chengdu 611130 + CN + +7C-FF-4D (hex) AVM Audiovisuelles Marketing und Computersysteme GmbH +7CFF4D (base 16) AVM Audiovisuelles Marketing und Computersysteme GmbH + Alt-Moabit 95 + Berlin Berlin 10559 + DE + +74-70-FD (hex) Intel Corporate +7470FD (base 16) Intel Corporate + Lot 8, Jalan Hi-Tech 2/3 + Kulim Kedah 09000 + MY + +68-98-61 (hex) Beacon Inc +689861 (base 16) Beacon Inc + 82-1, Anyangcheondong-ro, Dongan-gu + anyang Gyeonggi-do 14042 + KR + +88-B3-62 (hex) Nokia Shanghai Bell Co. Ltd.) +88B362 (base 16) Nokia Shanghai Bell Co. Ltd.) + No.388 Ning Qiao Road,Jin Qiao Pudong Shanghai 201206,P.R.China + Shanghai Pudong 201206 + CN + +1C-A0-B8 (hex) Hon Hai Precision Ind. Co., Ltd. +1CA0B8 (base 16) Hon Hai Precision Ind. Co., Ltd. + GuangDongShenZhen + ShenZhen GuangDong 518109 + CN + +3C-47-9B (hex) Theissen Training Systems, Inc. +3C479B (base 16) Theissen Training Systems, Inc. + 1225 SE 4th Terrace + Chiefland FL 32626 + US + +8C-F7-73 (hex) Nokia +8CF773 (base 16) Nokia + 600 March Road + Kanata Ontario K2K 2E6 + CA + C4-64-E3 (hex) Texas Instruments C464E3 (base 16) Texas Instruments 12500 TI Blvd @@ -28307,6 +27875,198 @@ F4844C (base 16) Texas Instruments Dallas TX 75243 US +10-A4-B9 (hex) Baidu Online Network Technology (Beijing) Co., Ltd +10A4B9 (base 16) Baidu Online Network Technology (Beijing) Co., Ltd + Baidu Campus, No.10 Shangdi 10th Street, Haidian District + Beijing 100085 + CN + +1C-B0-44 (hex) ASKEY COMPUTER CORP +1CB044 (base 16) ASKEY COMPUTER CORP + 10F,No.119,JIANKANG RD,ZHONGHE DIST + NEW TAIPEI TAIWAN 23585 + TW + +90-03-72 (hex) Longnan Junya Digital Technology Co. Ltd. +900372 (base 16) Longnan Junya Digital Technology Co. Ltd. + Champion Asia Road, Xinzhen industrial Park, Longnan national economic and technological development zone, Ganzhou city, JiangXi Province , China + ganzhou jiangxi 341700 + CN + +50-14-79 (hex) iRobot Corporation +501479 (base 16) iRobot Corporation + 8 Crosby Drive + Bedford MA 01730 + US + +90-94-97 (hex) HUAWEI TECHNOLOGIES CO.,LTD +909497 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +EC-89-14 (hex) HUAWEI TECHNOLOGIES CO.,LTD +EC8914 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +DC-72-9B (hex) HUAWEI TECHNOLOGIES CO.,LTD +DC729B (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +B8-94-36 (hex) HUAWEI TECHNOLOGIES CO.,LTD +B89436 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +F8-DF-15 (hex) Sunitec Enterprise Co.,Ltd +F8DF15 (base 16) Sunitec Enterprise Co.,Ltd + 3F.,No.98-1,Mincyuan Rd.Sindian City + Taipei County 231 231141 + CN + +A8-DA-01 (hex) Shenzhen NUOLIJIA Digital Technology Co.,Ltd +A8DA01 (base 16) Shenzhen NUOLIJIA Digital Technology Co.,Ltd + A Area of The Second Flood and D Area of The First Floor,Factory Building A,Youxinda Industrial Park,Gengyu Road,Tianliao Community,Gongming Street Office,Guangming New District,Shenzhen City,Guangdong,P.R.China + Shenzhen Guangdong 518000 + CN + +00-21-94 (hex) Ping Communication +002194 (base 16) Ping Communication + Brenden 18 + Appenzell Meistersrüte AI 9050 + CH + +A4-38-CC (hex) Nintendo Co.,Ltd +A438CC (base 16) Nintendo Co.,Ltd + 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU + KYOTO KYOTO 601-8501 + JP + +94-6A-B0 (hex) Arcadyan Corporation +946AB0 (base 16) Arcadyan Corporation + No.8, Sec.2, Guangfu Rd. + Hsinchu City Hsinchu 30071 + TW + +58-21-E9 (hex) TWPI +5821E9 (base 16) TWPI + PMB# 335; 1121 Annapolis Road + Odenton MD 21113 + US + +64-CB-5D (hex) SIA TeleSet +64CB5D (base 16) SIA TeleSet + Krāslavas iela 5 + Vecstropi, Naujenes par., Daugavpils distr. LV-5413 + LV + +70-69-5A (hex) Cisco Systems, Inc +70695A (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +A0-66-10 (hex) FUJITSU LIMITED +A06610 (base 16) FUJITSU LIMITED + Mushashi-kosuge Tower Place 13F + Kawasaki Kanagawa 211-0063 + JP + +68-D4-82 (hex) SHENZHEN GONGJIN ELECTRONICS CO.,LT +68D482 (base 16) SHENZHEN GONGJIN ELECTRONICS CO.,LT + SONGGANG + SHENZHEN GUANGDONG 518105 + CN + +30-1F-9A (hex) IEEE Registration Authority +301F9A (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +90-79-10 (hex) Integrated Device Technology (Malaysia) Sdn. Bhd. +907910 (base 16) Integrated Device Technology (Malaysia) Sdn. Bhd. + Phase 3, Bayan Lepas FIZ + Bayan Lepas Penang 11900 + MY + +00-A0-D5 (hex) Sierra Wireless Inc +00A0D5 (base 16) Sierra Wireless Inc + 13811 Wireless Way + RICHMOND B.C. V6V 3A4 + CA + +6C-38-38 (hex) Marking System Technology Co., Ltd. +6C3838 (base 16) Marking System Technology Co., Ltd. + 76-1, Hirakawa Yokomichi + Joyo-shi Kyoto 610-0101 + JP + +24-C8-48 (hex) mywerk Portal GmbH +24C848 (base 16) mywerk Portal GmbH + Fabrikstr. 3 + Gronau 48599 + DE + +0C-2C-54 (hex) HUAWEI TECHNOLOGIES CO.,LTD +0C2C54 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +00-BE-3B (hex) HUAWEI TECHNOLOGIES CO.,LTD +00BE3B (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +7C-76-68 (hex) HUAWEI TECHNOLOGIES CO.,LTD +7C7668 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +24-2E-02 (hex) HUAWEI TECHNOLOGIES CO.,LTD +242E02 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +2C-B8-ED (hex) SonicWall +2CB8ED (base 16) SonicWall + 5455 Great America Parkway + Santa Clara CA 95054 + US + +9C-2E-A1 (hex) Xiaomi Communications Co Ltd +9C2EA1 (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 + CN + +AC-35-EE (hex) FN-LINK TECHNOLOGY LIMITED +AC35EE (base 16) FN-LINK TECHNOLOGY LIMITED + A Building,HuiXin industial park,No 31, YongHe road, Fuyong town, Bao'an District + SHENZHEN GUANGDONG 518100 + CN + +00-72-78 (hex) Cisco Systems, Inc +007278 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +E4-4E-76 (hex) CHAMPIONTECH ENTERPRISE (SHENZHEN) INC +E44E76 (base 16) CHAMPIONTECH ENTERPRISE (SHENZHEN) INC + Against Office of Dong-Zhou Residential Committee Guang Ming + Shenzhen 518000 + CN + 00-08-89 (hex) Dish Technologies Corp 000889 (base 16) Dish Technologies Corp 94 Inverness Terrace E @@ -28319,335 +28079,137 @@ F4844C (base 16) Texas Instruments Espoo 02610 FI -60-C5-47 (hex) Apple, Inc. -60C547 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 +E8-C1-B8 (hex) Nanjing Bangzhong Electronic Commerce Limited +E8C1B8 (base 16) Nanjing Bangzhong Electronic Commerce Limited + No.22, Liuzhou East Road, High - tech Zone + Nanjing 210000 + CN + +B4-DE-31 (hex) Cisco Systems, Inc +B4DE31 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 US -28-E0-2C (hex) Apple, Inc. -28E02C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 +70-16-9F (hex) EtherCAT Technology Group +70169F (base 16) EtherCAT Technology Group + Ostendstr. 196 + NUremberg 90482 + DE + +64-98-29 (hex) Integrated Device Technology (Malaysia) Sdn. Bhd. +649829 (base 16) Integrated Device Technology (Malaysia) Sdn. Bhd. + Phase 3, Bayan Lepas FIZ + Bayan Lepas Penang 11900 + MY + +08-1D-C4 (hex) Thermo Fisher Scientific Messtechnik GmbH +081DC4 (base 16) Thermo Fisher Scientific Messtechnik GmbH + Frauenauracher Strasse 96 + Erlangen 91056 + DE + +90-CC-24 (hex) Synaptics, Inc +90CC24 (base 16) Synaptics, Inc + 1251 McKay Drive + San Jose CA 95131-1709 US -50-EA-D6 (hex) Apple, Inc. -50EAD6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 +CC-99-16 (hex) Integrated Device Technology (Malaysia) Sdn. Bhd. +CC9916 (base 16) Integrated Device Technology (Malaysia) Sdn. Bhd. + Phase 3, Bayan Lepas FIZ + Bayan Lepas Penang 11900 + MY + +F0-41-C8 (hex) IEEE Registration Authority +F041C8 (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 US -48-60-BC (hex) Apple, Inc. -4860BC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 +00-13-86 (hex) ABB Inc/Totalflow +001386 (base 16) ABB Inc/Totalflow + + Bartlesville OK 74006 US -40-30-04 (hex) Apple, Inc. -403004 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 +A4-50-55 (hex) BUSWARE.DE +A45055 (base 16) BUSWARE.DE + Lindenstrasse 18 + Scharbeutz 23684 + DE + +48-60-5F (hex) LG Electronics (Mobile Communications) +48605F (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +00-15-C4 (hex) FLOVEL CO., LTD. +0015C4 (base 16) FLOVEL CO., LTD. + The Tachihi building No,3 hall, 6-1, Sakae-cho, + Tokyo 190-0003 US -0C-74-C2 (hex) Apple, Inc. -0C74C2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +3C-EA-F9 (hex) JUBIXCOLTD +3CEAF9 (base 16) JUBIXCOLTD + Rm 808, 809, B dong, Gunpo IT vally, 17, Gosan-ro 148beon-gil, Gunpo-si, Gyeonggi-do, Republic of Korea + GUNPOSI 15850 + KR -A4-B1-97 (hex) Apple, Inc. -A4B197 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +C0-EE-B5 (hex) Enice Network. +C0EEB5 (base 16) Enice Network. + NO.30, Shuige Rd, JiangNing Economic Development Zone, Nanjing + Nanjing 211106 + CN -7C-F0-5F (hex) Apple, Inc. -7CF05F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +DC-DE-4F (hex) Gionee Communication Equipment Co Ltd +DCDE4F (base 16) Gionee Communication Equipment Co Ltd + 21/F Times Technology Building, 7028 Shennan Road + Shenzhen Futian District 518040 + CN -78-6C-1C (hex) Apple, Inc. -786C1C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +60-DE-F3 (hex) HUAWEI TECHNOLOGIES CO.,LTD +60DEF3 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN -BC-3B-AF (hex) Apple, Inc. -BC3BAF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +58-F9-87 (hex) HUAWEI TECHNOLOGIES CO.,LTD +58F987 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN -F0-D1-A9 (hex) Apple, Inc. -F0D1A9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +50-1D-93 (hex) HUAWEI TECHNOLOGIES CO.,LTD +501D93 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN -34-C0-59 (hex) Apple, Inc. -34C059 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +D4-72-26 (hex) zte corporation +D47226 (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN -04-F7-E4 (hex) Apple, Inc. -04F7E4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +E4-82-CC (hex) Jumptronic GmbH +E482CC (base 16) Jumptronic GmbH + An der Weide 5 + Springe 31832 + DE -10-DD-B1 (hex) Apple, Inc. -10DDB1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +20-16-B9 (hex) Intel Corporate +2016B9 (base 16) Intel Corporate + Lot 8, Jalan Hi-Tech 2/3 + Kulim Kedah 09000 + MY -B4-F0-AB (hex) Apple, Inc. -B4F0AB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-A0-40 (hex) Apple, Inc. -00A040 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-FE-C5 (hex) Apple, Inc. -60FEC5 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-44-63 (hex) Apple, Inc. -CC4463 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-72-E7 (hex) Apple, Inc. -6C72E7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-AF-61 (hex) Apple, Inc. -18AF61 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-CD-FE (hex) Apple, Inc. -00CDFE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -30-10-E4 (hex) Apple, Inc. -3010E4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -38-0F-4A (hex) Apple, Inc. -380F4A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-5B-35 (hex) Apple, Inc. -685B35 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-6F-1D (hex) Apple, Inc. -C86F1D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-11-24 (hex) Apple, Inc. -701124 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -38-48-4C (hex) Apple, Inc. -38484C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-15-52 (hex) Apple, Inc. -041552 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -40-A6-D9 (hex) Apple, Inc. -40A6D9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -10-9A-DD (hex) Apple, Inc. -109ADD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-B4-79 (hex) Apple, Inc. -F0B479 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -58-B0-35 (hex) Apple, Inc. -58B035 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -34-15-9E (hex) Apple, Inc. -34159E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-6A-BA (hex) Apple, Inc. -286ABA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -EC-85-2F (hex) Apple, Inc. -EC852F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -44-D8-84 (hex) Apple, Inc. -44D884 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-3E-E1 (hex) Apple, Inc. -003EE1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-11-BE (hex) Apple, Inc. -7C11BE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-F0-76 (hex) Apple, Inc. -28F076 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-5A-EB (hex) Apple, Inc. -285AEB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -08-74-02 (hex) Apple, Inc. -087402 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -64-B9-E8 (hex) Apple, Inc. -64B9E8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-1C-B3 (hex) Apple, Inc. -001CB3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-0D-93 (hex) Apple, Inc. -000D93 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-C7-60 (hex) Apple, Inc. -CCC760 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-FC-01 (hex) Apple, Inc. -9CFC01 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-BC-32 (hex) Apple, Inc. -ACBC32 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-BE-27 (hex) Apple, Inc. -A8BE27 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-63-4D (hex) Apple, Inc. -B8634D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-E3-3F (hex) Apple, Inc. -9CE33F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-98-9D (hex) Apple, Inc. -F0989D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-E4-B5 (hex) Apple, Inc. -ACE4B5 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-2B-34 (hex) Apple, Inc. -E42B34 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -1C-36-BB (hex) Apple, Inc. -1C36BB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -3C-2E-FF (hex) Apple, Inc. -3C2EFF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +78-1D-4A (hex) zte corporation +781D4A (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN F0-76-6F (hex) Apple, Inc. F0766F (base 16) Apple, Inc. @@ -28679,20 +28241,8 @@ C48466 (base 16) Apple, Inc. Cupertino CA 95014 US -D0-2B-20 (hex) Apple, Inc. -D02B20 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-70-0D (hex) Apple, Inc. -70700D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-50-49 (hex) Apple, Inc. -7C5049 (base 16) Apple, Inc. +B8-63-4D (hex) Apple, Inc. +B8634D (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US @@ -28739,6 +28289,30 @@ DCA904 (base 16) Apple, Inc. Cupertino CA 95014 US +7C-50-49 (hex) Apple, Inc. +7C5049 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-2B-34 (hex) Apple, Inc. +E42B34 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +1C-36-BB (hex) Apple, Inc. +1C36BB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-2E-FF (hex) Apple, Inc. +3C2EFF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + 6C-96-CF (hex) Apple, Inc. 6C96CF (base 16) Apple, Inc. 1 Infinite Loop @@ -28751,20 +28325,8 @@ DCA904 (base 16) Apple, Inc. Cupertino CA 95014 US -AC-61-EA (hex) Apple, Inc. -AC61EA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -38-B5-4D (hex) Apple, Inc. -38B54D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-F1-E8 (hex) Apple, Inc. -A4F1E8 (base 16) Apple, Inc. +A8-BE-27 (hex) Apple, Inc. +A8BE27 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US @@ -28793,6 +28355,648 @@ A4F1E8 (base 16) Apple, Inc. Cupertino CA 95014 US +A4-F1-E8 (hex) Apple, Inc. +A4F1E8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-61-EA (hex) Apple, Inc. +AC61EA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +38-B5-4D (hex) Apple, Inc. +38B54D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-CD-FE (hex) Apple, Inc. +00CDFE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-AF-61 (hex) Apple, Inc. +18AF61 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-44-63 (hex) Apple, Inc. +CC4463 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-15-9E (hex) Apple, Inc. +34159E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +58-B0-35 (hex) Apple, Inc. +58B035 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-B4-79 (hex) Apple, Inc. +F0B479 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +10-9A-DD (hex) Apple, Inc. +109ADD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-A6-D9 (hex) Apple, Inc. +40A6D9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-F0-5F (hex) Apple, Inc. +7CF05F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-B1-97 (hex) Apple, Inc. +A4B197 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-74-C2 (hex) Apple, Inc. +0C74C2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-30-04 (hex) Apple, Inc. +403004 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-60-BC (hex) Apple, Inc. +4860BC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-2B-20 (hex) Apple, Inc. +D02B20 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-E3-3F (hex) Apple, Inc. +9CE33F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-98-9D (hex) Apple, Inc. +F0989D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-E4-B5 (hex) Apple, Inc. +ACE4B5 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +6C-72-E7 (hex) Apple, Inc. +6C72E7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-FE-C5 (hex) Apple, Inc. +60FEC5 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-A0-40 (hex) Apple, Inc. +00A040 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-0D-93 (hex) Apple, Inc. +000D93 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-BC-32 (hex) Apple, Inc. +ACBC32 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +30-D9-D9 (hex) Apple, Inc. +30D9D9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-30-D4 (hex) Apple, Inc. +6030D4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +94-BF-2D (hex) Apple, Inc. +94BF2D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C4-98-80 (hex) Apple, Inc. +C49880 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E0-33-8E (hex) Apple, Inc. +E0338E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-FE-F7 (hex) Apple, Inc. +68FEF7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-E1-43 (hex) Apple, Inc. +BCE143 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-5A-ED (hex) Apple, Inc. +645AED (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-B6-58 (hex) Apple, Inc. +C0B658 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-19-08 (hex) Apple, Inc. +881908 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +FC-2A-9C (hex) Apple, Inc. +FC2A9C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +44-D8-84 (hex) Apple, Inc. +44D884 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +EC-85-2F (hex) Apple, Inc. +EC852F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-6A-BA (hex) Apple, Inc. +286ABA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-56-81 (hex) Apple, Inc. +705681 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-D1-C3 (hex) Apple, Inc. +7CD1C3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-DC-E2 (hex) Apple, Inc. +F0DCE2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B0-65-BD (hex) Apple, Inc. +B065BD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-20-66 (hex) Apple, Inc. +A82066 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-67-78 (hex) Apple, Inc. +BC6778 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-96-7B (hex) Apple, Inc. +68967B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-85-06 (hex) Apple, Inc. +848506 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-AE-27 (hex) Apple, Inc. +54AE27 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-76-BA (hex) Apple, Inc. +6476BA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-B1-53 (hex) Apple, Inc. +84B153 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-3A-84 (hex) Apple, Inc. +783A84 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-BE-08 (hex) Apple, Inc. +2CBE08 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +24-E3-14 (hex) Apple, Inc. +24E314 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-D9-3C (hex) Apple, Inc. +68D93C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-F0-EE (hex) Apple, Inc. +2CF0EE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-78-8B (hex) Apple, Inc. +84788B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +6C-94-F8 (hex) Apple, Inc. +6C94F8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-3E-AC (hex) Apple, Inc. +703EAC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B4-F0-AB (hex) Apple, Inc. +B4F0AB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +10-DD-B1 (hex) Apple, Inc. +10DDB1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-F7-E4 (hex) Apple, Inc. +04F7E4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-C0-59 (hex) Apple, Inc. +34C059 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-D1-A9 (hex) Apple, Inc. +F0D1A9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-3B-AF (hex) Apple, Inc. +BC3BAF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-6C-1C (hex) Apple, Inc. +786C1C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-15-52 (hex) Apple, Inc. +041552 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +38-48-4C (hex) Apple, Inc. +38484C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-11-24 (hex) Apple, Inc. +701124 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-6F-1D (hex) Apple, Inc. +C86F1D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-5B-35 (hex) Apple, Inc. +685B35 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +38-0F-4A (hex) Apple, Inc. +380F4A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +30-10-E4 (hex) Apple, Inc. +3010E4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-DB-56 (hex) Apple, Inc. +04DB56 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-1F-A1 (hex) Apple, Inc. +881FA1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-E5-36 (hex) Apple, Inc. +04E536 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F8-27-93 (hex) Apple, Inc. +F82793 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-FD-EC (hex) Apple, Inc. +ACFDEC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-E1-40 (hex) Apple, Inc. +D0E140 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-7C-92 (hex) Apple, Inc. +8C7C92 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-31-C1 (hex) Apple, Inc. +7831C1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F4-37-B7 (hex) Apple, Inc. +F437B7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +50-EA-D6 (hex) Apple, Inc. +50EAD6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-E0-2C (hex) Apple, Inc. +28E02C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-C5-47 (hex) Apple, Inc. +60C547 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-11-BE (hex) Apple, Inc. +7C11BE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-3E-E1 (hex) Apple, Inc. +003EE1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-1A-DA (hex) Apple, Inc. +C01ADA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-36-3B (hex) Apple, Inc. +34363B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-1E-E7 (hex) Apple, Inc. +C81EE7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-FC-01 (hex) Apple, Inc. +9CFC01 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-C7-60 (hex) Apple, Inc. +CCC760 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +08-74-02 (hex) Apple, Inc. +087402 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-5A-EB (hex) Apple, Inc. +285AEB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-F0-76 (hex) Apple, Inc. +28F076 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-36-E4 (hex) ARRIS Group, Inc. +3C36E4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-00-C5 (hex) ARRIS Group, Inc. +0000C5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +D0-39-B3 (hex) ARRIS Group, Inc. +D039B3 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +8C-7F-3B (hex) ARRIS Group, Inc. +8C7F3B (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +94-62-69 (hex) ARRIS Group, Inc. +946269 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +D4-05-98 (hex) ARRIS Group, Inc. +D40598 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +78-71-9C (hex) ARRIS Group, Inc. +78719C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +9C-FE-A1 (hex) Fiberhome Telecommunication Technologies Co.,LTD +9CFEA1 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +48-D3-43 (hex) ARRIS Group, Inc. +48D343 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +D4-0A-A9 (hex) ARRIS Group, Inc. +D40AA9 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +38-4C-90 (hex) ARRIS Group, Inc. +384C90 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-AC-E0 (hex) ARRIS Group, Inc. +00ACE0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +70-70-0D (hex) Apple, Inc. +70700D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + 9C-F4-8E (hex) Apple, Inc. 9CF48E (base 16) Apple, Inc. 1 Infinite Loop @@ -28805,306 +29009,366 @@ FCD848 (base 16) Apple, Inc. Cupertino CA 95014 US -84-85-06 (hex) Apple, Inc. -848506 (base 16) Apple, Inc. +E4-57-40 (hex) ARRIS Group, Inc. +E45740 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E0-22-02 (hex) ARRIS Group, Inc. +E02202 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1C-B3 (hex) Apple, Inc. +001CB3 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -68-96-7B (hex) Apple, Inc. -68967B (base 16) Apple, Inc. +64-B9-E8 (hex) Apple, Inc. +64B9E8 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -BC-67-78 (hex) Apple, Inc. -BC6778 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 +2C-1D-B8 (hex) ARRIS Group, Inc. +2C1DB8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -A8-20-66 (hex) Apple, Inc. -A82066 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +94-9D-57 (hex) Panasonic do Brasil Limitada +949D57 (base 16) Panasonic do Brasil Limitada + Rua Matrinxa + Manaus Amazonas 69075150 + BR -B0-65-BD (hex) Apple, Inc. -B065BD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +00-50-89 (hex) SAFETY MANAGEMENT SYSTEMS +005089 (base 16) SAFETY MANAGEMENT SYSTEMS + Burgemeester Burgerslaan 40 + NH Rosmalen 5245 + NL -F0-DC-E2 (hex) Apple, Inc. -F0DCE2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +48-DD-9D (hex) ITEL MOBILE LIMITED +48DD9D (base 16) ITEL MOBILE LIMITED + RM B3 & B4 BLOCK B, KO FAI INDUSTRIAL BUILDING NO.7 KO FAI ROAD, YAU TONG, KLN, H.K + Hong Kong KOWLOON 999077 + HK -7C-D1-C3 (hex) Apple, Inc. -7CD1C3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US +E4-8F-65 (hex) Yelatma Instrument Making Enterprise, JSC +E48F65 (base 16) Yelatma Instrument Making Enterprise, JSC + Yanina 25 + Yelatma Ryazan Region 391351 + RU -70-56-81 (hex) Apple, Inc. -705681 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -1C-A0-B8 (hex) Hon Hai Precision Ind. Co., Ltd. -1CA0B8 (base 16) Hon Hai Precision Ind. Co., Ltd. - GuangDongShenZhen - ShenZhen GuangDong 518109 +9C-2F-73 (hex) Universal Tiancheng Technology (Beijing) Co., Ltd. +9C2F73 (base 16) Universal Tiancheng Technology (Beijing) Co., Ltd. + 13 floor,Changxin Building,Anding Road No.39,Chaoyang District,Beijing + Beijing Beijing 100029 CN -E8-C1-B8 (hex) Nanjing Bangzhong Electronic Commerce Limited -E8C1B8 (base 16) Nanjing Bangzhong Electronic Commerce Limited - No.22, Liuzhou East Road, High - tech Zone - Nanjing 210000 - CN - -1C-B0-44 (hex) ASKEY COMPUTER CORP -1CB044 (base 16) ASKEY COMPUTER CORP - 10F,No.119,JIANKANG RD,ZHONGHE DIST - NEW TAIPEI TAIWAN 23585 - TW - -90-03-72 (hex) Longnan Junya Digital Technology Co. Ltd. -900372 (base 16) Longnan Junya Digital Technology Co. Ltd. - Champion Asia Road, Xinzhen industrial Park, Longnan national economic and technological development zone, Ganzhou city, JiangXi Province , China - ganzhou jiangxi 341700 - CN - -F0-41-C8 (hex) IEEE Registration Authority -F041C8 (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 +00-15-D0 (hex) ARRIS Group, Inc. +0015D0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -A4-38-CC (hex) Nintendo Co.,Ltd -A438CC (base 16) Nintendo Co.,Ltd - 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU - KYOTO KYOTO 601-8501 - JP - -94-6A-B0 (hex) Arcadyan Corporation -946AB0 (base 16) Arcadyan Corporation - No.8, Sec.2, Guangfu Rd. - Hsinchu City Hsinchu 30071 - TW - -B4-DE-31 (hex) Cisco Systems, Inc -B4DE31 (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 +E8-6D-52 (hex) ARRIS Group, Inc. +E86D52 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -70-16-9F (hex) EtherCAT Technology Group -70169F (base 16) EtherCAT Technology Group - Ostendstr. 196 - NUremberg 90482 - DE - -64-98-29 (hex) Integrated Device Technology (Malaysia) Sdn. Bhd. -649829 (base 16) Integrated Device Technology (Malaysia) Sdn. Bhd. - Phase 3, Bayan Lepas FIZ - Bayan Lepas Penang 11900 - MY - -08-1D-C4 (hex) Thermo Fisher Scientific Messtechnik GmbH -081DC4 (base 16) Thermo Fisher Scientific Messtechnik GmbH - Frauenauracher Strasse 96 - Erlangen 91056 - DE - -68-98-61 (hex) Beacon Inc -689861 (base 16) Beacon Inc - 82-1, Anyangcheondong-ro, Dongan-gu - anyang Gyeonggi-do 14042 - KR - -88-B3-62 (hex) Nokia Shanghai Bell Co. Ltd.) -88B362 (base 16) Nokia Shanghai Bell Co. Ltd.) - No.388 Ning Qiao Road,Jin Qiao Pudong Shanghai 201206,P.R.China - Shanghai Pudong 201206 - CN - -10-A4-B9 (hex) Baidu Online Network Technology (Beijing) Co., Ltd -10A4B9 (base 16) Baidu Online Network Technology (Beijing) Co., Ltd - Baidu Campus, No.10 Shangdi 10th Street, Haidian District - Beijing 100085 - CN - -34-7E-CA (hex) NEXTWILL -347ECA (base 16) NEXTWILL - JJ-Building, 20, Deongmyeong-ro 71beon-gil1, Yuseong-gu - Daejeon 34155 - KR - -50-14-79 (hex) iRobot Corporation -501479 (base 16) iRobot Corporation - 8 Crosby Drive - Bedford MA 01730 +3C-43-8E (hex) ARRIS Group, Inc. +3C438E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -60-84-BD (hex) BUFFALO.INC -6084BD (base 16) BUFFALO.INC - AKAMONDORI Bld.,30-20,Ohsu 3-chome,Naka-ku - Nagoya Aichi Pref. 460-8315 - JP - -10-F9-EB (hex) Industria Fueguina de Relojería Electrónica s.a. -10F9EB (base 16) Industria Fueguina de Relojería Electrónica s.a. - Sarmiento 2920 - Rio Grande Tierra de Fuego V9420GIV - AR - -B8-94-36 (hex) HUAWEI TECHNOLOGIES CO.,LTD -B89436 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -F8-DF-15 (hex) Sunitec Enterprise Co.,Ltd -F8DF15 (base 16) Sunitec Enterprise Co.,Ltd - 3F.,No.98-1,Mincyuan Rd.Sindian City - Taipei County 231 231141 - CN - -A8-DA-01 (hex) Shenzhen NUOLIJIA Digital Technology Co.,Ltd -A8DA01 (base 16) Shenzhen NUOLIJIA Digital Technology Co.,Ltd - A Area of The Second Flood and D Area of The First Floor,Factory Building A,Youxinda Industrial Park,Gengyu Road,Tianliao Community,Gongming Street Office,Guangming New District,Shenzhen City,Guangdong,P.R.China - Shenzhen Guangdong 518000 - CN - -90-94-97 (hex) HUAWEI TECHNOLOGIES CO.,LTD -909497 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -EC-89-14 (hex) HUAWEI TECHNOLOGIES CO.,LTD -EC8914 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -DC-72-9B (hex) HUAWEI TECHNOLOGIES CO.,LTD -DC729B (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -5C-5A-EA (hex) FORD -5C5AEA (base 16) FORD - 17425 Federal Drive - Allen Park MI 48101 +90-B1-34 (hex) ARRIS Group, Inc. +90B134 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -5C-AA-FD (hex) Sonos, Inc. -5CAAFD (base 16) Sonos, Inc. - 614 Chapala St - Santa Barbara CA 93101 +20-E5-64 (hex) ARRIS Group, Inc. +20E564 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -00-0E-58 (hex) Sonos, Inc. -000E58 (base 16) Sonos, Inc. - 614 Chapala St - Santa Barbara CA 93101 +40-B7-F3 (hex) ARRIS Group, Inc. +40B7F3 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -88-29-50 (hex) Netmoon Technology Co., Ltd -882950 (base 16) Netmoon Technology Co., Ltd - 2nd Floor, Building No.1, NO.319, Qingpi Avenue - Wenjiang District Chengdu 611130 +94-CC-B9 (hex) ARRIS Group, Inc. +94CCB9 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-50-E3 (hex) ARRIS Group, Inc. +0050E3 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +EC-70-97 (hex) ARRIS Group, Inc. +EC7097 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +C0-A0-0D (hex) ARRIS Group, Inc. +C0A00D (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +3C-04-61 (hex) ARRIS Group, Inc. +3C0461 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +88-96-4E (hex) ARRIS Group, Inc. +88964E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +F8-F5-32 (hex) ARRIS Group, Inc. +F8F532 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +B0-83-D6 (hex) ARRIS Group, Inc. +B083D6 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +44-AA-F5 (hex) ARRIS Group, Inc. +44AAF5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +70-85-C6 (hex) ARRIS Group, Inc. +7085C6 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +D0-E5-4D (hex) ARRIS Group, Inc. +D0E54D (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +B4-F2-E8 (hex) ARRIS Group, Inc. +B4F2E8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +FC-8E-7E (hex) ARRIS Group, Inc. +FC8E7E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-50-94 (hex) ARRIS Group, Inc. +005094 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E0-B7-0A (hex) ARRIS Group, Inc. +E0B70A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +C8-3F-B4 (hex) ARRIS Group, Inc. +C83FB4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +20-73-55 (hex) ARRIS Group, Inc. +207355 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +90-0D-CB (hex) ARRIS Group, Inc. +900DCB (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +14-CF-E2 (hex) ARRIS Group, Inc. +14CFE2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +90-3E-AB (hex) ARRIS Group, Inc. +903EAB (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-21-43 (hex) ARRIS Group, Inc. +002143 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-EE (hex) ARRIS Group, Inc. +0023EE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +64-ED-57 (hex) ARRIS Group, Inc. +64ED57 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-A3 (hex) ARRIS Group, Inc. +0023A3 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +F8-7B-7A (hex) ARRIS Group, Inc. +F87B7A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-25-F1 (hex) ARRIS Group, Inc. +0025F1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1A-66 (hex) ARRIS Group, Inc. +001A66 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-18-C0 (hex) ARRIS Group, Inc. +0018C0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1E-46 (hex) ARRIS Group, Inc. +001E46 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1A-DE (hex) ARRIS Group, Inc. +001ADE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-AF (hex) ARRIS Group, Inc. +0023AF (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +CC-A4-62 (hex) ARRIS Group, Inc. +CCA462 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-CD (hex) ARRIS Group, Inc. +001DCD (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-D4 (hex) ARRIS Group, Inc. +001DD4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-CE (hex) ARRIS Group, Inc. +001DCE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-08-0E (hex) ARRIS Group, Inc. +00080E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-9A (hex) ARRIS Group, Inc. +00159A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-19-2C (hex) ARRIS Group, Inc. +00192C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +58-56-E8 (hex) ARRIS Group, Inc. +5856E8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +50-50-CE (hex) Hangzhou Dianyixia Communication Technology Co. Ltd. +5050CE (base 16) Hangzhou Dianyixia Communication Technology Co. Ltd. + Room 207, Building 7, 1197 bin 'an road, Binjiang district, + Hangzhou Zhejiang 310011 CN -00-21-94 (hex) Ping Communication -002194 (base 16) Ping Communication - Brenden 18 - Appenzell Meistersrüte AI 9050 - CH - -7C-FF-4D (hex) AVM Audiovisuelles Marketing und Computersysteme GmbH -7CFF4D (base 16) AVM Audiovisuelles Marketing und Computersysteme GmbH - Alt-Moabit 95 - Berlin Berlin 10559 - DE - -74-70-FD (hex) Intel Corporate -7470FD (base 16) Intel Corporate - Lot 8, Jalan Hi-Tech 2/3 - Kulim Kedah 09000 - MY - -CC-99-16 (hex) Integrated Device Technology (Malaysia) Sdn. Bhd. -CC9916 (base 16) Integrated Device Technology (Malaysia) Sdn. Bhd. - Phase 3, Bayan Lepas FIZ - Bayan Lepas Penang 11900 - MY - -A4-50-55 (hex) BUSWARE.DE -A45055 (base 16) BUSWARE.DE - Lindenstrasse 18 - Scharbeutz 23684 - DE - -00-13-86 (hex) ABB Inc/Totalflow -001386 (base 16) ABB Inc/Totalflow - - Bartlesville OK 74006 - US - -A0-66-10 (hex) FUJITSU LIMITED -A06610 (base 16) FUJITSU LIMITED - Mushashi-kosuge Tower Place 13F - Kawasaki Kanagawa 211-0063 - JP - -64-CB-5D (hex) SIA TeleSet -64CB5D (base 16) SIA TeleSet - Krāslavas iela 5 - Vecstropi, Naujenes par., Daugavpils distr. LV-5413 - LV - -70-69-5A (hex) Cisco Systems, Inc -70695A (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 - US - -58-21-E9 (hex) TWPI -5821E9 (base 16) TWPI - PMB# 335; 1121 Annapolis Road - Odenton MD 21113 - US - -68-D4-82 (hex) SHENZHEN GONGJIN ELECTRONICS CO.,LT -68D482 (base 16) SHENZHEN GONGJIN ELECTRONICS CO.,LT - SONGGANG - SHENZHEN GUANGDONG 518105 +50-A0-09 (hex) Xiaomi Communications Co Ltd +50A009 (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 CN -30-1F-9A (hex) IEEE Registration Authority -301F9A (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 +2C-28-B7 (hex) Hangzhou Ruiying technology co., LTD +2C28B7 (base 16) Hangzhou Ruiying technology co., LTD + No. 1, building 305, Yunqi Town Cloud Computing Industrial Park, Hangzhou City, Xihu District + Hangzhou Zhejiang 310000 + CN + +9C-E8-2B (hex) vivo Mobile Communication Co., Ltd. +9CE82B (base 16) vivo Mobile Communication Co., Ltd. + #283,BBK Road + Wusha,Chang'An DongGuan City,Guangdong, 523860 + CN + +00-22-18 (hex) AKAMAI TECHNOLOGIES INC +002218 (base 16) AKAMAI TECHNOLOGIES INC + 150 BROADWAY + CAMBRIDGE MA 02142 US -90-79-10 (hex) Integrated Device Technology (Malaysia) Sdn. Bhd. -907910 (base 16) Integrated Device Technology (Malaysia) Sdn. Bhd. - Phase 3, Bayan Lepas FIZ - Bayan Lepas Penang 11900 - MY - -00-A0-D5 (hex) Sierra Wireless Inc -00A0D5 (base 16) Sierra Wireless Inc - 13811 Wireless Way - RICHMOND B.C. V6V 3A4 - CA - 0C-6F-9C (hex) Shaw Communications Inc. 0C6F9C (base 16) Shaw Communications Inc. Suite 900, 630 3rd Avenue S.W. @@ -30779,12 +31043,6 @@ C43ABE (base 16) Sony Mobile Communications AB shenzhen guangdong 518057 CN -C8-D7-79 (hex) Qingdao Haier Telecom Co.,Ltd -C8D779 (base 16) Qingdao Haier Telecom Co.,Ltd - No 1 Haier road,Hi-tech Zone,Qingdao,PR.China - Qingdao Shandong 266101 - CN - 2C-A2-B4 (hex) Fortify Technologies, LLC 2CA2B4 (base 16) Fortify Technologies, LLC 6200 Shingle Creek Pkwy, Suite 400 @@ -31952,12 +32210,6 @@ FCFE77 (base 16) Hitachi Reftechno, Inc. Egham Surrey TW208RN GB -14-B1-26 (hex) Industrial Software Co -14B126 (base 16) Industrial Software Co - 91, Aleksandyr Malinov blvd. - Sofia 1715 - BG - C0-35-80 (hex) A&R TECH C03580 (base 16) A&R TECH Marksteinergasse 13 @@ -40682,12 +40934,6 @@ D0D286 (base 16) Beckman Coulter K.K. Taipei 114 TW -00-16-5C (hex) Trackflow Ltd -00165C (base 16) Trackflow Ltd - 167-169 Kensington High Street - London England W86SH - GB - 00-16-55 (hex) FUHO TECHNOLOGY Co., LTD 001655 (base 16) FUHO TECHNOLOGY Co., LTD No. 30, Lane 726, Jinma Rd, Sec. 3 @@ -48359,12 +48605,6 @@ D0D286 (base 16) Beckman Coulter K.K. SEATTLE WA 98168 US -00-E0-09 (hex) MARATHON TECHNOLOGIES CORP. -00E009 (base 16) MARATHON TECHNOLOGIES CORP. - 1300 MASSACHUSETTS AVENUE - BOXBOROUGH MA 01719 - US - 00-E0-2F (hex) MCNS HOLDINGS, L.P. 00E02F (base 16) MCNS HOLDINGS, L.P. TCI, INC.-TECHNOLOGY VENTURES @@ -54533,6 +54773,1125 @@ D825B0 (base 16) Rockeetech Systems Co.,Ltd. Chongqing Chongqing City 401120 CN +F4-6E-24 (hex) NEC Personal Computers, Ltd. +F46E24 (base 16) NEC Personal Computers, Ltd. + Akihabara UDX,14-1, Sotokanda 4-Chome + Chiyoda-ku Tokyo 101-0021 + JP + +88-82-79 (hex) Shenzhen RB-LINK Intelligent Technology Co.Ltd +888279 (base 16) Shenzhen RB-LINK Intelligent Technology Co.Ltd + Second floor, No 22, Wanfeng the third industry area, Shajing , BaoAn district + Shenzhen City 518125 + CN + +78-32-1B (hex) D-Link International +78321B (base 16) D-Link International + 1 Internal Business Park, #03-12,The Synergy, Singapore + Singapore Singapore 609917 + SG + +EC-51-BC (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +EC51BC (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +F0-79-E8 (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +F079E8 (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +D8-A5-34 (hex) Spectronix Corporation +D8A534 (base 16) Spectronix Corporation + 3-28-15, Tarumi-cho + Suita-city Osaka 564-0062 + JP + +58-38-79 (hex) RICOH COMPANY, LTD. +583879 (base 16) RICOH COMPANY, LTD. + 1005, Shimo-ogino + Atsugi-City Kanagawa-Pref. 243-0298 + JP + +94-28-2E (hex) New H3C Technologies Co., Ltd +94282E (base 16) New H3C Technologies Co., Ltd + 466 Changhe Road, Binjiang District + Hangzhou Zhejiang 310052 + CN + +D8-43-ED (hex) Suzuken +D843ED (base 16) Suzuken + 8, Higashikatahamachi, Higashiku + Nagoya Aich 4610015 + JP + +88-75-98 (hex) Samsung Electronics Co.,Ltd +887598 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +D0-B1-28 (hex) Samsung Electronics Co.,Ltd +D0B128 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +FC-EE-E6 (hex) FORMIKE ELECTRONIC CO., LTD +FCEEE6 (base 16) FORMIKE ELECTRONIC CO., LTD + Flats 401-403, Block B, iPARK Building, 26 Dengliang Rd., NanShan Distric + Shenzhen Guang Dong 518054 + CN + +2C-43-1A (hex) Shenzhen YOUHUA Technology Co., Ltd +2C431A (base 16) Shenzhen YOUHUA Technology Co., Ltd + Room 407 Shenzhen University-town Business Park,Lishan Road,Taoyuan Street,Nanshan District + Shenzhen Guangdong 518055 + CN + +A8-D3-C8 (hex) Topcon Electronics GmbH & Co. KG +A8D3C8 (base 16) Topcon Electronics GmbH & Co. KG + Industriestraße 7 + Geisenheim 65366 + DE + +38-9F-5A (hex) C-Kur TV Inc. +389F5A (base 16) C-Kur TV Inc. + A-1902, 583, Yangcheon-ro, Gangseo-gu + Seoul 07547 + KR + +24-B2-09 (hex) Avaya Inc +24B209 (base 16) Avaya Inc + 360 Mt Kemble Ave + Morristown NJ 07960 + US + +24-E1-24 (hex) Xiamen Ursaconn Technology Co. , Ltd. +24E124 (base 16) Xiamen Ursaconn Technology Co. , Ltd. + 3/F, No. 46 Guanri Road, 2nd Software Park + Xiamen Fujian 361008 + CN + +DC-68-EB (hex) Nintendo Co.,Ltd +DC68EB (base 16) Nintendo Co.,Ltd + 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU + KYOTO KYOTO 601-8501 + JP + +94-41-C1 (hex) Mini-Cam Limited +9441C1 (base 16) Mini-Cam Limited + Unit 4 Yew Tree Way + Warrington Cheshire WA33JD + GB + +E8-D8-19 (hex) AzureWave Technology Inc. +E8D819 (base 16) AzureWave Technology Inc. + 8F., No. 94, Baozhong Rd. + New Taipei City Taiwan 231 + TW + +AC-1D-DF (hex) IEEE Registration Authority +AC1DDF (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +00-08-FA (hex) KEB Automation KG +0008FA (base 16) KEB Automation KG + Südstraße 38 + Barntrup NRW D-32683 + DE + +18-39-6E (hex) SUNSEA TELECOMMUNICATIONS CO.,LTD. +18396E (base 16) SUNSEA TELECOMMUNICATIONS CO.,LTD. + High tech Industrial Park,Longhua District of Shenzhen City,South central concept + Shenzhen 518110 + CN + +E8-DF-70 (hex) AVM Audiovisuelles Marketing und Computersysteme GmbH +E8DF70 (base 16) AVM Audiovisuelles Marketing und Computersysteme GmbH + Alt-Moabit 95 + Berlin Berlin 10559 + DE + +7C-DD-76 (hex) Suzhou Hanming Technologies Co., Ltd. +7CDD76 (base 16) Suzhou Hanming Technologies Co., Ltd. + Suite 407, No. 166, Ren Ai Road + Suzhou Jiangsu 215123 + CN + +24-68-80 (hex) Braveridge.co.,ltd. +246880 (base 16) Braveridge.co.,ltd. + 3-27-2, Susenji + Nishi-ku, Fukuoka-shi Fukuoka 819-0373 + JP + +D0-04-01 (hex) Motorola Mobility LLC, a Lenovo Company +D00401 (base 16) Motorola Mobility LLC, a Lenovo Company + 222 West Merchandise Mart Plaza + Chicago IL 60654 + US + +58-90-43 (hex) Sagemcom Broadband SAS +589043 (base 16) Sagemcom Broadband SAS + 250, route de l'Empereur + Rueil Malmaison Cedex hauts de seine 92848 + FR + +28-CF-08 (hex) ESSYS +28CF08 (base 16) ESSYS + gaetbeol-ro + Incheon 21999 + KR + +70-7D-B9 (hex) Cisco Systems, Inc +707DB9 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +34-6F-ED (hex) Enovation Controls +346FED (base 16) Enovation Controls + 5311 S. 122nd E. Ave. + Tulsa OK 74146 + US + +00-00-B4 (hex) Edimax Technology Co. Ltd. +0000B4 (base 16) Edimax Technology Co. Ltd. + No. 278, Xinhu 1st Road + Taipei City Neihu Dist 248 + TW + +08-BE-AC (hex) Edimax Technology Co. Ltd. +08BEAC (base 16) Edimax Technology Co. Ltd. + No. 278, Xinhu 1st Road + Taipei City Neihu Dist 248 + TW + +F0-6D-78 (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +F06D78 (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +78-44-FD (hex) TP-LINK TECHNOLOGIES CO.,LTD. +7844FD (base 16) TP-LINK TECHNOLOGIES CO.,LTD. + Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan + Shenzhen Guangdong 518057 + CN + +50-3E-AA (hex) TP-LINK TECHNOLOGIES CO.,LTD. +503EAA (base 16) TP-LINK TECHNOLOGIES CO.,LTD. + Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan + Shenzhen Guangdong 518057 + CN + +AC-84-C6 (hex) TP-LINK TECHNOLOGIES CO.,LTD. +AC84C6 (base 16) TP-LINK TECHNOLOGIES CO.,LTD. + Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan + Shenzhen Guangdong 518057 + CN + +34-D0-B8 (hex) IEEE Registration Authority +34D0B8 (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +B0-C1-9E (hex) zte corporation +B0C19E (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN + +0C-37-47 (hex) zte corporation +0C3747 (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN + +00-00-97 (hex) Dell EMC +000097 (base 16) Dell EMC + 176 South Street + Hopkinton MA 01748 + US + +EC-C0-6A (hex) PowerChord Group Limited +ECC06A (base 16) PowerChord Group Limited + 1 Blythe Road + London W14 0HG + GB + +38-D7-CA (hex) 7HUGS LABS +38D7CA (base 16) 7HUGS LABS + 29 bd Romain Rolland + Montrouge 92120 + FR + +6C-05-D5 (hex) Ethertronics Inc +6C05D5 (base 16) Ethertronics Inc + 5501 Oberlin Drive, Suite 100 + SAN DIEGO CA 92121 + US + +00-1D-F4 (hex) Magellan Technology Pty Limited +001DF4 (base 16) Magellan Technology Pty Limited + 65 Johnston Street + Annandale NSW 2000 + AU + +C0-22-50 (hex) Private +C02250 (base 16) Private + +00-94-A1 (hex) F5 Networks, Inc. +0094A1 (base 16) F5 Networks, Inc. + 401 Elliott Ave. W. + Seattle WA 98119 + US + +18-90-D8 (hex) Sagemcom Broadband SAS +1890D8 (base 16) Sagemcom Broadband SAS + 250, route de l'Empereur + Rueil Malmaison Cedex hauts de seine 92848 + FR + +88-83-5D (hex) FN-LINK TECHNOLOGY LIMITED +88835D (base 16) FN-LINK TECHNOLOGY LIMITED + No.8, Litong Road, Liuyang Economic & Technical Development Zone + ChangSha Hu Nan 410300 + CN + +10-68-3F (hex) LG Electronics (Mobile Communications) +10683F (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +74-A7-22 (hex) LG Electronics (Mobile Communications) +74A722 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +58-A2-B5 (hex) LG Electronics (Mobile Communications) +58A2B5 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +64-89-9A (hex) LG Electronics (Mobile Communications) +64899A (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +88-07-4B (hex) LG Electronics (Mobile Communications) +88074B (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +64-BC-0C (hex) LG Electronics (Mobile Communications) +64BC0C (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +A0-39-F7 (hex) LG Electronics (Mobile Communications) +A039F7 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +04-1B-6D (hex) LG Electronics (Mobile Communications) +041B6D (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +00-1F-6B (hex) LG Electronics (Mobile Communications) +001F6B (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +D0-07-CA (hex) Juniper Networks +D007CA (base 16) Juniper Networks + 1133 Innovation Way + Sunnyvale CA 94089 + US + +F8-6C-E1 (hex) Taicang T&W Electronics +F86CE1 (base 16) Taicang T&W Electronics + 89# Jiang Nan RD + Suzhou Jiangsu 215412 + CN + +1C-73-28 (hex) Connected Home +1C7328 (base 16) Connected Home + 19-22, Rathbone Place + London W1T 1HY + GB + +40-A9-3F (hex) Private +40A93F (base 16) Private + +5C-77-76 (hex) TCT mobile ltd +5C7776 (base 16) TCT mobile ltd + No.86 hechang 7th road, zhongkai, Hi-Tech District + Hui Zhou Guang Dong 516006 + CN + +EC-1D-8B (hex) Cisco Systems, Inc +EC1D8B (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +38-F7-3D (hex) Amazon Technologies Inc. +38F73D (base 16) Amazon Technologies Inc. + P.O Box 8102 + Reno NV 89507 + US + +30-B4-B8 (hex) LG Electronics +30B4B8 (base 16) LG Electronics + 222 LG-ro, JINWI-MYEON + Pyeongtaek-si Gyeonggi-do 451-713 + KR + +2C-FD-AB (hex) Motorola (Wuhan) Mobility Technologies Communication Co., Ltd. +2CFDAB (base 16) Motorola (Wuhan) Mobility Technologies Communication Co., Ltd. + No.19, Gaoxin 4th Road, Wuhan East Lake High-tech Zone, Wuhan + Wuhan Hubei 430000 + CN + +F4-1E-5E (hex) RtBrick Inc. +F41E5E (base 16) RtBrick Inc. + 26 Kingston Terrace + Princeton NJ 08540 + US + +18-06-FF (hex) Acer Computer(Shanghai) Limited. +1806FF (base 16) Acer Computer(Shanghai) Limited. + Room1806-20, No.769, Jiujiang Road, Huangpu District + Shanghai 200000 + CN + +B8-EC-A3 (hex) Zyxel Communications Corporation +B8ECA3 (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +EC-43-F6 (hex) Zyxel Communications Corporation +EC43F6 (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +58-8B-F3 (hex) Zyxel Communications Corporation +588BF3 (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +FC-F5-28 (hex) Zyxel Communications Corporation +FCF528 (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +00-19-CB (hex) Zyxel Communications Corporation +0019CB (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +60-31-97 (hex) Zyxel Communications Corporation +603197 (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +34-FA-9F (hex) Ruckus Wireless +34FA9F (base 16) Ruckus Wireless + 350 West Java Drive + Sunnyvale CA 94089 + US + +50-6F-98 (hex) Sehaj Synergy Technologies Private Limited +506F98 (base 16) Sehaj Synergy Technologies Private Limited + E-112A, Kataria Colony, Ramanagar Extension, New Sanganer Road, Sodala, Jaipur-302019 + Jaipur Rajasthan 302019 + IN + +04-F1-28 (hex) HMD Global Oy +04F128 (base 16) HMD Global Oy + Karaportti 2 + Espoo 02610 + FI + +F0-65-C2 (hex) Yanfeng Visteon Electronics Technology (Shanghai) Co.,Ltd. +F065C2 (base 16) Yanfeng Visteon Electronics Technology (Shanghai) Co.,Ltd. + 1001 North Qin Zhou Road + Shang Hai 200233 + CN + +70-B7-E2 (hex) Jiangsu Miter Technology Co.,Ltd. +70B7E2 (base 16) Jiangsu Miter Technology Co.,Ltd. + No.86 fuyuan community,the town of houbei + Jurong Jiangsu 212400 + CN + +50-3C-EA (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +503CEA (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +00-04-CF (hex) Seagate Technology +0004CF (base 16) Seagate Technology + M/S NW1F01 + Longmont CO 80503 + US + +00-14-C3 (hex) Seagate Technology +0014C3 (base 16) Seagate Technology + M/S NW1F01 + Longmont CO 80503 + US + +00-20-37 (hex) Seagate Technology +002037 (base 16) Seagate Technology + 8001 E. BLOOMINGTON FWY + BLOOMINGTON MN 55420 + US + +00-50-CC (hex) Seagate Cloud Systems Inc +0050CC (base 16) Seagate Cloud Systems Inc + 1351 S Sunset Street + Longmont CO 80501 + US + +1C-27-DD (hex) Datang Gohighsec(zhejiang)Information Technology Co.,Ltd. +1C27DD (base 16) Datang Gohighsec(zhejiang)Information Technology Co.,Ltd. + Beiwu Innovation park, #23 Beiwu Villiage Road + Beijing Beijing 100000 + CN + +00-72-63 (hex) Netcore Technology Inc. +007263 (base 16) Netcore Technology Inc. + ORIENTAL CYBERPORT,HIGHTECH 6 ROAD + Shenzhen 518057 + CN + +48-55-5C (hex) Wu Qi Technologies,Inc. +48555C (base 16) Wu Qi Technologies,Inc. + Xiantao street data on the 19th East Road + Chongqing City Yubei District 401120 + CN + +70-EE-A3 (hex) Eoptolink Technology Inc. Ltd, +70EEA3 (base 16) Eoptolink Technology Inc. Ltd, + No.127 West Wulian Street + Chengdu China/Sichuan 610213 + CN + +5C-58-19 (hex) Jingsheng Technology Co., Ltd. +5C5819 (base 16) Jingsheng Technology Co., Ltd. + Linyin street 5# + chengdu sichuan 610000 + CN + +74-7D-24 (hex) Phicomm (Shanghai) Co., Ltd. +747D24 (base 16) Phicomm (Shanghai) Co., Ltd. + 3666 SiXian Rd.,Songjiang District + Shanghai Shanghai 201616 + CN + +5C-81-A7 (hex) Network Devices Pty Ltd +5C81A7 (base 16) Network Devices Pty Ltd + 16 Dickson Ave + Artarmon NSW 2064 + AU + +80-8D-B7 (hex) Hewlett Packard Enterprise +808DB7 (base 16) Hewlett Packard Enterprise + 8000 Foothills Blvd. + Roseville CA 95747 + US + +10-CE-A9 (hex) Texas Instruments +10CEA9 (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +F8-B5-68 (hex) IEEE Registration Authority +F8B568 (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +14-44-4A (hex) Apollo Seiko Ltd. +14444A (base 16) Apollo Seiko Ltd. + 2271-7 Jinba + Gotenba Shizuoka 412-0047 + JP + +5C-0C-0E (hex) Guizhou Huaxintong Semiconductor Technology Co Ltd +5C0C0E (base 16) Guizhou Huaxintong Semiconductor Technology Co Ltd + Sitelin Park + Intersection between Jin ma Ave and Qianzhong Ave Gui An New Area, Guizhou Prov 550003 + CN + +2C-FD-A1 (hex) ASUSTek COMPUTER INC. +2CFDA1 (base 16) ASUSTek COMPUTER INC. + 15,Li-Te Rd., Peitou, Taipei 112, Taiwan + Taipei Taiwan 112 + TW + +38-07-D4 (hex) Zeppelin Systems GmbH +3807D4 (base 16) Zeppelin Systems GmbH + Messenhäuser Str. 37-45 + Rödermark Hessen 63322 + DE + +64-20-9F (hex) Tilgin AB +64209F (base 16) Tilgin AB + Finlandsgatan 40 + Kista 16474 + SE + +04-E0-B0 (hex) Shenzhen YOUHUA Technology Co., Ltd +04E0B0 (base 16) Shenzhen YOUHUA Technology Co., Ltd + Room 407 Shenzhen University-town Business Park,Lishan Road,Taoyuan Street,Nanshan District + Shenzhen Guangdong 518055 + CN + +0C-98-38 (hex) Xiaomi Communications Co Ltd +0C9838 (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 + CN + +00-04-96 (hex) Extreme Networks, Inc. +000496 (base 16) Extreme Networks, Inc. + 3585 Monroe Street + Santa Clara CA 95051 + US + +B8-50-01 (hex) Extreme Networks, Inc. +B85001 (base 16) Extreme Networks, Inc. + ONE ZEBRA PLAZA + HOLTSVILLE NY 11742 + US + +7C-76-30 (hex) Shenzhen YOUHUA Technology Co., Ltd +7C7630 (base 16) Shenzhen YOUHUA Technology Co., Ltd + Room 407 Shenzhen University-town Business Park,Lishan Road,Taoyuan Street,Nanshan District + Shenzhen Guangdong 518055 + CN + +98-22-EF (hex) Liteon Technology Corporation +9822EF (base 16) Liteon Technology Corporation + 4F, 90, Chien 1 Road + New Taipei City Taiwan 23585 + TW + +58-04-54 (hex) ICOMM HK LIMITED +580454 (base 16) ICOMM HK LIMITED + SUITES 2302-6, 23/F GREAT EAGLE CTR 23 HARBOUR RD + WANCHAI NA + HK + +A0-BD-CD (hex) BSkyB Ltd +A0BDCD (base 16) BSkyB Ltd + 130 Kings Road + Brentwood Essex 08854 + GB + +80-3A-59 (hex) AT&T +803A59 (base 16) AT&T + 1025 Lenox Park Blvd + Atlanta GA 30319 + US + +60-6D-3C (hex) Luxshare Precision Industry Company Limited +606D3C (base 16) Luxshare Precision Industry Company Limited + Floor 2, Block A, Sanyo New Industrial Area + West Haoyi Community, Shajing Subdistrict Office Bao'an District, Shenzhen, Guangdong 523000 + CN + +CC-4D-38 (hex) Carnegie Technologies +CC4D38 (base 16) Carnegie Technologies + 9737 Great Hills Trail #260 + Austin TX 78759 + US + +54-FC-F0 (hex) Samsung Electronics Co.,Ltd +54FCF0 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +08-AE-D6 (hex) Samsung Electronics Co.,Ltd +08AED6 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +B0-67-2F (hex) Bowers & Wilkins +B0672F (base 16) Bowers & Wilkins + 900 Middlefield Rd Floor 4 + Redwood City CA 94063 + US + +A8-16-D0 (hex) Samsung Electronics Co.,Ltd +A816D0 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +88-BD-45 (hex) Samsung Electronics Co.,Ltd +88BD45 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +74-C9-A3 (hex) Fiberhome Telecommunication Technologies Co.,LTD +74C9A3 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +A8-E7-05 (hex) Fiberhome Telecommunication Technologies Co.,LTD +A8E705 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +CC-50-0A (hex) Fiberhome Telecommunication Technologies Co.,LTD +CC500A (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +60-B6-17 (hex) Fiberhome Telecommunication Technologies Co.,LTD +60B617 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan City Hubei Province 430074 + CN + +18-A3-E8 (hex) Fiberhome Telecommunication Technologies Co.,LTD +18A3E8 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan City Hubei Province 430074 + CN + +74-1E-93 (hex) Fiberhome Telecommunication Technologies Co.,LTD +741E93 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan City Hubei Province 430074 + CN + +20-89-6F (hex) Fiberhome Telecommunication Technologies Co.,LTD +20896F (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +A0-13-CB (hex) Fiberhome Telecommunication Technologies Co.,LTD +A013CB (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +3C-FB-5C (hex) Fiberhome Telecommunication Technologies Co.,LTD +3CFB5C (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +CC-3A-DF (hex) Neptune Technology Group Inc. +CC3ADF (base 16) Neptune Technology Group Inc. + 1600 AL Highway 229 S + Tallassee AL 36078 + US + +28-ED-E0 (hex) AMPAK Technology, Inc. +28EDE0 (base 16) AMPAK Technology, Inc. + No.1,Jen Ai Road Hsinchu Industrial Park, Hukou + Hsinchu Taiwan ROC. 30352 + TW + +04-09-73 (hex) Hewlett Packard Enterprise +040973 (base 16) Hewlett Packard Enterprise + 8000 Foothills Blvd. + Roseville CA 95747 + US + +70-F2-20 (hex) Actiontec Electronics, Inc +70F220 (base 16) Actiontec Electronics, Inc + 760 North Mary Ave + Sunnyvale CA 94085 + US + +4C-C2-06 (hex) Somfy +4CC206 (base 16) Somfy + 50 avenue du nouveau monde + Cluses 74300 + FR + +50-DC-E7 (hex) Amazon Technologies Inc. +50DCE7 (base 16) Amazon Technologies Inc. + P.O Box 8102 + Reno NV 89507 + US + +04-C9-D9 (hex) Dish Technologies Corp +04C9D9 (base 16) Dish Technologies Corp + 94 Inverness Terrace E + Englewood CO 80112 + US + +00-24-AF (hex) Dish Technologies Corp +0024AF (base 16) Dish Technologies Corp + 94 Inverness Terrace E + Englewood CO 80112 + US + +28-57-67 (hex) Dish Technologies Corp +285767 (base 16) Dish Technologies Corp + 94 Inverness Terrace E + Englewood CO 80112 + US + +70-55-F8 (hex) Cerebras Systems Inc +7055F8 (base 16) Cerebras Systems Inc + 175 S San Antonio Rd #100 + Los Altos CA 94022 + US + +9C-43-1E (hex) IEEE Registration Authority +9C431E (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +6C-54-CD (hex) LAMPEX ELECTRONICS LIMITED +6C54CD (base 16) LAMPEX ELECTRONICS LIMITED + 6-2/231/B, Kukatpally, + Hyderabad Telangana 500072 + IN + +80-C5-48 (hex) Shenzhen Zowee Technology Co.,Ltd +80C548 (base 16) Shenzhen Zowee Technology Co.,Ltd + NO.5 Zowee technology building, Science & Technology industrial park of privately Science & Technology industrial park of privately owned enterprises + Shenzhen GuangDong 518055 + CN + +88-3D-24 (hex) Google, Inc. +883D24 (base 16) Google, Inc. + 1600 Amphitheatre Parkway + Mountain View CA 94043 + US + +90-84-8B (hex) HDR10+ Technologies, LLC +90848B (base 16) HDR10+ Technologies, LLC + 3855 SW 153rd Drive + Beaverton OR 97006 + US + +0C-23-69 (hex) Honeywell SPS +0C2369 (base 16) Honeywell SPS + 700 Visions Dr. + Skaneateles Falls NY 13153 + US + +E8-DE-FB (hex) MESOTIC SAS +E8DEFB (base 16) MESOTIC SAS + 11, Avenue de la Division Leclerc + Cachan 94230 + FR + +8C-16-45 (hex) LCFC(HeFei) Electronics Technology co., ltd +8C1645 (base 16) LCFC(HeFei) Electronics Technology co., ltd + YunGu Road 3188-1 + Hefei Anhui 230000 + CN + +B4-E9-A3 (hex) port GmbH +B4E9A3 (base 16) port GmbH + Regensburger Str. 7b + Halle (S.) 06132 + DE + +6C-B6-CA (hex) DIVUS GmbH +6CB6CA (base 16) DIVUS GmbH + Pillhof 51 + Eppan 39057 + IT + +B8-DE-5E (hex) LONGCHEER TELECOMMUNICATION LIMITED +B8DE5E (base 16) LONGCHEER TELECOMMUNICATION LIMITED + Building 1,No.401,Caobao Rd + Shanghai Xuhui District 200233 + CN + +DC-DD-24 (hex) Energica Motor Company SpA +DCDD24 (base 16) Energica Motor Company SpA + Via Cesare della Chiesa, 150 + MODENA (MO) Mo 41126 + IT + +64-1C-B0 (hex) Samsung Electronics Co.,Ltd +641CB0 (base 16) Samsung Electronics Co.,Ltd + 129, Samsung-ro, Youngtongl-Gu + Suwon Gyeonggi-Do 16677 + KR + +94-63-72 (hex) vivo Mobile Communication Co., Ltd. +946372 (base 16) vivo Mobile Communication Co., Ltd. + #283,BBK Road + Wusha,Chang'An DongGuan City,Guangdong, 523860 + CN + +44-9E-F9 (hex) vivo Mobile Communication Co., Ltd. +449EF9 (base 16) vivo Mobile Communication Co., Ltd. + #283,BBK Road + Wusha,Chang'An DongGuan City,Guangdong, 523860 + CN + +8C-F9-57 (hex) RuiXingHengFang Network (Shenzhen) Co.,Ltd +8CF957 (base 16) RuiXingHengFang Network (Shenzhen) Co.,Ltd + Room 507, 2nd tower of KangTai biological building NO.6 KeFa Rd. NanShan District + Shenzhen Guangdong 518057 + CN + +00-1B-D8 (hex) FLIR Systems Inc +001BD8 (base 16) FLIR Systems Inc + 65 Challenger Road + Ridgefield Park NJ 07660-2103 + US + +20-36-5B (hex) Megafone Limited +20365B (base 16) Megafone Limited + Unit 702,7/F,Bankok Bank Building,NO.18 Bonham Strand West + Hong Kong 999077 + HK + +E8-DE-00 (hex) ChongQing GuanFang Technology Co.,LTD +E8DE00 (base 16) ChongQing GuanFang Technology Co.,LTD + 2F, A District,No.3 Middle Section of Mount Huangshan Avenue + ChongQing ChongQing 401121 + CN + +3C-DC-BC (hex) Samsung Electronics Co.,Ltd +3CDCBC (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +F4-71-90 (hex) Samsung Electronics Co.,Ltd +F47190 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +4C-77-6D (hex) Cisco Systems, Inc +4C776D (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +FC-A6-CD (hex) Fiberhome Telecommunication Technologies Co.,LTD +FCA6CD (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +64-DB-8B (hex) Hangzhou Hikvision Digital Technology Co.,Ltd. +64DB8B (base 16) Hangzhou Hikvision Digital Technology Co.,Ltd. + No.555 Qianmo Road + Hangzhou Zhejiang 310052 + CN + +78-25-7A (hex) LEO Innovation Lab +78257A (base 16) LEO Innovation Lab + Silkegade 8 + Copenhagen K Denmark 1113 + DK + +A4-DA-22 (hex) IEEE Registration Authority +A4DA22 (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +00-03-97 (hex) FireBrick Limited +000397 (base 16) FireBrick Limited + C/O Andrews & Arnold Ltd, + Enterprise Court, Downmill Road Bracknell, Berks RG12 1QS + GB + +A8-61-0A (hex) ARDUINO AG +A8610A (base 16) ARDUINO AG + Corso San Gottardo 6A + Chiasso 6830 + CH + +60-97-DD (hex) MicroSys Electronics GmbH +6097DD (base 16) MicroSys Electronics GmbH + Muehlweg 1 + Sauerlach 82054 + DE + +04-79-70 (hex) HUAWEI TECHNOLOGIES CO.,LTD +047970 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +C4-9F-4C (hex) HUAWEI TECHNOLOGIES CO.,LTD +C49F4C (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +A0-57-E3 (hex) HUAWEI TECHNOLOGIES CO.,LTD +A057E3 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +E0-E6-2E (hex) TCT mobile ltd +E0E62E (base 16) TCT mobile ltd + No.86 hechang 7th road, zhongkai, Hi-Tech District + Hui Zhou Guang Dong 516006 + CN + +00-A0-85 (hex) Private +00A085 (base 16) Private + +94-B8-6D (hex) Intel Corporate +94B86D (base 16) Intel Corporate + Lot 8, Jalan Hi-Tech 2/3 + Kulim Kedah 09000 + MY + +58-7A-6A (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +587A6A (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +E4-C4-83 (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +E4C483 (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +30-FD-38 (hex) Google, Inc. +30FD38 (base 16) Google, Inc. + 1600 Amphitheatre Parkway + Mountain View CA 94043 + US + +18-50-2A (hex) SOARNEX +18502A (base 16) SOARNEX + NO.158, RUIHU ST., NEIHU DIST., + TAIPEI CITY TAIWAN (R.O.C.) 11494 + TW + +30-45-11 (hex) Texas Instruments +304511 (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +34-03-DE (hex) Texas Instruments +3403DE (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +F4-E1-1E (hex) Texas Instruments +F4E11E (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +10-E7-C6 (hex) Hewlett Packard +10E7C6 (base 16) Hewlett Packard + 11445 Compaq Center Drive + Houston TX 77070 + US + +20-F5-43 (hex) Hui Zhou Gaoshengda Technology Co.,LTD +20F543 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD + No.75,Zhongkai High-Tech Development District,Huizhou + Hui Zhou Guangdong 516006 + CN + +1C-1E-E3 (hex) Hui Zhou Gaoshengda Technology Co.,LTD +1C1EE3 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD + No.75,Zhongkai High-Tech Development District,Huizhou + Hui Zhou Guangdong 516006 + CN + +0C-91-60 (hex) Hui Zhou Gaoshengda Technology Co.,LTD +0C9160 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD + No.75,Zhongkai High-Tech Development District,Huizhou + Hui Zhou Guangdong 516006 + CN + +0C-62-A6 (hex) Hui Zhou Gaoshengda Technology Co.,LTD +0C62A6 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD + No.75,Zhongkai High-Tech Development District,Huizhou + Hui Zhou Guangdong 516006 + CN + +7C-49-EB (hex) XIAOMI Electronics,CO.,LTD +7C49EB (base 16) XIAOMI Electronics,CO.,LTD + Xiaomi Building, No.68 Qinghe Middle Street,Haidian District + Beijing Beijing 100085 + CN + +C4-33-06 (hex) China Mobile Group Device Co.,Ltd. +C43306 (base 16) China Mobile Group Device Co.,Ltd. + 32 Xuanwumen West Street,Xicheng District + Beijing 100053 + CN + +68-FE-DA (hex) Fiberhome Telecommunication Technologies Co.,LTD +68FEDA (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +0C-6A-BC (hex) Fiberhome Telecommunication Technologies Co.,LTD +0C6ABC (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +00-01-B9 (hex) SKF (U.K.) Limited +0001B9 (base 16) SKF (U.K.) Limited + 2 Michaelson Square Kirkton Campus + Livingston West Lothian EH54 7DP + GB + +64-C3-D6 (hex) Juniper Networks +64C3D6 (base 16) Juniper Networks + 1133 Innovation Way + Sunnyvale CA 94089 + US + C0-D9-F7 (hex) ShanDong Domor Intelligent S&T CO.,Ltd C0D9F7 (base 16) ShanDong Domor Intelligent S&T CO.,Ltd Jining high-tech zone base of production,education & research @@ -55145,324 +56504,6 @@ D428D5 (base 16) TCT mobile ltd Round Rock TX 78682 US -00-D0-37 (hex) ARRIS Group, Inc. -00D037 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-D6 (hex) ARRIS Group, Inc. -001DD6 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -30-60-23 (hex) ARRIS Group, Inc. -306023 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -AC-B3-13 (hex) ARRIS Group, Inc. -ACB313 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -14-AB-F0 (hex) ARRIS Group, Inc. -14ABF0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -0C-F8-93 (hex) ARRIS Group, Inc. -0CF893 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -84-61-A0 (hex) ARRIS Group, Inc. -8461A0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E8-33-81 (hex) ARRIS Group, Inc. -E83381 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -44-E1-37 (hex) ARRIS Group, Inc. -44E137 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -FC-6F-B7 (hex) ARRIS Group, Inc. -FC6FB7 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -A0-C5-62 (hex) ARRIS Group, Inc. -A0C562 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -A0-55-DE (hex) ARRIS Group, Inc. -A055DE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -54-E2-E0 (hex) ARRIS Group, Inc. -54E2E0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -28-C8-7A (hex) ARRIS Group, Inc. -28C87A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-26-D9 (hex) ARRIS Group, Inc. -0026D9 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -C8-AA-21 (hex) ARRIS Group, Inc. -C8AA21 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -2C-9E-5F (hex) ARRIS Group, Inc. -2C9E5F (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-24-95 (hex) ARRIS Group, Inc. -002495 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-26-42 (hex) ARRIS Group, Inc. -002642 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -A4-ED-4E (hex) ARRIS Group, Inc. -A4ED4E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-24-A1 (hex) ARRIS Group, Inc. -0024A1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-75 (hex) ARRIS Group, Inc. -002375 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-CE (hex) ARRIS Group, Inc. -0015CE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-13-11 (hex) ARRIS Group, Inc. -001311 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-A2 (hex) ARRIS Group, Inc. -0015A2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-96 (hex) ARRIS Group, Inc. -001596 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-00-CA (hex) ARRIS Group, Inc. -0000CA (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -60-19-71 (hex) ARRIS Group, Inc. -601971 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-D1 (hex) ARRIS Group, Inc. -001DD1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-16-26 (hex) ARRIS Group, Inc. -001626 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-11-1A (hex) ARRIS Group, Inc. -00111A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-2F (hex) ARRIS Group, Inc. -00152F (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-0B-06 (hex) ARRIS Group, Inc. -000B06 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-0F-9F (hex) ARRIS Group, Inc. -000F9F (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-11-AE (hex) ARRIS Group, Inc. -0011AE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-20-40 (hex) ARRIS Group, Inc. -002040 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -1C-1B-68 (hex) ARRIS Group, Inc. -1C1B68 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -10-86-8C (hex) ARRIS Group, Inc. -10868C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -10-05-B1 (hex) ARRIS Group, Inc. -1005B1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -7C-26-34 (hex) ARRIS Group, Inc. -7C2634 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1E-5A (hex) ARRIS Group, Inc. -001E5A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-BE (hex) ARRIS Group, Inc. -001DBE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-13-71 (hex) ARRIS Group, Inc. -001371 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-14-9A (hex) ARRIS Group, Inc. -00149A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1A-1B (hex) ARRIS Group, Inc. -001A1B (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-18-A4 (hex) ARRIS Group, Inc. -0018A4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1A-DB (hex) ARRIS Group, Inc. -001ADB (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1F-7E (hex) ARRIS Group, Inc. -001F7E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1C-11 (hex) ARRIS Group, Inc. -001C11 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1C-C1 (hex) ARRIS Group, Inc. -001CC1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-6B (hex) ARRIS Group, Inc. -001D6B (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -40-0D-10 (hex) ARRIS Group, Inc. -400D10 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -34-1F-E4 (hex) ARRIS Group, Inc. -341FE4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - A0-09-4C (hex) CenturyLink A0094C (base 16) CenturyLink 100 CenturyLink Drive @@ -55529,18 +56570,6 @@ C0A5DD (base 16) SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD. Shenzhen Guangdong 518057 CN -18-35-D1 (hex) ARRIS Group, Inc. -1835D1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -4C-38-D8 (hex) ARRIS Group, Inc. -4C38D8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - DC-BE-7A (hex) Zhejiang Nurotron Biotechnology Co. DCBE7A (base 16) Zhejiang Nurotron Biotechnology Co. Building4, No.99 Xiaomao Rd @@ -56378,1010 +57407,176 @@ A0FE61 (base 16) Vivint Wireless Inc. Shenzhen, Guangdong, 518067 CN -F4-6E-24 (hex) NEC Personal Computers, Ltd. -F46E24 (base 16) NEC Personal Computers, Ltd. - Akihabara UDX,14-1, Sotokanda 4-Chome - Chiyoda-ku Tokyo 101-0021 - JP - -88-82-79 (hex) Shenzhen RB-LINK Intelligent Technology Co.Ltd -888279 (base 16) Shenzhen RB-LINK Intelligent Technology Co.Ltd - Second floor, No 22, Wanfeng the third industry area, Shajing , BaoAn district - Shenzhen City 518125 +B4-CD-27 (hex) HUAWEI TECHNOLOGIES CO.,LTD +B4CD27 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 CN -78-32-1B (hex) D-Link International -78321B (base 16) D-Link International - 1 Internal Business Park, #03-12,The Synergy, Singapore - Singapore Singapore 609917 - SG - -EC-51-BC (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD -EC51BC (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD - NO.18 HAIBIN ROAD, - DONG GUAN GUANG DONG 523860 +3C-CD-5D (hex) HUAWEI TECHNOLOGIES CO.,LTD +3CCD5D (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 CN -F0-79-E8 (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD -F079E8 (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD - NO.18 HAIBIN ROAD, - DONG GUAN GUANG DONG 523860 - CN - -D8-A5-34 (hex) Spectronix Corporation -D8A534 (base 16) Spectronix Corporation - 3-28-15, Tarumi-cho - Suita-city Osaka 564-0062 - JP - -58-38-79 (hex) RICOH COMPANY, LTD. -583879 (base 16) RICOH COMPANY, LTD. - 1005, Shimo-ogino - Atsugi-City Kanagawa-Pref. 243-0298 - JP - -94-28-2E (hex) New H3C Technologies Co., Ltd -94282E (base 16) New H3C Technologies Co., Ltd - 466 Changhe Road, Binjiang District - Hangzhou Zhejiang 310052 - CN - -D8-43-ED (hex) Suzuken -D843ED (base 16) Suzuken - 8, Higashikatahamachi, Higashiku - Nagoya Aich 4610015 - JP - -88-75-98 (hex) Samsung Electronics Co.,Ltd -887598 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -D0-B1-28 (hex) Samsung Electronics Co.,Ltd -D0B128 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -FC-EE-E6 (hex) FORMIKE ELECTRONIC CO., LTD -FCEEE6 (base 16) FORMIKE ELECTRONIC CO., LTD - Flats 401-403, Block B, iPARK Building, 26 Dengliang Rd., NanShan Distric - Shenzhen Guang Dong 518054 - CN - -2C-43-1A (hex) Shenzhen YOUHUA Technology Co., Ltd -2C431A (base 16) Shenzhen YOUHUA Technology Co., Ltd - Room 407 Shenzhen University-town Business Park,Lishan Road,Taoyuan Street,Nanshan District - Shenzhen Guangdong 518055 - CN - -A8-D3-C8 (hex) Topcon Electronics GmbH & Co. KG -A8D3C8 (base 16) Topcon Electronics GmbH & Co. KG - Industriestraße 7 - Geisenheim 65366 - DE - -38-9F-5A (hex) C-Kur TV Inc. -389F5A (base 16) C-Kur TV Inc. - A-1902, 583, Yangcheon-ro, Gangseo-gu - Seoul 07547 - KR - -24-B2-09 (hex) Avaya Inc -24B209 (base 16) Avaya Inc - 360 Mt Kemble Ave - Morristown NJ 07960 - US - -24-E1-24 (hex) Xiamen Ursaconn Technology Co. , Ltd. -24E124 (base 16) Xiamen Ursaconn Technology Co. , Ltd. - 3/F, No. 46 Guanri Road, 2nd Software Park - Xiamen Fujian 361008 - CN - -DC-68-EB (hex) Nintendo Co.,Ltd -DC68EB (base 16) Nintendo Co.,Ltd - 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU - KYOTO KYOTO 601-8501 - JP - -94-41-C1 (hex) Mini-Cam Limited -9441C1 (base 16) Mini-Cam Limited - Unit 4 Yew Tree Way - Warrington Cheshire WA33JD - GB - -E8-D8-19 (hex) AzureWave Technology Inc. -E8D819 (base 16) AzureWave Technology Inc. - 8F., No. 94, Baozhong Rd. - New Taipei City Taiwan 231 - TW - -AC-1D-DF (hex) IEEE Registration Authority -AC1DDF (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 - US - -00-08-FA (hex) KEB Automation KG -0008FA (base 16) KEB Automation KG - Südstraße 38 - Barntrup NRW D-32683 - DE - -18-39-6E (hex) SUNSEA TELECOMMUNICATIONS CO.,LTD. -18396E (base 16) SUNSEA TELECOMMUNICATIONS CO.,LTD. - High tech Industrial Park,Longhua District of Shenzhen City,South central concept - Shenzhen 518110 - CN - -E8-DF-70 (hex) AVM Audiovisuelles Marketing und Computersysteme GmbH -E8DF70 (base 16) AVM Audiovisuelles Marketing und Computersysteme GmbH - Alt-Moabit 95 - Berlin Berlin 10559 - DE - -7C-DD-76 (hex) Suzhou Hanming Technologies Co., Ltd. -7CDD76 (base 16) Suzhou Hanming Technologies Co., Ltd. - Suite 407, No. 166, Ren Ai Road - Suzhou Jiangsu 215123 - CN - -24-68-80 (hex) Braveridge.co.,ltd. -246880 (base 16) Braveridge.co.,ltd. - 3-27-2, Susenji - Nishi-ku, Fukuoka-shi Fukuoka 819-0373 - JP - -D0-04-01 (hex) Motorola Mobility LLC, a Lenovo Company -D00401 (base 16) Motorola Mobility LLC, a Lenovo Company - 222 West Merchandise Mart Plaza - Chicago IL 60654 - US - -58-90-43 (hex) Sagemcom Broadband SAS -589043 (base 16) Sagemcom Broadband SAS +34-6B-46 (hex) Sagemcom Broadband SAS +346B46 (base 16) Sagemcom Broadband SAS 250, route de l'Empereur Rueil Malmaison Cedex hauts de seine 92848 FR -28-CF-08 (hex) ESSYS -28CF08 (base 16) ESSYS - gaetbeol-ro - Incheon 21999 - KR - -70-7D-B9 (hex) Cisco Systems, Inc -707DB9 (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 - US - -34-6F-ED (hex) Enovation Controls -346FED (base 16) Enovation Controls - 5311 S. 122nd E. Ave. - Tulsa OK 74146 - US - -00-00-B4 (hex) Edimax Technology Co. Ltd. -0000B4 (base 16) Edimax Technology Co. Ltd. - No. 278, Xinhu 1st Road - Taipei City Neihu Dist 248 - TW - -08-BE-AC (hex) Edimax Technology Co. Ltd. -08BEAC (base 16) Edimax Technology Co. Ltd. - No. 278, Xinhu 1st Road - Taipei City Neihu Dist 248 - TW - -F0-6D-78 (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD -F06D78 (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD - NO.18 HAIBIN ROAD, - DONG GUAN GUANG DONG 523860 - CN - -78-44-FD (hex) TP-LINK TECHNOLOGIES CO.,LTD. -7844FD (base 16) TP-LINK TECHNOLOGIES CO.,LTD. - Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan - Shenzhen Guangdong 518057 - CN - -50-3E-AA (hex) TP-LINK TECHNOLOGIES CO.,LTD. -503EAA (base 16) TP-LINK TECHNOLOGIES CO.,LTD. - Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan - Shenzhen Guangdong 518057 - CN - -AC-84-C6 (hex) TP-LINK TECHNOLOGIES CO.,LTD. -AC84C6 (base 16) TP-LINK TECHNOLOGIES CO.,LTD. - Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan - Shenzhen Guangdong 518057 - CN - -34-D0-B8 (hex) IEEE Registration Authority -34D0B8 (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 - US - -B0-C1-9E (hex) zte corporation -B0C19E (base 16) zte corporation - 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China - shenzhen guangdong 518057 - CN - -0C-37-47 (hex) zte corporation -0C3747 (base 16) zte corporation - 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China - shenzhen guangdong 518057 - CN - -00-00-97 (hex) Dell EMC -000097 (base 16) Dell EMC - 176 South Street - Hopkinton MA 01748 - US - -EC-C0-6A (hex) PowerChord Group Limited -ECC06A (base 16) PowerChord Group Limited - 1 Blythe Road - London W14 0HG - GB - -A8-9F-EC (hex) ARRIS Group, Inc. -A89FEC (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -38-D7-CA (hex) 7HUGS LABS -38D7CA (base 16) 7HUGS LABS - 29 bd Romain Rolland - Montrouge 92120 - FR - -6C-05-D5 (hex) Ethertronics Inc -6C05D5 (base 16) Ethertronics Inc - 5501 Oberlin Drive, Suite 100 - SAN DIEGO CA 92121 - US - -00-1D-F4 (hex) Magellan Technology Pty Limited -001DF4 (base 16) Magellan Technology Pty Limited - 65 Johnston Street - Annandale NSW 2000 - AU - -C0-22-50 (hex) Private -C02250 (base 16) Private - -00-94-A1 (hex) F5 Networks, Inc. -0094A1 (base 16) F5 Networks, Inc. - 401 Elliott Ave. W. - Seattle WA 98119 - US - -18-90-D8 (hex) Sagemcom Broadband SAS -1890D8 (base 16) Sagemcom Broadband SAS - 250, route de l'Empereur - Rueil Malmaison Cedex hauts de seine 92848 - FR - -88-83-5D (hex) FN-LINK TECHNOLOGY LIMITED -88835D (base 16) FN-LINK TECHNOLOGY LIMITED - No.8, Litong Road, Liuyang Economic & Technical Development Zone - ChangSha Hu Nan 410300 - CN - -10-68-3F (hex) LG Electronics (Mobile Communications) -10683F (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -74-A7-22 (hex) LG Electronics (Mobile Communications) -74A722 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -58-A2-B5 (hex) LG Electronics (Mobile Communications) -58A2B5 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -64-89-9A (hex) LG Electronics (Mobile Communications) -64899A (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -88-07-4B (hex) LG Electronics (Mobile Communications) -88074B (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -64-BC-0C (hex) LG Electronics (Mobile Communications) -64BC0C (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -A0-39-F7 (hex) LG Electronics (Mobile Communications) -A039F7 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -04-1B-6D (hex) LG Electronics (Mobile Communications) -041B6D (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -00-1F-6B (hex) LG Electronics (Mobile Communications) -001F6B (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -D0-07-CA (hex) Juniper Networks -D007CA (base 16) Juniper Networks - 1133 Innovation Way - Sunnyvale CA 94089 - US - -F8-6C-E1 (hex) Taicang T&W Electronics -F86CE1 (base 16) Taicang T&W Electronics - 89# Jiang Nan RD - Suzhou Jiangsu 215412 - CN - -1C-73-28 (hex) Connected Home -1C7328 (base 16) Connected Home - 19-22, Rathbone Place - London W1T 1HY - GB - -40-A9-3F (hex) Private -40A93F (base 16) Private - -5C-77-76 (hex) TCT mobile ltd -5C7776 (base 16) TCT mobile ltd - No.86 hechang 7th road, zhongkai, Hi-Tech District - Hui Zhou Guang Dong 516006 - CN - -EC-1D-8B (hex) Cisco Systems, Inc -EC1D8B (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 - US - -0C-EA-C9 (hex) ARRIS Group, Inc. -0CEAC9 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -38-F7-3D (hex) Amazon Technologies Inc. -38F73D (base 16) Amazon Technologies Inc. - P.O Box 8102 - Reno NV 89507 - US - -30-B4-B8 (hex) LG Electronics -30B4B8 (base 16) LG Electronics - 222 LG-ro, JINWI-MYEON - Pyeongtaek-si Gyeonggi-do 451-713 - KR - -2C-FD-AB (hex) Motorola (Wuhan) Mobility Technologies Communication Co., Ltd. -2CFDAB (base 16) Motorola (Wuhan) Mobility Technologies Communication Co., Ltd. - No.19, Gaoxin 4th Road, Wuhan East Lake High-tech Zone, Wuhan - Wuhan Hubei 430000 - CN - -F4-1E-5E (hex) RtBrick Inc. -F41E5E (base 16) RtBrick Inc. - 26 Kingston Terrace - Princeton NJ 08540 - US - -18-06-FF (hex) Acer Computer(Shanghai) Limited. -1806FF (base 16) Acer Computer(Shanghai) Limited. - Room1806-20, No.769, Jiujiang Road, Huangpu District - Shanghai 200000 - CN - -B8-EC-A3 (hex) Zyxel Communications Corporation -B8ECA3 (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -EC-43-F6 (hex) Zyxel Communications Corporation -EC43F6 (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -58-8B-F3 (hex) Zyxel Communications Corporation -588BF3 (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -FC-F5-28 (hex) Zyxel Communications Corporation -FCF528 (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -00-19-CB (hex) Zyxel Communications Corporation -0019CB (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -60-31-97 (hex) Zyxel Communications Corporation -603197 (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -34-FA-9F (hex) Ruckus Wireless -34FA9F (base 16) Ruckus Wireless +D4-C1-9E (hex) Ruckus Wireless +D4C19E (base 16) Ruckus Wireless 350 West Java Drive Sunnyvale CA 94089 US -50-6F-98 (hex) Sehaj Synergy Technologies Private Limited -506F98 (base 16) Sehaj Synergy Technologies Private Limited - E-112A, Kataria Colony, Ramanagar Extension, New Sanganer Road, Sodala, Jaipur-302019 - Jaipur Rajasthan 302019 +08-DF-CB (hex) Systrome Networks +08DFCB (base 16) Systrome Networks + Sohna Road + Gurgaon Haryana 122018 IN -04-F1-28 (hex) HMD Global Oy -04F128 (base 16) HMD Global Oy - Karaportti 2 - Espoo 02610 - FI - -F0-65-C2 (hex) Yanfeng Visteon Electronics Technology (Shanghai) Co.,Ltd. -F065C2 (base 16) Yanfeng Visteon Electronics Technology (Shanghai) Co.,Ltd. - 1001 North Qin Zhou Road - Shang Hai 200233 +9C-A6-15 (hex) TP-LINK TECHNOLOGIES CO.,LTD. +9CA615 (base 16) TP-LINK TECHNOLOGIES CO.,LTD. + Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan + Shenzhen Guangdong 518057 CN -70-B7-E2 (hex) Jiangsu Miter Technology Co.,Ltd. -70B7E2 (base 16) Jiangsu Miter Technology Co.,Ltd. - No.86 fuyuan community,the town of houbei - Jurong Jiangsu 212400 - CN - -50-3C-EA (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD -503CEA (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD - NO.18 HAIBIN ROAD, - DONG GUAN GUANG DONG 523860 - CN - -00-04-CF (hex) Seagate Technology -0004CF (base 16) Seagate Technology - M/S NW1F01 - Longmont CO 80503 +28-AC-9E (hex) Cisco Systems, Inc +28AC9E (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 US -00-14-C3 (hex) Seagate Technology -0014C3 (base 16) Seagate Technology - M/S NW1F01 - Longmont CO 80503 - US - -00-20-37 (hex) Seagate Technology -002037 (base 16) Seagate Technology - 8001 E. BLOOMINGTON FWY - BLOOMINGTON MN 55420 - US - -00-50-CC (hex) Seagate Cloud Systems Inc -0050CC (base 16) Seagate Cloud Systems Inc - 1351 S Sunset Street - Longmont CO 80501 - US - -1C-27-DD (hex) Datang Gohighsec(zhejiang)Information Technology Co.,Ltd. -1C27DD (base 16) Datang Gohighsec(zhejiang)Information Technology Co.,Ltd. - Beiwu Innovation park, #23 Beiwu Villiage Road - Beijing Beijing 100000 +04-FA-83 (hex) Qingdao Haier Technology Co.,Ltd +04FA83 (base 16) Qingdao Haier Technology Co.,Ltd + Building A01,Haier Information Park, No.1 Haier Road, + Qingdao Shandong 266101 CN -00-72-63 (hex) Netcore Technology Inc. -007263 (base 16) Netcore Technology Inc. - ORIENTAL CYBERPORT,HIGHTECH 6 ROAD - Shenzhen 518057 +84-F3-EB (hex) Espressif Inc. +84F3EB (base 16) Espressif Inc. + Room 204, Building 2, 690 Bibo Road, Pudong New Area + Shanghai Shanghai 201203 CN -48-55-5C (hex) Wu Qi Technologies,Inc. -48555C (base 16) Wu Qi Technologies,Inc. - Xiantao street data on the 19th East Road - Chongqing City Yubei District 401120 +10-B3-6F (hex) Bowei Technology Company Limited +10B36F (base 16) Bowei Technology Company Limited + 2F,Building No.6C,1658,Gumei Rd + Shanghai Shanghai 200233 CN -70-EE-A3 (hex) Eoptolink Technology Inc. Ltd, -70EEA3 (base 16) Eoptolink Technology Inc. Ltd, - No.127 West Wulian Street - Chengdu China/Sichuan 610213 +80-05-88 (hex) Ruijie Networks Co.,LTD +800588 (base 16) Ruijie Networks Co.,LTD + 20# Building,Star-net Science Plaza,Juyuanzhou, 618 Jinshan Road + Fuzhou Fujian 350002 CN -5C-58-19 (hex) Jingsheng Technology Co., Ltd. -5C5819 (base 16) Jingsheng Technology Co., Ltd. - Linyin street 5# - chengdu sichuan 610000 +9C-E8-95 (hex) New H3C Technologies Co., Ltd +9CE895 (base 16) New H3C Technologies Co., Ltd + 466 Changhe Road, Binjiang District + Hangzhou Zhejiang 310052 CN -74-7D-24 (hex) Phicomm (Shanghai) Co., Ltd. -747D24 (base 16) Phicomm (Shanghai) Co., Ltd. - 3666 SiXian Rd.,Songjiang District - Shanghai Shanghai 201616 - CN - -5C-81-A7 (hex) Network Devices Pty Ltd -5C81A7 (base 16) Network Devices Pty Ltd - 16 Dickson Ave - Artarmon NSW 2064 - AU - -80-8D-B7 (hex) Hewlett Packard Enterprise -808DB7 (base 16) Hewlett Packard Enterprise - 8000 Foothills Blvd. - Roseville CA 95747 - US - -10-CE-A9 (hex) Texas Instruments -10CEA9 (base 16) Texas Instruments - 12500 TI Blvd - Dallas TX 75243 - US - -F8-B5-68 (hex) IEEE Registration Authority -F8B568 (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 - US - -14-44-4A (hex) Apollo Seiko Ltd. -14444A (base 16) Apollo Seiko Ltd. - 2271-7 Jinba - Gotenba Shizuoka 412-0047 - JP - -5C-0C-0E (hex) Guizhou Huaxintong Semiconductor Technology Co Ltd -5C0C0E (base 16) Guizhou Huaxintong Semiconductor Technology Co Ltd - Sitelin Park - Intersection between Jin ma Ave and Qianzhong Ave Gui An New Area, Guizhou Prov 550003 - CN - -2C-FD-A1 (hex) ASUSTek COMPUTER INC. -2CFDA1 (base 16) ASUSTek COMPUTER INC. - 15,Li-Te Rd., Peitou, Taipei 112, Taiwan - Taipei Taiwan 112 - TW - -38-07-D4 (hex) Zeppelin Systems GmbH -3807D4 (base 16) Zeppelin Systems GmbH - Messenhäuser Str. 37-45 - Rödermark Hessen 63322 - DE - -64-20-9F (hex) Tilgin AB -64209F (base 16) Tilgin AB - Finlandsgatan 40 - Kista 16474 - SE - -04-E0-B0 (hex) Shenzhen YOUHUA Technology Co., Ltd -04E0B0 (base 16) Shenzhen YOUHUA Technology Co., Ltd - Room 407 Shenzhen University-town Business Park,Lishan Road,Taoyuan Street,Nanshan District - Shenzhen Guangdong 518055 - CN - -0C-98-38 (hex) Xiaomi Communications Co Ltd -0C9838 (base 16) Xiaomi Communications Co Ltd - The Rainbow City of China Resources - NO.68, Qinghe Middle Street Haidian District, Beijing 100085 - CN - -00-04-96 (hex) Extreme Networks, Inc. -000496 (base 16) Extreme Networks, Inc. - 3585 Monroe Street - Santa Clara CA 95051 - US - -B8-50-01 (hex) Extreme Networks, Inc. -B85001 (base 16) Extreme Networks, Inc. - ONE ZEBRA PLAZA - HOLTSVILLE NY 11742 - US - -7C-76-30 (hex) Shenzhen YOUHUA Technology Co., Ltd -7C7630 (base 16) Shenzhen YOUHUA Technology Co., Ltd - Room 407 Shenzhen University-town Business Park,Lishan Road,Taoyuan Street,Nanshan District - Shenzhen Guangdong 518055 - CN - -98-22-EF (hex) Liteon Technology Corporation -9822EF (base 16) Liteon Technology Corporation - 4F, 90, Chien 1 Road - New Taipei City Taiwan 23585 - TW - -58-04-54 (hex) ICOMM HK LIMITED -580454 (base 16) ICOMM HK LIMITED - SUITES 2302-6, 23/F GREAT EAGLE CTR 23 HARBOUR RD - WANCHAI NA - HK - -A0-BD-CD (hex) BSkyB Ltd -A0BDCD (base 16) BSkyB Ltd - 130 Kings Road - Brentwood Essex 08854 +00-16-5C (hex) Trackflow Ltd. +00165C (base 16) Trackflow Ltd. + 167-169 Kensington High Street + London England W86SH GB -80-3A-59 (hex) AT&T -803A59 (base 16) AT&T - 1025 Lenox Park Blvd - Atlanta GA 30319 - US - -60-6D-3C (hex) Luxshare Precision Industry Company Limited -606D3C (base 16) Luxshare Precision Industry Company Limited - Floor 2, Block A, Sanyo New Industrial Area - West Haoyi Community, Shajing Subdistrict Office Bao'an District, Shenzhen, Guangdong 523000 +04-E2-29 (hex) Qingdao Haier Technology Co.,Ltd +04E229 (base 16) Qingdao Haier Technology Co.,Ltd + Building A01,Haier Information Park, No.1 Haier Road, + Qingdao Shandong 266101 CN -CC-4D-38 (hex) Carnegie Technologies -CC4D38 (base 16) Carnegie Technologies - 9737 Great Hills Trail #260 - Austin TX 78759 - US +78-F9-B4 (hex) Nokia +78F9B4 (base 16) Nokia + Karaportti 3 + Espoo Finland 02610 + FI -08-AE-D6 (hex) Samsung Electronics Co.,Ltd -08AED6 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR +04-D3-B0 (hex) Intel Corporate +04D3B0 (base 16) Intel Corporate + Lot 8, Jalan Hi-Tech 2/3 + Kulim Kedah 09000 + MY -B0-67-2F (hex) Bowers & Wilkins -B0672F (base 16) Bowers & Wilkins - 900 Middlefield Rd Floor 4 - Redwood City CA 94063 - US - -A8-16-D0 (hex) Samsung Electronics Co.,Ltd -A816D0 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -88-BD-45 (hex) Samsung Electronics Co.,Ltd -88BD45 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -54-FC-F0 (hex) Samsung Electronics Co.,Ltd -54FCF0 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -CC-50-0A (hex) Fiberhome Telecommunication Technologies Co.,LTD -CC500A (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 +C8-D7-79 (hex) QING DAO HAIER TELECOM CO.,LTD. +C8D779 (base 16) QING DAO HAIER TELECOM CO.,LTD. + No 1 Haier road,Hi-tech Zone,Qingdao,PR.China + Qingdao Shandong 266101 CN -60-B6-17 (hex) Fiberhome Telecommunication Technologies Co.,LTD -60B617 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan City Hubei Province 430074 - CN - -18-A3-E8 (hex) Fiberhome Telecommunication Technologies Co.,LTD -18A3E8 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan City Hubei Province 430074 - CN - -74-1E-93 (hex) Fiberhome Telecommunication Technologies Co.,LTD -741E93 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan City Hubei Province 430074 - CN - -20-89-6F (hex) Fiberhome Telecommunication Technologies Co.,LTD -20896F (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -A0-13-CB (hex) Fiberhome Telecommunication Technologies Co.,LTD -A013CB (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -3C-FB-5C (hex) Fiberhome Telecommunication Technologies Co.,LTD -3CFB5C (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -74-C9-A3 (hex) Fiberhome Telecommunication Technologies Co.,LTD -74C9A3 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -A8-E7-05 (hex) Fiberhome Telecommunication Technologies Co.,LTD -A8E705 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -CC-3A-DF (hex) Neptune Technology Group Inc. -CC3ADF (base 16) Neptune Technology Group Inc. - 1600 AL Highway 229 S - Tallassee AL 36078 - US - -28-ED-E0 (hex) AMPAK Technology, Inc. -28EDE0 (base 16) AMPAK Technology, Inc. - No.1,Jen Ai Road Hsinchu Industrial Park, Hukou - Hsinchu Taiwan ROC. 30352 +3C-E1-A1 (hex) Universal Global Scientific Industrial Co., Ltd. +3CE1A1 (base 16) Universal Global Scientific Industrial Co., Ltd. + 141, Lane 351, Taiping Road, Sec.1,Tsao Tuen + Nan-Tou Taiwan 54261 TW -A8-5B-78 (hex) Apple, Inc. -A85B78 (base 16) Apple, Inc. +58-BA-D4 (hex) HUAWEI TECHNOLOGIES CO.,LTD +58BAD4 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +14-B1-26 (hex) Industrial Software Co +14B126 (base 16) Industrial Software Co + 85, Aleksandyr Malinov Blvd. Office 6 + Sofia 1715 + BG + +B8-C1-11 (hex) Apple, Inc. +B8C111 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -9C-F3-87 (hex) Apple, Inc. -9CF387 (base 16) Apple, Inc. +34-08-BC (hex) Apple, Inc. +3408BC (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -34-A3-95 (hex) Apple, Inc. -34A395 (base 16) Apple, Inc. +84-41-67 (hex) Apple, Inc. +844167 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -48-43-7C (hex) Apple, Inc. -48437C (base 16) Apple, Inc. +B4-F6-1C (hex) Apple, Inc. +B4F61C (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -AC-87-A3 (hex) Apple, Inc. -AC87A3 (base 16) Apple, Inc. +68-AB-1E (hex) Apple, Inc. +68AB1E (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -00-F7-6F (hex) Apple, Inc. -00F76F (base 16) Apple, Inc. +2C-61-F6 (hex) Apple, Inc. +2C61F6 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -A4-5E-60 (hex) Apple, Inc. -A45E60 (base 16) Apple, Inc. +E4-9A-DC (hex) Apple, Inc. +E49ADC (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -0C-BC-9F (hex) Apple, Inc. -0CBC9F (base 16) Apple, Inc. +D0-81-7A (hex) Apple, Inc. +D0817A (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -BC-4C-C4 (hex) Apple, Inc. -BC4CC4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -0C-15-39 (hex) Apple, Inc. -0C1539 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-8D-6C (hex) Apple, Inc. -908D6C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-33-11 (hex) Apple, Inc. -D03311 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-E7-2C (hex) Apple, Inc. -70E72C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-CE-CD (hex) Apple, Inc. -C0CECD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-E0-D9 (hex) Apple, Inc. -98E0D9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E0-AC-CB (hex) Apple, Inc. -E0ACCB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-D7-5F (hex) Apple, Inc. -78D75F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-78-F0 (hex) Apple, Inc. -2078F0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-5A-EB (hex) Apple, Inc. -985AEB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -54-4E-90 (hex) Apple, Inc. -544E90 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-6D-52 (hex) Apple, Inc. -006D52 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-AD-CF (hex) Apple, Inc. -5CADCF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-E8-56 (hex) Apple, Inc. -B8E856 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-B2-1F (hex) Apple, Inc. -90B21F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-BB-CF (hex) Apple, Inc. -A8BBCF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-B5-B7 (hex) Apple, Inc. -C8B5B7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-AF-8F (hex) Apple, Inc. -18AF8F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F4-F9-51 (hex) Apple, Inc. -F4F951 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-C1-F1 (hex) Apple, Inc. -F0C1F1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-03-D8 (hex) Apple, Inc. -9803D8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-2A-14 (hex) Apple, Inc. -C82A14 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -88-C6-63 (hex) Apple, Inc. -88C663 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-7B-9D (hex) Apple, Inc. -8C7B9D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -58-55-CA (hex) Apple, Inc. -5855CA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-08-E0 (hex) Apple, Inc. -CC08E0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E8-06-88 (hex) Apple, Inc. -E80688 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-17-C2 (hex) Apple, Inc. -B817C2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-8D-12 (hex) Apple, Inc. -B88D12 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-23-DB (hex) Apple, Inc. -D023DB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E0-B9-BA (hex) Apple, Inc. -E0B9BA (base 16) Apple, Inc. +C4-61-8B (hex) Apple, Inc. +C4618B (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US @@ -57392,164 +57587,26 @@ E0B9BA (base 16) Apple, Inc. Cupertino CA 95014 US -8C-58-77 (hex) Apple, Inc. -8C5877 (base 16) Apple, Inc. +E0-B9-BA (hex) Apple, Inc. +E0B9BA (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -C0-F2-FB (hex) Apple, Inc. -C0F2FB (base 16) Apple, Inc. +D0-23-DB (hex) Apple, Inc. +D023DB (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -5C-8D-4E (hex) Apple, Inc. -5C8D4E (base 16) Apple, Inc. +B8-8D-12 (hex) Apple, Inc. +B88D12 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -E0-66-78 (hex) Apple, Inc. -E06678 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -1C-1A-C0 (hex) Apple, Inc. -1C1AC0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-F6-50 (hex) Apple, Inc. -C8F650 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-D9-C7 (hex) Apple, Inc. -60D9C7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -3C-E0-72 (hex) Apple, Inc. -3CE072 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F4-1B-A1 (hex) Apple, Inc. -F41BA1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -44-FB-42 (hex) Apple, Inc. -44FB42 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -64-A3-CB (hex) Apple, Inc. -64A3CB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-D1-CB (hex) Apple, Inc. -D8D1CB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -54-26-96 (hex) Apple, Inc. -542696 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -EC-35-86 (hex) Apple, Inc. -EC3586 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -88-CB-87 (hex) Apple, Inc. -88CB87 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-3C-0B (hex) Apple, Inc. -AC3C0B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-78-5F (hex) Apple, Inc. -CC785F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E8-8D-28 (hex) Apple, Inc. -E88D28 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -14-10-9F (hex) Apple, Inc. -14109F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -BC-52-B7 (hex) Apple, Inc. -BC52B7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E0-C9-7A (hex) Apple, Inc. -E0C97A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-95-AE (hex) Apple, Inc. -5C95AE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-FA-BA (hex) Apple, Inc. -8CFABA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -1C-AB-A7 (hex) Apple, Inc. -1CABA7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-FA-CD (hex) Apple, Inc. -60FACD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-09-27 (hex) Apple, Inc. -680927 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-A3-E4 (hex) Apple, Inc. -78A3E4 (base 16) Apple, Inc. +B8-17-C2 (hex) Apple, Inc. +B817C2 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US @@ -57560,32 +57617,74 @@ E0C97A (base 16) Apple, Inc. Cupertino CA 95014 US -80-00-6E (hex) Apple, Inc. -80006E (base 16) Apple, Inc. +78-A3-E4 (hex) Apple, Inc. +78A3E4 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -B4-18-D1 (hex) Apple, Inc. -B418D1 (base 16) Apple, Inc. +68-09-27 (hex) Apple, Inc. +680927 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -14-99-E2 (hex) Apple, Inc. -1499E2 (base 16) Apple, Inc. +60-FA-CD (hex) Apple, Inc. +60FACD (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -1C-9E-46 (hex) Apple, Inc. -1C9E46 (base 16) Apple, Inc. +1C-AB-A7 (hex) Apple, Inc. +1CABA7 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -E0-C7-67 (hex) Apple, Inc. -E0C767 (base 16) Apple, Inc. +78-4F-43 (hex) Apple, Inc. +784F43 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-4D-7F (hex) Apple, Inc. +404D7F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-04-D0 (hex) Apple, Inc. +7C04D0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-9F-EF (hex) Apple, Inc. +BC9FEF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-66-A5 (hex) Apple, Inc. +8866A5 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-E8-7F (hex) Apple, Inc. +88E87F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-53-AC (hex) Apple, Inc. +B853AC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-33-61 (hex) Apple, Inc. +2C3361 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US @@ -57626,44 +57725,38 @@ E05F45 (base 16) Apple, Inc. Cupertino CA 95014 US -88-E8-7F (hex) Apple, Inc. -88E87F (base 16) Apple, Inc. +E0-C7-67 (hex) Apple, Inc. +E0C767 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -B8-53-AC (hex) Apple, Inc. -B853AC (base 16) Apple, Inc. +1C-9E-46 (hex) Apple, Inc. +1C9E46 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -2C-33-61 (hex) Apple, Inc. -2C3361 (base 16) Apple, Inc. +0C-D7-46 (hex) Apple, Inc. +0CD746 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -00-0A-27 (hex) Apple, Inc. -000A27 (base 16) Apple, Inc. +44-00-10 (hex) Apple, Inc. +440010 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -00-30-65 (hex) Apple, Inc. -003065 (base 16) Apple, Inc. +E4-98-D6 (hex) Apple, Inc. +E498D6 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -00-50-E4 (hex) Apple, Inc. -0050E4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -BC-92-6B (hex) Apple, Inc. -BC926B (base 16) Apple, Inc. +60-69-44 (hex) Apple, Inc. +606944 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US @@ -57692,56 +57785,98 @@ F431C3 (base 16) Apple, Inc. Cupertino CA 95014 US -60-69-44 (hex) Apple, Inc. -606944 (base 16) Apple, Inc. +BC-92-6B (hex) Apple, Inc. +BC926B (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -E4-98-D6 (hex) Apple, Inc. -E498D6 (base 16) Apple, Inc. +00-50-E4 (hex) Apple, Inc. +0050E4 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -0C-D7-46 (hex) Apple, Inc. -0CD746 (base 16) Apple, Inc. +00-30-65 (hex) Apple, Inc. +003065 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -44-00-10 (hex) Apple, Inc. -440010 (base 16) Apple, Inc. +00-0A-27 (hex) Apple, Inc. +000A27 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -78-4F-43 (hex) Apple, Inc. -784F43 (base 16) Apple, Inc. +00-14-51 (hex) Apple, Inc. +001451 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -40-4D-7F (hex) Apple, Inc. -404D7F (base 16) Apple, Inc. +8C-7B-9D (hex) Apple, Inc. +8C7B9D (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -7C-04-D0 (hex) Apple, Inc. -7C04D0 (base 16) Apple, Inc. +88-C6-63 (hex) Apple, Inc. +88C663 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -BC-9F-EF (hex) Apple, Inc. -BC9FEF (base 16) Apple, Inc. +C8-2A-14 (hex) Apple, Inc. +C82A14 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -88-66-A5 (hex) Apple, Inc. -8866A5 (base 16) Apple, Inc. +98-03-D8 (hex) Apple, Inc. +9803D8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-58-77 (hex) Apple, Inc. +8C5877 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-19-E3 (hex) Apple, Inc. +0019E3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-23-12 (hex) Apple, Inc. +002312 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-23-32 (hex) Apple, Inc. +002332 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-24-36 (hex) Apple, Inc. +002436 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-25-4B (hex) Apple, Inc. +00254B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-26-BB (hex) Apple, Inc. +0026BB (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US @@ -57764,356 +57899,599 @@ BC9FEF (base 16) Apple, Inc. Cupertino CA 95014 US -84-41-67 (hex) Apple, Inc. -844167 (base 16) Apple, Inc. +E8-06-88 (hex) Apple, Inc. +E80688 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -B4-F6-1C (hex) Apple, Inc. -B4F61C (base 16) Apple, Inc. +CC-08-E0 (hex) Apple, Inc. +CC08E0 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -E4-9A-DC (hex) Apple, Inc. -E49ADC (base 16) Apple, Inc. +58-55-CA (hex) Apple, Inc. +5855CA (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -B8-C1-11 (hex) Apple, Inc. -B8C111 (base 16) Apple, Inc. +5C-09-47 (hex) Apple, Inc. +5C0947 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -34-08-BC (hex) Apple, Inc. -3408BC (base 16) Apple, Inc. +38-89-2C (hex) Apple, Inc. +38892C (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -D0-81-7A (hex) Apple, Inc. -D0817A (base 16) Apple, Inc. +40-83-1D (hex) Apple, Inc. +40831D (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -C4-61-8B (hex) Apple, Inc. -C4618B (base 16) Apple, Inc. +50-BC-96 (hex) Apple, Inc. +50BC96 (base 16) Apple, Inc. 1 Infinite Loop Cupertino CA 95014 US -68-AB-1E (hex) Apple, Inc. -68AB1E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -2C-61-F6 (hex) Apple, Inc. -2C61F6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-26-BB (hex) Apple, Inc. -0026BB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-25-4B (hex) Apple, Inc. -00254B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-24-36 (hex) Apple, Inc. -002436 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-23-32 (hex) Apple, Inc. -002332 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-23-12 (hex) Apple, Inc. -002312 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-19-E3 (hex) Apple, Inc. -0019E3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-14-51 (hex) Apple, Inc. -001451 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -50-DC-E7 (hex) Amazon Technologies Inc. -50DCE7 (base 16) Amazon Technologies Inc. - P.O Box 8102 - Reno NV 89507 - US - -04-09-73 (hex) Hewlett Packard Enterprise -040973 (base 16) Hewlett Packard Enterprise - 8000 Foothills Blvd. - Roseville CA 95747 - US - -4C-C2-06 (hex) Somfy -4CC206 (base 16) Somfy - 50 avenue du nouveau monde - Cluses 74300 - FR - -70-F2-20 (hex) Actiontec Electronics, Inc -70F220 (base 16) Actiontec Electronics, Inc - 760 North Mary Ave - Sunnyvale CA 94085 - US - -28-57-67 (hex) Dish Technologies Corp -285767 (base 16) Dish Technologies Corp - 94 Inverness Terrace E - Englewood CO 80112 - US - -70-55-F8 (hex) Cerebras Systems Inc -7055F8 (base 16) Cerebras Systems Inc - 175 S San Antonio Rd #100 - Los Altos CA 94022 - US - -04-C9-D9 (hex) Dish Technologies Corp -04C9D9 (base 16) Dish Technologies Corp - 94 Inverness Terrace E - Englewood CO 80112 - US - -00-24-AF (hex) Dish Technologies Corp -0024AF (base 16) Dish Technologies Corp - 94 Inverness Terrace E - Englewood CO 80112 - US - -9C-43-1E (hex) IEEE Registration Authority -9C431E (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 - US - -80-C5-48 (hex) Shenzhen Zowee Technology Co.,Ltd -80C548 (base 16) Shenzhen Zowee Technology Co.,Ltd - NO.5 Zowee technology building, Science & Technology industrial park of privately Science & Technology industrial park of privately owned enterprises - Shenzhen GuangDong 518055 +B4-C0-F5 (hex) Shenzhen TINNO Mobile Technology Corp. +B4C0F5 (base 16) Shenzhen TINNO Mobile Technology Corp. + 4/F, H-3 Building, Qiao Cheng Eastern Industrial Park, Overseas Chinese Town, Shenzhen + Shenzhen guangdong 518053 CN -6C-54-CD (hex) LAMPEX ELECTRONICS LIMITED -6C54CD (base 16) LAMPEX ELECTRONICS LIMITED - 6-2/231/B, Kukatpally, - Hyderabad Telangana 500072 - IN - -88-3D-24 (hex) Google, Inc. -883D24 (base 16) Google, Inc. - 1600 Amphitheatre Parkway - Mountain View CA 94043 - US - -E8-DE-FB (hex) MESOTIC SAS -E8DEFB (base 16) MESOTIC SAS - 11, Avenue de la Division Leclerc - Cachan 94230 - FR - -90-84-8B (hex) HDR10+ Technologies, LLC -90848B (base 16) HDR10+ Technologies, LLC - 3855 SW 153rd Drive - Beaverton OR 97006 - US - -0C-23-69 (hex) Honeywell SPS -0C2369 (base 16) Honeywell SPS - 700 Visions Dr. - Skaneateles Falls NY 13153 - US - -8C-16-45 (hex) LCFC(HeFei) Electronics Technology co., ltd -8C1645 (base 16) LCFC(HeFei) Electronics Technology co., ltd - YunGu Road 3188-1 - Hefei Anhui 230000 - CN - -B4-E9-A3 (hex) port GmbH -B4E9A3 (base 16) port GmbH - Regensburger Str. 7b - Halle (S.) 06132 - DE - -6C-B6-CA (hex) DIVUS GmbH -6CB6CA (base 16) DIVUS GmbH - Pillhof 51 - Eppan 39057 - IT - -B8-DE-5E (hex) LONGCHEER TELECOMMUNICATION LIMITED -B8DE5E (base 16) LONGCHEER TELECOMMUNICATION LIMITED - Building 1,No.401,Caobao Rd - Shanghai Xuhui District 200233 - CN - -DC-DD-24 (hex) Energica Motor Company SpA -DCDD24 (base 16) Energica Motor Company SpA - Via Cesare della Chiesa, 150 - MODENA (MO) Mo 41126 - IT - -94-63-72 (hex) vivo Mobile Communication Co., Ltd. -946372 (base 16) vivo Mobile Communication Co., Ltd. - #283,BBK Road - Wusha,Chang'An DongGuan City,Guangdong, 523860 - CN - -44-9E-F9 (hex) vivo Mobile Communication Co., Ltd. -449EF9 (base 16) vivo Mobile Communication Co., Ltd. - #283,BBK Road - Wusha,Chang'An DongGuan City,Guangdong, 523860 - CN - -64-1C-B0 (hex) Samsung Electronics Co.,Ltd -641CB0 (base 16) Samsung Electronics Co.,Ltd - 129, Samsung-ro, Youngtongl-Gu - Suwon Gyeonggi-Do 16677 - KR - -8C-F9-57 (hex) RuiXingHengFang Network (Shenzhen) Co.,Ltd -8CF957 (base 16) RuiXingHengFang Network (Shenzhen) Co.,Ltd - Room 507, 2nd tower of KangTai biological building NO.6 KeFa Rd. NanShan District - Shenzhen Guangdong 518057 - CN - -00-1B-D8 (hex) FLIR Systems Inc -001BD8 (base 16) FLIR Systems Inc - 65 Challenger Road - Ridgefield Park NJ 07660-2103 - US - -20-36-5B (hex) Megafone Limited -20365B (base 16) Megafone Limited - Unit 702,7/F,Bankok Bank Building,NO.18 Bonham Strand West - Hong Kong 999077 - HK - -E8-DE-00 (hex) ChongQing GuanFang Technology Co.,LTD -E8DE00 (base 16) ChongQing GuanFang Technology Co.,LTD - 2F, A District,No.3 Middle Section of Mount Huangshan Avenue - ChongQing ChongQing 401121 - CN - -3C-DC-BC (hex) Samsung Electronics Co.,Ltd -3CDCBC (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -F4-71-90 (hex) Samsung Electronics Co.,Ltd -F47190 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -4C-77-6D (hex) Cisco Systems, Inc -4C776D (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 - US - -FC-A6-CD (hex) Fiberhome Telecommunication Technologies Co.,LTD -FCA6CD (base 16) Fiberhome Telecommunication Technologies Co.,LTD +74-12-BB (hex) Fiberhome Telecommunication Technologies Co.,LTD +7412BB (base 16) Fiberhome Telecommunication Technologies Co.,LTD No.5 DongXin Road Wuhan Hubei 430074 CN -64-DB-8B (hex) Hangzhou Hikvision Digital Technology Co.,Ltd. -64DB8B (base 16) Hangzhou Hikvision Digital Technology Co.,Ltd. - No.555 Qianmo Road - Hangzhou Zhejiang 310052 - CN - -78-25-7A (hex) LEO Innovation Lab -78257A (base 16) LEO Innovation Lab - Silkegade 8 - Copenhagen K Denmark 1113 - DK - -A4-DA-22 (hex) IEEE Registration Authority -A4DA22 (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 +98-5A-EB (hex) Apple, Inc. +985AEB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 US -00-03-97 (hex) FireBrick Limited -000397 (base 16) FireBrick Limited - C/O Andrews & Arnold Ltd, - Enterprise Court, Downmill Road Bracknell, Berks RG12 1QS - GB +20-78-F0 (hex) Apple, Inc. +2078F0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -A8-61-0A (hex) ARDUINO AG -A8610A (base 16) ARDUINO AG - Corso San Gottardo 6A - Chiasso 6830 - CH +78-D7-5F (hex) Apple, Inc. +78D75F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -60-97-DD (hex) MicroSys Electronics GmbH -6097DD (base 16) MicroSys Electronics GmbH - Muehlweg 1 - Sauerlach 82054 - DE +E0-AC-CB (hex) Apple, Inc. +E0ACCB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -04-79-70 (hex) HUAWEI TECHNOLOGIES CO.,LTD -047970 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN +98-E0-D9 (hex) Apple, Inc. +98E0D9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -C4-9F-4C (hex) HUAWEI TECHNOLOGIES CO.,LTD -C49F4C (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN +C0-CE-CD (hex) Apple, Inc. +C0CECD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -A0-57-E3 (hex) HUAWEI TECHNOLOGIES CO.,LTD -A057E3 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN +70-E7-2C (hex) Apple, Inc. +70E72C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -E0-E6-2E (hex) TCT mobile ltd -E0E62E (base 16) TCT mobile ltd - No.86 hechang 7th road, zhongkai, Hi-Tech District - Hui Zhou Guang Dong 516006 - CN +D0-33-11 (hex) Apple, Inc. +D03311 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -00-A0-85 (hex) Private -00A085 (base 16) Private +5C-AD-CF (hex) Apple, Inc. +5CADCF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US -94-B8-6D (hex) Intel Corporate -94B86D (base 16) Intel Corporate - Lot 8, Jalan Hi-Tech 2/3 - Kulim Kedah 09000 - MY +00-6D-52 (hex) Apple, Inc. +006D52 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-43-7C (hex) Apple, Inc. +48437C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-A3-95 (hex) Apple, Inc. +34A395 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-F3-87 (hex) Apple, Inc. +9CF387 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-5B-78 (hex) Apple, Inc. +A85B78 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-8D-6C (hex) Apple, Inc. +908D6C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-15-39 (hex) Apple, Inc. +0C1539 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-4C-C4 (hex) Apple, Inc. +BC4CC4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-BC-9F (hex) Apple, Inc. +0CBC9F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-5E-60 (hex) Apple, Inc. +A45E60 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-4E-90 (hex) Apple, Inc. +544E90 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-E6-5E (hex) Apple, Inc. +9CE65E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-DD-5D (hex) Apple, Inc. +90DD5D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +08-F6-9C (hex) Apple, Inc. +08F69C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D4-61-DA (hex) Apple, Inc. +D461DA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-D0-83 (hex) Apple, Inc. +C8D083 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-E9-FE (hex) Apple, Inc. +88E9FE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-AE-07 (hex) Apple, Inc. +88AE07 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-AF-8F (hex) Apple, Inc. +18AF8F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-B5-B7 (hex) Apple, Inc. +C8B5B7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-BB-CF (hex) Apple, Inc. +A8BBCF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-B2-1F (hex) Apple, Inc. +90B21F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-E8-56 (hex) Apple, Inc. +B8E856 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +14-99-E2 (hex) Apple, Inc. +1499E2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B4-18-D1 (hex) Apple, Inc. +B418D1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-00-6E (hex) Apple, Inc. +80006E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-D9-C7 (hex) Apple, Inc. +60D9C7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-F6-50 (hex) Apple, Inc. +C8F650 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +1C-1A-C0 (hex) Apple, Inc. +1C1AC0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E0-66-78 (hex) Apple, Inc. +E06678 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-8D-4E (hex) Apple, Inc. +5C8D4E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-F2-FB (hex) Apple, Inc. +C0F2FB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-F7-6F (hex) Apple, Inc. +00F76F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-87-A3 (hex) Apple, Inc. +AC87A3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-26-96 (hex) Apple, Inc. +542696 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-D1-CB (hex) Apple, Inc. +D8D1CB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-A3-CB (hex) Apple, Inc. +64A3CB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +44-FB-42 (hex) Apple, Inc. +44FB42 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F4-1B-A1 (hex) Apple, Inc. +F41BA1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-E0-72 (hex) Apple, Inc. +3CE072 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E8-8D-28 (hex) Apple, Inc. +E88D28 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-78-5F (hex) Apple, Inc. +CC785F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-3C-0B (hex) Apple, Inc. +AC3C0B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-CB-87 (hex) Apple, Inc. +88CB87 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +EC-35-86 (hex) Apple, Inc. +EC3586 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-C1-F1 (hex) Apple, Inc. +F0C1F1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F4-F9-51 (hex) Apple, Inc. +F4F951 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-FA-BA (hex) Apple, Inc. +8CFABA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-95-AE (hex) Apple, Inc. +5C95AE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E0-C9-7A (hex) Apple, Inc. +E0C97A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-52-B7 (hex) Apple, Inc. +BC52B7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +14-10-9F (hex) Apple, Inc. +14109F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-F8-93 (hex) ARRIS Group, Inc. +0CF893 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +14-AB-F0 (hex) ARRIS Group, Inc. +14ABF0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +AC-B3-13 (hex) ARRIS Group, Inc. +ACB313 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +30-60-23 (hex) ARRIS Group, Inc. +306023 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-D6 (hex) ARRIS Group, Inc. +001DD6 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +1C-1B-68 (hex) ARRIS Group, Inc. +1C1B68 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +44-E1-37 (hex) ARRIS Group, Inc. +44E137 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E8-33-81 (hex) ARRIS Group, Inc. +E83381 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +84-61-A0 (hex) ARRIS Group, Inc. +8461A0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +60-19-71 (hex) ARRIS Group, Inc. +601971 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-00-CA (hex) ARRIS Group, Inc. +0000CA (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-96 (hex) ARRIS Group, Inc. +001596 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-A2 (hex) ARRIS Group, Inc. +0015A2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-13-11 (hex) ARRIS Group, Inc. +001311 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +7C-26-34 (hex) ARRIS Group, Inc. +7C2634 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +10-05-B1 (hex) ARRIS Group, Inc. +1005B1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +10-86-8C (hex) ARRIS Group, Inc. +10868C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-D1 (hex) ARRIS Group, Inc. +001DD1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-26-D9 (hex) ARRIS Group, Inc. +0026D9 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +28-C8-7A (hex) ARRIS Group, Inc. +28C87A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +54-E2-E0 (hex) ARRIS Group, Inc. +54E2E0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +A0-55-DE (hex) ARRIS Group, Inc. +A055DE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +A0-C5-62 (hex) ARRIS Group, Inc. +A0C562 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +FC-6F-B7 (hex) ARRIS Group, Inc. +FC6FB7 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-D0-37 (hex) ARRIS Group, Inc. +00D037 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +18-35-D1 (hex) ARRIS Group, Inc. +1835D1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +4C-38-D8 (hex) ARRIS Group, Inc. +4C38D8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +A8-9F-EC (hex) ARRIS Group, Inc. +A89FEC (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +0C-EA-C9 (hex) ARRIS Group, Inc. +0CEAC9 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US F8-8B-37 (hex) ARRIS Group, Inc. F88B37 (base 16) ARRIS Group, Inc. @@ -58121,118 +58499,274 @@ F88B37 (base 16) ARRIS Group, Inc. San Diego CA 92121 US -30-FD-38 (hex) Google, Inc. -30FD38 (base 16) Google, Inc. - 1600 Amphitheatre Parkway - Mountain View CA 94043 +44-34-A7 (hex) ARRIS Group, Inc. +4434A7 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -18-50-2A (hex) SOARNEX -18502A (base 16) SOARNEX - NO.158, RUIHU ST., NEIHU DIST., - TAIPEI CITY TAIWAN (R.O.C.) 11494 - TW - -58-7A-6A (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD -587A6A (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD - NO.18 HAIBIN ROAD, - DONG GUAN GUANG DONG 523860 - CN - -E4-C4-83 (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD -E4C483 (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD - NO.18 HAIBIN ROAD, - DONG GUAN GUANG DONG 523860 - CN - -F4-E1-1E (hex) Texas Instruments -F4E11E (base 16) Texas Instruments - 12500 TI Blvd - Dallas TX 75243 +00-18-A4 (hex) ARRIS Group, Inc. +0018A4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -30-45-11 (hex) Texas Instruments -304511 (base 16) Texas Instruments - 12500 TI Blvd - Dallas TX 75243 +00-1A-1B (hex) ARRIS Group, Inc. +001A1B (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -34-03-DE (hex) Texas Instruments -3403DE (base 16) Texas Instruments - 12500 TI Blvd - Dallas TX 75243 +00-14-9A (hex) ARRIS Group, Inc. +00149A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -10-E7-C6 (hex) Hewlett Packard -10E7C6 (base 16) Hewlett Packard - 11445 Compaq Center Drive - Houston TX 77070 +00-13-71 (hex) ARRIS Group, Inc. +001371 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -20-F5-43 (hex) Hui Zhou Gaoshengda Technology Co.,LTD -20F543 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD - No.75,Zhongkai High-Tech Development District,Huizhou - Hui Zhou Guangdong 516006 - CN +00-1D-BE (hex) ARRIS Group, Inc. +001DBE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -1C-1E-E3 (hex) Hui Zhou Gaoshengda Technology Co.,LTD -1C1EE3 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD - No.75,Zhongkai High-Tech Development District,Huizhou - Hui Zhou Guangdong 516006 - CN +00-1E-5A (hex) ARRIS Group, Inc. +001E5A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -0C-91-60 (hex) Hui Zhou Gaoshengda Technology Co.,LTD -0C9160 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD - No.75,Zhongkai High-Tech Development District,Huizhou - Hui Zhou Guangdong 516006 - CN +00-1D-6B (hex) ARRIS Group, Inc. +001D6B (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -0C-62-A6 (hex) Hui Zhou Gaoshengda Technology Co.,LTD -0C62A6 (base 16) Hui Zhou Gaoshengda Technology Co.,LTD - No.75,Zhongkai High-Tech Development District,Huizhou - Hui Zhou Guangdong 516006 - CN +00-1C-C1 (hex) ARRIS Group, Inc. +001CC1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -7C-49-EB (hex) XIAOMI Electronics,CO.,LTD -7C49EB (base 16) XIAOMI Electronics,CO.,LTD - Xiaomi Building, No.68 Qinghe Middle Street,Haidian District - Beijing Beijing 100085 - CN +00-1C-11 (hex) ARRIS Group, Inc. +001C11 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -C4-33-06 (hex) China Mobile Group Device Co.,Ltd. -C43306 (base 16) China Mobile Group Device Co.,Ltd. +00-1F-7E (hex) ARRIS Group, Inc. +001F7E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-24-95 (hex) ARRIS Group, Inc. +002495 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +2C-9E-5F (hex) ARRIS Group, Inc. +2C9E5F (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +C8-AA-21 (hex) ARRIS Group, Inc. +C8AA21 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +34-1F-E4 (hex) ARRIS Group, Inc. +341FE4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +40-0D-10 (hex) ARRIS Group, Inc. +400D10 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1A-DB (hex) ARRIS Group, Inc. +001ADB (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-75 (hex) ARRIS Group, Inc. +002375 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-24-A1 (hex) ARRIS Group, Inc. +0024A1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +A4-ED-4E (hex) ARRIS Group, Inc. +A4ED4E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-26-42 (hex) ARRIS Group, Inc. +002642 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-CE (hex) ARRIS Group, Inc. +0015CE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-20-40 (hex) ARRIS Group, Inc. +002040 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-11-AE (hex) ARRIS Group, Inc. +0011AE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-0F-9F (hex) ARRIS Group, Inc. +000F9F (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-0B-06 (hex) ARRIS Group, Inc. +000B06 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-2F (hex) ARRIS Group, Inc. +00152F (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-11-1A (hex) ARRIS Group, Inc. +00111A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-16-26 (hex) ARRIS Group, Inc. +001626 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-CF-C0 (hex) China Mobile Group Device Co.,Ltd. +00CFC0 (base 16) China Mobile Group Device Co.,Ltd. 32 Xuanwumen West Street,Xicheng District Beijing 100053 CN -68-FE-DA (hex) Fiberhome Telecommunication Technologies Co.,LTD -68FEDA (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -0C-6A-BC (hex) Fiberhome Telecommunication Technologies Co.,LTD -0C6ABC (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -D4-C1-9E (hex) Ruckus Wireless -D4C19E (base 16) Ruckus Wireless - 350 West Java Drive - Sunnyvale CA 94089 +0C-73-EB (hex) IEEE Registration Authority +0C73EB (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 US -00-01-B9 (hex) SKF (U.K.) Limited -0001B9 (base 16) SKF (U.K.) Limited - 2 Michaelson Square Kirkton Campus - Livingston West Lothian EH54 7DP - GB +10-65-30 (hex) Dell Inc. +106530 (base 16) Dell Inc. + One Dell Way + Round Rock TX 78682 + US -64-C3-D6 (hex) Juniper Networks -64C3D6 (base 16) Juniper Networks - 1133 Innovation Way - Sunnyvale CA 94089 +9C-7F-57 (hex) DERA Co. Ltd +9C7F57 (base 16) DERA Co. Ltd + Huilongguan Dongdajie No.338, Building A Room 506, Changping District + Beijing 102208 + CN + +B4-E0-1D (hex) CONCEPTION ELECTRONIQUE +B4E01D (base 16) CONCEPTION ELECTRONIQUE + 3 boulevard de l'europe + NEUFCHATEL EN BRAY 76270 + FR + +1C-00-42 (hex) NARI Technology Co., Ltd. +1C0042 (base 16) NARI Technology Co., Ltd. + NO.19 Chengxin Avenue, Nanjing + Nanjing 211106 + CN + +70-1D-08 (hex) 99IOT Shenzhen co.,ltd +701D08 (base 16) 99IOT Shenzhen co.,ltd + 609C north block, Cangsong Building, Tairan Seven Road, Futian District + Shenzhen Guangdong 518000 + CN + +00-E0-09 (hex) Stratus Technologies +00E009 (base 16) Stratus Technologies + 5 Mill and Main Place, Suite 500 + Maynard MA 01754 + US + +30-0A-C5 (hex) Ruio telecommunication technologies Co., Limited +300AC5 (base 16) Ruio telecommunication technologies Co., Limited + Room 2501, Broadegate Software Building, No,1003 Keyuan Road, + Shenzhen guangdong 518000 + CN + +3C-24-F0 (hex) IEEE Registration Authority +3C24F0 (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +C8-86-29 (hex) Shenzhen Duubee Intelligent Technologies Co.,LTD. +C88629 (base 16) Shenzhen Duubee Intelligent Technologies Co.,LTD. + 9F, Block B, Unicenter, Xin’an Sub district, Bao’an District + Shenzhen GuangDong 518000 + CN + +A0-E6-17 (hex) MATIS +A0E617 (base 16) MATIS + 2/F,Hatchobori MIYATA Bldg.,1-8-2, + Shintomi,Chuo-Ku, Tokyo 104-0041 + JP + +84-0D-8E (hex) Espressif Inc. +840D8E (base 16) Espressif Inc. + Room 204, Building 2, 690 Bibo Road, Pudong New Area + Shanghai Shanghai 201203 + CN + +50-5B-C2 (hex) Liteon Technology Corporation +505BC2 (base 16) Liteon Technology Corporation + 4F, 90, Chien 1 Road + New Taipei City Taiwan 23585 + TW + +D8-32-E3 (hex) Xiaomi Communications Co Ltd +D832E3 (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 + CN + +FC-90-FA (hex) Independent Technologies +FC90FA (base 16) Independent Technologies + 1960 Ridgeview Rd + Blair NE 68008 US 58-46-E1 (hex) Baxter International Inc @@ -58451,12 +58985,6 @@ CC4EEC (base 16) HUMAX Co., Ltd. Seongnam-si Gyeonggi-do 463-875 KR -DC-33-0D (hex) Qingdao Haier Telecom Co.,Ltd -DC330D (base 16) Qingdao Haier Telecom Co.,Ltd - No 1 Haier road,Hi-tech Zone,Qingdao,PR.China - Qingdao Shandong 266101 - CN - 00-80-E1 (hex) STMicroelectronics SRL 0080E1 (base 16) STMicroelectronics SRL 1000 AZTEC WEST @@ -66023,12 +66551,6 @@ A893E6 (base 16) JIANGXI JINGGANGSHAN CKING COMMUNICATION TECHNOLOGY CO.,LT Enschede 7544RT NL -00-25-0C (hex) Enertrac -00250C (base 16) Enertrac - 94 River Rd - Hudson NH 03051 - US - 00-25-05 (hex) eks Engel GmbH & Co. KG 002505 (base 16) eks Engel GmbH & Co. KG Schuetzenstrasse 2 @@ -73898,12 +74420,6 @@ A06A00 (base 16) Verilink Corporation SE -00-04-FC (hex) Stratus Computer (DE), Inc. -0004FC (base 16) Stratus Computer (DE), Inc. - 111 Powdermill Road - Maynard MA 01754 - US - 00-04-F6 (hex) Amphus 0004F6 (base 16) Amphus 2372 Qume Drive, #F @@ -77774,12 +78290,6 @@ A06A00 (base 16) Verilink Corporation BALDWIN PARK CA 91706 US -00-20-0E (hex) SATELLITE TECHNOLOGY MGMT, INC -00200E (base 16) SATELLITE TECHNOLOGY MGMT, INC - 3530 HYLAND AVENUE - COSTA MESA CA 92626 - US - 00-20-96 (hex) Invensys 002096 (base 16) Invensys Robershaw Industrial Products @@ -78716,12 +79226,6 @@ A06A00 (base 16) Verilink Corporation LA HABRA CA 90632 US -00-00-A8 (hex) STRATUS COMPUTER INC. -0000A8 (base 16) STRATUS COMPUTER INC. - 111 Powdermill Road - Maynard MA 01754 - US - 00-00-DF (hex) BELL & HOWELL PUB SYS DIV 0000DF (base 16) BELL & HOWELL PUB SYS DIV OLD MANSFIELD ROAD @@ -81356,12 +81860,6 @@ D8D43C (base 16) Sony Corporation Zhongshan Guangdong 528467 CN -00-25-D4 (hex) General Dynamics Mission Systems -0025D4 (base 16) General Dynamics Mission Systems - 150 Rustcraft Road - Dedham MA 02026 - US - 5C-A8-6A (hex) HUAWEI TECHNOLOGIES CO.,LTD 5CA86A (base 16) HUAWEI TECHNOLOGIES CO.,LTD No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park @@ -83879,294 +84377,12 @@ B877C3 (base 16) METER Group Pullman WA 99163 US -00-36-76 (hex) ARRIS Group, Inc. -003676 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -84-E0-58 (hex) ARRIS Group, Inc. -84E058 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - F0-74-85 (hex) NGD Systems, Inc. F07485 (base 16) NGD Systems, Inc. 355 Goddard, Suite 200 Irvine CA 92618 US -34-7A-60 (hex) ARRIS Group, Inc. -347A60 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -BC-64-4B (hex) ARRIS Group, Inc. -BC644B (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -F8-A0-97 (hex) ARRIS Group, Inc. -F8A097 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -94-E8-C5 (hex) ARRIS Group, Inc. -94E8C5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -04-4E-5A (hex) ARRIS Group, Inc. -044E5A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -74-EA-E8 (hex) ARRIS Group, Inc. -74EAE8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -A8-11-FC (hex) ARRIS Group, Inc. -A811FC (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -74-56-12 (hex) ARRIS Group, Inc. -745612 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E4-64-49 (hex) ARRIS Group, Inc. -E46449 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -C0-05-C2 (hex) ARRIS Group, Inc. -C005C2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -64-55-B1 (hex) ARRIS Group, Inc. -6455B1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -20-3D-66 (hex) ARRIS Group, Inc. -203D66 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -D4-04-CD (hex) ARRIS Group, Inc. -D404CD (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -44-6A-B7 (hex) ARRIS Group, Inc. -446AB7 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -2C-99-24 (hex) ARRIS Group, Inc. -2C9924 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1B-DD (hex) ARRIS Group, Inc. -001BDD (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-14-04 (hex) ARRIS Group, Inc. -001404 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-19-5E (hex) ARRIS Group, Inc. -00195E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1A-AD (hex) ARRIS Group, Inc. -001AAD (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -A4-7A-A4 (hex) ARRIS Group, Inc. -A47AA4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -1C-14-48 (hex) ARRIS Group, Inc. -1C1448 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-24-93 (hex) ARRIS Group, Inc. -002493 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -40-FC-89 (hex) ARRIS Group, Inc. -40FC89 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -3C-75-4A (hex) ARRIS Group, Inc. -3C754A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-24-C1 (hex) ARRIS Group, Inc. -0024C1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-21-36 (hex) ARRIS Group, Inc. -002136 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-22-B4 (hex) ARRIS Group, Inc. -0022B4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-95 (hex) ARRIS Group, Inc. -002395 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-ED (hex) ARRIS Group, Inc. -0023ED (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1B-52 (hex) ARRIS Group, Inc. -001B52 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-0B (hex) ARRIS Group, Inc. -00230B (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1E-8D (hex) ARRIS Group, Inc. -001E8D (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-A2 (hex) ARRIS Group, Inc. -0023A2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-D1 (hex) ARRIS Group, Inc. -0015D1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-D3 (hex) ARRIS Group, Inc. -001DD3 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E8-89-2C (hex) ARRIS Group, Inc. -E8892C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E8-3E-FC (hex) ARRIS Group, Inc. -E83EFC (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -70-7E-43 (hex) ARRIS Group, Inc. -707E43 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-03-E0 (hex) ARRIS Group, Inc. -0003E0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-12-8A (hex) ARRIS Group, Inc. -00128A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-12-25 (hex) ARRIS Group, Inc. -001225 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -08-3E-0C (hex) ARRIS Group, Inc. -083E0C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -8C-09-F4 (hex) ARRIS Group, Inc. -8C09F4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -3C-DF-A9 (hex) ARRIS Group, Inc. -3CDFA9 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -10-56-11 (hex) ARRIS Group, Inc. -105611 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 2C-3A-E8 (hex) Espressif Inc. 2C3AE8 (base 16) Espressif Inc. Room 204, Building 2, 690 Bibo Road, Pudong New Area @@ -84191,12 +84407,6 @@ E8B6C2 (base 16) Juniper Networks Sunnyvale CA 94089 US -B0-DA-F9 (hex) ARRIS Group, Inc. -B0DAF9 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 74-F6-1C (hex) HTC Corporation 74F61C (base 16) HTC Corporation No. 23, Xinghua Rd., Taoyuan City @@ -84677,12 +84887,6 @@ FC7F56 (base 16) CoSyst Control Systems GmbH Santa Rosa CA 95407 US -18-B8-1F (hex) ARRIS Group, Inc. -18B81F (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 00-C0-64 (hex) General Datacomm LLC 00C064 (base 16) General Datacomm LLC 353 Christian Street, Suite 4 @@ -85004,12 +85208,6 @@ CC5A53 (base 16) Cisco Systems, Inc San Jose CA 94568 US -BC-2E-48 (hex) ARRIS Group, Inc. -BC2E48 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 94-00-06 (hex) jinyoung 940006 (base 16) jinyoung 1000 Dongil-ro Nowon-gu Seoul @@ -85511,12 +85709,6 @@ FC9DD8 (base 16) Beijing TongTongYiLian Science and Technology Ltd. Hangzhou Zhejiang 310052 CN -58-19-F8 (hex) ARRIS Group, Inc. -5819F8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 20-78-52 (hex) Nokia 207852 (base 16) Nokia Karaportti 3 @@ -85886,6 +86078,246 @@ DC4EF4 (base 16) Shenzhen MTN Electronics CO., Ltd Shenzhen Guangdong 518117 CN +40-CD-7A (hex) Qingdao Hisense Communications Co.,Ltd. +40CD7A (base 16) Qingdao Hisense Communications Co.,Ltd. + Qianwangang Road 218 + Qingdao Shandong 266510 + CN + +7C-A1-77 (hex) HUAWEI TECHNOLOGIES CO.,LTD +7CA177 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +E4-0E-EE (hex) HUAWEI TECHNOLOGIES CO.,LTD +E40EEE (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +20-47-DA (hex) Xiaomi Communications Co Ltd +2047DA (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 + CN + +10-1D-51 (hex) 8Mesh Networks Limited +101D51 (base 16) 8Mesh Networks Limited + Unit 607, 6/F, Yen Sheng Centre, + 64 Hoi Yuen Road Kwun Tong 000 + HK + +80-35-C1 (hex) Xiaomi Communications Co Ltd +8035C1 (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 + CN + +78-B6-EC (hex) Scuf Gaming International LLC +78B6EC (base 16) Scuf Gaming International LLC + 3970 Johns Creek Court Suite 325 Suwanee + Atlanta GA 30024 + US + +00-25-D4 (hex) General Dynamics Mission Systems +0025D4 (base 16) General Dynamics Mission Systems + 150 Rustcraft Road + Dedham MA 02026 + US + +D0-76-E7 (hex) TP-LINK TECHNOLOGIES CO.,LTD. +D076E7 (base 16) TP-LINK TECHNOLOGIES CO.,LTD. + Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan + Shenzhen Guangdong 518057 + CN + +DC-29-19 (hex) AltoBeam (Xiamen) Technology Ltd, Co. +DC2919 (base 16) AltoBeam (Xiamen) Technology Ltd, Co. + South Building 203-38,Huoju Square ,No.56-58,Huoju Road, Huoju Park, Huoju High-tech District + Xiamen 361000 + CN + +00-58-3F (hex) PC Aquarius +00583F (base 16) PC Aquarius + Comcity Office Park, Kievskoe shosse, est.6, bld. 1, Rumyantsevo, Moscow, 108811, RF + Moscow 108811 + RU + +F0-9C-D7 (hex) Guangzhou Blue Cheetah Intelligent Technology Co., Ltd. +F09CD7 (base 16) Guangzhou Blue Cheetah Intelligent Technology Co., Ltd. + Panyu District, Guangzhou City Panyu Avenue North 555 Panyu Energy Technology Park,Industry Building 2 seats 406-407 + Guangzhou Guangdong 511400 + CN + +00-20-0E (hex) NSSLGlobal Technologies AS +00200E (base 16) NSSLGlobal Technologies AS + Martin Linges vei 25 + Fornebu 1364 + NO + +E0-38-3F (hex) zte corporation +E0383F (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN + +00-25-0C (hex) Senet Inc +00250C (base 16) Senet Inc + 100 Market Street, Suite 302 + Portsmouth NH 03801 + US + +DC-33-0D (hex) QING DAO HAIER TELECOM CO.,LTD. +DC330D (base 16) QING DAO HAIER TELECOM CO.,LTD. + No 1 Haier road,Hi-tech Zone,Qingdao,PR.China + Qingdao Shandong 266101 + CN + +E8-3E-FC (hex) ARRIS Group, Inc. +E83EFC (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E8-89-2C (hex) ARRIS Group, Inc. +E8892C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-D3 (hex) ARRIS Group, Inc. +001DD3 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-D1 (hex) ARRIS Group, Inc. +0015D1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +3C-DF-A9 (hex) ARRIS Group, Inc. +3CDFA9 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +8C-09-F4 (hex) ARRIS Group, Inc. +8C09F4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +08-3E-0C (hex) ARRIS Group, Inc. +083E0C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +44-6A-B7 (hex) ARRIS Group, Inc. +446AB7 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +D4-04-CD (hex) ARRIS Group, Inc. +D404CD (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +10-56-11 (hex) ARRIS Group, Inc. +105611 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +2C-99-24 (hex) ARRIS Group, Inc. +2C9924 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +64-55-B1 (hex) ARRIS Group, Inc. +6455B1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +C0-05-C2 (hex) ARRIS Group, Inc. +C005C2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +20-3D-66 (hex) ARRIS Group, Inc. +203D66 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +40-F0-4E (hex) Integrated Device Technology (Malaysia) Sdn. Bhd. +40F04E (base 16) Integrated Device Technology (Malaysia) Sdn. Bhd. + Phase 3, Bayan Lepas FIZ + Bayan Lepas Penang 11900 + MY + +58-DB-15 (hex) TECNO MOBILE LIMITED +58DB15 (base 16) TECNO MOBILE LIMITED + ROOMS 05-15, 13A/F., SOUTH TOWER, WORLD FINANCE CENTRE, HARBOUR CITY, 17 CANTON ROAD, TSIM SHA TSUI, KOWLOON, HONG KONG + Hong Kong Hong Kong 999077 + HK + +44-66-FC (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +4466FC (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +38-35-FB (hex) Sagemcom Broadband SAS +3835FB (base 16) Sagemcom Broadband SAS + 250, route de l'Empereur + Rueil Malmaison Cedex hauts de seine 92848 + FR + +00-00-A8 (hex) Stratus Technologies +0000A8 (base 16) Stratus Technologies + 5 Mill and Main Place, Suite 500 + Maynard MA 01754 + US + +00-04-FC (hex) Stratus Technologies +0004FC (base 16) Stratus Technologies + 5 Mill and Main Place, Suite 500 + Maynard MA 01754 + US + +00-CB-B4 (hex) SHENZHEN ATEKO PHOTOELECTRICITY CO.,LTD +00CBB4 (base 16) SHENZHEN ATEKO PHOTOELECTRICITY CO.,LTD + 4-5F,E1 Building,TCL International E City,No.1001 Zhongshanyuan Road,Nanshan District,Shenzhen + SHENZHEN GUANGDONG 518052 + CN + +70-79-B3 (hex) Cisco Systems, Inc +7079B3 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +0C-B3-4F (hex) Shenzhen Xiaoqi Intelligent Technology Co., Ltd. +0CB34F (base 16) Shenzhen Xiaoqi Intelligent Technology Co., Ltd. + Room 1501, Block B4, Building 9, Section 2, Shenzhen Bay Science & Technology Ecological Park, West Shahe Road, Nanshan District, + Shenzhen Guangdong 518000 + CN + +F0-4C-D5 (hex) Maxlinear, Inc +F04CD5 (base 16) Maxlinear, Inc + 5966 La Place Ct. Ste# 100 + Carlsbad CA 92008 + US + AC-F8-5C (hex) Private ACF85C (base 16) Private @@ -85895,720 +86327,6 @@ D460E3 (base 16) Sercomm Corporation. Miao-Lih Hsuan 115 TW -D0-25-98 (hex) Apple, Inc. -D02598 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-66-7F (hex) Apple, Inc. -A8667F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-14-A6 (hex) Apple, Inc. -7014A6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -10-41-7F (hex) Apple, Inc. -10417F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-29-3A (hex) Apple, Inc. -AC293A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -94-E9-6A (hex) Apple, Inc. -94E96A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -0C-4D-E9 (hex) Apple, Inc. -0C4DE9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-72-40 (hex) Apple, Inc. -907240 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-88-08 (hex) Apple, Inc. -A88808 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-E0-EB (hex) Apple, Inc. -C8E0EB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -54-E4-3A (hex) Apple, Inc. -54E43A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-E1-4C (hex) Apple, Inc. -28E14C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-8E-0C (hex) Apple, Inc. -848E0C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B0-34-95 (hex) Apple, Inc. -B03495 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-F6-1C (hex) Apple, Inc. -F0F61C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -0C-30-21 (hex) Apple, Inc. -0C3021 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-96-95 (hex) Apple, Inc. -D89695 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -64-9A-BE (hex) Apple, Inc. -649ABE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-F5-DA (hex) Apple, Inc. -5CF5DA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-A2-E4 (hex) Apple, Inc. -20A2E4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-24-75 (hex) Apple, Inc. -F02475 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -24-A0-74 (hex) Apple, Inc. -24A074 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -88-63-DF (hex) Apple, Inc. -8863DF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-92-17 (hex) Apple, Inc. -609217 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -34-E2-FD (hex) Apple, Inc. -34E2FD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -0C-3E-9F (hex) Apple, Inc. -0C3E9F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-70-9F (hex) Apple, Inc. -6C709F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-40-08 (hex) Apple, Inc. -6C4008 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-97-F3 (hex) Apple, Inc. -5C97F3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-FD-61 (hex) Apple, Inc. -90FD61 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-61-71 (hex) Apple, Inc. -006171 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-E6-50 (hex) Apple, Inc. -80E650 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-2B-2A (hex) Apple, Inc. -DC2B2A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-44-D9 (hex) Apple, Inc. -B844D9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E0-F5-C6 (hex) Apple, Inc. -E0F5C6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -94-94-26 (hex) Apple, Inc. -949426 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-29-F5 (hex) Apple, Inc. -CC29F5 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -58-40-4E (hex) Apple, Inc. -58404E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-0C-5C (hex) Apple, Inc. -DC0C5C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -2C-20-0B (hex) Apple, Inc. -2C200B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-A4-CA (hex) Apple, Inc. -DCA4CA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-8F-E9 (hex) Apple, Inc. -8C8FE9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-10-E8 (hex) Apple, Inc. -9810E8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B4-9C-DF (hex) Apple, Inc. -B49CDF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-E9-75 (hex) Apple, Inc. -A4E975 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-A5-3E (hex) Apple, Inc. -C0A53E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-00-C6 (hex) Apple, Inc. -9800C6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-7B-8A (hex) Apple, Inc. -787B8A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -38-66-F0 (hex) Apple, Inc. -3866F0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-EE-28 (hex) Apple, Inc. -20EE28 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -08-F4-AB (hex) Apple, Inc. -08F4AB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-85-90 (hex) Apple, Inc. -8C8590 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B4-8B-19 (hex) Apple, Inc. -B48B19 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-9A-79 (hex) Apple, Inc. -E49A79 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-A0-2B (hex) Apple, Inc. -28A02B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B4-4B-D2 (hex) Apple, Inc. -B44BD2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -2C-F0-A2 (hex) Apple, Inc. -2CF0A2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -EC-AD-B8 (hex) Apple, Inc. -ECADB8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-01-A7 (hex) Apple, Inc. -9801A7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-9A-C1 (hex) Apple, Inc. -609AC1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-79-60 (hex) Apple, Inc. -F07960 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-8B-A0 (hex) Apple, Inc. -9C8BA0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -4C-32-75 (hex) Apple, Inc. -4C3275 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-E4-AB (hex) Apple, Inc. -E4E4AB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-33-4B (hex) Apple, Inc. -C8334B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-F4-B9 (hex) Apple, Inc. -00F4B9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -0C-77-1A (hex) Apple, Inc. -0C771A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -74-E1-B6 (hex) Apple, Inc. -74E1B6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -64-20-0C (hex) Apple, Inc. -64200C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-84-7A (hex) Apple, Inc. -C0847A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-34-51 (hex) Apple, Inc. -183451 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -FC-25-3F (hex) Apple, Inc. -FC253F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -10-40-F3 (hex) Apple, Inc. -1040F3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-C2-6B (hex) Apple, Inc. -6CC26B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-20-32 (hex) Apple, Inc. -182032 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-DE-E2 (hex) Apple, Inc. -70DEE2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-C6-10 (hex) Apple, Inc. -00C610 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -10-1C-0C (hex) Apple, Inc. -101C0C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-FA-DF (hex) Apple, Inc. -7CFADF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-F9-38 (hex) Apple, Inc. -5CF938 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -38-71-DE (hex) Apple, Inc. -3871DE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -BC-54-36 (hex) Apple, Inc. -BC5436 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-4F-DA (hex) Apple, Inc. -9C4FDA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -1C-5C-F2 (hex) Apple, Inc. -1C5CF2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-FB-42 (hex) Apple, Inc. -60FB42 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-25-00 (hex) Apple, Inc. -002500 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-23-6C (hex) Apple, Inc. -00236C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-21-E9 (hex) Apple, Inc. -0021E9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-1F-F3 (hex) Apple, Inc. -001FF3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-1F-5B (hex) Apple, Inc. -001F5B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-1E-52 (hex) Apple, Inc. -001E52 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-1D-4F (hex) Apple, Inc. -001D4F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-11-24 (hex) Apple, Inc. -001124 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-FA-D8 (hex) Apple, Inc. -A8FAD8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-96-9D (hex) Apple, Inc. -5C969D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-8B-7F (hex) Apple, Inc. -E48B7F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-FC-FE (hex) Apple, Inc. -84FCFE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -44-4C-0C (hex) Apple, Inc. -444C0C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-2D-AA (hex) Apple, Inc. -8C2DAA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-3E-6D (hex) Apple, Inc. -6C3E6D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-9E-FC (hex) Apple, Inc. -189EFC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-9F-42 (hex) Apple, Inc. -C09F42 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-F6-B1 (hex) Apple, Inc. -B8F6B1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -40-6C-8F (hex) Apple, Inc. -406C8F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-D1-D2 (hex) Apple, Inc. -A4D1D2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-0C-CE (hex) Apple, Inc. -040CCE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-9E-3F (hex) Apple, Inc. -D89E3F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-E7-CF (hex) Apple, Inc. -28E7CF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-BC-C8 (hex) Apple, Inc. -C8BCC8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-A2-5E (hex) Apple, Inc. -D8A25E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-84-0D (hex) Apple, Inc. -90840D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F8-1E-DF (hex) Apple, Inc. -F81EDF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B0-CA-68 (hex) Apple, Inc. -B0CA68 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-CA-33 (hex) Apple, Inc. -98CA33 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-EF-43 (hex) Apple, Inc. -68EF43 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-2D-B7 (hex) Apple, Inc. -CC2DB7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D4-A3-3D (hex) Apple, Inc. -D4A33D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-E0-A6 (hex) Apple, Inc. -E4E0A6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-EF-00 (hex) Apple, Inc. -70EF00 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - A0-39-EE (hex) Sagemcom Broadband SAS A039EE (base 16) Sagemcom Broadband SAS 250, route de l'Empereur @@ -86693,18 +86411,6 @@ E8ABF3 (base 16) HUAWEI TECHNOLOGIES CO.,LTD Dongguan 523808 CN -2C-95-69 (hex) ARRIS Group, Inc. -2C9569 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -50-95-51 (hex) ARRIS Group, Inc. -509551 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 60-98-13 (hex) Shanghai Visking Digital Technology Co. LTD 609813 (base 16) Shanghai Visking Digital Technology Co. LTD Room 1301, Building A8, No.1688 Guoquan North Road, Yangpu District @@ -86861,12 +86567,6 @@ C42C4F (base 16) Qingdao Hisense Mobile Communication Technology Co,Ltd Wuhan Hubei 430074 CN -24-0A-63 (hex) ARRIS Group, Inc. -240A63 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 44-FF-BA (hex) zte corporation 44FFBA (base 16) zte corporation 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China @@ -86885,18 +86585,1062 @@ B481BF (base 16) Meta-Networks, LLC Saint-Petersburg Saint-Petersburg 196128 RU -10-1D-51 (hex) 8Mesh Networks -101D51 (base 16) 8Mesh Networks - Unit 607, 6/F, Yen Sheng Centre, - 64 Hoi Yuen Road Kwun Tong 000 - HK - 0C-AE-7D (hex) Texas Instruments 0CAE7D (base 16) Texas Instruments 12500 TI Blvd Dallas TX 75243 US +64-1C-AE (hex) Samsung Electronics Co.,Ltd +641CAE (base 16) Samsung Electronics Co.,Ltd + 129, Samsung-ro, Youngtongl-Gu + Suwon Gyeonggi-Do 16677 + KR + +40-50-B5 (hex) Shenzhen New Species Technology Co., Ltd. +4050B5 (base 16) Shenzhen New Species Technology Co., Ltd. + Room 1827,Building R&D,EVOC intelligence valley,No 11,Gao xin west road,Guangming New District + Shenzhen 518107 + CN + +4C-D0-CB (hex) HUAWEI TECHNOLOGIES CO.,LTD +4CD0CB (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +38-BA-F8 (hex) Intel Corporate +38BAF8 (base 16) Intel Corporate + Lot 8, Jalan Hi-Tech 2/3 + Kulim Kedah 09000 + MY + +A4-E9-75 (hex) Apple, Inc. +A4E975 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-A5-3E (hex) Apple, Inc. +C0A53E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-00-C6 (hex) Apple, Inc. +9800C6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-7B-8A (hex) Apple, Inc. +787B8A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +38-66-F0 (hex) Apple, Inc. +3866F0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-EE-28 (hex) Apple, Inc. +20EE28 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +08-F4-AB (hex) Apple, Inc. +08F4AB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-85-90 (hex) Apple, Inc. +8C8590 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-EF-43 (hex) Apple, Inc. +68EF43 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-2D-B7 (hex) Apple, Inc. +CC2DB7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D4-A3-3D (hex) Apple, Inc. +D4A33D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-E0-A6 (hex) Apple, Inc. +E4E0A6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-EF-00 (hex) Apple, Inc. +70EF00 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B0-CA-68 (hex) Apple, Inc. +B0CA68 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-10-E8 (hex) Apple, Inc. +9810E8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B4-9C-DF (hex) Apple, Inc. +B49CDF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-A4-CA (hex) Apple, Inc. +DCA4CA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-8F-E9 (hex) Apple, Inc. +8C8FE9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-CA-33 (hex) Apple, Inc. +98CA33 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +FC-25-3F (hex) Apple, Inc. +FC253F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-34-51 (hex) Apple, Inc. +183451 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-84-7A (hex) Apple, Inc. +C0847A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-20-0C (hex) Apple, Inc. +64200C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +74-E1-B6 (hex) Apple, Inc. +74E1B6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-77-1A (hex) Apple, Inc. +0C771A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-F4-B9 (hex) Apple, Inc. +00F4B9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-33-4B (hex) Apple, Inc. +C8334B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-F6-B1 (hex) Apple, Inc. +B8F6B1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-9F-42 (hex) Apple, Inc. +C09F42 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-9E-FC (hex) Apple, Inc. +189EFC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +6C-3E-6D (hex) Apple, Inc. +6C3E6D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-2D-AA (hex) Apple, Inc. +8C2DAA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-E4-AB (hex) Apple, Inc. +E4E4AB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +58-40-4E (hex) Apple, Inc. +58404E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-0C-5C (hex) Apple, Inc. +DC0C5C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-20-0B (hex) Apple, Inc. +2C200B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-9A-C1 (hex) Apple, Inc. +609AC1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-79-60 (hex) Apple, Inc. +F07960 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-8B-A0 (hex) Apple, Inc. +9C8BA0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-A0-2B (hex) Apple, Inc. +28A02B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B4-4B-D2 (hex) Apple, Inc. +B44BD2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-4F-DA (hex) Apple, Inc. +9C4FDA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +1C-5C-F2 (hex) Apple, Inc. +1C5CF2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +38-71-DE (hex) Apple, Inc. +3871DE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-54-36 (hex) Apple, Inc. +BC5436 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-F9-38 (hex) Apple, Inc. +5CF938 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +4C-32-75 (hex) Apple, Inc. +4C3275 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-F0-A2 (hex) Apple, Inc. +2CF0A2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +EC-AD-B8 (hex) Apple, Inc. +ECADB8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-01-A7 (hex) Apple, Inc. +9801A7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B4-8B-19 (hex) Apple, Inc. +B48B19 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-9A-79 (hex) Apple, Inc. +E49A79 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-6C-8F (hex) Apple, Inc. +406C8F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-C6-10 (hex) Apple, Inc. +00C610 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-DE-E2 (hex) Apple, Inc. +70DEE2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-20-32 (hex) Apple, Inc. +182032 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +6C-C2-6B (hex) Apple, Inc. +6CC26B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +10-40-F3 (hex) Apple, Inc. +1040F3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-1D-4F (hex) Apple, Inc. +001D4F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-1E-52 (hex) Apple, Inc. +001E52 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-1F-5B (hex) Apple, Inc. +001F5B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-1F-F3 (hex) Apple, Inc. +001FF3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-21-E9 (hex) Apple, Inc. +0021E9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-23-6C (hex) Apple, Inc. +00236C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-25-00 (hex) Apple, Inc. +002500 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-FB-42 (hex) Apple, Inc. +60FB42 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F8-1E-DF (hex) Apple, Inc. +F81EDF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-84-0D (hex) Apple, Inc. +90840D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-A2-5E (hex) Apple, Inc. +D8A25E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-BC-C8 (hex) Apple, Inc. +C8BCC8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-E7-CF (hex) Apple, Inc. +28E7CF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-9E-3F (hex) Apple, Inc. +D89E3F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-0C-CE (hex) Apple, Inc. +040CCE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-D1-D2 (hex) Apple, Inc. +A4D1D2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-FA-DF (hex) Apple, Inc. +7CFADF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +10-1C-0C (hex) Apple, Inc. +101C0C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-11-24 (hex) Apple, Inc. +001124 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-C7-C5 (hex) Fiberhome Telecommunication Technologies Co.,LTD +80C7C5 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +FC-B7-F0 (hex) Idaho National Laboratory +FCB7F0 (base 16) Idaho National Laboratory + 2525 N. Fremont Ave + Idaho Falls ID 83415 + US + +E4-60-59 (hex) Pingtek Co., Ltd. +E46059 (base 16) Pingtek Co., Ltd. + 5F., No.786, Zhongzheng Rd., Zhonghe Dist. + New Taipei City 235 + TW + +6C-70-9F (hex) Apple, Inc. +6C709F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-3E-9F (hex) Apple, Inc. +0C3E9F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-E2-FD (hex) Apple, Inc. +34E2FD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-92-17 (hex) Apple, Inc. +609217 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-63-DF (hex) Apple, Inc. +8863DF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-E6-50 (hex) Apple, Inc. +80E650 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-61-71 (hex) Apple, Inc. +006171 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-FD-61 (hex) Apple, Inc. +90FD61 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-97-F3 (hex) Apple, Inc. +5C97F3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +6C-40-08 (hex) Apple, Inc. +6C4008 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +24-A0-74 (hex) Apple, Inc. +24A074 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-24-75 (hex) Apple, Inc. +F02475 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-A2-E4 (hex) Apple, Inc. +20A2E4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-F5-DA (hex) Apple, Inc. +5CF5DA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-9A-BE (hex) Apple, Inc. +649ABE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +94-E9-6A (hex) Apple, Inc. +94E96A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-29-3A (hex) Apple, Inc. +AC293A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +10-41-7F (hex) Apple, Inc. +10417F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-44-D9 (hex) Apple, Inc. +B844D9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-2B-2A (hex) Apple, Inc. +DC2B2A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +14-20-5E (hex) Apple, Inc. +14205E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-1D-D9 (hex) Apple, Inc. +5C1DD9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-F1-D8 (hex) Apple, Inc. +18F1D8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F8-6F-C1 (hex) Apple, Inc. +F86FC1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-99-B6 (hex) Apple, Inc. +F099B6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-72-40 (hex) Apple, Inc. +907240 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-4D-E9 (hex) Apple, Inc. +0C4DE9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-96-95 (hex) Apple, Inc. +D89695 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-30-21 (hex) Apple, Inc. +0C3021 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-F6-1C (hex) Apple, Inc. +F0F61C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B0-34-95 (hex) Apple, Inc. +B03495 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-8E-0C (hex) Apple, Inc. +848E0C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +94-94-26 (hex) Apple, Inc. +949426 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E0-F5-C6 (hex) Apple, Inc. +E0F5C6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-E1-4C (hex) Apple, Inc. +28E14C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-E4-3A (hex) Apple, Inc. +54E43A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-E0-EB (hex) Apple, Inc. +C8E0EB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-88-08 (hex) Apple, Inc. +A88808 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +44-4C-0C (hex) Apple, Inc. +444C0C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-FC-FE (hex) Apple, Inc. +84FCFE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-8B-7F (hex) Apple, Inc. +E48B7F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-96-9D (hex) Apple, Inc. +5C969D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-FA-D8 (hex) Apple, Inc. +A8FAD8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-14-A6 (hex) Apple, Inc. +7014A6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-66-7F (hex) Apple, Inc. +A8667F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-25-98 (hex) Apple, Inc. +D02598 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-29-F5 (hex) Apple, Inc. +CC29F5 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-D3-A2 (hex) Apple, Inc. +DCD3A2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-FC-89 (hex) ARRIS Group, Inc. +40FC89 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-24-93 (hex) ARRIS Group, Inc. +002493 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E4-64-49 (hex) ARRIS Group, Inc. +E46449 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +74-56-12 (hex) ARRIS Group, Inc. +745612 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +74-EA-E8 (hex) ARRIS Group, Inc. +74EAE8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +A8-11-FC (hex) ARRIS Group, Inc. +A811FC (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +04-4E-5A (hex) ARRIS Group, Inc. +044E5A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +94-E8-C5 (hex) ARRIS Group, Inc. +94E8C5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +F8-A0-97 (hex) ARRIS Group, Inc. +F8A097 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +B0-DA-F9 (hex) ARRIS Group, Inc. +B0DAF9 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +18-B8-1F (hex) ARRIS Group, Inc. +18B81F (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +BC-2E-48 (hex) ARRIS Group, Inc. +BC2E48 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +58-19-F8 (hex) ARRIS Group, Inc. +5819F8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +2C-95-69 (hex) ARRIS Group, Inc. +2C9569 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +50-95-51 (hex) ARRIS Group, Inc. +509551 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +24-0A-63 (hex) ARRIS Group, Inc. +240A63 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1E-8D (hex) ARRIS Group, Inc. +001E8D (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-0B (hex) ARRIS Group, Inc. +00230B (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1B-52 (hex) ARRIS Group, Inc. +001B52 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-ED (hex) ARRIS Group, Inc. +0023ED (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-95 (hex) ARRIS Group, Inc. +002395 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-22-B4 (hex) ARRIS Group, Inc. +0022B4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-21-36 (hex) ARRIS Group, Inc. +002136 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-24-C1 (hex) ARRIS Group, Inc. +0024C1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +3C-75-4A (hex) ARRIS Group, Inc. +3C754A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +A4-7A-A4 (hex) ARRIS Group, Inc. +A47AA4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1A-AD (hex) ARRIS Group, Inc. +001AAD (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-19-5E (hex) ARRIS Group, Inc. +00195E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-14-04 (hex) ARRIS Group, Inc. +001404 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1B-DD (hex) ARRIS Group, Inc. +001BDD (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-A2 (hex) ARRIS Group, Inc. +0023A2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +BC-64-4B (hex) ARRIS Group, Inc. +BC644B (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +34-7A-60 (hex) ARRIS Group, Inc. +347A60 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +84-E0-58 (hex) ARRIS Group, Inc. +84E058 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-36-76 (hex) ARRIS Group, Inc. +003676 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +70-7E-43 (hex) ARRIS Group, Inc. +707E43 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +1C-14-48 (hex) ARRIS Group, Inc. +1C1448 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-12-25 (hex) ARRIS Group, Inc. +001225 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-12-8A (hex) ARRIS Group, Inc. +00128A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-03-E0 (hex) ARRIS Group, Inc. +0003E0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +70-C8-33 (hex) Wirepas Oy +70C833 (base 16) Wirepas Oy + Visiokatu 4 + Tampere 33720 + FI + +E8-FA-F7 (hex) Guangdong Uniteddata Holding Group Co., Ltd. +E8FAF7 (base 16) Guangdong Uniteddata Holding Group Co., Ltd. + 39L, Pearl River Tower, No.15 Zhujiang West Road,Tianhe District + GUANGZHOU GUANGDONG 510623 + CN + +94-87-E0 (hex) Xiaomi Communications Co Ltd +9487E0 (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 + CN + D8-6C-E9 (hex) Sagemcom Broadband SAS D86CE9 (base 16) Sagemcom Broadband SAS 250 route de l'Empereur @@ -91016,12 +91760,6 @@ DCC0DB (base 16) Shenzhen Kaiboer Technology Co., Ltd. Birkeroed DK-3460 DK -E8-9A-FF (hex) Fujian Landi Commercial Equipment Co.,Ltd -E89AFF (base 16) Fujian Landi Commercial Equipment Co.,Ltd - No.68, Hong Shan Yuan Road, Gulou District - Fuzhou Municipality Fujian Province 350001 - CN - 68-3B-1E (hex) Countwise LTD 683B1E (base 16) Countwise LTD 1149 Sawgrass Corporate Parkway @@ -91322,12 +92060,6 @@ C8C791 (base 16) Zero1.tv GmbH Oulu 90570 FI -30-78-C2 (hex) Innowireless, Co. Ltd. -3078C2 (base 16) Innowireless, Co. Ltd. - 1-301, Pangyo Seven Venture Valley 2-danji - Seongnam-Si Gyeonggi-do 463-400 - KR - 7C-FE-28 (hex) Salutron Inc. 7CFE28 (base 16) Salutron Inc. 40979 Encyclopedia Circle @@ -95798,12 +96530,6 @@ EC3091 (base 16) Cisco Systems, Inc Ceska Skalice Nachod 55203 CZ -00-23-3D (hex) Novero holding B.V. -00233D (base 16) Novero holding B.V. - Parsevalstrasse 7A - Düsseldorf 40468 - DE - 00-23-30 (hex) DIZIPIA, INC. 002330 (base 16) DIZIPIA, INC. 15th Floor, East Wing, IT Venture Tower @@ -102449,12 +103175,6 @@ EC3091 (base 16) Cisco Systems, Inc Hoechberg Bavaria 97204 DE -00-07-A8 (hex) Haier Group Technologies Ltd. -0007A8 (base 16) Haier Group Technologies Ltd. - No. 1 Haier Road, Hi-tech Zone - - CN - 00-09-4A (hex) Homenet Communications 00094A (base 16) Homenet Communications Innovation Centre @@ -106736,12 +107456,6 @@ EC3091 (base 16) Cisco Systems, Inc Sunnyvale, CA 94089 US -00-A0-21 (hex) General Dynamics -00A021 (base 16) General Dynamics - C4 Systems - Needham Heights MA 02494-2892 - US - 00-A0-A8 (hex) RENEX CORPORATION 00A0A8 (base 16) RENEX CORPORATION 2750 KILLARNEY DRIVE @@ -112970,294 +113684,12 @@ A0C9A0 (base 16) Murata Manufacturing Co., Ltd. Nagaokakyo-shi Kyoto 617-8555 JP -00-1C-C3 (hex) ARRIS Group, Inc. -001CC3 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -64-12-69 (hex) ARRIS Group, Inc. -641269 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -28-7A-EE (hex) ARRIS Group, Inc. -287AEE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -FC-51-A4 (hex) ARRIS Group, Inc. -FC51A4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -38-70-0C (hex) ARRIS Group, Inc. -38700C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -A4-15-88 (hex) ARRIS Group, Inc. -A41588 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -B8-16-19 (hex) ARRIS Group, Inc. -B81619 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -B0-77-AC (hex) ARRIS Group, Inc. -B077AC (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -14-5B-D1 (hex) ARRIS Group, Inc. -145BD1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -6C-C1-D2 (hex) ARRIS Group, Inc. -6CC1D2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -F8-0B-BE (hex) ARRIS Group, Inc. -F80BBE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -DC-45-17 (hex) ARRIS Group, Inc. -DC4517 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -74-F6-12 (hex) ARRIS Group, Inc. -74F612 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -74-E7-C6 (hex) ARRIS Group, Inc. -74E7C6 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-25-F2 (hex) ARRIS Group, Inc. -0025F2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-A8 (hex) ARRIS Group, Inc. -0015A8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-0E-5C (hex) ARRIS Group, Inc. -000E5C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-0C-E5 (hex) ARRIS Group, Inc. -000CE5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-04-BD (hex) ARRIS Group, Inc. -0004BD (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-E0-6F (hex) ARRIS Group, Inc. -00E06F (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -38-6B-BB (hex) ARRIS Group, Inc. -386BBB (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-CF (hex) ARRIS Group, Inc. -0015CF (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-CF (hex) ARRIS Group, Inc. -001DCF (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-D5 (hex) ARRIS Group, Inc. -001DD5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-D0 (hex) ARRIS Group, Inc. -001DD0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -5C-57-1A (hex) ARRIS Group, Inc. -5C571A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -D8-25-22 (hex) ARRIS Group, Inc. -D82522 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -70-B1-4E (hex) ARRIS Group, Inc. -70B14E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -14-D4-FE (hex) ARRIS Group, Inc. -14D4FE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-23-74 (hex) ARRIS Group, Inc. -002374 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-26-41 (hex) ARRIS Group, Inc. -002641 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-26-BA (hex) ARRIS Group, Inc. -0026BA (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-21-80 (hex) ARRIS Group, Inc. -002180 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-19-C0 (hex) ARRIS Group, Inc. -0019C0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-14-E8 (hex) ARRIS Group, Inc. -0014E8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-19-A6 (hex) ARRIS Group, Inc. -0019A6 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-17-00 (hex) ARRIS Group, Inc. -001700 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -90-1A-CA (hex) ARRIS Group, Inc. -901ACA (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E8-ED-05 (hex) ARRIS Group, Inc. -E8ED05 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -70-76-30 (hex) ARRIS Group, Inc. -707630 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -90-C7-92 (hex) ARRIS Group, Inc. -90C792 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -78-96-84 (hex) ARRIS Group, Inc. -789684 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -CC-65-AD (hex) ARRIS Group, Inc. -CC65AD (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -98-6B-3D (hex) ARRIS Group, Inc. -986B3D (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -5C-E3-0E (hex) ARRIS Group, Inc. -5CE30E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -78-23-AE (hex) ARRIS Group, Inc. -7823AE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 44-7F-77 (hex) Connected Home 447F77 (base 16) Connected Home 19-22, Rathbone Place London W1T 1HY GB -2C-7E-81 (hex) ARRIS Group, Inc. -2C7E81 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 00-9A-D2 (hex) Cisco Systems, Inc 009AD2 (base 16) Cisco Systems, Inc 80 West Tasman Drive @@ -113282,12 +113714,6 @@ CC65AD (base 16) ARRIS Group, Inc. Shenzhen Guangdong 518057 CN -F4-0E-83 (hex) ARRIS Group, Inc. -F40E83 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 7C-8B-CA (hex) TP-LINK TECHNOLOGIES CO.,LTD. 7C8BCA (base 16) TP-LINK TECHNOLOGIES CO.,LTD. Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan @@ -114110,12 +114536,6 @@ D86162 (base 16) Wistron Neweb Corporation Yokohama-shi Kanagawa 224-8502 JP -60-8C-E6 (hex) ARRIS Group, Inc. -608CE6 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 8C-D2-E9 (hex) YOKOTE SEIKO CO., LTD. 8CD2E9 (base 16) YOKOTE SEIKO CO., LTD. 10-18 Minami-Gosyono Yasumoto @@ -114410,12 +114830,6 @@ F04F7C (base 16) Private shenzhen guangdong 518000 CN -E8-82-5B (hex) ARRIS Group, Inc. -E8825B (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 5C-86-5C (hex) Samsung Electronics Co.,Ltd 5C865C (base 16) Samsung Electronics Co.,Ltd 129, Samsung-ro, Youngtongl-Gu @@ -114530,24 +114944,6 @@ D4AD2D (base 16) Fiberhome Telecommunication Technologies Co.,LTD Hangzhou Zhejiang 310012 CN -F0-B0-E7 (hex) Apple, Inc. -F0B0E7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-9B-CD (hex) Apple, Inc. -209BCD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-20-E8 (hex) Apple, Inc. -CC20E8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - 10-C2-5A (hex) Technicolor CH USA Inc. 10C25A (base 16) Technicolor CH USA Inc. 101 West 103rd St. @@ -114644,18 +115040,6 @@ D4F786 (base 16) Fiberhome Telecommunication Technologies Co.,LTD Wuhan Hubei 430074 CN -64-02-CB (hex) ARRIS Group, Inc. -6402CB (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -F0-FC-C8 (hex) ARRIS Group, Inc. -F0FCC8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - EC-7F-C6 (hex) ECCEL CORPORATION SAS EC7FC6 (base 16) ECCEL CORPORATION SAS CRA 106 15A 25 LT 88 MZ 17 BG 1, ZONA FRANCA BOGOTA @@ -114740,6 +115124,426 @@ A067BE (base 16) Sicon srl Isola Vicentina Vicenza 36033 IT +08-97-34 (hex) Hewlett Packard Enterprise +089734 (base 16) Hewlett Packard Enterprise + 8000 Foothills Blvd. + Roseville CA 95747 + US + +F8-E4-4E (hex) MCOT INC. +F8E44E (base 16) MCOT INC. + Yogohigashi 1-5-12 + Matsuyama Ehime 790-0044 + JP + +90-3D-68 (hex) G-Printec, Inc. +903D68 (base 16) G-Printec, Inc. + Kawasaki Tech Center 5F, 580-16, Horikawacho + Saiwai-ku, Kawasaki-shi Kanagawa 212-0013 + JP + +F0-0E-1D (hex) Megafone Limited +F00E1D (base 16) Megafone Limited + Unit 702,7/F,Bankok Bank Building,NO.18 Bonham Strand West + Hong Kong 999077 + HK + +CC-C0-79 (hex) Murata Manufacturing Co., Ltd. +CCC079 (base 16) Murata Manufacturing Co., Ltd. + 1-10-1, Higashikotari + Nagaokakyo-shi Kyoto 617-8555 + JP + +34-8B-75 (hex) LAVA INTERNATIONAL(H.K) LIMITED +348B75 (base 16) LAVA INTERNATIONAL(H.K) LIMITED + UNIT L 1/F MAU LAM COMM BLDG 16-18 MAU LAM ST, JORDAN KL, HK + Hong kong 999077 + CN + +E8-9A-FF (hex) Fujian LANDI Commercial Equipment Co.,Ltd +E89AFF (base 16) Fujian LANDI Commercial Equipment Co.,Ltd + Building 17,the 1st Section ,Fuzhou Software Park + No.89 Software Road Fuzhou ,Fujian 350003 + CN + +00-07-A8 (hex) Haier Group Technologies Ltd +0007A8 (base 16) Haier Group Technologies Ltd + No. 1 Haier Road, Hi-tech Zone + + CN + +E4-43-4B (hex) Dell Inc. +E4434B (base 16) Dell Inc. + One Dell Way + Round Rock TX 78682 + US + +68-89-75 (hex) nuoxc +688975 (base 16) nuoxc + 龙岗区横岗街道西坑社区西坑梧岗路9号2栋 + 深圳市 广东省 518173 + CN + +44-1E-98 (hex) Ruckus Wireless +441E98 (base 16) Ruckus Wireless + 350 West Java Drive + Sunnyvale CA 94089 + US + +08-E6-89 (hex) Apple, Inc. +08E689 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +74-E7-C6 (hex) ARRIS Group, Inc. +74E7C6 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +74-F6-12 (hex) ARRIS Group, Inc. +74F612 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +DC-45-17 (hex) ARRIS Group, Inc. +DC4517 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +F8-0B-BE (hex) ARRIS Group, Inc. +F80BBE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +6C-C1-D2 (hex) ARRIS Group, Inc. +6CC1D2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +14-5B-D1 (hex) ARRIS Group, Inc. +145BD1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +B0-77-AC (hex) ARRIS Group, Inc. +B077AC (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +B8-16-19 (hex) ARRIS Group, Inc. +B81619 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +A4-15-88 (hex) ARRIS Group, Inc. +A41588 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +38-70-0C (hex) ARRIS Group, Inc. +38700C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +FC-51-A4 (hex) ARRIS Group, Inc. +FC51A4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +28-7A-EE (hex) ARRIS Group, Inc. +287AEE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +CC-65-AD (hex) ARRIS Group, Inc. +CC65AD (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +78-96-84 (hex) ARRIS Group, Inc. +789684 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +90-C7-92 (hex) ARRIS Group, Inc. +90C792 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E8-ED-05 (hex) ARRIS Group, Inc. +E8ED05 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-0C-E5 (hex) ARRIS Group, Inc. +000CE5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-0E-5C (hex) ARRIS Group, Inc. +000E5C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-A8 (hex) ARRIS Group, Inc. +0015A8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-17-00 (hex) ARRIS Group, Inc. +001700 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-19-A6 (hex) ARRIS Group, Inc. +0019A6 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-21-80 (hex) ARRIS Group, Inc. +002180 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-26-BA (hex) ARRIS Group, Inc. +0026BA (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-26-41 (hex) ARRIS Group, Inc. +002641 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-23-74 (hex) ARRIS Group, Inc. +002374 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-25-F2 (hex) ARRIS Group, Inc. +0025F2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-CF (hex) ARRIS Group, Inc. +0015CF (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +38-6B-BB (hex) ARRIS Group, Inc. +386BBB (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-E0-6F (hex) ARRIS Group, Inc. +00E06F (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-04-BD (hex) ARRIS Group, Inc. +0004BD (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +5C-57-1A (hex) ARRIS Group, Inc. +5C571A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-D0 (hex) ARRIS Group, Inc. +001DD0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-D5 (hex) ARRIS Group, Inc. +001DD5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-CF (hex) ARRIS Group, Inc. +001DCF (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-14-E8 (hex) ARRIS Group, Inc. +0014E8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-19-C0 (hex) ARRIS Group, Inc. +0019C0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +98-6B-3D (hex) ARRIS Group, Inc. +986B3D (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +90-1A-CA (hex) ARRIS Group, Inc. +901ACA (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +64-12-69 (hex) ARRIS Group, Inc. +641269 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1C-C3 (hex) ARRIS Group, Inc. +001CC3 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +14-D4-FE (hex) ARRIS Group, Inc. +14D4FE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +70-B1-4E (hex) ARRIS Group, Inc. +70B14E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +D8-25-22 (hex) ARRIS Group, Inc. +D82522 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +70-76-30 (hex) ARRIS Group, Inc. +707630 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +F4-0E-83 (hex) ARRIS Group, Inc. +F40E83 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +60-8C-E6 (hex) ARRIS Group, Inc. +608CE6 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E8-82-5B (hex) ARRIS Group, Inc. +E8825B (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +64-02-CB (hex) ARRIS Group, Inc. +6402CB (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +F0-FC-C8 (hex) ARRIS Group, Inc. +F0FCC8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +FC-69-47 (hex) Texas Instruments +FC6947 (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +E0-7D-EA (hex) Texas Instruments +E07DEA (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +F0-B5-D1 (hex) Texas Instruments +F0B5D1 (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +FC-E6-6A (hex) Industrial Software Co +FCE66A (base 16) Industrial Software Co + 85, Aleksandyr Malinov Blvd. Office 6 + Sofia 1715 + BG + +78-36-CC (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +7836CC (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +30-78-C2 (hex) Innowireless / QUCELL Networks +3078C2 (base 16) Innowireless / QUCELL Networks + Innowireless Bldg. 190 Seohyeon-ro + Bundang-gu, Seongnam-si Gyeonggi-do 13590 + KR + +00-23-3D (hex) Laird Technologies +00233D (base 16) Laird Technologies + Meesmannstrasse 103 + Bochum 44807 + DE + +D8-18-D3 (hex) Juniper Networks +D818D3 (base 16) Juniper Networks + 1133 Innovation Way + Sunnyvale CA 94089 + US + +6C-AF-15 (hex) Webasto SE +6CAF15 (base 16) Webasto SE + Kraillinger Straße 5 + Stockdorf Bayern 82131 + DE + 54-C5-7A (hex) Sunnovo International Limited 54C57A (base 16) Sunnovo International Limited 1717 Haitai Building @@ -115079,660 +115883,6 @@ B42D56 (base 16) Extreme Networks, Inc. Seongnam-si Gyeonggi-do 463-875 KR -48-74-6E (hex) Apple, Inc. -48746E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -54-72-4F (hex) Apple, Inc. -54724F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-F1-3E (hex) Apple, Inc. -04F13E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-03-08 (hex) Apple, Inc. -600308 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-EA-96 (hex) Apple, Inc. -80EA96 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -24-A2-E1 (hex) Apple, Inc. -24A2E1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-B9-31 (hex) Apple, Inc. -90B931 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-0B-5C (hex) Apple, Inc. -280B5C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-96-8A (hex) Apple, Inc. -A8968A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-04-EB (hex) Apple, Inc. -9C04EB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -88-53-95 (hex) Apple, Inc. -885395 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-92-9F (hex) Apple, Inc. -80929F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-B8-E3 (hex) Apple, Inc. -98B8E3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-00-4D (hex) Apple, Inc. -D8004D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-FE-94 (hex) Apple, Inc. -98FE94 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-64-4B (hex) Apple, Inc. -68644B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-99-BF (hex) Apple, Inc. -F099BF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -FC-E9-98 (hex) Apple, Inc. -FCE998 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -48-E9-F1 (hex) Apple, Inc. -48E9F1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -4C-7C-5F (hex) Apple, Inc. -4C7C5F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-F8-1D (hex) Apple, Inc. -60F81D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-9C-70 (hex) Apple, Inc. -689C70 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -2C-B4-3A (hex) Apple, Inc. -2CB43A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-26-65 (hex) Apple, Inc. -042665 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F4-F1-5A (hex) Apple, Inc. -F4F15A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-7D-74 (hex) Apple, Inc. -207D74 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -4C-8D-79 (hex) Apple, Inc. -4C8D79 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -FC-FC-48 (hex) Apple, Inc. -FCFC48 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -38-C9-86 (hex) Apple, Inc. -38C986 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-EC-E4 (hex) Apple, Inc. -70ECE4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-1D-72 (hex) Apple, Inc. -D81D72 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -94-F6-A3 (hex) Apple, Inc. -94F6A3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-FD-94 (hex) Apple, Inc. -78FD94 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -48-D7-05 (hex) Apple, Inc. -48D705 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-6D-F8 (hex) Apple, Inc. -7C6DF8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -3C-AB-8E (hex) Apple, Inc. -3CAB8E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-7E-61 (hex) Apple, Inc. -787E61 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D4-F4-6F (hex) Apple, Inc. -D4F46F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-85-50 (hex) Apple, Inc. -C88550 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-7F-3E (hex) Apple, Inc. -AC7F3E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-C3-61 (hex) Apple, Inc. -A4C361 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -08-70-45 (hex) Apple, Inc. -087045 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -40-33-1A (hex) Apple, Inc. -40331A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-37-14 (hex) Apple, Inc. -DC3714 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-9F-70 (hex) Apple, Inc. -789F70 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -64-B0-A6 (hex) Apple, Inc. -64B0A6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-FC-AC (hex) Apple, Inc. -84FCAC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-19-C0 (hex) Apple, Inc. -6C19C0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-AB-37 (hex) Apple, Inc. -20AB37 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-D0-12 (hex) Apple, Inc. -C0D012 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D4-DC-CD (hex) Apple, Inc. -D4DCCD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -48-4B-AA (hex) Apple, Inc. -484BAA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F8-03-77 (hex) Apple, Inc. -F80377 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -14-BD-61 (hex) Apple, Inc. -14BD61 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-88-6D (hex) Apple, Inc. -78886D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-5C-2C (hex) Apple, Inc. -A85C2C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-DB-70 (hex) Apple, Inc. -00DB70 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -BC-EC-5D (hex) Apple, Inc. -BCEC5D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-41-5F (hex) Apple, Inc. -DC415F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -30-63-6B (hex) Apple, Inc. -30636B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -0C-51-01 (hex) Apple, Inc. -0C5101 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -08-6D-41 (hex) Apple, Inc. -086D41 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-D3-CF (hex) Apple, Inc. -04D3CF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-3C-AE (hex) Apple, Inc. -203CAE (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -74-8D-08 (hex) Apple, Inc. -748D08 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A0-3B-E3 (hex) Apple, Inc. -A03BE3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-65-90 (hex) Apple, Inc. -186590 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-10-FA (hex) Apple, Inc. -0010FA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-05-02 (hex) Apple, Inc. -000502 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-78-2E (hex) Apple, Inc. -B8782E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-D1-8C (hex) Apple, Inc. -A4D18C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-25-EF (hex) Apple, Inc. -CC25EF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-DB-CA (hex) Apple, Inc. -68DBCA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-4B-ED (hex) Apple, Inc. -044BED (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -6C-8D-C1 (hex) Apple, Inc. -6C8DC1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -38-CA-DA (hex) Apple, Inc. -38CADA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F4-5C-89 (hex) Apple, Inc. -F45C89 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -58-1F-AA (hex) Apple, Inc. -581FAA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -24-AB-81 (hex) Apple, Inc. -24AB81 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-CD-60 (hex) Apple, Inc. -70CD60 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-C5-37 (hex) Apple, Inc. -7CC537 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C4-2C-03 (hex) Apple, Inc. -C42C03 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-30-62 (hex) Apple, Inc. -D83062 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -40-D3-2D (hex) Apple, Inc. -40D32D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-6D-62 (hex) Apple, Inc. -7C6D62 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-6A-B8 (hex) Apple, Inc. -286AB8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -40-3C-FC (hex) Apple, Inc. -403CFC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-C7-5D (hex) Apple, Inc. -B8C75D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E8-04-0B (hex) Apple, Inc. -E8040B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-CE-8F (hex) Apple, Inc. -E4CE8F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -3C-07-54 (hex) Apple, Inc. -3C0754 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-67-06 (hex) Apple, Inc. -A46706 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-B0-3D (hex) Apple, Inc. -80B03D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-3C-85 (hex) Apple, Inc. -C83C85 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A0-4E-A7 (hex) Apple, Inc. -A04EA7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -40-9C-28 (hex) Apple, Inc. -409C28 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -08-E6-89 (hex) Apple, Inc. -08E689 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -4C-B1-99 (hex) Apple, Inc. -4CB199 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-D6-BB (hex) Apple, Inc. -98D6BB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -3C-D0-F8 (hex) Apple, Inc. -3CD0F8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-C3-A1 (hex) Apple, Inc. -7CC3A1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-26-08 (hex) Apple, Inc. -002608 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-1E-C2 (hex) Apple, Inc. -001EC2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-1B-63 (hex) Apple, Inc. -001B63 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-17-F2 (hex) Apple, Inc. -0017F2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-16-CB (hex) Apple, Inc. -0016CB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-03-93 (hex) Apple, Inc. -000393 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-49-71 (hex) Apple, Inc. -804971 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -64-E6-82 (hex) Apple, Inc. -64E682 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - B4-F7-A1 (hex) LG Electronics (Mobile Communications) B4F7A1 (base 16) LG Electronics (Mobile Communications) 60-39, Gasan-dong, Geumcheon-gu @@ -115961,6 +116111,828 @@ BCAB7C (base 16) TRnP KOREA Co Ltd BuChunCity KyungKiDo 1135 KR +00-A0-21 (hex) General Dynamics Mission Systems +00A021 (base 16) General Dynamics Mission Systems + 150 Rustcraft Road + Dedham MA 02026 + US + +94-99-90 (hex) VTC Telecommunications +949990 (base 16) VTC Telecommunications + 750 (3rd Floor) Dien Bien Phu, District 10 + Ho Chi Minh Ho Chi Minh 70000 + VN + +0C-80-63 (hex) TP-LINK TECHNOLOGIES CO.,LTD. +0C8063 (base 16) TP-LINK TECHNOLOGIES CO.,LTD. + Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan + Shenzhen Guangdong 518057 + CN + +3C-15-FB (hex) HUAWEI TECHNOLOGIES CO.,LTD +3C15FB (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +B0-41-6F (hex) Shenzhen Maxtang Computer Co.,Ltd +B0416F (base 16) Shenzhen Maxtang Computer Co.,Ltd + 6/F, Bldg.3, Honghui Industrial Park, Liuxian 2nd Rd., Bao'an Dist. + Shenzhen Guangdong 518101 + CN + +F8-98-EF (hex) HUAWEI TECHNOLOGIES CO.,LTD +F898EF (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +14-09-DC (hex) HUAWEI TECHNOLOGIES CO.,LTD +1409DC (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +DC-41-5F (hex) Apple, Inc. +DC415F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +30-63-6B (hex) Apple, Inc. +30636B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F4-5C-89 (hex) Apple, Inc. +F45C89 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-DB-CA (hex) Apple, Inc. +68DBCA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-4B-ED (hex) Apple, Inc. +044BED (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +6C-8D-C1 (hex) Apple, Inc. +6C8DC1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +38-CA-DA (hex) Apple, Inc. +38CADA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-D1-8C (hex) Apple, Inc. +A4D18C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-65-90 (hex) Apple, Inc. +186590 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-B0-A6 (hex) Apple, Inc. +64B0A6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-FC-AC (hex) Apple, Inc. +84FCAC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +6C-19-C0 (hex) Apple, Inc. +6C19C0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-AB-37 (hex) Apple, Inc. +20AB37 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-3C-AE (hex) Apple, Inc. +203CAE (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +74-8D-08 (hex) Apple, Inc. +748D08 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A0-3B-E3 (hex) Apple, Inc. +A03BE3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-6D-62 (hex) Apple, Inc. +7C6D62 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-D3-2D (hex) Apple, Inc. +40D32D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-30-62 (hex) Apple, Inc. +D83062 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C4-2C-03 (hex) Apple, Inc. +C42C03 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-C5-37 (hex) Apple, Inc. +7CC537 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-CD-60 (hex) Apple, Inc. +70CD60 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-D0-12 (hex) Apple, Inc. +C0D012 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D4-DC-CD (hex) Apple, Inc. +D4DCCD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-4B-AA (hex) Apple, Inc. +484BAA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F8-03-77 (hex) Apple, Inc. +F80377 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +14-BD-61 (hex) Apple, Inc. +14BD61 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-25-EF (hex) Apple, Inc. +CC25EF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-78-2E (hex) Apple, Inc. +B8782E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-05-02 (hex) Apple, Inc. +000502 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-10-FA (hex) Apple, Inc. +0010FA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-03-93 (hex) Apple, Inc. +000393 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-16-CB (hex) Apple, Inc. +0016CB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-9C-28 (hex) Apple, Inc. +409C28 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-88-6D (hex) Apple, Inc. +78886D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-5C-2C (hex) Apple, Inc. +A85C2C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-DB-70 (hex) Apple, Inc. +00DB70 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +0C-51-01 (hex) Apple, Inc. +0C5101 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +08-6D-41 (hex) Apple, Inc. +086D41 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-D3-CF (hex) Apple, Inc. +04D3CF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-EC-5D (hex) Apple, Inc. +BCEC5D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-B0-3D (hex) Apple, Inc. +80B03D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-3C-85 (hex) Apple, Inc. +C83C85 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A0-4E-A7 (hex) Apple, Inc. +A04EA7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-17-F2 (hex) Apple, Inc. +0017F2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-1B-63 (hex) Apple, Inc. +001B63 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-1E-C2 (hex) Apple, Inc. +001EC2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-26-08 (hex) Apple, Inc. +002608 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-C3-61 (hex) Apple, Inc. +A4C361 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-7F-3E (hex) Apple, Inc. +AC7F3E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-0B-5C (hex) Apple, Inc. +280B5C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-B9-31 (hex) Apple, Inc. +90B931 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +24-A2-E1 (hex) Apple, Inc. +24A2E1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-EA-96 (hex) Apple, Inc. +80EA96 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-03-08 (hex) Apple, Inc. +600308 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-F1-3E (hex) Apple, Inc. +04F13E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-72-4F (hex) Apple, Inc. +54724F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-74-6E (hex) Apple, Inc. +48746E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D4-F4-6F (hex) Apple, Inc. +D4F46F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-7E-61 (hex) Apple, Inc. +787E61 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-F8-1D (hex) Apple, Inc. +60F81D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +4C-7C-5F (hex) Apple, Inc. +4C7C5F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-E9-F1 (hex) Apple, Inc. +48E9F1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +FC-E9-98 (hex) Apple, Inc. +FCE998 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-99-BF (hex) Apple, Inc. +F099BF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-64-4B (hex) Apple, Inc. +68644B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-9F-70 (hex) Apple, Inc. +789F70 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +24-AB-81 (hex) Apple, Inc. +24AB81 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +58-1F-AA (hex) Apple, Inc. +581FAA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-67-06 (hex) Apple, Inc. +A46706 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-07-54 (hex) Apple, Inc. +3C0754 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-CE-8F (hex) Apple, Inc. +E4CE8F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E8-04-0B (hex) Apple, Inc. +E8040B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-C7-5D (hex) Apple, Inc. +B8C75D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-3C-FC (hex) Apple, Inc. +403CFC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-FE-94 (hex) Apple, Inc. +98FE94 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-00-4D (hex) Apple, Inc. +D8004D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-B8-E3 (hex) Apple, Inc. +98B8E3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-92-9F (hex) Apple, Inc. +80929F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +88-53-95 (hex) Apple, Inc. +885395 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-04-EB (hex) Apple, Inc. +9C04EB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-96-8A (hex) Apple, Inc. +A8968A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-37-14 (hex) Apple, Inc. +DC3714 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-33-1A (hex) Apple, Inc. +40331A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +94-F6-A3 (hex) Apple, Inc. +94F6A3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-1D-72 (hex) Apple, Inc. +D81D72 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-EC-E4 (hex) Apple, Inc. +70ECE4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +38-C9-86 (hex) Apple, Inc. +38C986 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +FC-FC-48 (hex) Apple, Inc. +FCFC48 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +4C-8D-79 (hex) Apple, Inc. +4C8D79 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-7D-74 (hex) Apple, Inc. +207D74 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F4-F1-5A (hex) Apple, Inc. +F4F15A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-26-65 (hex) Apple, Inc. +042665 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-B4-3A (hex) Apple, Inc. +2CB43A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-9C-70 (hex) Apple, Inc. +689C70 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +08-70-45 (hex) Apple, Inc. +087045 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-AB-8E (hex) Apple, Inc. +3CAB8E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-6D-F8 (hex) Apple, Inc. +7C6DF8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-D7-05 (hex) Apple, Inc. +48D705 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-FD-94 (hex) Apple, Inc. +78FD94 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-85-50 (hex) Apple, Inc. +C88550 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-6A-B8 (hex) Apple, Inc. +286AB8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-C3-A1 (hex) Apple, Inc. +7CC3A1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-D0-F8 (hex) Apple, Inc. +3CD0F8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-D6-BB (hex) Apple, Inc. +98D6BB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +4C-B1-99 (hex) Apple, Inc. +4CB199 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-E6-82 (hex) Apple, Inc. +64E682 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-49-71 (hex) Apple, Inc. +804971 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-20-E8 (hex) Apple, Inc. +CC20E8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-9B-CD (hex) Apple, Inc. +209BCD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-B0-E7 (hex) Apple, Inc. +F0B0E7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A0-56-F3 (hex) Apple, Inc. +A056F3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-99-63 (hex) Apple, Inc. +549963 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-FF-3C (hex) Apple, Inc. +28FF3C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +10-94-BB (hex) Apple, Inc. +1094BB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-18-98 (hex) Apple, Inc. +F01898 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-A9-1C (hex) Apple, Inc. +48A91C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-7E-81 (hex) ARRIS Group, Inc. +2C7E81 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +5C-E3-0E (hex) ARRIS Group, Inc. +5CE30E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +78-23-AE (hex) ARRIS Group, Inc. +7823AE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +40-62-31 (hex) GIFA +406231 (base 16) GIFA + 11th Fl., Suojia Business Building , No.7 Hangkong Road , Baoan District + Shenzhen Guangdong 518000 + CN + +04-8A-E1 (hex) FLEXTRONICS MANUFACTURING(ZHUHAI)CO.,LTD. +048AE1 (base 16) FLEXTRONICS MANUFACTURING(ZHUHAI)CO.,LTD. + Xin Qing Science & Technology Industrial Park,Jin An Town,Doumen ,Zhuhai,Guangdong,PRC + Zhuhai Guangdong 519180 + CN + +0C-21-38 (hex) Hengstler GmbH +0C2138 (base 16) Hengstler GmbH + Uhlandstrasse49 + Aldingen BW 78554 + DE + +CC-C2-E0 (hex) Raisecom Technology CO., LTD +CCC2E0 (base 16) Raisecom Technology CO., LTD + No. 11, East Area, No. 10 Block, East Xibeiwang Road + Beijing 100094 + CN + +4C-C0-0A (hex) vivo Mobile Communication Co., Ltd. +4CC00A (base 16) vivo Mobile Communication Co., Ltd. + #283,BBK Road + Wusha,Chang'An DongGuan City,Guangdong, 523860 + CN + +A0-75-EA (hex) BoxLock, Inc. +A075EA (base 16) BoxLock, Inc. + 931 Monroe Dr Ste A 102-405 + Atlanta GA 30308 + US + +70-01-B5 (hex) Cisco Systems, Inc +7001B5 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +A0-B0-45 (hex) Halong Mining +A0B045 (base 16) Halong Mining + 13/F TCL Tower, No.8 Tai Chung Road + Tsuen Wan New Territories Tsuen Wan New Territories + HK + +EC-AF-97 (hex) GIT +ECAF97 (base 16) GIT + 05655, GIT Bldg., 87, Macheon-ro, Songpa-gu, Seoul, Korea + Songpa-gu Seoul 05655 + KR + +6C-21-A2 (hex) AMPAK Technology, Inc. +6C21A2 (base 16) AMPAK Technology, Inc. + No.1,Jen Ai Road Hsinchu Industrial Park, Hukou + Hsinchu Taiwan ROC. 30352 + TW + 2C-39-96 (hex) Sagemcom Broadband SAS 2C3996 (base 16) Sagemcom Broadband SAS 250 route de l'Empereur @@ -116543,12 +117515,6 @@ B075D5 (base 16) zte corporation Shenzhen GUANGDONG 518057 CN -B0-A3-7E (hex) Qingdao Haier Telecom Co.,Ltd -B0A37E (base 16) Qingdao Haier Telecom Co.,Ltd - No.1,Haier Road,Qingdao 266101 P.R.China - Qingdao Shandong 266101 - CN - 70-A8-E3 (hex) HUAWEI TECHNOLOGIES CO.,LTD 70A8E3 (base 16) HUAWEI TECHNOLOGIES CO.,LTD D1,Huawei Industrial Base,Bantian,Longgang,Shenzhen @@ -126140,12 +127106,6 @@ DC3350 (base 16) TechSAT GmbH Shantou Guangdong 515041 CN -00-1D-FA (hex) Fujian LANDI Commercial Equipment Co.,Ltd -001DFA (base 16) Fujian LANDI Commercial Equipment Co.,Ltd - Building 23,the 1st section,Software Garden - Fuzhou Fujian 350003 - CN - 00-1D-F3 (hex) SBS Science & Technology Co., Ltd 001DF3 (base 16) SBS Science & Technology Co., Ltd W2-B5/6 High-tech industrial park @@ -141077,12 +142037,6 @@ FC3D93 (base 16) LONGCHEER TELECOMMUNICATION LIMITED Milpitas CA 95035 US -00-14-8C (hex) General Dynamics Mission Systems -00148C (base 16) General Dynamics Mission Systems - 150 Rustcraft Road - Dedham MA 02026 - US - A4-71-74 (hex) HUAWEI TECHNOLOGIES CO.,LTD A47174 (base 16) HUAWEI TECHNOLOGIES CO.,LTD No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park @@ -141641,6 +142595,2136 @@ C0E54E (base 16) ARIES Embedded GmbH Fürstenfeldbruck D-82256 DE +B4-A3-82 (hex) Hangzhou Hikvision Digital Technology Co.,Ltd. +B4A382 (base 16) Hangzhou Hikvision Digital Technology Co.,Ltd. + No.555 Qianmo Road + Hangzhou Zhejiang 310052 + CN + +3C-A6-16 (hex) vivo Mobile Communication Co., Ltd. +3CA616 (base 16) vivo Mobile Communication Co., Ltd. + #283,BBK Road + Wusha,Chang'An DongGuan City,Guangdong, 523860 + CN + +88-B4-A6 (hex) Motorola Mobility LLC, a Lenovo Company +88B4A6 (base 16) Motorola Mobility LLC, a Lenovo Company + 222 West Merchandise Mart Plaza + Chicago IL 60654 + US + +74-28-57 (hex) Mayfield Robotics +742857 (base 16) Mayfield Robotics + 400 Convention Way + Redwood City CA 94063 + US + +00-CB-00 (hex) Private +00CB00 (base 16) Private + +60-9B-C8 (hex) Hipad Intelligent Technology Co., Ltd. +609BC8 (base 16) Hipad Intelligent Technology Co., Ltd. + No. 688, East of Huangtang Street, LinkongEconomy District + Nanchang Jiangxi 330000 + CN + +1C-0F-AF (hex) Lucid Vision Labs +1C0FAF (base 16) Lucid Vision Labs + Unit 130 - 13200 Delf Place + Richmond BC V6V2A2 + CA + +24-5C-CB (hex) AXIe Consortium, Inc. +245CCB (base 16) AXIe Consortium, Inc. + P.O. Box 1016 + Niwot CO 80544-1016 + US + +F8-F2-1E (hex) Intel Corporate +F8F21E (base 16) Intel Corporate + Lot 8, Jalan Hi-Tech 2/3 + Kulim Kedah 09000 + MY + +28-29-86 (hex) APC by Schneider Electric +282986 (base 16) APC by Schneider Electric + 800 Federal St. + Andover MA 01810 + US + +74-DA-38 (hex) Edimax Technology Co. Ltd. +74DA38 (base 16) Edimax Technology Co. Ltd. + No. 278, Xinhu 1st Road + Taipei City Neihu Dist 248 + TW + +38-6B-1C (hex) SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD. +386B1C (base 16) SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD. + 3/F, Building R1-B, High-Tech Industrial Park, Nanshan District + Shenzhen Guangdong 518057 + CN + +38-01-9F (hex) SHENZHEN FAST TECHNOLOGIES CO.,LTD +38019F (base 16) SHENZHEN FAST TECHNOLOGIES CO.,LTD + Room 202,Building No.5,Section 30,No.2 of Kefa Road,Nanshan District,Shenzhen,P.R.China + Shenzhen Guangdong 518057 + CN + +00-24-24 (hex) Ace Axis Limited +002424 (base 16) Ace Axis Limited + 602 Delta Business Park, Welton Road + Swindon SN5 7XP + GB + +8C-83-9D (hex) SHENZHEN XINYUPENG ELECTRONIC TECHNOLOGY CO., LTD +8C839D (base 16) SHENZHEN XINYUPENG ELECTRONIC TECHNOLOGY CO., LTD + ROOM 1505,BIT INNOVATION BUILDING,SCIENCE AND TECHNOLOGY PARK,NANSHAN DISTRICT + Shenzhen 518057 + CN + +EC-FA-F4 (hex) SenRa Tech Pvt. Ltd +ECFAF4 (base 16) SenRa Tech Pvt. Ltd + 133, First Floor, Lane No. 1, Westend Marg, Saidulajab + New Delhi 110030 + IN + +70-99-1C (hex) Shenzhen Honesty Electronics Co.,Ltd +70991C (base 16) Shenzhen Honesty Electronics Co.,Ltd + 5/F,Zone B,Chitat Industrial Park,West Longping Road + Shenzhen City Longgang District, Guangdong 518172 + CN + +00-81-F9 (hex) Texas Instruments +0081F9 (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +58-7A-62 (hex) Texas Instruments +587A62 (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +D0-67-26 (hex) Hewlett Packard Enterprise +D06726 (base 16) Hewlett Packard Enterprise + 8000 Foothills Blvd. + Roseville CA 95747 + US + +28-23-73 (hex) Digita +282373 (base 16) Digita + Jämsänkatu 2 + Helsinki Uusimaa 00520 + FI + +44-CD-0E (hex) FLEXTRONICS MANUFACTURING(ZHUHAI)CO.,LTD. +44CD0E (base 16) FLEXTRONICS MANUFACTURING(ZHUHAI)CO.,LTD. + Xin Qing Science & Technology Industrial Park,Jin An Town,Doumen ,Zhuhai,Guangdong,PRC + Zhuhai Guangdong 519180 + CN + +08-84-66 (hex) Novartis Pharma AG +088466 (base 16) Novartis Pharma AG + Lichtstrasse 35 + Basel 4056 + CH + +00-1F-7D (hex) Embedded Wireless GmbH +001F7D (base 16) Embedded Wireless GmbH + Soeflinger Strasse 200 + Ulm BW 89077 + DE + +94-7B-BE (hex) Ubicquia +947BBE (base 16) Ubicquia + 3281 Fairlane Farms Rd + Wellington FL 33449 + US + +E8-2A-44 (hex) Liteon Technology Corporation +E82A44 (base 16) Liteon Technology Corporation + 4F, 90, Chien 1 Road + New Taipei City Taiwan 23585 + TW + +00-05-A7 (hex) HYPERCHIP Inc. +0005A7 (base 16) HYPERCHIP Inc. + 180 Peel Street - Ste. #333 + H3C 2G7 + CA + +78-DD-D9 (hex) Guangzhou Shiyuan Electronics Co., Ltd. +78DDD9 (base 16) Guangzhou Shiyuan Electronics Co., Ltd. + No.6, 4th Yunpu Road, Yunpu Industry District + Guangzhou Guangdong 510530 + CN + +00-09-66 (hex) TRIMBLE EUROPE BV +000966 (base 16) TRIMBLE EUROPE BV + Meerheide 45 + Eersel DZ 5521 + NL + +EC-B0-E1 (hex) Ciena Corporation +ECB0E1 (base 16) Ciena Corporation + 7035 Ridge Road + Hanover MD 21076 + US + +58-C1-7A (hex) Cambium Networks Limited +58C17A (base 16) Cambium Networks Limited + Unit B2, Linhay Business Park, + Ashburton Devon TQ13 7UP + GB + +2C-54-91 (hex) Microsoft Corporation +2C5491 (base 16) Microsoft Corporation + One Microsoft Way + REDMOND WA 98052 + US + +04-50-DA (hex) Qiku Internet Network Scientific (Shenzhen) Co., Ltd +0450DA (base 16) Qiku Internet Network Scientific (Shenzhen) Co., Ltd + Building A2, Chi Yuen Technology Park 1001 College Avenue, Nanshan District Shenzhen, Guangdong + Shenzhen Guangdong 518000 + CN + +08-BC-20 (hex) Hangzhou Royal Cloud Technology Co., Ltd +08BC20 (base 16) Hangzhou Royal Cloud Technology Co., Ltd + Hangzhou Xixi Road 957, 24, Unit 2, 302 + Hangzhou 310030 + CN + +5C-70-A3 (hex) LG Electronics (Mobile Communications) +5C70A3 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +10-F9-6F (hex) LG Electronics (Mobile Communications) +10F96F (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +F0-1C-13 (hex) LG Electronics (Mobile Communications) +F01C13 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +00-AA-70 (hex) LG Electronics (Mobile Communications) +00AA70 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +BC-F5-AC (hex) LG Electronics (Mobile Communications) +BCF5AC (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +CC-FA-00 (hex) LG Electronics (Mobile Communications) +CCFA00 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +F8-A9-D0 (hex) LG Electronics (Mobile Communications) +F8A9D0 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +80-5A-04 (hex) LG Electronics (Mobile Communications) +805A04 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +5C-AF-06 (hex) LG Electronics (Mobile Communications) +5CAF06 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +B8-1D-AA (hex) LG Electronics (Mobile Communications) +B81DAA (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +10-F1-F2 (hex) LG Electronics (Mobile Communications) +10F1F2 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +00-25-E5 (hex) LG Electronics (Mobile Communications) +0025E5 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +00-22-A9 (hex) LG Electronics (Mobile Communications) +0022A9 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +C4-9A-02 (hex) LG Electronics (Mobile Communications) +C49A02 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +34-4D-F7 (hex) LG Electronics (Mobile Communications) +344DF7 (base 16) LG Electronics (Mobile Communications) + 60-39, Gasan-dong, Geumcheon-gu + Seoul 153-801 + KR + +44-91-60 (hex) Murata Manufacturing Co., Ltd. +449160 (base 16) Murata Manufacturing Co., Ltd. + 1-10-1, Higashikotari + Nagaokakyo-shi Kyoto 617-8555 + JP + +44-D5-A5 (hex) AddOn Computer +44D5A5 (base 16) AddOn Computer + 15775 Gateway cir + tustin CA 92780 + US + +00-AE-CD (hex) Pensando Systems +00AECD (base 16) Pensando Systems + 1730 Technology Drive, Suite 202 + San Jose CA 95110 + US + +44-AD-19 (hex) XINGFEI (H.K)LIMITED +44AD19 (base 16) XINGFEI (H.K)LIMITED + 6/F North Tower Wandelai Building  No.29 Kejinan 6th Road, Nanshan District,Shenzhen,China + Shenzhen 518057 + CN + +D8-96-E0 (hex) Alibaba Cloud Computing Ltd. +D896E0 (base 16) Alibaba Cloud Computing Ltd. + Yuhang District of Hangzhou Wenyi Road, Building 1, No. 969 Xixi Park, Zhejiang Province + Hangzhou Zhejiang 310000 + CN + +30-EB-1F (hex) Skylab M&C Technology Co.,Ltd +30EB1F (base 16) Skylab M&C Technology Co.,Ltd + 6 Floor,No.9 Building,Lijincheng Scientific&Technical park,Gongye East Road,Longhua District + Shenzhen Guangdong 518109 + CN + +B0-B2-DC (hex) Zyxel Communications Corporation +B0B2DC (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +00-23-F8 (hex) Zyxel Communications Corporation +0023F8 (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +4C-9E-FF (hex) Zyxel Communications Corporation +4C9EFF (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +5C-F4-AB (hex) Zyxel Communications Corporation +5CF4AB (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +14-79-F3 (hex) China Mobile Group Device Co.,Ltd. +1479F3 (base 16) China Mobile Group Device Co.,Ltd. + 32 Xuanwumen West Street,Xicheng District + Beijing 100053 + CN + +90-EF-68 (hex) Zyxel Communications Corporation +90EF68 (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +28-28-5D (hex) Zyxel Communications Corporation +28285D (base 16) Zyxel Communications Corporation + No. 6 Innovation Road II, Science Park + Hsichu Taiwan 300 + TW + +4C-AE-1C (hex) SaiNXT Technologies LLP +4CAE1C (base 16) SaiNXT Technologies LLP + Shop No. 7, Sonawala Building, 1st Floor, Proctor Road, Grant Road (E) + Mumbai Maharashtra 400007 + IN + +4C-91-0C (hex) Lanix Internacional, S.A. de C.V. +4C910C (base 16) Lanix Internacional, S.A. de C.V. + Carretera Nogales Km8.5 + Hermosillo Sonora 83160 + MX + +2C-42-05 (hex) Lytx +2C4205 (base 16) Lytx + 9785 Towne Centre Drive + San Diego CA 92121 + US + +00-90-F1 (hex) Seagate Cloud Systems Inc +0090F1 (base 16) Seagate Cloud Systems Inc + 6305 El Camino Real + Carlsbad CA 92009 + US + +D4-5D-DF (hex) PEGATRON CORPORATION +D45DDF (base 16) PEGATRON CORPORATION + 5F No. 76, Ligong St., Beitou District + Taipei City Taiwan 112 + TW + +D4-1A-3F (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD +D41A3F (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD + NO.18 HAIBIN ROAD, + DONG GUAN GUANG DONG 523860 + CN + +00-50-13 (hex) Seagate Cloud Systems Inc +005013 (base 16) Seagate Cloud Systems Inc + 7420 E. Dry Creek Parkway + Longmont CO 80503 + US + +00-C0-FF (hex) Seagate Cloud Systems Inc +00C0FF (base 16) Seagate Cloud Systems Inc + 6305 El Camino Real + Carlsbad CA 92009 + US + +EC-81-93 (hex) Logitech, Inc +EC8193 (base 16) Logitech, Inc + 4700 NW Camas Meadows Drive + Camas WA 98607 + US + +D0-96-FB (hex) DASAN Network Solutions +D096FB (base 16) DASAN Network Solutions + DASAN Tower 8F, 49 Daewangpangyo-ro644beon-gil Bundang-gu + Seongnam-si Gyeonggi-do 13493 + KR + +5C-52-1E (hex) Nintendo Co.,Ltd +5C521E (base 16) Nintendo Co.,Ltd + 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU + KYOTO KYOTO 601-8501 + JP + +A8-25-EB (hex) Cambridge Industries(Group) Co.,Ltd. +A825EB (base 16) Cambridge Industries(Group) Co.,Ltd. + 5/F,Building 8, 2388 ChenHang Road, MinHang District + shanghai 201114 + CN + +D8-C8-E9 (hex) Phicomm (Shanghai) Co., Ltd. +D8C8E9 (base 16) Phicomm (Shanghai) Co., Ltd. + 3666 SiXian Rd.,Songjiang District + Shanghai Shanghai 201616 + CN + +64-F8-8A (hex) China Mobile IOT Company Limited +64F88A (base 16) China Mobile IOT Company Limited + NO.8 Yu Ma Road, NanAn Area Chongqing,China + Chongqing Chongqing 401336 + CN + +6C-49-C1 (hex) o2ones Co., Ltd. +6C49C1 (base 16) o2ones Co., Ltd. + 503 Glory Tower, 3-10, Gumi-ro 9beon-gil, Bundang-gu + Seongnam-si Gyeonggi-do 13637 + KR + +68-DB-54 (hex) Phicomm (Shanghai) Co., Ltd. +68DB54 (base 16) Phicomm (Shanghai) Co., Ltd. + 3666 SiXian Rd.,Songjiang District + Shanghai Shanghai 201616 + CN + +E4-8F-34 (hex) Vodafone Italia S.p.A. +E48F34 (base 16) Vodafone Italia S.p.A. + Via Lorenteggio nr. 240 + Milan Italy 20147 + IT + +2C-6B-7D (hex) Texas Instruments +2C6B7D (base 16) Texas Instruments + 12500 TI Blvd + Dallas TX 75243 + US + +78-80-38 (hex) FUNAI ELECTRIC CO., LTD. +788038 (base 16) FUNAI ELECTRIC CO., LTD. + 7-1, NAKAGAITO 7-CHOME + DAITO OSAKA 5740013 + JP + +00-01-30 (hex) Extreme Networks, Inc. +000130 (base 16) Extreme Networks, Inc. + 3585 Monroe Street + Santa Clara CA 95051 + US + +CC-6E-A4 (hex) Samsung Electronics Co.,Ltd +CC6EA4 (base 16) Samsung Electronics Co.,Ltd + 129, Samsung-ro, Youngtongl-Gu + Suwon Gyeonggi-Do 16677 + KR + +C4-77-AF (hex) Advanced Digital Broadcast SA +C477AF (base 16) Advanced Digital Broadcast SA + Route de Crassier 21, B2 + Eysins CH-1262 + CH + +20-DF-B9 (hex) Google, Inc. +20DFB9 (base 16) Google, Inc. + 1600 Amphitheatre Parkway + Mountain View CA 94043 + US + +44-F0-34 (hex) Kaonmedia CO., LTD. +44F034 (base 16) Kaonmedia CO., LTD. + 884-3, Seongnam-daero, Bundang-gu + Seongnam-si Gyeonggi-do 13517 + KR + +14-78-0B (hex) Varex Imaging Deutschland AG +14780B (base 16) Varex Imaging Deutschland AG + Zweigniederlassung/Branch Walluf + In der Rehbach 22 Walluf 65396 + DE + +10-CD-6E (hex) FISYS +10CD6E (base 16) FISYS + 303 Expotel, 44, Dunsan-daero 117beon-gil, Seo-gu, Daejeon, Korea + Daejeon, Korea KS015 + KR + +A4-6C-F1 (hex) Samsung Electronics Co.,Ltd +A46CF1 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +0C-A8-A7 (hex) Samsung Electronics Co.,Ltd +0CA8A7 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +54-B8-02 (hex) Samsung Electronics Co.,Ltd +54B802 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +28-2C-02 (hex) IEEE Registration Authority +282C02 (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +B8-C7-16 (hex) Fiberhome Telecommunication Technologies Co.,LTD +B8C716 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +D0-59-95 (hex) Fiberhome Telecommunication Technologies Co.,LTD +D05995 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +54-DF-24 (hex) Fiberhome Telecommunication Technologies Co.,LTD +54DF24 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +58-3B-D9 (hex) Fiberhome Telecommunication Technologies Co.,LTD +583BD9 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +BC-C0-0F (hex) Fiberhome Telecommunication Technologies Co.,LTD +BCC00F (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +F0-40-7B (hex) Fiberhome Telecommunication Technologies Co.,LTD +F0407B (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +F0-8C-FB (hex) Fiberhome Telecommunication Technologies Co.,LTD +F08CFB (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan City Hubei Province 430074 + CN + +EC-8A-C7 (hex) Fiberhome Telecommunication Technologies Co.,LTD +EC8AC7 (base 16) Fiberhome Telecommunication Technologies Co.,LTD + No.5 DongXin Road + Wuhan Hubei 430074 + CN + +00-50-79 (hex) Private +005079 (base 16) Private + +5C-00-38 (hex) Viasat Group S.p.A. +5C0038 (base 16) Viasat Group S.p.A. + Via Aosta 23 + Venaria Reale Torino 10078 + IT + +E4-CB-59 (hex) Beijing Loveair Science and Technology Co. Ltd. +E4CB59 (base 16) Beijing Loveair Science and Technology Co. Ltd. + 103,Block B, Kelin Building, No.107, Dongsi North Street, Dongcheng District, + Beijing 100000 + CN + +C8-77-65 (hex) Tiesse SpA +C87765 (base 16) Tiesse SpA + Via Asti + Ivrea TO 10015 + IT + +60-5F-8D (hex) eero inc. +605F8D (base 16) eero inc. + 500 Howard Street, Suite 900 + SAN FRANCISCO CA 94105 + US + +B4-DE-DF (hex) zte corporation +B4DEDF (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN + +84-74-60 (hex) zte corporation +847460 (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN + +B4-A8-B9 (hex) Cisco Systems, Inc +B4A8B9 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +88-B6-EE (hex) Dish Technologies Corp +88B6EE (base 16) Dish Technologies Corp + 94 Inverness Terrace E + Englewood CO 80112 + US + +38-E6-0A (hex) Xiaomi Communications Co Ltd +38E60A (base 16) Xiaomi Communications Co Ltd + The Rainbow City of China Resources + NO.68, Qinghe Middle Street Haidian District, Beijing 100085 + CN + +C0-42-D0 (hex) Juniper Networks +C042D0 (base 16) Juniper Networks + 1133 Innovation Way + Sunnyvale CA 94089 + US + +E8-33-0D (hex) Xaptec GmbH +E8330D (base 16) Xaptec GmbH + Neidenburger Str. 10 + Gelsenkirchen 45897 + DE + +D8-D7-75 (hex) Sagemcom Broadband SAS +D8D775 (base 16) Sagemcom Broadband SAS + 250, route de l'Empereur + Rueil Malmaison Cedex hauts de seine 92848 + FR + +78-53-64 (hex) SHIFT GmbH +785364 (base 16) SHIFT GmbH + Am Gänsemarkt 6 + Wabern Falkenberg Hessen 34590 + DE + +24-18-1D (hex) SAMSUNG ELECTRO-MECHANICS(THAILAND) +24181D (base 16) SAMSUNG ELECTRO-MECHANICS(THAILAND) + 93Moo5T. Bangsamak SEMTHAI, WELLGROW INDUSTRIAL ESTATE + Bangpakong Chachoengsao 24180 + TH + +54-B7-E5 (hex) Rayson Technology Co., Ltd. +54B7E5 (base 16) Rayson Technology Co., Ltd. + 1F No.9 R&D Rd.II, Science-Based Industrial Park + Hsin-Chu 300 + TW + +BC-0F-A7 (hex) Ouster +BC0FA7 (base 16) Ouster + 350 Treat Ave + San Francisco CA 94110 + US + +AC-F9-70 (hex) HUAWEI TECHNOLOGIES CO.,LTD +ACF970 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +0C-41-E9 (hex) HUAWEI TECHNOLOGIES CO.,LTD +0C41E9 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +58-D7-59 (hex) HUAWEI TECHNOLOGIES CO.,LTD +58D759 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +B4-1C-30 (hex) zte corporation +B41C30 (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN + +F4-C2-48 (hex) Samsung Electronics Co.,Ltd +F4C248 (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +A8-51-5B (hex) Samsung Electronics Co.,Ltd +A8515B (base 16) Samsung Electronics Co.,Ltd + #94-1, Imsoo-Dong + Gumi Gyeongbuk 730-350 + KR + +60-6B-FF (hex) Nintendo Co.,Ltd +606BFF (base 16) Nintendo Co.,Ltd + 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU + KYOTO KYOTO 601-8501 + JP + +AC-17-C8 (hex) Cisco Meraki +AC17C8 (base 16) Cisco Meraki + 500 Terry A. Francois Blvd + San Francisco 94158 + US + +EC-9B-8B (hex) Hewlett Packard Enterprise +EC9B8B (base 16) Hewlett Packard Enterprise + 8000 Foothills Blvd. + Roseville CA 95747 + US + +70-D0-81 (hex) Beijing Netpower Technologies Inc. +70D081 (base 16) Beijing Netpower Technologies Inc. + Room 201, Block B, NO. 15 Building, EastZone + Courtyard10, Xibeiwang East Road Haidian District, Beijing 100094 + CN + +70-C9-4E (hex) Liteon Technology Corporation +70C94E (base 16) Liteon Technology Corporation + 4F, 90, Chien 1 Road + New Taipei City Taiwan 23585 + TW + +18-0F-76 (hex) D-Link International +180F76 (base 16) D-Link International + 1 Internal Business Park, #03-12,The Synergy, Singapore + Singapore Singapore 609917 + SG + +70-3A-73 (hex) Shenzhen Sundray Technologies Company Limited +703A73 (base 16) Shenzhen Sundray Technologies Company Limited + 6th Floor,Block A1, Nanshan iPark, No.1001 XueYuan Road, Nanshan District + Shenzhen Guangdong 518057 + CN + +18-4C-08 (hex) Rockwell Automation +184C08 (base 16) Rockwell Automation + 1 Allen-Bradley Dr. + Mayfield Heights OH 44124-6118 + US + +98-D8-63 (hex) Shanghai High-Flying Electronics Technology Co., Ltd +98D863 (base 16) Shanghai High-Flying Electronics Technology Co., Ltd + Room 1002 ,#1Building,No.3000 Longdong Avenue,Pudong District,Shanghai,China + shanghai shanghai 201203 + CN + +F0-0F-EC (hex) HUAWEI TECHNOLOGIES CO.,LTD +F00FEC (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +0C-70-4A (hex) HUAWEI TECHNOLOGIES CO.,LTD +0C704A (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +88-E9-0F (hex) innomdlelab +88E90F (base 16) innomdlelab + Unnam 1 gil, 3 + Seocho-gu Seoul 06778 + KR + +54-A6-5C (hex) Technicolor CH USA Inc. +54A65C (base 16) Technicolor CH USA Inc. + 101 West 103rd St. + Indianapolis IN 46290 + US + +C0-98-DA (hex) China Mobile IOT Company Limited +C098DA (base 16) China Mobile IOT Company Limited + NO.8 Yu Ma Road, NanAn Area Chongqing,China + Chongqing Chongqing 401336 + CN + +94-9F-3E (hex) Sonos, Inc. +949F3E (base 16) Sonos, Inc. + 614 Chapala St + Santa Barbara CA 93101 + US + +B8-E9-37 (hex) Sonos, Inc. +B8E937 (base 16) Sonos, Inc. + 614 Chapala St + Santa Barbara CA 93101 + US + +78-28-CA (hex) Sonos, Inc. +7828CA (base 16) Sonos, Inc. + 614 Chapala St + Santa Barbara CA 93101 + US + +34-7E-5C (hex) Sonos, Inc. +347E5C (base 16) Sonos, Inc. + 614 Chapala St + Santa Barbara CA 93101 + US + +C0-48-E6 (hex) Samsung Electronics Co.,Ltd +C048E6 (base 16) Samsung Electronics Co.,Ltd + 129, Samsung-ro, Youngtongl-Gu + Suwon Gyeonggi-Do 16677 + KR + +B0-26-80 (hex) Cisco Systems, Inc +B02680 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +6C-E4-DA (hex) NEC Platforms, Ltd. +6CE4DA (base 16) NEC Platforms, Ltd. + 2-3 Kandatsukasamachi + Chiyodaku Tokyo 101-8532 + JP + +C8-8F-26 (hex) Skyworth Digital Technology(Shenzhen) Co.,Ltd +C88F26 (base 16) Skyworth Digital Technology(Shenzhen) Co.,Ltd + 7F,Block A,Skyworth Building, + Shenzhen Guangdong 518057 + CN + +48-BD-3D (hex) New H3C Technologies Co., Ltd +48BD3D (base 16) New H3C Technologies Co., Ltd + 466 Changhe Road, Binjiang District + Hangzhou Zhejiang 310052 + CN + +4C-AB-FC (hex) zte corporation +4CABFC (base 16) zte corporation + 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China + shenzhen guangdong 518057 + CN + +20-0F-70 (hex) FOXTECH +200F70 (base 16) FOXTECH + 152-160 City Road + LONDON KEMP HOUSE EC1V 2NX + GB + +00-3C-10 (hex) Cisco Systems, Inc +003C10 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +90-83-4B (hex) BEIJING YUNYI TIMES TECHNOLOGY CO,.LTD +90834B (base 16) BEIJING YUNYI TIMES TECHNOLOGY CO,.LTD + 1-411Room 19#Building No.26 Xihuan South Rd. BDA Daxing District, + BEIJING 100176 + CN + +E8-1A-AC (hex) ORFEO SOUNDWORKS Inc. +E81AAC (base 16) ORFEO SOUNDWORKS Inc. + 612, 11-41, Simin-daero 327beon-gil, Dongan-gu + Anyang 14055 + KR + +A0-38-F8 (hex) OURA Health Oy +A038F8 (base 16) OURA Health Oy + Elektroniikkatie 3 + Oulu 90590 + FI + +14-6B-9C (hex) SHENZHEN BILIAN ELECTRONIC CO.,LTD +146B9C (base 16) SHENZHEN BILIAN ELECTRONIC CO.,LTD + NO.268, Fuqian Rd, Jutang community, Guanlan Town, Longhua New district + shenzhen guangdong 518000 + CN + +D0-77-14 (hex) Motorola Mobility LLC, a Lenovo Company +D07714 (base 16) Motorola Mobility LLC, a Lenovo Company + 222 West Merchandise Mart Plaza + Chicago IL 60654 + US + +34-D7-12 (hex) Smartisan Digital Co., Ltd +34D712 (base 16) Smartisan Digital Co., Ltd + 4F, China Digital Kingdom, No.1 Wangjing North Road, Chaoyang District + Beijing Beijing 100012 + CN + +98-45-62 (hex) Shanghai Baud Data Communication Co.,Ltd. +984562 (base 16) Shanghai Baud Data Communication Co.,Ltd. + NO.123 JULI RD + PUDONG ZHANGJIANG HIGH-TECH PARK SHANGHAI 201203 + CN + +E8-98-6D (hex) Palo Alto Networks +E8986D (base 16) Palo Alto Networks + 3000 Tannery Way + Santa Clara CA 95054 + US + +F0-81-73 (hex) Amazon Technologies Inc. +F08173 (base 16) Amazon Technologies Inc. + P.O Box 8102 + Reno 89507 + US + +24-29-FE (hex) KYOCERA Corporation +2429FE (base 16) KYOCERA Corporation + 30 Hoji + Kitami, Hokkaido 099-1595 + JP + +A4-93-3F (hex) HUAWEI TECHNOLOGIES CO.,LTD +A4933F (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +88-11-96 (hex) HUAWEI TECHNOLOGIES CO.,LTD +881196 (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +F0-AF-50 (hex) Phantom Intelligence +F0AF50 (base 16) Phantom Intelligence + 319 Rue Franquet Suite F + Quebec QC G1P 4R4 + CA + +F4-BC-97 (hex) Shenzhen Crave Communication Co., LTD +F4BC97 (base 16) Shenzhen Crave Communication Co., LTD + F3,8Building, DongFangMing IndustryZone, No.83 DabaoRD., 33 District BaoAn + Shenzhen 518000 + CN + +28-FE-DE (hex) COMESTA, Inc. +28FEDE (base 16) COMESTA, Inc. + Techno1-ro 61-7, Yuseong-gu, + Daejeon 34014 + KR + +34-E8-94 (hex) TP-LINK TECHNOLOGIES CO.,LTD. +34E894 (base 16) TP-LINK TECHNOLOGIES CO.,LTD. + Building 24(floors 1,3,4,5)and 28(floors 1-4)Central Science and Technology Park,Shennan Road,Nanshan + Shenzhen Guangdong 518057 + CN + +00-14-8C (hex) General Dynamics Mission Systems +00148C (base 16) General Dynamics Mission Systems + 150 Rustcraft Road + Dedham MA 02026 + US + +E0-19-D8 (hex) BH TECHNOLOGIES +E019D8 (base 16) BH TECHNOLOGIES + 12 RUE AMPERE + GRENOBLE 38000 + FR + +94-E1-AC (hex) Hangzhou Hikvision Digital Technology Co.,Ltd. +94E1AC (base 16) Hangzhou Hikvision Digital Technology Co.,Ltd. + No.555 Qianmo Road + Hangzhou Zhejiang 310052 + CN + +24-F1-28 (hex) Telstra +24F128 (base 16) Telstra + 231 Elisabeth St + SYDNEY NSW 2000 + AU + +FC-9B-C6 (hex) Sumavision Technologies Co.,Ltd +FC9BC6 (base 16) Sumavision Technologies Co.,Ltd + 6F, Block A2, Power Creative Building,No.1 Shangdi East Road, Haidian District + Beijing 100085 + CN + +00-1D-FA (hex) Fujian LANDI Commercial Equipment Co.,Ltd +001DFA (base 16) Fujian LANDI Commercial Equipment Co.,Ltd + Building 17,the 1st Section ,Fuzhou Software Park + No.89 Software Road Fuzhou ,Fujian 350003 + CN + +48-0B-B2 (hex) IEEE Registration Authority +480BB2 (base 16) IEEE Registration Authority + 445 Hoes Lane + Piscataway NJ 08554 + US + +BC-26-43 (hex) Elprotronic Inc. +BC2643 (base 16) Elprotronic Inc. + 35 Austin Rumble Crt. + King City ON L7B0B2 + CA + +98-14-D2 (hex) Avonic +9814D2 (base 16) Avonic + Distributieweg 60 + Delfgauw 2645EJ + NL + +B0-A3-7E (hex) QING DAO HAIER TELECOM CO.,LTD. +B0A37E (base 16) QING DAO HAIER TELECOM CO.,LTD. + No.1,Haier Road,Qingdao 266101 P.R.China + Qingdao Shandong 266101 + CN + +68-2C-7B (hex) Cisco Systems, Inc +682C7B (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +68-CA-E4 (hex) Cisco Systems, Inc +68CAE4 (base 16) Cisco Systems, Inc + 80 West Tasman Drive + San Jose CA 94568 + US + +CC-93-4A (hex) Sierra Wireless +CC934A (base 16) Sierra Wireless + 1381 Wireless Way + Richmond BC CA V6V 3A4 + GB + +EC-93-65 (hex) Mapper.ai, Inc. +EC9365 (base 16) Mapper.ai, Inc. + 400 Treat Ave, Suite G + San Francisco CA 94110 + US + +A8-F5-AC (hex) HUAWEI TECHNOLOGIES CO.,LTD +A8F5AC (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +50-5D-AC (hex) HUAWEI TECHNOLOGIES CO.,LTD +505DAC (base 16) HUAWEI TECHNOLOGIES CO.,LTD + No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park + Dongguan 523808 + CN + +28-16-A8 (hex) Microsoft Corporation +2816A8 (base 16) Microsoft Corporation + One Microsoft Way + REDMOND WA 98052 + US + +84-A1-34 (hex) Apple, Inc. +84A134 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +1C-91-48 (hex) Apple, Inc. +1C9148 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-CC-F8 (hex) Apple, Inc. +C0CCF8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-ED-2C (hex) Apple, Inc. +80ED2C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E8-B2-AC (hex) Apple, Inc. +E8B2AC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-89-AD (hex) Apple, Inc. +8489AD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-76-8F (hex) Apple, Inc. +20768F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-ED-6A (hex) Apple, Inc. +28ED6A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-AB-37 (hex) Apple, Inc. +34AB37 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-A3-7D (hex) Apple, Inc. +60A37D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-56-CD (hex) Apple, Inc. +0056CD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-A9-20 (hex) Apple, Inc. +BCA920 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +50-82-D5 (hex) Apple, Inc. +5082D5 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-84-BF (hex) Apple, Inc. +9C84BF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-B3-62 (hex) Apple, Inc. +00B362 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F8-62-14 (hex) Apple, Inc. +F86214 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B0-70-2D (hex) Apple, Inc. +B0702D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-C5-F3 (hex) Apple, Inc. +D0C5F3 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-23-DF (hex) Apple, Inc. +0023DF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-25-BC (hex) Apple, Inc. +0025BC (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-26-4A (hex) Apple, Inc. +00264A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-26-B0 (hex) Apple, Inc. +0026B0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-1E-64 (hex) Apple, Inc. +041E64 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D4-9A-20 (hex) Apple, Inc. +D49A20 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-27-E4 (hex) Apple, Inc. +9027E4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-33-4B (hex) Apple, Inc. +60334B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-59-48 (hex) Apple, Inc. +5C5948 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +60-F4-45 (hex) Apple, Inc. +60F445 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +5C-F7-E6 (hex) Apple, Inc. +5CF7E6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A0-D7-95 (hex) Apple, Inc. +A0D795 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +CC-08-8D (hex) Apple, Inc. +CC088D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-8E-F2 (hex) Apple, Inc. +8C8EF2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F4-0F-24 (hex) Apple, Inc. +F40F24 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +24-F6-77 (hex) Apple, Inc. +24F677 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-67-D7 (hex) Apple, Inc. +7867D7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-33-CB (hex) Apple, Inc. +5433CB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-D2-B0 (hex) Apple, Inc. +D0D2B0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-8F-76 (hex) Apple, Inc. +D88F76 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-2E-F9 (hex) Apple, Inc. +3C2EF9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-81-EB (hex) Apple, Inc. +7081EB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +08-66-98 (hex) Apple, Inc. +086698 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-60-F1 (hex) Apple, Inc. +9060F1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +74-1B-B2 (hex) Apple, Inc. +741BB2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-CF-E9 (hex) Apple, Inc. +28CFE9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-25-E7 (hex) Apple, Inc. +E425E7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B0-19-C6 (hex) Apple, Inc. +B019C6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +58-E2-8F (hex) Apple, Inc. +58E28F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-1F-74 (hex) Apple, Inc. +AC1F74 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +48-BF-6B (hex) Apple, Inc. +48BF6B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +24-5B-A7 (hex) Apple, Inc. +245BA7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-56-E7 (hex) Apple, Inc. +DC56E7 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-7C-25 (hex) Apple, Inc. +347C25 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D4-90-9C (hex) Apple, Inc. +D4909C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +08-00-07 (hex) Apple, Inc. +080007 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-0A-95 (hex) Apple, Inc. +000A95 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-22-41 (hex) Apple, Inc. +002241 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-EE-69 (hex) Apple, Inc. +18EE69 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +74-81-14 (hex) Apple, Inc. +748114 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-F6-43 (hex) Apple, Inc. +18F643 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-A6-37 (hex) Apple, Inc. +D0A637 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A0-18-28 (hex) Apple, Inc. +A01828 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-03-4B (hex) Apple, Inc. +D0034B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-31-35 (hex) Apple, Inc. +A43135 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-35-EB (hex) Apple, Inc. +9C35EB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +50-7A-55 (hex) Apple, Inc. +507A55 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A0-99-9B (hex) Apple, Inc. +A0999B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +24-24-0E (hex) Apple, Inc. +24240E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +90-3C-92 (hex) Apple, Inc. +903C92 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-8E-24 (hex) Apple, Inc. +A88E24 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E8-80-2E (hex) Apple, Inc. +E8802E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-AE-20 (hex) Apple, Inc. +68AE20 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E0-B5-2D (hex) Apple, Inc. +E0B52D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-BE-05 (hex) Apple, Inc. +80BE05 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-BB-2C (hex) Apple, Inc. +D8BB2C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D0-4F-7E (hex) Apple, Inc. +D04F7E (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +2C-1F-23 (hex) Apple, Inc. +2C1F23 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-9F-13 (hex) Apple, Inc. +549F13 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-09-8A (hex) Apple, Inc. +B8098A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-DB-E2 (hex) Apple, Inc. +F0DBE2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-29-37 (hex) Apple, Inc. +8C2937 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-9B-9C (hex) Apple, Inc. +DC9B9C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +98-F0-AB (hex) Apple, Inc. +98F0AB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-DB-F8 (hex) Apple, Inc. +F0DBF8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +AC-CF-5C (hex) Apple, Inc. +ACCF5C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +3C-15-C2 (hex) Apple, Inc. +3C15C2 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-48-9A (hex) Apple, Inc. +04489A (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +D8-CF-9C (hex) Apple, Inc. +D8CF9C (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A8-86-DD (hex) Apple, Inc. +A886DD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +54-EA-A8 (hex) Apple, Inc. +54EAA8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E4-C6-3D (hex) Apple, Inc. +E4C63D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-38-35 (hex) Apple, Inc. +843835 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C0-63-94 (hex) Apple, Inc. +C06394 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +8C-00-6D (hex) Apple, Inc. +8C006D (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B0-9F-BA (hex) Apple, Inc. +B09FBA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-86-D8 (hex) Apple, Inc. +DC86D8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +78-CA-39 (hex) Apple, Inc. +78CA39 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +18-E7-F4 (hex) Apple, Inc. +18E7F4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-FF-61 (hex) Apple, Inc. +B8FF61 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +DC-2B-61 (hex) Apple, Inc. +DC2B61 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +10-93-E9 (hex) Apple, Inc. +1093E9 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +44-2A-60 (hex) Apple, Inc. +442A60 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +E0-F8-47 (hex) Apple, Inc. +E0F847 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +14-5A-05 (hex) Apple, Inc. +145A05 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-CF-DA (hex) Apple, Inc. +28CFDA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +14-8F-C6 (hex) Apple, Inc. +148FC6 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +28-37-37 (hex) Apple, Inc. +283737 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-54-53 (hex) Apple, Inc. +045453 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F0-CB-A1 (hex) Apple, Inc. +F0CBA1 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +30-F7-C5 (hex) Apple, Inc. +30F7C5 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +00-88-65 (hex) Apple, Inc. +008865 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +40-B3-95 (hex) Apple, Inc. +40B395 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +30-90-AB (hex) Apple, Inc. +3090AB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +1C-E6-2B (hex) Apple, Inc. +1CE62B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A0-ED-CD (hex) Apple, Inc. +A0EDCD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-29-99 (hex) Apple, Inc. +842999 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +74-E2-F5 (hex) Apple, Inc. +74E2F5 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +20-C9-D0 (hex) Apple, Inc. +20C9D0 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-73-CB (hex) Apple, Inc. +7073CB (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-20-7B (hex) Apple, Inc. +9C207B (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +34-12-98 (hex) Apple, Inc. +341298 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +9C-29-3F (hex) Apple, Inc. +9C293F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +7C-01-91 (hex) Apple, Inc. +7C0191 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +70-48-0F (hex) Apple, Inc. +70480F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +A4-B8-05 (hex) Apple, Inc. +A4B805 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +58-7F-57 (hex) Apple, Inc. +587F57 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +80-D6-05 (hex) Apple, Inc. +80D605 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +C8-69-CD (hex) Apple, Inc. +C869CD (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +BC-6C-21 (hex) Apple, Inc. +BC6C21 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +04-69-F8 (hex) Apple, Inc. +0469F8 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +74-9E-AF (hex) Apple, Inc. +749EAF (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +B8-41-A4 (hex) Apple, Inc. +B841A4 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +F8-95-EA (hex) Apple, Inc. +F895EA (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +50-A6-7F (hex) Apple, Inc. +50A67F (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +64-70-33 (hex) Apple, Inc. +647033 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +84-68-78 (hex) Apple, Inc. +846878 (base 16) Apple, Inc. + 1 Infinite Loop + Cupertino CA 95014 + US + +68-D1-BA (hex) Shenzhen YOUHUA Technology Co., Ltd +68D1BA (base 16) Shenzhen YOUHUA Technology Co., Ltd + Room 407 Shenzhen University-town Business Park,Lishan Road,Taoyuan Street,Nanshan District + Shenzhen Guangdong 518055 + CN + +BC-CA-B5 (hex) ARRIS Group, Inc. +BCCAB5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +5C-8F-E0 (hex) ARRIS Group, Inc. +5C8FE0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +6C-CA-08 (hex) ARRIS Group, Inc. +6CCA08 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +54-65-DE (hex) ARRIS Group, Inc. +5465DE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +AC-EC-80 (hex) ARRIS Group, Inc. +ACEC80 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +3C-7A-8A (hex) ARRIS Group, Inc. +3C7A8A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-0F-CC (hex) ARRIS Group, Inc. +000FCC (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +2C-A1-7D (hex) ARRIS Group, Inc. +2CA17D (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +7C-BF-B1 (hex) ARRIS Group, Inc. +7CBFB1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +80-96-B1 (hex) ARRIS Group, Inc. +8096B1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-90-9C (hex) ARRIS Group, Inc. +00909C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-11-80 (hex) ARRIS Group, Inc. +001180 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-17-EE (hex) ARRIS Group, Inc. +0017EE (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-D0-88 (hex) ARRIS Group, Inc. +00D088 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-12-C9 (hex) ARRIS Group, Inc. +0012C9 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1C-FB (hex) ARRIS Group, Inc. +001CFB (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1C-12 (hex) ARRIS Group, Inc. +001C12 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1F-C4 (hex) ARRIS Group, Inc. +001FC4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-22-10 (hex) ARRIS Group, Inc. +002210 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-21-1E (hex) ARRIS Group, Inc. +00211E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +F8-ED-A5 (hex) ARRIS Group, Inc. +F8EDA5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +40-70-09 (hex) ARRIS Group, Inc. +407009 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +94-87-7C (hex) ARRIS Group, Inc. +94877C (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1D-D2 (hex) ARRIS Group, Inc. +001DD2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-17-E2 (hex) ARRIS Group, Inc. +0017E2 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +CC-7D-37 (hex) ARRIS Group, Inc. +CC7D37 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-1A-77 (hex) ARRIS Group, Inc. +001A77 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +98-4B-4A (hex) ARRIS Group, Inc. +984B4A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +9C-34-26 (hex) ARRIS Group, Inc. +9C3426 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-A4 (hex) ARRIS Group, Inc. +0015A4 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-15-A3 (hex) ARRIS Group, Inc. +0015A3 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +C0-C5-22 (hex) ARRIS Group, Inc. +C0C522 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +5C-B0-66 (hex) ARRIS Group, Inc. +5CB066 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +E4-83-99 (hex) ARRIS Group, Inc. +E48399 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-26-36 (hex) ARRIS Group, Inc. +002636 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-24-A0 (hex) ARRIS Group, Inc. +0024A0 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-16-75 (hex) ARRIS Group, Inc. +001675 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + +00-16-B5 (hex) ARRIS Group, Inc. +0016B5 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US + 00-1D-72 (hex) Wistron Corporation 001D72 (base 16) Wistron Corporation 21F, 88, Sec.1, Hsin Tai Wu Rd., Hsichih, @@ -142241,270 +145325,12 @@ AC2205 (base 16) Compal Broadband Networks, Inc. Shanghai 200333 CN -00-12-C9 (hex) ARRIS Group, Inc. -0012C9 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -98-4B-4A (hex) ARRIS Group, Inc. -984B4A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1A-77 (hex) ARRIS Group, Inc. -001A77 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -CC-7D-37 (hex) ARRIS Group, Inc. -CC7D37 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-17-E2 (hex) ARRIS Group, Inc. -0017E2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-17-84 (hex) ARRIS Group, Inc. -001784 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-16-B5 (hex) ARRIS Group, Inc. -0016B5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-16-75 (hex) ARRIS Group, Inc. -001675 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-D0-88 (hex) ARRIS Group, Inc. -00D088 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-17-EE (hex) ARRIS Group, Inc. -0017EE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-11-80 (hex) ARRIS Group, Inc. -001180 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-90-9C (hex) ARRIS Group, Inc. -00909C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -80-96-B1 (hex) ARRIS Group, Inc. -8096B1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -7C-BF-B1 (hex) ARRIS Group, Inc. -7CBFB1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-A3 (hex) ARRIS Group, Inc. -0015A3 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-15-A4 (hex) ARRIS Group, Inc. -0015A4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -9C-34-26 (hex) ARRIS Group, Inc. -9C3426 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1D-D2 (hex) ARRIS Group, Inc. -001DD2 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-21-1E (hex) ARRIS Group, Inc. -00211E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-22-10 (hex) ARRIS Group, Inc. -002210 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1F-C4 (hex) ARRIS Group, Inc. -001FC4 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1C-12 (hex) ARRIS Group, Inc. -001C12 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-1C-FB (hex) ARRIS Group, Inc. -001CFB (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -D4-2C-0F (hex) ARRIS Group, Inc. -D42C0F (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -84-96-D8 (hex) ARRIS Group, Inc. -8496D8 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -80-F5-03 (hex) ARRIS Group, Inc. -80F503 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -5C-B0-66 (hex) ARRIS Group, Inc. -5CB066 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -C0-C5-22 (hex) ARRIS Group, Inc. -C0C522 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-24-A0 (hex) ARRIS Group, Inc. -0024A0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-26-36 (hex) ARRIS Group, Inc. -002636 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E4-83-99 (hex) ARRIS Group, Inc. -E48399 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -E0-B7-B1 (hex) ARRIS Group, Inc. -E0B7B1 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -94-87-7C (hex) ARRIS Group, Inc. -94877C (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -40-70-09 (hex) ARRIS Group, Inc. -407009 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -F8-ED-A5 (hex) ARRIS Group, Inc. -F8EDA5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -54-65-DE (hex) ARRIS Group, Inc. -5465DE (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -6C-CA-08 (hex) ARRIS Group, Inc. -6CCA08 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -5C-8F-E0 (hex) ARRIS Group, Inc. -5C8FE0 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 8C-39-5C (hex) Bit4id Srl 8C395C (base 16) Bit4id Srl Via Diocleziano, 107 Naples 80125 IT -BC-CA-B5 (hex) ARRIS Group, Inc. -BCCAB5 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -00-0F-CC (hex) ARRIS Group, Inc. -000FCC (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -3C-7A-8A (hex) ARRIS Group, Inc. -3C7A8A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -AC-EC-80 (hex) ARRIS Group, Inc. -ACEC80 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -2C-A1-7D (hex) ARRIS Group, Inc. -2CA17D (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 04-71-4B (hex) IEEE Registration Authority 04714B (base 16) IEEE Registration Authority 445 Hoes Lane @@ -142529,12 +145355,6 @@ ACEC80 (base 16) ARRIS Group, Inc. Menlo Park CA 94025 US -98-F7-D7 (hex) ARRIS Group, Inc. -98F7D7 (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 2C-41-A1 (hex) Bose Corporation 2C41A1 (base 16) Bose Corporation The Mountain @@ -142922,12 +145742,6 @@ F4B520 (base 16) Biostar Microtech international corp. 9C-93-E4 (hex) Private 9C93E4 (base 16) Private -D4-B2-7A (hex) ARRIS Group, Inc. -D4B27A (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - F0-F8-F2 (hex) Texas Instruments F0F8F2 (base 16) Texas Instruments 12500 TI Blvd @@ -142970,12 +145784,6 @@ F0F8F2 (base 16) Texas Instruments Beijing Beijing 100085 CN -90-9D-7D (hex) ARRIS Group, Inc. -909D7D (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 84-A1-D1 (hex) Sagemcom Broadband SAS 84A1D1 (base 16) Sagemcom Broadband SAS 250, route de l'Empereur @@ -143426,18 +146234,6 @@ A07099 (base 16) Beijing Huacan Electronics Co., Ltd Beijing 100036 CN -B0-93-5B (hex) ARRIS Group, Inc. -B0935B (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - -20-F1-9E (hex) ARRIS Group, Inc. -20F19E (base 16) ARRIS Group, Inc. - 6450 Sequence Drive - San Diego CA 92121 - US - 38-9D-92 (hex) Seiko Epson Corporation 389D92 (base 16) Seiko Epson Corporation 2070 Kotobuki Koaka @@ -143516,1730 +146312,116 @@ BC903A (base 16) Robert Bosch GmbH Bangalore Karnataka 560082 IN -B4-A3-82 (hex) Hangzhou Hikvision Digital Technology Co.,Ltd. -B4A382 (base 16) Hangzhou Hikvision Digital Technology Co.,Ltd. - No.555 Qianmo Road - Hangzhou Zhejiang 310052 - CN - -3C-A6-16 (hex) vivo Mobile Communication Co., Ltd. -3CA616 (base 16) vivo Mobile Communication Co., Ltd. - #283,BBK Road - Wusha,Chang'An DongGuan City,Guangdong, 523860 - CN - -88-B4-A6 (hex) Motorola Mobility LLC, a Lenovo Company -88B4A6 (base 16) Motorola Mobility LLC, a Lenovo Company - 222 West Merchandise Mart Plaza - Chicago IL 60654 +80-F5-03 (hex) ARRIS Group, Inc. +80F503 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -74-28-57 (hex) Mayfield Robotics -742857 (base 16) Mayfield Robotics - 400 Convention Way - Redwood City CA 94063 +84-96-D8 (hex) ARRIS Group, Inc. +8496D8 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -00-CB-00 (hex) Private -00CB00 (base 16) Private - -60-9B-C8 (hex) Hipad Intelligent Technology Co., Ltd. -609BC8 (base 16) Hipad Intelligent Technology Co., Ltd. - No. 688, East of Huangtang Street, LinkongEconomy District - Nanchang Jiangxi 330000 - CN - -1C-0F-AF (hex) Lucid Vision Labs -1C0FAF (base 16) Lucid Vision Labs - Unit 130 - 13200 Delf Place - Richmond BC V6V2A2 - CA - -24-5C-CB (hex) AXIe Consortium, Inc. -245CCB (base 16) AXIe Consortium, Inc. - P.O. Box 1016 - Niwot CO 80544-1016 +D4-2C-0F (hex) ARRIS Group, Inc. +D42C0F (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -F8-F2-1E (hex) Intel Corporate -F8F21E (base 16) Intel Corporate - Lot 8, Jalan Hi-Tech 2/3 - Kulim Kedah 09000 - MY - -28-29-86 (hex) APC by Schneider Electric -282986 (base 16) APC by Schneider Electric - 800 Federal St. - Andover MA 01810 +E0-B7-B1 (hex) ARRIS Group, Inc. +E0B7B1 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -74-DA-38 (hex) Edimax Technology Co. Ltd. -74DA38 (base 16) Edimax Technology Co. Ltd. - No. 278, Xinhu 1st Road - Taipei City Neihu Dist 248 - TW +98-F7-D7 (hex) ARRIS Group, Inc. +98F7D7 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -38-6B-1C (hex) SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD. -386B1C (base 16) SHENZHEN MERCURY COMMUNICATION TECHNOLOGIES CO.,LTD. - 3/F, Building R1-B, High-Tech Industrial Park, Nanshan District - Shenzhen Guangdong 518057 - CN +D4-B2-7A (hex) ARRIS Group, Inc. +D4B27A (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -38-01-9F (hex) SHENZHEN FAST TECHNOLOGIES CO.,LTD -38019F (base 16) SHENZHEN FAST TECHNOLOGIES CO.,LTD - Room 202,Building No.5,Section 30,No.2 of Kefa Road,Nanshan District,Shenzhen,P.R.China - Shenzhen Guangdong 518057 - CN +90-9D-7D (hex) ARRIS Group, Inc. +909D7D (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 + US -00-24-24 (hex) Ace Axis Limited -002424 (base 16) Ace Axis Limited - 602 Delta Business Park, Welton Road - Swindon SN5 7XP - GB - -8C-83-9D (hex) SHENZHEN XINYUPENG ELECTRONIC TECHNOLOGY CO., LTD -8C839D (base 16) SHENZHEN XINYUPENG ELECTRONIC TECHNOLOGY CO., LTD - ROOM 1505,BIT INNOVATION BUILDING,SCIENCE AND TECHNOLOGY PARK,NANSHAN DISTRICT - Shenzhen 518057 - CN - -EC-FA-F4 (hex) SenRa Tech Pvt. Ltd -ECFAF4 (base 16) SenRa Tech Pvt. Ltd - 133, First Floor, Lane No. 1, Westend Marg, Saidulajab - New Delhi 110030 - IN - -70-99-1C (hex) Shenzhen Honesty Electronics Co.,Ltd -70991C (base 16) Shenzhen Honesty Electronics Co.,Ltd - 5/F,Zone B,Chitat Industrial Park,West Longping Road - Shenzhen City Longgang District, Guangdong 518172 - CN - -00-81-F9 (hex) Texas Instruments -0081F9 (base 16) Texas Instruments +88-3F-4A (hex) Texas Instruments +883F4A (base 16) Texas Instruments 12500 TI Blvd Dallas TX 75243 US -58-7A-62 (hex) Texas Instruments -587A62 (base 16) Texas Instruments - 12500 TI Blvd - Dallas TX 75243 +B0-93-5B (hex) ARRIS Group, Inc. +B0935B (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -D0-67-26 (hex) Hewlett Packard Enterprise -D06726 (base 16) Hewlett Packard Enterprise - 8000 Foothills Blvd. - Roseville CA 95747 +20-F1-9E (hex) ARRIS Group, Inc. +20F19E (base 16) ARRIS Group, Inc. + 6450 Sequence Drive + San Diego CA 92121 US -28-23-73 (hex) Digita -282373 (base 16) Digita - Jämsänkatu 2 - Helsinki Uusimaa 00520 - FI - -44-CD-0E (hex) FLEXTRONICS MANUFACTURING(ZHUHAI)CO.,LTD. -44CD0E (base 16) FLEXTRONICS MANUFACTURING(ZHUHAI)CO.,LTD. - Xin Qing Science & Technology Industrial Park,Jin An Town,Doumen ,Zhuhai,Guangdong,PRC - Zhuhai Guangdong 519180 - CN - -08-84-66 (hex) Novartis Pharma AG -088466 (base 16) Novartis Pharma AG - Lichtstrasse 35 - Basel 4056 - CH - 8C-5B-F0 (hex) ARRIS Group, Inc. 8C5BF0 (base 16) ARRIS Group, Inc. 6450 Sequence Drive San Diego CA 92121 US -00-1F-7D (hex) Embedded Wireless GmbH -001F7D (base 16) Embedded Wireless GmbH - Soeflinger Strasse 200 - Ulm BW 89077 - DE - -94-7B-BE (hex) Ubicquia -947BBE (base 16) Ubicquia - 3281 Fairlane Farms Rd - Wellington FL 33449 - US - -E8-2A-44 (hex) Liteon Technology Corporation -E82A44 (base 16) Liteon Technology Corporation - 4F, 90, Chien 1 Road - New Taipei City Taiwan 23585 - TW - -00-05-A7 (hex) HYPERCHIP Inc. -0005A7 (base 16) HYPERCHIP Inc. - 180 Peel Street - Ste. #333 - H3C 2G7 - CA - -78-DD-D9 (hex) Guangzhou Shiyuan Electronics Co., Ltd. -78DDD9 (base 16) Guangzhou Shiyuan Electronics Co., Ltd. - No.6, 4th Yunpu Road, Yunpu Industry District - Guangzhou Guangdong 510530 - CN - -00-09-66 (hex) TRIMBLE EUROPE BV -000966 (base 16) TRIMBLE EUROPE BV - Meerheide 45 - Eersel DZ 5521 - NL - -EC-B0-E1 (hex) Ciena Corporation -ECB0E1 (base 16) Ciena Corporation - 7035 Ridge Road - Hanover MD 21076 - US - -58-C1-7A (hex) Cambium Networks Limited -58C17A (base 16) Cambium Networks Limited - Unit B2, Linhay Business Park, - Ashburton Devon TQ13 7UP - GB - -2C-54-91 (hex) Microsoft Corporation -2C5491 (base 16) Microsoft Corporation - One Microsoft Way - REDMOND WA 98052 - US - -04-50-DA (hex) Qiku Internet Network Scientific (Shenzhen) Co., Ltd -0450DA (base 16) Qiku Internet Network Scientific (Shenzhen) Co., Ltd - Building A2, Chi Yuen Technology Park 1001 College Avenue, Nanshan District Shenzhen, Guangdong - Shenzhen Guangdong 518000 - CN - -08-BC-20 (hex) Hangzhou Royal Cloud Technology Co., Ltd -08BC20 (base 16) Hangzhou Royal Cloud Technology Co., Ltd - Hangzhou Xixi Road 957, 24, Unit 2, 302 - Hangzhou 310030 - CN - -5C-70-A3 (hex) LG Electronics (Mobile Communications) -5C70A3 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -10-F9-6F (hex) LG Electronics (Mobile Communications) -10F96F (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -F0-1C-13 (hex) LG Electronics (Mobile Communications) -F01C13 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -00-AA-70 (hex) LG Electronics (Mobile Communications) -00AA70 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -BC-F5-AC (hex) LG Electronics (Mobile Communications) -BCF5AC (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -CC-FA-00 (hex) LG Electronics (Mobile Communications) -CCFA00 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -F8-A9-D0 (hex) LG Electronics (Mobile Communications) -F8A9D0 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -80-5A-04 (hex) LG Electronics (Mobile Communications) -805A04 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -5C-AF-06 (hex) LG Electronics (Mobile Communications) -5CAF06 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -B8-1D-AA (hex) LG Electronics (Mobile Communications) -B81DAA (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -10-F1-F2 (hex) LG Electronics (Mobile Communications) -10F1F2 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -00-25-E5 (hex) LG Electronics (Mobile Communications) -0025E5 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -00-22-A9 (hex) LG Electronics (Mobile Communications) -0022A9 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -C4-9A-02 (hex) LG Electronics (Mobile Communications) -C49A02 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -34-4D-F7 (hex) LG Electronics (Mobile Communications) -344DF7 (base 16) LG Electronics (Mobile Communications) - 60-39, Gasan-dong, Geumcheon-gu - Seoul 153-801 - KR - -44-91-60 (hex) Murata Manufacturing Co., Ltd. -449160 (base 16) Murata Manufacturing Co., Ltd. - 1-10-1, Higashikotari - Nagaokakyo-shi Kyoto 617-8555 - JP - -44-D5-A5 (hex) AddOn Computer -44D5A5 (base 16) AddOn Computer - 15775 Gateway cir - tustin CA 92780 - US - -00-AE-CD (hex) Pensando Systems -00AECD (base 16) Pensando Systems - 1730 Technology Drive, Suite 202 - San Jose CA 95110 - US - -44-AD-19 (hex) XINGFEI (H.K)LIMITED -44AD19 (base 16) XINGFEI (H.K)LIMITED - 6/F North Tower Wandelai Building  No.29 Kejinan 6th Road, Nanshan District,Shenzhen,China - Shenzhen 518057 - CN - -D8-96-E0 (hex) Alibaba Cloud Computing Ltd. -D896E0 (base 16) Alibaba Cloud Computing Ltd. - Yuhang District of Hangzhou Wenyi Road, Building 1, No. 969 Xixi Park, Zhejiang Province - Hangzhou Zhejiang 310000 - CN - -30-EB-1F (hex) Skylab M&C Technology Co.,Ltd -30EB1F (base 16) Skylab M&C Technology Co.,Ltd - 6 Floor,No.9 Building,Lijincheng Scientific&Technical park,Gongye East Road,Longhua District - Shenzhen Guangdong 518109 - CN - -B0-B2-DC (hex) Zyxel Communications Corporation -B0B2DC (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -00-23-F8 (hex) Zyxel Communications Corporation -0023F8 (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -4C-9E-FF (hex) Zyxel Communications Corporation -4C9EFF (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -5C-F4-AB (hex) Zyxel Communications Corporation -5CF4AB (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -14-79-F3 (hex) China Mobile Group Device Co.,Ltd. -1479F3 (base 16) China Mobile Group Device Co.,Ltd. - 32 Xuanwumen West Street,Xicheng District - Beijing 100053 - CN - -90-EF-68 (hex) Zyxel Communications Corporation -90EF68 (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -28-28-5D (hex) Zyxel Communications Corporation -28285D (base 16) Zyxel Communications Corporation - No. 6 Innovation Road II, Science Park - Hsichu Taiwan 300 - TW - -4C-AE-1C (hex) SaiNXT Technologies LLP -4CAE1C (base 16) SaiNXT Technologies LLP - Shop No. 7, Sonawala Building, 1st Floor, Proctor Road, Grant Road (E) - Mumbai Maharashtra 400007 - IN - -4C-91-0C (hex) Lanix Internacional, S.A. de C.V. -4C910C (base 16) Lanix Internacional, S.A. de C.V. - Carretera Nogales Km8.5 - Hermosillo Sonora 83160 - MX - -2C-42-05 (hex) Lytx -2C4205 (base 16) Lytx - 9785 Towne Centre Drive +00-17-84 (hex) ARRIS Group, Inc. +001784 (base 16) ARRIS Group, Inc. + 6450 Sequence Drive San Diego CA 92121 US -00-90-F1 (hex) Seagate Cloud Systems Inc -0090F1 (base 16) Seagate Cloud Systems Inc - 6305 El Camino Real - Carlsbad CA 92009 - US +04-6B-1B (hex) SYSDINE Co., Ltd. +046B1B (base 16) SYSDINE Co., Ltd. + 506 Convergence technology research commercialization center 218 Gajung-Ro, Yuseong-gu + Daejeon-City Daejeon-City 34129 + KR -D4-5D-DF (hex) PEGATRON CORPORATION -D45DDF (base 16) PEGATRON CORPORATION - 5F No. 76, Ligong St., Beitou District - Taipei City Taiwan 112 +14-9B-2F (hex) JiangSu ZhongXie Intelligent Technology co., LTD +149B2F (base 16) JiangSu ZhongXie Intelligent Technology co., LTD + Room 201,building 15, 16,FengJi set avenue (C08),YuHua district economic development zone ,NanJing city,JiangSu province,China,PRC. + NanJing JiangSu 210000 + CN + +38-AF-29 (hex) Zhejiang Dahua Technology Co., Ltd. +38AF29 (base 16) Zhejiang Dahua Technology Co., Ltd. + No.1199,Waterfront Road + Hangzhou Zhejiang 310053 + CN + +88-DE-7C (hex) Askey Computer Corp. +88DE7C (base 16) Askey Computer Corp. + 10F, No.119, JIANKANG RD.,ZHINGHE DIST, + NEW TAIPEI CITY 23585 TW -D4-1A-3F (hex) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD -D41A3F (base 16) GUANGDONG OPPO MOBILE TELECOMMUNICATIONS CORP.,LTD - NO.18 HAIBIN ROAD, - DONG GUAN GUANG DONG 523860 +BC-32-5F (hex) Zhejiang Dahua Technology Co., Ltd. +BC325F (base 16) Zhejiang Dahua Technology Co., Ltd. + No.1199,Waterfront Road + Hangzhou Zhejiang 310053 CN -00-50-13 (hex) Seagate Cloud Systems Inc -005013 (base 16) Seagate Cloud Systems Inc - 7420 E. Dry Creek Parkway - Longmont CO 80503 - US - -00-C0-FF (hex) Seagate Cloud Systems Inc -00C0FF (base 16) Seagate Cloud Systems Inc - 6305 El Camino Real - Carlsbad CA 92009 - US - -EC-81-93 (hex) Logitech, Inc -EC8193 (base 16) Logitech, Inc - 4700 NW Camas Meadows Drive - Camas WA 98607 - US - -D0-96-FB (hex) DASAN Network Solutions -D096FB (base 16) DASAN Network Solutions - DASAN Tower 8F, 49 Daewangpangyo-ro644beon-gil Bundang-gu - Seongnam-si Gyeonggi-do 13493 - KR - -5C-52-1E (hex) Nintendo Co.,Ltd -5C521E (base 16) Nintendo Co.,Ltd - 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU - KYOTO KYOTO 601-8501 - JP - -A8-25-EB (hex) Cambridge Industries(Group) Co.,Ltd. -A825EB (base 16) Cambridge Industries(Group) Co.,Ltd. - 5/F,Building 8, 2388 ChenHang Road, MinHang District - shanghai 201114 +E4-E1-30 (hex) TCT mobile ltd +E4E130 (base 16) TCT mobile ltd + No.86 hechang 7th road, zhongkai, Hi-Tech District + Hui Zhou Guang Dong 516006 CN -D8-C8-E9 (hex) Phicomm (Shanghai) Co., Ltd. -D8C8E9 (base 16) Phicomm (Shanghai) Co., Ltd. - 3666 SiXian Rd.,Songjiang District - Shanghai Shanghai 201616 - CN - -64-F8-8A (hex) China Mobile IOT Company Limited -64F88A (base 16) China Mobile IOT Company Limited - NO.8 Yu Ma Road, NanAn Area Chongqing,China - Chongqing Chongqing 401336 - CN - -6C-49-C1 (hex) o2ones Co., Ltd. -6C49C1 (base 16) o2ones Co., Ltd. - 503 Glory Tower, 3-10, Gumi-ro 9beon-gil, Bundang-gu - Seongnam-si Gyeonggi-do 13637 - KR - -68-DB-54 (hex) Phicomm (Shanghai) Co., Ltd. -68DB54 (base 16) Phicomm (Shanghai) Co., Ltd. - 3666 SiXian Rd.,Songjiang District - Shanghai Shanghai 201616 - CN - -E4-8F-34 (hex) Vodafone Italia S.p.A. -E48F34 (base 16) Vodafone Italia S.p.A. - Via Lorenteggio nr. 240 - Milan Italy 20147 - IT - -2C-6B-7D (hex) Texas Instruments -2C6B7D (base 16) Texas Instruments - 12500 TI Blvd - Dallas TX 75243 +88-D6-52 (hex) AMERGINT Technologies +88D652 (base 16) AMERGINT Technologies + 2315 Briargate Pkwy, Suite 100 + Colorado Springs CO 80920 US - -78-80-38 (hex) FUNAI ELECTRIC CO., LTD. -788038 (base 16) FUNAI ELECTRIC CO., LTD. - 7-1, NAKAGAITO 7-CHOME - DAITO OSAKA 5740013 - JP - -00-01-30 (hex) Extreme Networks, Inc. -000130 (base 16) Extreme Networks, Inc. - 3585 Monroe Street - Santa Clara CA 95051 - US - -CC-6E-A4 (hex) Samsung Electronics Co.,Ltd -CC6EA4 (base 16) Samsung Electronics Co.,Ltd - 129, Samsung-ro, Youngtongl-Gu - Suwon Gyeonggi-Do 16677 - KR - -C4-77-AF (hex) Advanced Digital Broadcast SA -C477AF (base 16) Advanced Digital Broadcast SA - Route de Crassier 21, B2 - Eysins CH-1262 - CH - -20-DF-B9 (hex) Google, Inc. -20DFB9 (base 16) Google, Inc. - 1600 Amphitheatre Parkway - Mountain View CA 94043 - US - -44-F0-34 (hex) Kaonmedia CO., LTD. -44F034 (base 16) Kaonmedia CO., LTD. - 884-3, Seongnam-daero, Bundang-gu - Seongnam-si Gyeonggi-do 13517 - KR - -14-78-0B (hex) Varex Imaging Deutschland AG -14780B (base 16) Varex Imaging Deutschland AG - Zweigniederlassung/Branch Walluf - In der Rehbach 22 Walluf 65396 - DE - -10-CD-6E (hex) FISYS -10CD6E (base 16) FISYS - 303 Expotel, 44, Dunsan-daero 117beon-gil, Seo-gu, Daejeon, Korea - Daejeon, Korea KS015 - KR - -A4-6C-F1 (hex) Samsung Electronics Co.,Ltd -A46CF1 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -0C-A8-A7 (hex) Samsung Electronics Co.,Ltd -0CA8A7 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -54-B8-02 (hex) Samsung Electronics Co.,Ltd -54B802 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -28-2C-02 (hex) IEEE Registration Authority -282C02 (base 16) IEEE Registration Authority - 445 Hoes Lane - Piscataway NJ 08554 - US - -B8-C7-16 (hex) Fiberhome Telecommunication Technologies Co.,LTD -B8C716 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -D0-59-95 (hex) Fiberhome Telecommunication Technologies Co.,LTD -D05995 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -54-DF-24 (hex) Fiberhome Telecommunication Technologies Co.,LTD -54DF24 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -58-3B-D9 (hex) Fiberhome Telecommunication Technologies Co.,LTD -583BD9 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -F0-40-7B (hex) Fiberhome Telecommunication Technologies Co.,LTD -F0407B (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -F0-8C-FB (hex) Fiberhome Telecommunication Technologies Co.,LTD -F08CFB (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan City Hubei Province 430074 - CN - -EC-8A-C7 (hex) Fiberhome Telecommunication Technologies Co.,LTD -EC8AC7 (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -BC-C0-0F (hex) Fiberhome Telecommunication Technologies Co.,LTD -BCC00F (base 16) Fiberhome Telecommunication Technologies Co.,LTD - No.5 DongXin Road - Wuhan Hubei 430074 - CN - -00-50-79 (hex) Private -005079 (base 16) Private - -5C-00-38 (hex) Viasat Group S.p.A. -5C0038 (base 16) Viasat Group S.p.A. - Via Aosta 23 - Venaria Reale Torino 10078 - IT - -04-69-F8 (hex) Apple, Inc. -0469F8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -BC-6C-21 (hex) Apple, Inc. -BC6C21 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C8-69-CD (hex) Apple, Inc. -C869CD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-D6-05 (hex) Apple, Inc. -80D605 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -58-7F-57 (hex) Apple, Inc. -587F57 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-B8-05 (hex) Apple, Inc. -A4B805 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-48-0F (hex) Apple, Inc. -70480F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -7C-01-91 (hex) Apple, Inc. -7C0191 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-29-3F (hex) Apple, Inc. -9C293F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -34-12-98 (hex) Apple, Inc. -341298 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-3C-92 (hex) Apple, Inc. -903C92 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -24-24-0E (hex) Apple, Inc. -24240E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A0-99-9B (hex) Apple, Inc. -A0999B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-A6-37 (hex) Apple, Inc. -D0A637 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-F6-43 (hex) Apple, Inc. -18F643 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -74-81-14 (hex) Apple, Inc. -748114 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-EE-69 (hex) Apple, Inc. -18EE69 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-DB-E2 (hex) Apple, Inc. -F0DBE2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-09-8A (hex) Apple, Inc. -B8098A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -54-9F-13 (hex) Apple, Inc. -549F13 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -2C-1F-23 (hex) Apple, Inc. -2C1F23 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-CB-59 (hex) Beijing Loveair Science and Technology Co. Ltd. -E4CB59 (base 16) Beijing Loveair Science and Technology Co. Ltd. - 103,Block B, Kelin Building, No.107, Dongsi North Street, Dongcheng District, - Beijing 100000 - CN - -C8-77-65 (hex) Tiesse SpA -C87765 (base 16) Tiesse SpA - Via Asti - Ivrea TO 10015 - IT - -50-7A-55 (hex) Apple, Inc. -507A55 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-35-EB (hex) Apple, Inc. -9C35EB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A4-31-35 (hex) Apple, Inc. -A43135 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-03-4B (hex) Apple, Inc. -D0034B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A0-18-28 (hex) Apple, Inc. -A01828 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -3C-15-C2 (hex) Apple, Inc. -3C15C2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-CF-5C (hex) Apple, Inc. -ACCF5C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-DB-F8 (hex) Apple, Inc. -F0DBF8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -98-F0-AB (hex) Apple, Inc. -98F0AB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-9B-9C (hex) Apple, Inc. -DC9B9C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-29-37 (hex) Apple, Inc. -8C2937 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-86-D8 (hex) Apple, Inc. -DC86D8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-C6-3D (hex) Apple, Inc. -E4C63D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -54-EA-A8 (hex) Apple, Inc. -54EAA8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-86-DD (hex) Apple, Inc. -A886DD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A0-ED-CD (hex) Apple, Inc. -A0EDCD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -1C-E6-2B (hex) Apple, Inc. -1CE62B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -30-90-AB (hex) Apple, Inc. -3090AB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F0-CB-A1 (hex) Apple, Inc. -F0CBA1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-54-53 (hex) Apple, Inc. -045453 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-37-37 (hex) Apple, Inc. -283737 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -14-8F-C6 (hex) Apple, Inc. -148FC6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-CF-DA (hex) Apple, Inc. -28CFDA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -14-5A-05 (hex) Apple, Inc. -145A05 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-4F-7E (hex) Apple, Inc. -D04F7E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-BB-2C (hex) Apple, Inc. -D8BB2C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-BE-05 (hex) Apple, Inc. -80BE05 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E0-B5-2D (hex) Apple, Inc. -E0B52D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -68-AE-20 (hex) Apple, Inc. -68AE20 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E8-80-2E (hex) Apple, Inc. -E8802E (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A8-8E-24 (hex) Apple, Inc. -A88E24 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-CF-9C (hex) Apple, Inc. -D8CF9C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-48-9A (hex) Apple, Inc. -04489A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B0-9F-BA (hex) Apple, Inc. -B09FBA (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-00-6D (hex) Apple, Inc. -8C006D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-63-94 (hex) Apple, Inc. -C06394 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-38-35 (hex) Apple, Inc. -843835 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-C9-D0 (hex) Apple, Inc. -20C9D0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -74-E2-F5 (hex) Apple, Inc. -74E2F5 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-29-99 (hex) Apple, Inc. -842999 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-20-7B (hex) Apple, Inc. -9C207B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -40-B3-95 (hex) Apple, Inc. -40B395 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-88-65 (hex) Apple, Inc. -008865 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -30-F7-C5 (hex) Apple, Inc. -30F7C5 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-73-CB (hex) Apple, Inc. -7073CB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-B3-62 (hex) Apple, Inc. -00B362 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F8-62-14 (hex) Apple, Inc. -F86214 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B0-70-2D (hex) Apple, Inc. -B0702D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-C5-F3 (hex) Apple, Inc. -D0C5F3 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-F4-45 (hex) Apple, Inc. -60F445 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -50-82-D5 (hex) Apple, Inc. -5082D5 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -9C-84-BF (hex) Apple, Inc. -9C84BF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -48-BF-6B (hex) Apple, Inc. -48BF6B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -24-5B-A7 (hex) Apple, Inc. -245BA7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -BC-A9-20 (hex) Apple, Inc. -BCA920 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B0-19-C6 (hex) Apple, Inc. -B019C6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -58-E2-8F (hex) Apple, Inc. -58E28F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -AC-1F-74 (hex) Apple, Inc. -AC1F74 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -20-76-8F (hex) Apple, Inc. -20768F (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -C0-CC-F8 (hex) Apple, Inc. -C0CCF8 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -80-ED-2C (hex) Apple, Inc. -80ED2C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E8-B2-AC (hex) Apple, Inc. -E8B2AC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-89-AD (hex) Apple, Inc. -8489AD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -8C-8E-F2 (hex) Apple, Inc. -8C8EF2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -F4-0F-24 (hex) Apple, Inc. -F40F24 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -84-A1-34 (hex) Apple, Inc. -84A134 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -1C-91-48 (hex) Apple, Inc. -1C9148 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-F7-E6 (hex) Apple, Inc. -5CF7E6 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -A0-D7-95 (hex) Apple, Inc. -A0D795 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -CC-08-8D (hex) Apple, Inc. -CC088D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -08-00-07 (hex) Apple, Inc. -080007 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E4-25-E7 (hex) Apple, Inc. -E425E7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-CF-E9 (hex) Apple, Inc. -28CFE9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-60-F1 (hex) Apple, Inc. -9060F1 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -74-1B-B2 (hex) Apple, Inc. -741BB2 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -28-ED-6A (hex) Apple, Inc. -28ED6A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -34-AB-37 (hex) Apple, Inc. -34AB37 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-A3-7D (hex) Apple, Inc. -60A37D (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-56-CD (hex) Apple, Inc. -0056CD (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -70-81-EB (hex) Apple, Inc. -7081EB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -08-66-98 (hex) Apple, Inc. -086698 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -E0-F8-47 (hex) Apple, Inc. -E0F847 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -44-2A-60 (hex) Apple, Inc. -442A60 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -10-93-E9 (hex) Apple, Inc. -1093E9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-2B-61 (hex) Apple, Inc. -DC2B61 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -B8-FF-61 (hex) Apple, Inc. -B8FF61 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -18-E7-F4 (hex) Apple, Inc. -18E7F4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-CA-39 (hex) Apple, Inc. -78CA39 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -5C-59-48 (hex) Apple, Inc. -5C5948 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-33-4B (hex) Apple, Inc. -60334B (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -90-27-E4 (hex) Apple, Inc. -9027E4 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -24-F6-77 (hex) Apple, Inc. -24F677 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -78-67-D7 (hex) Apple, Inc. -7867D7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -54-33-CB (hex) Apple, Inc. -5433CB (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D0-D2-B0 (hex) Apple, Inc. -D0D2B0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D8-8F-76 (hex) Apple, Inc. -D88F76 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -3C-2E-F9 (hex) Apple, Inc. -3C2EF9 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -DC-56-E7 (hex) Apple, Inc. -DC56E7 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -34-7C-25 (hex) Apple, Inc. -347C25 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D4-90-9C (hex) Apple, Inc. -D4909C (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -D4-9A-20 (hex) Apple, Inc. -D49A20 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -04-1E-64 (hex) Apple, Inc. -041E64 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-26-B0 (hex) Apple, Inc. -0026B0 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-26-4A (hex) Apple, Inc. -00264A (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-25-BC (hex) Apple, Inc. -0025BC (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-23-DF (hex) Apple, Inc. -0023DF (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-22-41 (hex) Apple, Inc. -002241 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -00-0A-95 (hex) Apple, Inc. -000A95 (base 16) Apple, Inc. - 1 Infinite Loop - Cupertino CA 95014 - US - -60-5F-8D (hex) eero inc. -605F8D (base 16) eero inc. - 500 Howard Street, Suite 900 - SAN FRANCISCO CA 94105 - US - -B4-DE-DF (hex) zte corporation -B4DEDF (base 16) zte corporation - 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China - shenzhen guangdong 518057 - CN - -84-74-60 (hex) zte corporation -847460 (base 16) zte corporation - 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China - shenzhen guangdong 518057 - CN - -B4-A8-B9 (hex) Cisco Systems, Inc -B4A8B9 (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 - US - -88-B6-EE (hex) Dish Technologies Corp -88B6EE (base 16) Dish Technologies Corp - 94 Inverness Terrace E - Englewood CO 80112 - US - -38-E6-0A (hex) Xiaomi Communications Co Ltd -38E60A (base 16) Xiaomi Communications Co Ltd - The Rainbow City of China Resources - NO.68, Qinghe Middle Street Haidian District, Beijing 100085 - CN - -C0-42-D0 (hex) Juniper Networks -C042D0 (base 16) Juniper Networks - 1133 Innovation Way - Sunnyvale CA 94089 - US - -E8-33-0D (hex) Xaptec GmbH -E8330D (base 16) Xaptec GmbH - Neidenburger Str. 10 - Gelsenkirchen 45897 - DE - -D8-D7-75 (hex) Sagemcom Broadband SAS -D8D775 (base 16) Sagemcom Broadband SAS - 250, route de l'Empereur - Rueil Malmaison Cedex hauts de seine 92848 - FR - -78-53-64 (hex) SHIFT GmbH -785364 (base 16) SHIFT GmbH - Am Gänsemarkt 6 - Wabern Falkenberg Hessen 34590 - DE - -24-18-1D (hex) SAMSUNG ELECTRO-MECHANICS(THAILAND) -24181D (base 16) SAMSUNG ELECTRO-MECHANICS(THAILAND) - 93Moo5T. Bangsamak SEMTHAI, WELLGROW INDUSTRIAL ESTATE - Bangpakong Chachoengsao 24180 - TH - -54-B7-E5 (hex) Rayson Technology Co., Ltd. -54B7E5 (base 16) Rayson Technology Co., Ltd. - 1F No.9 R&D Rd.II, Science-Based Industrial Park - Hsin-Chu 300 - TW - -BC-0F-A7 (hex) Ouster -BC0FA7 (base 16) Ouster - 350 Treat Ave - San Francisco CA 94110 - US - -AC-F9-70 (hex) HUAWEI TECHNOLOGIES CO.,LTD -ACF970 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -0C-41-E9 (hex) HUAWEI TECHNOLOGIES CO.,LTD -0C41E9 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -58-D7-59 (hex) HUAWEI TECHNOLOGIES CO.,LTD -58D759 (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -B4-1C-30 (hex) zte corporation -B41C30 (base 16) zte corporation - 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China - shenzhen guangdong 518057 - CN - -F4-C2-48 (hex) Samsung Electronics Co.,Ltd -F4C248 (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -A8-51-5B (hex) Samsung Electronics Co.,Ltd -A8515B (base 16) Samsung Electronics Co.,Ltd - #94-1, Imsoo-Dong - Gumi Gyeongbuk 730-350 - KR - -60-6B-FF (hex) Nintendo Co.,Ltd -606BFF (base 16) Nintendo Co.,Ltd - 11-1 HOKOTATE-CHO KAMITOBA,MINAMI-KU - KYOTO KYOTO 601-8501 - JP - -AC-17-C8 (hex) Cisco Meraki -AC17C8 (base 16) Cisco Meraki - 500 Terry A. Francois Blvd - San Francisco 94158 - US - -EC-9B-8B (hex) Hewlett Packard Enterprise -EC9B8B (base 16) Hewlett Packard Enterprise - 8000 Foothills Blvd. - Roseville CA 95747 - US - -70-C9-4E (hex) Liteon Technology Corporation -70C94E (base 16) Liteon Technology Corporation - 4F, 90, Chien 1 Road - New Taipei City Taiwan 23585 - TW - -70-D0-81 (hex) Beijing Netpower Technologies Inc. -70D081 (base 16) Beijing Netpower Technologies Inc. - Room 201, Block B, NO. 15 Building, EastZone - Courtyard10, Xibeiwang East Road Haidian District, Beijing 100094 - CN - -70-3A-73 (hex) Shenzhen Sundray Technologies Company Limited -703A73 (base 16) Shenzhen Sundray Technologies Company Limited - 6th Floor,Block A1, Nanshan iPark, No.1001 XueYuan Road, Nanshan District - Shenzhen Guangdong 518057 - CN - -18-0F-76 (hex) D-Link International -180F76 (base 16) D-Link International - 1 Internal Business Park, #03-12,The Synergy, Singapore - Singapore Singapore 609917 - SG - -18-4C-08 (hex) Rockwell Automation -184C08 (base 16) Rockwell Automation - 1 Allen-Bradley Dr. - Mayfield Heights OH 44124-6118 - US - -88-E9-0F (hex) innomdlelab -88E90F (base 16) innomdlelab - Unnam 1 gil, 3 - Seocho-gu Seoul 06778 - KR - -C0-98-DA (hex) China Mobile IOT Company Limited -C098DA (base 16) China Mobile IOT Company Limited - NO.8 Yu Ma Road, NanAn Area Chongqing,China - Chongqing Chongqing 401336 - CN - -98-D8-63 (hex) Shanghai High-Flying Electronics Technology Co., Ltd -98D863 (base 16) Shanghai High-Flying Electronics Technology Co., Ltd - Room 1002 ,#1Building,No.3000 Longdong Avenue,Pudong District,Shanghai,China - shanghai shanghai 201203 - CN - -F0-0F-EC (hex) HUAWEI TECHNOLOGIES CO.,LTD -F00FEC (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -0C-70-4A (hex) HUAWEI TECHNOLOGIES CO.,LTD -0C704A (base 16) HUAWEI TECHNOLOGIES CO.,LTD - No.2 Xin Cheng Road, Room R6,Songshan Lake Technology Park - Dongguan 523808 - CN - -54-A6-5C (hex) Technicolor CH USA Inc. -54A65C (base 16) Technicolor CH USA Inc. - 101 West 103rd St. - Indianapolis IN 46290 - US - -94-9F-3E (hex) Sonos, Inc. -949F3E (base 16) Sonos, Inc. - 614 Chapala St - Santa Barbara CA 93101 - US - -B8-E9-37 (hex) Sonos, Inc. -B8E937 (base 16) Sonos, Inc. - 614 Chapala St - Santa Barbara CA 93101 - US - -78-28-CA (hex) Sonos, Inc. -7828CA (base 16) Sonos, Inc. - 614 Chapala St - Santa Barbara CA 93101 - US - -34-7E-5C (hex) Sonos, Inc. -347E5C (base 16) Sonos, Inc. - 614 Chapala St - Santa Barbara CA 93101 - US - -C0-48-E6 (hex) Samsung Electronics Co.,Ltd -C048E6 (base 16) Samsung Electronics Co.,Ltd - 129, Samsung-ro, Youngtongl-Gu - Suwon Gyeonggi-Do 16677 - KR - -6C-E4-DA (hex) NEC Platforms, Ltd. -6CE4DA (base 16) NEC Platforms, Ltd. - 2-3 Kandatsukasamachi - Chiyodaku Tokyo 101-8532 - JP - -C8-8F-26 (hex) Skyworth Digital Technology(Shenzhen) Co.,Ltd -C88F26 (base 16) Skyworth Digital Technology(Shenzhen) Co.,Ltd - 7F,Block A,Skyworth Building, - Shenzhen Guangdong 518057 - CN - -B0-26-80 (hex) Cisco Systems, Inc -B02680 (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 - US - -00-3C-10 (hex) Cisco Systems, Inc -003C10 (base 16) Cisco Systems, Inc - 80 West Tasman Drive - San Jose CA 94568 - US - -90-83-4B (hex) BEIJING YUNYI TIMES TECHNOLOGY CO,.LTD -90834B (base 16) BEIJING YUNYI TIMES TECHNOLOGY CO,.LTD - 1-411Room 19#Building No.26 Xihuan South Rd. BDA Daxing District, - BEIJING 100176 - CN - -48-BD-3D (hex) New H3C Technologies Co., Ltd -48BD3D (base 16) New H3C Technologies Co., Ltd - 466 Changhe Road, Binjiang District - Hangzhou Zhejiang 310052 - CN - -4C-AB-FC (hex) zte corporation -4CABFC (base 16) zte corporation - 12/F.,zte R&D building ,kejinan Road,Shenzhen,P.R.China - shenzhen guangdong 518057 - CN - -20-0F-70 (hex) FOXTECH -200F70 (base 16) FOXTECH - 152-160 City Road - LONDON KEMP HOUSE EC1V 2NX - GB - -E8-1A-AC (hex) ORFEO SOUNDWORKS Inc. -E81AAC (base 16) ORFEO SOUNDWORKS Inc. - 612, 11-41, Simin-daero 327beon-gil, Dongan-gu - Anyang 14055 - KR - -A0-38-F8 (hex) OURA Health Oy -A038F8 (base 16) OURA Health Oy - Elektroniikkatie 3 - Oulu 90590 - FI - -14-6B-9C (hex) SHENZHEN BILIAN ELECTRONIC CO.,LTD -146B9C (base 16) SHENZHEN BILIAN ELECTRONIC CO.,LTD - NO.268, Fuqian Rd, Jutang community, Guanlan Town, Longhua New district - shenzhen guangdong 518000 - CN - -D0-77-14 (hex) Motorola Mobility LLC, a Lenovo Company -D07714 (base 16) Motorola Mobility LLC, a Lenovo Company - 222 West Merchandise Mart Plaza - Chicago IL 60654 - US - -34-D7-12 (hex) Smartisan Digital Co., Ltd -34D712 (base 16) Smartisan Digital Co., Ltd - 4F, China Digital Kingdom, No.1 Wangjing North Road, Chaoyang District - Beijing Beijing 100012 - CN - -98-45-62 (hex) Shanghai Baud Data Communication Co.,Ltd. -984562 (base 16) Shanghai Baud Data Communication Co.,Ltd. - NO.123 JULI RD - PUDONG ZHANGJIANG HIGH-TECH PARK SHANGHAI 201203 - CN - -E8-98-6D (hex) Palo Alto Networks -E8986D (base 16) Palo Alto Networks - 3000 Tannery Way - Santa Clara CA 95054 - US - -F0-81-73 (hex) Amazon Technologies Inc. -F08173 (base 16) Amazon Technologies Inc. - P.O Box 8102 - Reno 89507 - US - -24-29-FE (hex) KYOCERA Corporation -2429FE (base 16) KYOCERA Corporation - 30 Hoji - Kitami, Hokkaido 099-1595 - JP diff --git a/hwdb/ma-medium.txt b/hwdb/ma-medium.txt index 89577b9cf..9c97afffd 100644 --- a/hwdb/ma-medium.txt +++ b/hwdb/ma-medium.txt @@ -1319,12 +1319,6 @@ D00000-DFFFFF (base 16) optilink networks pvt ltd mumbai maharashtra 400071 IN -74-19-F8 (hex) Heptagon Systems PTY. LTD. -700000-7FFFFF (base 16) Heptagon Systems PTY. LTD. - 7 Tyrone Street - Camberwell 3124 - AU - 50-0B-91 (hex) thumbzup UK Limited B00000-BFFFFF (base 16) thumbzup UK Limited 6th Floor, 94 Wigmore Street @@ -2000,42 +1994,6 @@ F00000-FFFFFF (base 16) Private NishiTokyo-city Tokyo 202-0022 JP -9C-43-1E (hex) HK ELEPHONE Communication Tech Co.,Limited -D00000-DFFFFF (base 16) HK ELEPHONE Communication Tech Co.,Limited - Unit 04, 7/F Bright Way Tower No.33 Mong Kok Rd KL - Hong Kong 999077 - HK - -9C-43-1E (hex) Wireless Environment, LLC -400000-4FFFFF (base 16) Wireless Environment, LLC - 600 Beta Drive Unit 100 Mayfield Village, OH 44143,US - Mayfield Village OH 44143 - US - -28-2C-02 (hex) ThirdReality, Inc -B00000-BFFFFF (base 16) ThirdReality, Inc - 647 East Longhua Road, Huangpu District - Shanghai Shanghai 200023 - CN - -9C-43-1E (hex) HAESUNG DS -200000-2FFFFF (base 16) HAESUNG DS - 8F, Haesung 2 Building, 508, Teheran-ro, Gangnam-gu - Seoul 06178 - KR - -28-2C-02 (hex) Tokin Limited -A00000-AFFFFF (base 16) Tokin Limited - Unit 513-4, Block A, Focal Industrial Centre, 21 Man Lok Street, Hung Hom - Kowloon 0000 - HK - -F0-41-C8 (hex) Shenzhen Medica Technology Development Co., Ltd. -200000-2FFFFF (base 16) Shenzhen Medica Technology Development Co., Ltd. - 2F Building A, Tongfang Information Harbor, No.11, East Langshan Road, Nanshan District - Shenzhen 518000 - CN - C4-FF-BC (hex) Danego BV 000000-0FFFFF (base 16) Danego BV Protonenlaan 24 @@ -2099,6 +2057,138 @@ F0-41-C8 (hex) LINPA ACOUSTIC TECHNOLOGY CO.,LTD Dongguan Guandong 523648 CN +F0-41-C8 (hex) DongGuan Siyoto Electronics Co., Ltd +100000-1FFFFF (base 16) DongGuan Siyoto Electronics Co., Ltd + Hecheng Industrial District, QiaoTou Town, DongGuan City,Guangdong,China + DongGuan 523520 + CN + +74-19-F8 (hex) Heptagon Systems PTY. LTD. +700000-7FFFFF (base 16) Heptagon Systems PTY. LTD. + 625-627 Ringwood Warrandyte Road + Ringwood North VIC 3124 + AU + +F0-41-C8 (hex) Shenzhen Umind Technology Co., Ltd. +E00000-EFFFFF (base 16) Shenzhen Umind Technology Co., Ltd. + Add: D2-6A, TCL Science Park, 1001 ZhongshanYuan Road, Nanshan District + Shenzhen Guangdong 581055 + CN + +30-1F-9A (hex) Shenzhen Fengliyuan Energy Conservating Technology Co. Ltd +E00000-EFFFFF (base 16) Shenzhen Fengliyuan Energy Conservating Technology Co. Ltd + 8th floor of building A, Baoshan Industrial Estate, Longhua District, Shenzhen + Shenzhen Guangdong 518131 + CN + +88-5F-E8 (hex) Sonnet Labs Inc. +300000-3FFFFF (base 16) Sonnet Labs Inc. + 8 The Green Suite #6290 + Dover DE 19901 + US + +88-5F-E8 (hex) Changsha Xiangji-Haidun Technology Co., Ltd +800000-8FFFFF (base 16) Changsha Xiangji-Haidun Technology Co., Ltd + NO.5 Dongsan Rd, Changsha Economic & Technical Zone + Changsha HuNan 410100 + CN + +9C-43-1E (hex) HK ELEPHONE Communication Tech Co.,Limited +D00000-DFFFFF (base 16) HK ELEPHONE Communication Tech Co.,Limited + Unit 04, 7/F Bright Way Tower No.33 Mong Kok Rd KL + Hong Kong 999077 + HK + +9C-43-1E (hex) Wireless Environment, LLC +400000-4FFFFF (base 16) Wireless Environment, LLC + 600 Beta Drive Unit 100 Mayfield Village, OH 44143,US + Mayfield Village OH 44143 + US + +28-2C-02 (hex) ThirdReality, Inc +B00000-BFFFFF (base 16) ThirdReality, Inc + 647 East Longhua Road, Huangpu District + Shanghai Shanghai 200023 + CN + +9C-43-1E (hex) HAESUNG DS +200000-2FFFFF (base 16) HAESUNG DS + 8F, Haesung 2 Building, 508, Teheran-ro, Gangnam-gu + Seoul 06178 + KR + +28-2C-02 (hex) Tokin Limited +A00000-AFFFFF (base 16) Tokin Limited + Unit 513-4, Block A, Focal Industrial Centre, 21 Man Lok Street, Hung Hom + Kowloon 0000 + HK + +F0-41-C8 (hex) Shenzhen Medica Technology Development Co., Ltd. +200000-2FFFFF (base 16) Shenzhen Medica Technology Development Co., Ltd. + 2F Building A, Tongfang Information Harbor, No.11, East Langshan Road, Nanshan District + Shenzhen 518000 + CN + +48-0B-B2 (hex) SHENZHEN TOPWELL TECHNOLOGY CO..LTD +C00000-CFFFFF (base 16) SHENZHEN TOPWELL TECHNOLOGY CO..LTD + 5th Floor, Building 10 Changyuan New Material + Port,No.2,Middle Road 1, High Tech Park, Nanshan District,Shenzhen 518001 + CN + +88-5F-E8 (hex) Lisle Design Ltd +A00000-AFFFFF (base 16) Lisle Design Ltd + New Technology Centre, North Haugh + St. Andrews Fife KY16 9SR + GB + +88-5F-E8 (hex) Sowee +900000-9FFFFF (base 16) Sowee + 4 place des Vosges + Courbevoie 92400 + FR + +0C-73-EB (hex) Beijing L&S Lancom Platform Tech. Co., Ltd. +900000-9FFFFF (base 16) Beijing L&S Lancom Platform Tech. Co., Ltd. + 1st Floor, Xingtianhaiyuan Building, Xianghuangqi Eaast Rd, Nondda South Rd,Haidian District + Beijing 100193 + CN + +3C-24-F0 (hex) Swissdotnet SA +700000-7FFFFF (base 16) Swissdotnet SA + Route Saint-Nicolas-de-Flüe 2 + Fribourg 1700 + CH + +0C-73-EB (hex) Green Fox Electro AS +600000-6FFFFF (base 16) Green Fox Electro AS + Wessels veg 63 + STJORDAL NO-7502 + NO + +3C-24-F0 (hex) Authentico Technologies +C00000-CFFFFF (base 16) Authentico Technologies + Erikdahlbergsgatan 4 + Göteborg 41126 + SE + +3C-24-F0 (hex) Siemens AG - Siemens Deutschland Mobility +900000-9FFFFF (base 16) Siemens AG - Siemens Deutschland Mobility + Otto-Hahn-Ring 6 + Munich 81379 + DE + +3C-24-F0 (hex) Inter-Coastal Electronics +400000-4FFFFF (base 16) Inter-Coastal Electronics + 5750 E McKellips Rd + Mesa AZ 85215 + US + +0C-73-EB (hex) Shenzhen Samchung Video Technology Co., Ltd. +C00000-CFFFFF (base 16) Shenzhen Samchung Video Technology Co., Ltd. + Xixiang Street 4016 Bao'an Avenue + Yong Kai Business Building A, Bao'an District of Shenzhen City Guangdong 528470 + CN + 1C-87-76 (hex) Strone Technology C00000-CFFFFF (base 16) Strone Technology 13 Ellis Street @@ -3542,6 +3632,288 @@ A00000-AFFFFF (base 16) Integrated Design Ltd Feltham Middlesex TW137EQ GB +CC-22-37 (hex) Apeiron Data Systems +200000-2FFFFF (base 16) Apeiron Data Systems + 81 Blue Ravine Road + Folsom CA 95630 + US + +04-71-4B (hex) Shenzhen WayOS Technology Crop., Ltd. +200000-2FFFFF (base 16) Shenzhen WayOS Technology Crop., Ltd. + F18, Yousong Business Building, Longhua New Districe, Shenzhen, China + Shenzhen Guangdong 518109 + CN + +74-1A-E0 (hex) Revl Inc. +400000-4FFFFF (base 16) Revl Inc. + 325 9th St. + San Francisco CA 94103 + US + +74-1A-E0 (hex) Private +900000-9FFFFF (base 16) Private + +74-1A-E0 (hex) SHEN ZHEN YINGJIACHUANG ELECTRONICS TECHNOLOGY CO.,LTD. +B00000-BFFFFF (base 16) SHEN ZHEN YINGJIACHUANG ELECTRONICS TECHNOLOGY CO.,LTD. + Building A,Baishunjia Industrial Park,Guangming New District + Shenzhen 518107 + CN + +74-1A-E0 (hex) FUJIAN TAILI COMMUNICATION TECHNOLOGY CO.,LTD +500000-5FFFFF (base 16) FUJIAN TAILI COMMUNICATION TECHNOLOGY CO.,LTD + Cangshan science and technology park, Baihuting,Cangshan District, Fuzhou + FUZHOU 350026 + CN + +74-1A-E0 (hex) bistos.co.ltd +C00000-CFFFFF (base 16) bistos.co.ltd + 7floor, worim lions vally 5cha + sungnam kyeunggi-do 13201 + KR + +00-55-DA (hex) Private +F00000-FFFFFF (base 16) Private + +D0-22-12 (hex) Private +F00000-FFFFFF (base 16) Private + +AC-1D-DF (hex) Elekon AG +D00000-DFFFFF (base 16) Elekon AG + Cheerstrasse 16 + Luzern 6014 + CH + +34-D0-B8 (hex) Captec Ltd +000000-0FFFFF (base 16) Captec Ltd + 7 Whittle Avenue + Fareham Hampshire PO15 5SH + GB + +EC-9F-0D (hex) SKS Control Oy +D00000-DFFFFF (base 16) SKS Control Oy + Martinkyläntie 50 + Vantaa 01720 + FI + +EC-9F-0D (hex) Bei jing Lian Shan times Techonology Co.Ltd +700000-7FFFFF (base 16) Bei jing Lian Shan times Techonology Co.Ltd + Beijing Haidian.No.2 of Yong Cheng North Road Building 1.402 + Beijing 100094 + CN + +EC-9F-0D (hex) Shenzhen Compare Electronics Co., Ltd +600000-6FFFFF (base 16) Shenzhen Compare Electronics Co., Ltd + 18F 5D First Area, Shenzhen Bay Eco-tech Park, Nanshan District, Shenzhen 518057, China + Shenzhen City (深圳市) Guangdong 518057 + CN + +EC-9F-0D (hex) CRRC QINGDAO SIFANG ROLLING STOCK RESEARCH INSTITUTE CO.,LTD +B00000-BFFFFF (base 16) CRRC QINGDAO SIFANG ROLLING STOCK RESEARCH INSTITUTE CO.,LTD + No.231 Ruichang Road Qingdao City + Qingdao Shandong 266000 + CN + +EC-9F-0D (hex) Simula Technology Inc. +100000-1FFFFF (base 16) Simula Technology Inc. + 14 F, 1351, Zhong-Zheng Rd. + Taoyuan 330 + TW + +EC-9F-0D (hex) MAX Technologies +E00000-EFFFFF (base 16) MAX Technologies + 2051 Victoria Av. + St-Lambert Quebec J4S1H1 + CA + +38-73-EA (hex) Live Sentinel +600000-6FFFFF (base 16) Live Sentinel + 27 Armthorpe Rd. + Brampton Ontario L6T 5M4 + CA + +38-73-EA (hex) PingGPS Inc +700000-7FFFFF (base 16) PingGPS Inc + 19825 North Cove Road, #173 + CORNELIUS NC 28031 + US + +38-73-EA (hex) Shanghai ZoomSmart Technology Co., Ltd. +B00000-BFFFFF (base 16) Shanghai ZoomSmart Technology Co., Ltd. + ROOM 802, No. 189, Hengxi Road, Pujiang Town, Minhang District, Shanghai PRC + Shanghai 200000 + CN + +40-48-FD (hex) Dorel Juvenile +800000-8FFFFF (base 16) Dorel Juvenile + 25 Forbes Blvd + Foxborough MA 02035 + US + +F8-B5-68 (hex) Package Guard, Inc +600000-6FFFFF (base 16) Package Guard, Inc + 2819 33rd ave so + seattle WA 98144 + US + +F8-B5-68 (hex) CloudMinds (Shenzhen) Holdings Co., Ltd +700000-7FFFFF (base 16) CloudMinds (Shenzhen) Holdings Co., Ltd + Tower 3, 33F, Unit B, Wangjing SOHO,Wangjing Street No.10 + beijing 100102 + CN + +28-2C-02 (hex) Astronics AES +100000-1FFFFF (base 16) Astronics AES + 12950 Willows Rd NE + Kirkland WA 98034 + US + +10-07-23 (hex) Private +F00000-FFFFFF (base 16) Private + +28-2C-02 (hex) LLC MICROTEH +500000-5FFFFF (base 16) LLC MICROTEH + pl.5 bldg.2/3 Akademika Anokhina str. + Moscow 119602 + RU + +9C-43-1E (hex) Wunda Group plc +800000-8FFFFF (base 16) Wunda Group plc + Unit 1-5, Hawthorn, Crick + Caldicot Monmouthshire NP26 5UT + GB + +9C-43-1E (hex) Advanced Logic Technology (ALT) sa +300000-3FFFFF (base 16) Advanced Logic Technology (ALT) sa + Route de Niederpallen, 30H + Redange-sur-Attert Luxembourg 8506 + LU + +C4-FF-BC (hex) GSM Innovations Pty Ltd +900000-9FFFFF (base 16) GSM Innovations Pty Ltd + 142-144 Fullarton Road + Rose Park SA 5067 + AU + +C4-FF-BC (hex) SHENZHEN KALIF ELECTRONICS CO.,LTD +300000-3FFFFF (base 16) SHENZHEN KALIF ELECTRONICS CO.,LTD + 1、2 and 3 Floor, No.114, Haochong No.2 Industry Area, Hongxing Community, Songgang, Baoan, Shenzhen + SHENZHEN GuangDong 518105 + CN + +C4-FF-BC (hex) Beijing KDF information technology co. LTD. +D00000-DFFFFF (base 16) Beijing KDF information technology co. LTD. + Room14C,TowerA,,LindaBuilding,No.8,Dongtucheng Road,Chaoyang District, Beijing. + Beijing 100013 + CN + +9C-43-1E (hex) Optris GmbH +700000-7FFFFF (base 16) Optris GmbH + Ferdinand-Buisson-Str. 14 + Berlin 13127 + DE + +C4-FF-BC (hex) viRaTec GmbH +E00000-EFFFFF (base 16) viRaTec GmbH + Phorusgasse 8/1 + Wien 1040 + AT + +DC-E5-33 (hex) Controls Inc +500000-5FFFFF (base 16) Controls Inc + 5204 Portside Drive + Medina OH 44256 + US + +C4-FF-BC (hex) Shenzhen C & D Electronics Co., Ltd. +600000-6FFFFF (base 16) Shenzhen C & D Electronics Co., Ltd. + 9th FIoor, Building 9, No.1 Qingxiang road, BaoNeng Science and TechnoIogy Industrial Park, Longhua New District + ShenZhen GuangDong 518000 + CN + +DC-E5-33 (hex) FLYHT Aerospace +000000-0FFFFF (base 16) FLYHT Aerospace + 300E 1144 - 29th St. N.E. + Calgary AB T2E7P1 + CA + +DC-E5-33 (hex) Private +A00000-AFFFFF (base 16) Private + +A4-DA-22 (hex) Shen Zhen City YaKun Electronics Co., Ltd +D00000-DFFFFF (base 16) Shen Zhen City YaKun Electronics Co., Ltd + SOUTHERN BUILDING 5388 Shang Bu Industrial Zone Huaqiang North Road Futian District + shen zhen city Guang Dong Province 518000 + CN + +A4-DA-22 (hex) Abetechs GmbH +A00000-AFFFFF (base 16) Abetechs GmbH + Niermannsweg 11 + Erkrath North Rhine-Westphalia 40699 + DE + +A4-DA-22 (hex) T2T System +100000-1FFFFF (base 16) T2T System + #316, HYUNDAI Knowledge Industry Center, 70, Dusan-ro + Geumcheon-gu Seoul 08584 + KR + +A4-DA-22 (hex) Quuppa Oy +E00000-EFFFFF (base 16) Quuppa Oy + Keilaranta 1 + Espoo 02150 + FI + +88-A9-A7 (hex) AndroVideo Inc. +C00000-CFFFFF (base 16) AndroVideo Inc. + 2f-4, 17, Lane 91, Nei Hu Rd., Sec. 1 + Taipei 11441 + TW + +F0-41-C8 (hex) Shenzhen Nufilo Electronic Technology Co., Ltd. +900000-9FFFFF (base 16) Shenzhen Nufilo Electronic Technology Co., Ltd. + Tianliao Building West Unit F1315, (New Materials Industrial Park), Xueyuan Road, Nanshan District + Shenzhen Guangdong 518055 + CN + +F0-41-C8 (hex) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD +300000-3FFFFF (base 16) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD + No.826,Zone 1,Block B,Famous industrial product display purchasing center,Baoyuan Road,Xixiang,Bao'an Dis., Shenzhen,P.R.China + shenzhen China 518102 + CN + +F0-41-C8 (hex) Shanghai Think-Force Electronic Technology Co. Ltd +C00000-CFFFFF (base 16) Shanghai Think-Force Electronic Technology Co. Ltd + North ZhongShan Road, No. 3000, Room 2608 + Shanghai 200000 + CN + +30-1F-9A (hex) ILSAN ELECTRONICS +000000-0FFFFF (base 16) ILSAN ELECTRONICS + 433Beon-gil 52,Sasang-ro,Sasang-gu + Busan 46923 + KR + +30-1F-9A (hex) YiSheng technology co.,LTD +600000-6FFFFF (base 16) YiSheng technology co.,LTD + Xintian road no:71, F#202 + shenzhen baoan 518103 + CN + +30-1F-9A (hex) Private +900000-9FFFFF (base 16) Private + +88-5F-E8 (hex) Opto Engineering +200000-2FFFFF (base 16) Opto Engineering + Circonvallazione Sud, 15 + Mantova 46100 + IT + +88-5F-E8 (hex) Jungheinrich Norderstedt AG & Co. KG +000000-0FFFFF (base 16) Jungheinrich Norderstedt AG & Co. KG + Lawaetzstr. 9-13 + Norderstedt 22844 + DE + 34-04-9E (hex) uikismart D00000-DFFFFF (base 16) uikismart Nanshan @@ -3902,260 +4274,65 @@ B00000-BFFFFF (base 16) Private Singapore Singapore 608579 SG -CC-22-37 (hex) Apeiron Data Systems -200000-2FFFFF (base 16) Apeiron Data Systems - 81 Blue Ravine Road - Folsom CA 95630 +88-5F-E8 (hex) Apoidea Technology Co., Ltd. +100000-1FFFFF (base 16) Apoidea Technology Co., Ltd. + No. 111, Boyun Road + Shanghai 201203 + CN + +88-5F-E8 (hex) zhejiang yuanwang communication technolgy co.,ltd +D00000-DFFFFF (base 16) zhejiang yuanwang communication technolgy co.,ltd + No. 6 of shen shi lei lu Road + ZhuJi Zhejiang 311800 + CN + +48-0B-B2 (hex) Thales CETCA Avionics CO., Ltd +200000-2FFFFF (base 16) Thales CETCA Avionics CO., Ltd + NO.9 Baichuan road,Hi-tech industry west zone park, Chengdu, Sichuan + Chengdu Sichuan 611731 + CN + +48-0B-B2 (hex) M2Lab Ltd. +D00000-DFFFFF (base 16) M2Lab Ltd. + 148 Des Voeux Rd Central + Hong Kong HK + HK + +48-0B-B2 (hex) Beijing MFOX technology Co., Ltd. +E00000-EFFFFF (base 16) Beijing MFOX technology Co., Ltd. + B zone,floor 2,NO.A5 east Rongchang street .BDA (yizhuang) BeiJing + BeiJing BeiJing 100176 + CN + +0C-73-EB (hex) EVERSEC TECHNOLOGY CORPORATION +100000-1FFFFF (base 16) EVERSEC TECHNOLOGY CORPORATION + F5,Tower D,JingYi Technology Building NO.9 Dazhongsi East Road.,Beijing,P.R.China + BEIJING BEIJING 100086 + CN + +0C-73-EB (hex) Pi Innovo LLC +A00000-AFFFFF (base 16) Pi Innovo LLC + 47023 Five Mile Rd + Plymouth MI 48170 US -04-71-4B (hex) Shenzhen WayOS Technology Crop., Ltd. -200000-2FFFFF (base 16) Shenzhen WayOS Technology Crop., Ltd. - F18, Yousong Business Building, Longhua New Districe, Shenzhen, China - Shenzhen Guangdong 518109 - CN - -74-1A-E0 (hex) Revl Inc. -400000-4FFFFF (base 16) Revl Inc. - 325 9th St. - San Francisco CA 94103 - US - -74-1A-E0 (hex) Private -900000-9FFFFF (base 16) Private - -74-1A-E0 (hex) SHEN ZHEN YINGJIACHUANG ELECTRONICS TECHNOLOGY CO.,LTD. -B00000-BFFFFF (base 16) SHEN ZHEN YINGJIACHUANG ELECTRONICS TECHNOLOGY CO.,LTD. - Building A,Baishunjia Industrial Park,Guangming New District - Shenzhen 518107 - CN - -74-1A-E0 (hex) FUJIAN TAILI COMMUNICATION TECHNOLOGY CO.,LTD -500000-5FFFFF (base 16) FUJIAN TAILI COMMUNICATION TECHNOLOGY CO.,LTD - Cangshan science and technology park, Baihuting,Cangshan District, Fuzhou - FUZHOU 350026 - CN - -74-1A-E0 (hex) bistos.co.ltd -C00000-CFFFFF (base 16) bistos.co.ltd - 7floor, worim lions vally 5cha - sungnam kyeunggi-do 13201 - KR - -00-55-DA (hex) Private -F00000-FFFFFF (base 16) Private - -D0-22-12 (hex) Private -F00000-FFFFFF (base 16) Private - -AC-1D-DF (hex) Elekon AG -D00000-DFFFFF (base 16) Elekon AG - Cheerstrasse 16 - Luzern 6014 - CH - -34-D0-B8 (hex) Captec Ltd -000000-0FFFFF (base 16) Captec Ltd - 7 Whittle Avenue - Fareham Hampshire PO15 5SH +0C-73-EB (hex) Gemini Data Loggers (UK) Limited +000000-0FFFFF (base 16) Gemini Data Loggers (UK) Limited + Scientific House, Terminus Road + Chichester West Sussex PO19 8UJ GB -EC-9F-0D (hex) SKS Control Oy -D00000-DFFFFF (base 16) SKS Control Oy - Martinkyläntie 50 - Vantaa 01720 - FI +3C-24-F0 (hex) Abrites Ltd. +100000-1FFFFF (base 16) Abrites Ltd. + 147 Cherni Vrah Blvd. + Sofia Sofia 1407 + BG -EC-9F-0D (hex) Bei jing Lian Shan times Techonology Co.Ltd -700000-7FFFFF (base 16) Bei jing Lian Shan times Techonology Co.Ltd - Beijing Haidian.No.2 of Yong Cheng North Road Building 1.402 - Beijing 100094 - CN - -EC-9F-0D (hex) Shenzhen Compare Electronics Co., Ltd -600000-6FFFFF (base 16) Shenzhen Compare Electronics Co., Ltd - 18F 5D First Area, Shenzhen Bay Eco-tech Park, Nanshan District, Shenzhen 518057, China - Shenzhen City (深圳市) Guangdong 518057 - CN - -EC-9F-0D (hex) CRRC QINGDAO SIFANG ROLLING STOCK RESEARCH INSTITUTE CO.,LTD -B00000-BFFFFF (base 16) CRRC QINGDAO SIFANG ROLLING STOCK RESEARCH INSTITUTE CO.,LTD - No.231 Ruichang Road Qingdao City - Qingdao Shandong 266000 - CN - -EC-9F-0D (hex) Simula Technology Inc. -100000-1FFFFF (base 16) Simula Technology Inc. - 14 F, 1351, Zhong-Zheng Rd. - Taoyuan 330 - TW - -EC-9F-0D (hex) MAX Technologies -E00000-EFFFFF (base 16) MAX Technologies - 2051 Victoria Av. - St-Lambert Quebec J4S1H1 - CA - -38-73-EA (hex) Live Sentinel -600000-6FFFFF (base 16) Live Sentinel - 27 Armthorpe Rd. - Brampton Ontario L6T 5M4 - CA - -38-73-EA (hex) PingGPS Inc -700000-7FFFFF (base 16) PingGPS Inc - 19825 North Cove Road, #173 - CORNELIUS NC 28031 - US - -38-73-EA (hex) Shanghai ZoomSmart Technology Co., Ltd. -B00000-BFFFFF (base 16) Shanghai ZoomSmart Technology Co., Ltd. - ROOM 802, No. 189, Hengxi Road, Pujiang Town, Minhang District, Shanghai PRC - Shanghai 200000 - CN - -40-48-FD (hex) Dorel Juvenile -800000-8FFFFF (base 16) Dorel Juvenile - 25 Forbes Blvd - Foxborough MA 02035 - US - -F8-B5-68 (hex) Package Guard, Inc -600000-6FFFFF (base 16) Package Guard, Inc - 2819 33rd ave so - seattle WA 98144 - US - -F8-B5-68 (hex) CloudMinds (Shenzhen) Holdings Co., Ltd -700000-7FFFFF (base 16) CloudMinds (Shenzhen) Holdings Co., Ltd - Tower 3, 33F, Unit B, Wangjing SOHO,Wangjing Street No.10 - beijing 100102 - CN - -28-2C-02 (hex) Astronics AES -100000-1FFFFF (base 16) Astronics AES - 12950 Willows Rd NE - Kirkland WA 98034 - US - -10-07-23 (hex) Private -F00000-FFFFFF (base 16) Private - -28-2C-02 (hex) LLC MICROTEH -500000-5FFFFF (base 16) LLC MICROTEH - pl.5 bldg.2/3 Akademika Anokhina str. - Moscow 119602 - RU - -9C-43-1E (hex) Wunda Group plc -800000-8FFFFF (base 16) Wunda Group plc - Unit 1-5, Hawthorn, Crick - Caldicot Monmouthshire NP26 5UT - GB - -9C-43-1E (hex) Advanced Logic Technology (ALT) sa -300000-3FFFFF (base 16) Advanced Logic Technology (ALT) sa - Route de Niederpallen, 30H - Redange-sur-Attert Luxembourg 8506 - LU - -C4-FF-BC (hex) GSM Innovations Pty Ltd -900000-9FFFFF (base 16) GSM Innovations Pty Ltd - 142-144 Fullarton Road - Rose Park SA 5067 - AU - -C4-FF-BC (hex) SHENZHEN KALIF ELECTRONICS CO.,LTD -300000-3FFFFF (base 16) SHENZHEN KALIF ELECTRONICS CO.,LTD - 1、2 and 3 Floor, No.114, Haochong No.2 Industry Area, Hongxing Community, Songgang, Baoan, Shenzhen - SHENZHEN GuangDong 518105 - CN - -C4-FF-BC (hex) Beijing KDF information technology co. LTD. -D00000-DFFFFF (base 16) Beijing KDF information technology co. LTD. - Room14C,TowerA,,LindaBuilding,No.8,Dongtucheng Road,Chaoyang District, Beijing. - Beijing 100013 - CN - -9C-43-1E (hex) Optris GmbH -700000-7FFFFF (base 16) Optris GmbH - Ferdinand-Buisson-Str. 14 - Berlin 13127 - DE - -C4-FF-BC (hex) viRaTec GmbH -E00000-EFFFFF (base 16) viRaTec GmbH - Phorusgasse 8/1 - Wien 1040 - AT - -DC-E5-33 (hex) Controls Inc -500000-5FFFFF (base 16) Controls Inc - 5204 Portside Drive - Medina OH 44256 - US - -C4-FF-BC (hex) Shenzhen C & D Electronics Co., Ltd. -600000-6FFFFF (base 16) Shenzhen C & D Electronics Co., Ltd. - 9th FIoor, Building 9, No.1 Qingxiang road, BaoNeng Science and TechnoIogy Industrial Park, Longhua New District - ShenZhen GuangDong 518000 - CN - -DC-E5-33 (hex) FLYHT Aerospace -000000-0FFFFF (base 16) FLYHT Aerospace - 300E 1144 - 29th St. N.E. - Calgary AB T2E7P1 - CA - -DC-E5-33 (hex) Private -A00000-AFFFFF (base 16) Private - -A4-DA-22 (hex) Shen Zhen City YaKun Electronics Co., Ltd -D00000-DFFFFF (base 16) Shen Zhen City YaKun Electronics Co., Ltd - SOUTHERN BUILDING 5388 Shang Bu Industrial Zone Huaqiang North Road Futian District - shen zhen city Guang Dong Province 518000 - CN - -A4-DA-22 (hex) Abetechs GmbH -A00000-AFFFFF (base 16) Abetechs GmbH - Niermannsweg 11 - Erkrath North Rhine-Westphalia 40699 - DE - -A4-DA-22 (hex) T2T System -100000-1FFFFF (base 16) T2T System - #316, HYUNDAI Knowledge Industry Center, 70, Dusan-ro - Geumcheon-gu Seoul 08584 - KR - -A4-DA-22 (hex) Quuppa Oy -E00000-EFFFFF (base 16) Quuppa Oy - Keilaranta 1 - Espoo 02150 - FI - -88-A9-A7 (hex) AndroVideo Inc. -C00000-CFFFFF (base 16) AndroVideo Inc. - 2f-4, 17, Lane 91, Nei Hu Rd., Sec. 1 - Taipei 11441 - TW - -F0-41-C8 (hex) Shenzhen Nufilo Electronic Technology Co., Ltd. -900000-9FFFFF (base 16) Shenzhen Nufilo Electronic Technology Co., Ltd. - Tianliao Building West Unit F1315, (New Materials Industrial Park), Xueyuan Road, Nanshan District - Shenzhen Guangdong 518055 - CN - -F0-41-C8 (hex) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD -300000-3FFFFF (base 16) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD - No.826,Zone 1,Block B,Famous industrial product display purchasing center,Baoyuan Road,Xixiang,Bao'an Dis., Shenzhen,P.R.China - shenzhen China 518102 - CN - -F0-41-C8 (hex) Shanghai Think-Force Electronic Technology Co. Ltd -C00000-CFFFFF (base 16) Shanghai Think-Force Electronic Technology Co. Ltd - North ZhongShan Road, No. 3000, Room 2608 - Shanghai 200000 - CN +3C-24-F0 (hex) Wisycom +300000-3FFFFF (base 16) Wisycom + Via Spin 156 + Romano D'Ezzelino Vicenza 36060 + IT 1C-87-76 (hex) Zhuhai MYZR Technology Co.,Ltd 500000-5FFFFF (base 16) Zhuhai MYZR Technology Co.,Ltd @@ -5213,12 +5390,6 @@ E00000-EFFFFF (base 16) BAYCOM OPTO-ELECTRONICS TECHNOLGY CO., LTD. HONG kONG 00852 HK -50-FF-99 (hex) metraTec GmbH -A00000-AFFFFF (base 16) metraTec GmbH - Werner-Heisenberg-Str. 1 - Magdeburg Sachsen-Anh. 39106 - DE - 50-FF-99 (hex) Informa LLC E00000-EFFFFF (base 16) Informa LLC 215 N. College Ave @@ -6218,6 +6389,66 @@ F8-B5-68 (hex) Combiwins Technology Co.,Limited Chennai Tamilnadu 600035 IN +30-1F-9A (hex) CHISON Medical Technologies Co., Ltd. +200000-2FFFFF (base 16) CHISON Medical Technologies Co., Ltd. + No.9, Xinhuihuan Road, Xinwu District, Wuxi, Jiangsu, China 214028 + WUXI JIANGSU 214028 + CN + +30-1F-9A (hex) Origami Group Limited +C00000-CFFFFF (base 16) Origami Group Limited + Unit 913, 9/F.,Tower 2 Cheung Sha Wan Plaza, 833 Cheung Sha Wan Road, Kowloon + Hong Kong 000000 + HK + +30-1F-9A (hex) Beijing Surestar Technology Co. Ltd, +500000-5FFFFF (base 16) Beijing Surestar Technology Co. Ltd, + Room 502, building 1, No. 5 Yongfeng Road, Haidian District + Beijing 100089 + CN + +30-1F-9A (hex) HUNAN CHANGSHA HENGJIAN TECHNOLDGY DEVELPMENT CO.,LTD. +A00000-AFFFFF (base 16) HUNAN CHANGSHA HENGJIAN TECHNOLDGY DEVELPMENT CO.,LTD. + Jiayun Road 209 + Changsha Hunan 410205 + CN + +88-5F-E8 (hex) Shenzhen ORVIBO Technology Co., Ltd +B00000-BFFFFF (base 16) Shenzhen ORVIBO Technology Co., Ltd + 7F, A7 Zhiyuan, No.1001, Xueyuan AV., Nanshan district, Shenzhen,518055,PRC + Shenzhen guangdong 518000 + CN + +50-FF-99 (hex) metraTec GmbH +A00000-AFFFFF (base 16) metraTec GmbH + Niels-Bohr-Str. 5 + Magdeburg Sachsen-Anh. 39106 + DE + +48-0B-B2 (hex) Beijing Dragon Resources Limited. +700000-7FFFFF (base 16) Beijing Dragon Resources Limited. + Tongjunzhuangxinlukou (500meters east) Shilipu Town, MiyunCountry, Beijing101500, China + BeiJing 101500 + CN + +0C-73-EB (hex) Tiinlab Acoustic Technology (Shenzhen) Co., Ltd. +300000-3FFFFF (base 16) Tiinlab Acoustic Technology (Shenzhen) Co., Ltd. + Tianliao Building F14 East Block (New Materials Industrial Park), Xueyuan Road, Nanshan District, + Shenzhen Guangdong 518055 + CN + +0C-73-EB (hex) Husty M.Styczen J.Hupert Sp.J. +500000-5FFFFF (base 16) Husty M.Styczen J.Hupert Sp.J. + Rzepakowa 5e + Krakow malopolska 31-989 + PL + +3C-24-F0 (hex) Travis Holding B.V. +D00000-DFFFFF (base 16) Travis Holding B.V. + Stationsplein 45, A4.002 3013 AK + Rotterdam 3013AK + NL + 28-2C-02 (hex) SHENZHEN DOMENOR TECHNOLOGY LLC D00000-DFFFFF (base 16) SHENZHEN DOMENOR TECHNOLOGY LLC F4, BUILDING A3, SILICON VALLEY POWER TECHNOLOGY PARK, SILI ROAD, KUKENG COMMUNITY, GUANLAN TOWN,LONGHUA DISTRICT @@ -6368,6 +6599,54 @@ E00000-EFFFFF (base 16) Impact Distribution Herzelia 4673335 IL +F0-41-C8 (hex) Candelic Limited +400000-4FFFFF (base 16) Candelic Limited + Unit 312, 3/F Solo Workshop, 131-132 Cannaught Road West + Hong Kong 111111 + HK + +F0-41-C8 (hex) POSTIUM KOREA CO., LTD. +800000-8FFFFF (base 16) POSTIUM KOREA CO., LTD. + A208 Samsong Techno Valley, 140 Tongil-ro, Deogyang-gu + Koyang-si Kyeonggi-do 10594 + KR + +88-5F-E8 (hex) Beijing laiwei Technology Co.,Ltd +400000-4FFFFF (base 16) Beijing laiwei Technology Co.,Ltd + Room 205,2/F,No.1 Fazhan Road Beijing information international base Huilongguan town Changping district Beijing + Beijing Beijing 102206 + CN + +88-5F-E8 (hex) Shenzhen Xin Kingbrand Enterprises Co.,Ltd +600000-6FFFFF (base 16) Shenzhen Xin Kingbrand Enterprises Co.,Ltd + KingBrand Industrial Zone, Nanpu Road,Shang Liao Lin Pikeng,Shajing Town,Baoan District + Shenzhen 518000 + CN + +48-0B-B2 (hex) annapurnalabs +600000-6FFFFF (base 16) annapurnalabs + HACRMEL 2 st Brosh BLDG FLOOR3 + YOKNEAM. POB 218 Israel 26814 + IL + +48-0B-B2 (hex) BAJA ELECTRONICS TECHNOLOGY LIMITED +100000-1FFFFF (base 16) BAJA ELECTRONICS TECHNOLOGY LIMITED + 403, Unit 3, Building 3, Zhongdian Hi-Tech Park, No.1 Kejiqi Rd. + Zhuhai Guangdong 519080 + CN + +0C-73-EB (hex) Dinkle Enterprise Co., Ltd. +700000-7FFFFF (base 16) Dinkle Enterprise Co., Ltd. + No.19, Wuquan 2nd Rd., Wugu Dist. + New Taipei City 24890 + TW + +3C-24-F0 (hex) COMATIS +B00000-BFFFFF (base 16) COMATIS + 8 rue Carnot + SAINT-CYR-L'ECOLE 78210 + FR + 1C-87-76 (hex) Hekatron Vertriebs GmbH B00000-BFFFFF (base 16) Hekatron Vertriebs GmbH Brühlmatten 9 @@ -8441,11 +8720,17 @@ C4-FF-BC (hex) VISATECH C0., LTD. Geumcheon-gu Seoul 08507 KR -DC-E5-33 (hex) Tiertime Corporation -900000-9FFFFF (base 16) Tiertime Corporation - 2398 Walsh Avenue - Santa Clara CA 95051 - US +DC-E5-33 (hex) Ambi Labs Limited +100000-1FFFFF (base 16) Ambi Labs Limited + 1903, 19/F, Loon Lee Building, 267-275 Des Voeux Road Central., Sheung Wan, Hong Kong + Hong Kong Hong Kong 00000 + HK + +DC-E5-33 (hex) Remko GmbH & Co. KG +200000-2FFFFF (base 16) Remko GmbH & Co. KG + Im Seelenkamp 12 + Lage 32791 + DE A4-DA-22 (hex) Hydro Electronic Devices, Inc. 700000-7FFFFF (base 16) Hydro Electronic Devices, Inc. @@ -8453,33 +8738,63 @@ A4-DA-22 (hex) Hydro Electronic Devices, Inc. Hartford WI 53027 US -2C-26-5F (hex) Private -F00000-FFFFFF (base 16) Private - -28-FD-80 (hex) Private -F00000-FFFFFF (base 16) Private - A0-BB-3E (hex) Private F00000-FFFFFF (base 16) Private -F0-41-C8 (hex) ATN Media Group FZ LLC -D00000-DFFFFF (base 16) ATN Media Group FZ LLC - Business Bay-alabrj st Business Towar By Damac.office-807 - Dubai 25051 - AE - -F0-41-C8 (hex) XI'AN MEI SHANG MEI WIRELESS TECHNOLOGY.Co., Ltd. -500000-5FFFFF (base 16) XI'AN MEI SHANG MEI WIRELESS TECHNOLOGY.Co., Ltd. - Xi'an Beilin District Yanta Middle Road No. 17A XIN QING YA YUAN 2-5C - XI'AN shanxi 710000 +88-A9-A7 (hex) Shenzhenshi kechuangzhixian technology Co.LTD +000000-0FFFFF (base 16) Shenzhenshi kechuangzhixian technology Co.LTD + Room 14G,14th Floor, Langshi Building , keji South Road 12 , High-tech Industrial Park , Nanshan District + Shenzhen 518000 CN -F0-41-C8 (hex) AED Engineering GmbH -600000-6FFFFF (base 16) AED Engineering GmbH - Taunusstr. 51 - Munich Bavaria 80807 +88-A9-A7 (hex) TWK-ELEKTRONIK +B00000-BFFFFF (base 16) TWK-ELEKTRONIK + Heinrichstr. 85 + Duesseldorf 40239 DE +88-A9-A7 (hex) psb intralogistics GmbH +800000-8FFFFF (base 16) psb intralogistics GmbH + Blocksbergstrasse 145 + Pirmasens 66955 + DE + +F0-41-C8 (hex) Nanchang BlackShark Co.,Ltd. +700000-7FFFFF (base 16) Nanchang BlackShark Co.,Ltd. + Room 319, Jiaoqiao Town Office Building, Economic and Technical development zone, Nanchang City, Jiangxi Province. + Nanchang 330013 + CN + +88-5F-E8 (hex) Hauch & Bach ApS +500000-5FFFFF (base 16) Hauch & Bach ApS + Femstykket 6 + Lynge 3540 + DK + +0C-73-EB (hex) Beijing Miiiw Technology Co., Ltd +800000-8FFFFF (base 16) Beijing Miiiw Technology Co., Ltd + Room 3008, 3rd Floor, Qunfang Building, Bowangyuan, Yangfangdian Rd, Haidian District + Beijing 100010 + CN + +0C-73-EB (hex) Deltapath, Inc. +200000-2FFFFF (base 16) Deltapath, Inc. + 2107 N 1ST ST, STE 660 + San Jose CA 95131 + US + +0C-73-EB (hex) D-Link (Shanghai)Limited Corp. +D00000-DFFFFF (base 16) D-Link (Shanghai)Limited Corp. + Registered Address: Part J1, Floor 1, Building 2, No.115, Fute West First Road, China(Shanghai) Pilot Free Trade Zone + Shanghai 200000 + CN + +0C-73-EB (hex) U-PASS.CO.,LTD +400000-4FFFFF (base 16) U-PASS.CO.,LTD + HANEULMAEUL-RO + GYEONGGI-DO GOYANG-SI,ILSANDONG-GU 410315 + KR + 34-D0-B8 (hex) Kongqiguanjia (Beijing)Technology co.,ltd E00000-EFFFFF (base 16) Kongqiguanjia (Beijing)Technology co.,ltd Room 1201,Block A,Building of Fesco,Xidawang Road,Chaoyang district @@ -8564,17 +8879,11 @@ F8-B5-68 (hex) Beijing Wanji Techonology Co., Ltd. Hsinchu City Taiwan 300 TW -DC-E5-33 (hex) Ambi Labs Limited -100000-1FFFFF (base 16) Ambi Labs Limited - 1903, 19/F, Loon Lee Building, 267-275 Des Voeux Road Central., Sheung Wan, Hong Kong - Hong Kong Hong Kong 00000 - HK - -DC-E5-33 (hex) Remko GmbH & Co. KG -200000-2FFFFF (base 16) Remko GmbH & Co. KG - Im Seelenkamp 12 - Lage 32791 - DE +DC-E5-33 (hex) Tiertime Corporation +900000-9FFFFF (base 16) Tiertime Corporation + 2398 Walsh Avenue + Santa Clara CA 95051 + US A4-DA-22 (hex) SolidPro Technology Corporation 800000-8FFFFF (base 16) SolidPro Technology Corporation @@ -8588,28 +8897,70 @@ A4-DA-22 (hex) Original Products Pvt. Ltd. New Delhi New Delhi 110062 IN -88-A9-A7 (hex) Shenzhenshi kechuangzhixian technology Co.LTD -000000-0FFFFF (base 16) Shenzhenshi kechuangzhixian technology Co.LTD - Room 14G,14th Floor, Langshi Building , keji South Road 12 , High-tech Industrial Park , Nanshan District - Shenzhen 518000 +2C-26-5F (hex) Private +F00000-FFFFFF (base 16) Private + +28-FD-80 (hex) Private +F00000-FFFFFF (base 16) Private + +F0-41-C8 (hex) ATN Media Group FZ LLC +D00000-DFFFFF (base 16) ATN Media Group FZ LLC + Business Bay-alabrj st Business Towar By Damac.office-807 + Dubai 25051 + AE + +F0-41-C8 (hex) XI'AN MEI SHANG MEI WIRELESS TECHNOLOGY.Co., Ltd. +500000-5FFFFF (base 16) XI'AN MEI SHANG MEI WIRELESS TECHNOLOGY.Co., Ltd. + Xi'an Beilin District Yanta Middle Road No. 17A XIN QING YA YUAN 2-5C + XI'AN shanxi 710000 CN -88-A9-A7 (hex) TWK-ELEKTRONIK -B00000-BFFFFF (base 16) TWK-ELEKTRONIK - Heinrichstr. 85 - Duesseldorf 40239 +F0-41-C8 (hex) AED Engineering GmbH +600000-6FFFFF (base 16) AED Engineering GmbH + Taunusstr. 51 + Munich Bavaria 80807 DE -88-A9-A7 (hex) psb intralogistics GmbH -800000-8FFFFF (base 16) psb intralogistics GmbH - Blocksbergstrasse 145 - Pirmasens 66955 - DE +30-1F-9A (hex) Dewesoft d.o.o. +100000-1FFFFF (base 16) Dewesoft d.o.o. + Gabrsko 11a + Trbovlje 1420 + SI -F0-41-C8 (hex) Nanchang BlackShark Co.,Ltd. -700000-7FFFFF (base 16) Nanchang BlackShark Co.,Ltd. - Room 319, Jiaoqiao Town Office Building, Economic and Technical development zone, Nanchang City, Jiangxi Province. - Nanchang 330013 +30-1F-9A (hex) OLIMEX Ltd +D00000-DFFFFF (base 16) OLIMEX Ltd + 2 Pravda + Plovidv 4000 + BG + +48-0B-B2 (hex) Popit Oy +B00000-BFFFFF (base 16) Popit Oy + Metsänneidonkuja 6 + Espoo 02130 + FI + +48-0B-B2 (hex) BravoCom(xiamen)TechCo.Ltd +800000-8FFFFF (base 16) BravoCom(xiamen)TechCo.Ltd + Room 506, Chengye Building lnnovation park Xiamen Torch Hi-Tech Zone Xiamen fujian P.R.China + Xiamen fujian 361000 + CN + +48-0B-B2 (hex) Hangzhou Freely Communication Co., Ltd. +400000-4FFFFF (base 16) Hangzhou Freely Communication Co., Ltd. + No. 90 Wensan, Hangzhou, Zhejiang + Hangzhou Zhejiang 310012 + CN + +48-0B-B2 (hex) Microprogram Information Co., Ltd +900000-9FFFFF (base 16) Microprogram Information Co., Ltd + 14F., No.262, Sec. 2, Henan Rd., Xitun Dist. + Taichung 407 + TW + +3C-24-F0 (hex) SHENZHEN PINSIDA TECHNOLOGY CO.,LTD. +000000-0FFFFF (base 16) SHENZHEN PINSIDA TECHNOLOGY CO.,LTD. + 411,4/F,Building A,Pengnian Science Park,Honghua IV Road,Xili,Nanshan District + Shenzhen Guangdong 518000 CN 1C-87-74 (hex) Philips Personal Health Solutions @@ -9884,6 +10235,309 @@ D00000-DFFFFF (base 16) Hangzhou GANX Technology Co.,Ltd. Guangzhou Guangdong 510555 CN +AC-1D-DF (hex) WESCO INTEGRATED SUPPLY +A00000-AFFFFF (base 16) WESCO INTEGRATED SUPPLY + 36 HARBOR PARK DRIVE + PORT WASHINGTON NY 11050 + US + +AC-1D-DF (hex) Solare Datensysteme GmbH +900000-9FFFFF (base 16) Solare Datensysteme GmbH + Fuhrmannstraße 9 + Geislingen-Binsdorf Baden-Wuerttemberg 72351 + DE + +80-0A-80 (hex) Private +F00000-FFFFFF (base 16) Private + +34-D0-B8 (hex) OROSOUND SAS +B00000-BFFFFF (base 16) OROSOUND SAS + 48 RUE AMELOT + PARIS 75011 + FR + +34-D0-B8 (hex) Glory Mark Electronic Ltd. Taiwan Branch (B.V.I.) +C00000-CFFFFF (base 16) Glory Mark Electronic Ltd. Taiwan Branch (B.V.I.) + 3F, No. 6, Lane 148, Li De St., Chungho Dist. + New Taipei City Taiwan 235 + TW + +34-D0-B8 (hex) Tascent, Inc. +300000-3FFFFF (base 16) Tascent, Inc. + 475 Alberto Way, Suite #200 + Los Gatos CA 95032 + US + +34-D0-B8 (hex) NumberFour AG +600000-6FFFFF (base 16) NumberFour AG + Schoenhauser Allee 8 + Berlin 10119 + DE + +EC-9F-0D (hex) WisIOE +400000-4FFFFF (base 16) WisIOE + Room 601, Hongyuan Building, Baoyuan Road, Xixiang Street, Baoan District + Shenzhen Guangdong 518000 + CN + +EC-9F-0D (hex) Sarcos Corp +C00000-CFFFFF (base 16) Sarcos Corp + 360 S Wakara Way + Salt Lake City UT 84108 + US + +EC-9F-0D (hex) Zhejiang HEJU Communication Technology Co., Ltd +800000-8FFFFF (base 16) Zhejiang HEJU Communication Technology Co., Ltd + F4,Block B, Lotus Commercial Building,Lianhua Street 333#,XiHu District + HANGZHOU ZHEJIANG 310012 + CN + +38-73-EA (hex) ISTCONTROL +500000-5FFFFF (base 16) ISTCONTROL + #1203, 37 Maebongsan-ro, Mapo-gu + Seoul 03909 + KR + +38-73-EA (hex) LG Electronics +C00000-CFFFFF (base 16) LG Electronics + 51, Gasan Digital1-ro, Geumcheon-gu + Seoul 08592 + KR + +38-73-EA (hex) KingWay Information Co.,Ltd. +100000-1FFFFF (base 16) KingWay Information Co.,Ltd. + 3/F Rongxin business organization #56 Jinyan Road + Fuzhou Fujian 350000 + CN + +38-73-EA (hex) Lightform, Inc. +900000-9FFFFF (base 16) Lightform, Inc. + 123 Langton St. + San Francisco CA 94103 + US + +40-48-FD (hex) RL Controls LLC. +300000-3FFFFF (base 16) RL Controls LLC. + 2 G Gill St + Woburn MA 01801 + US + +40-48-FD (hex) BEIJING C&W ELECTRONICS(GROUP)CO.,LTD +000000-0FFFFF (base 16) BEIJING C&W ELECTRONICS(GROUP)CO.,LTD + No.14 Jiuxianqiao,chaoyang,Beijing,China + Beijing Beijing 100015 + CN + +40-48-FD (hex) Shenzhen Yifang Digital Technology Co., LTD. +A00000-AFFFFF (base 16) Shenzhen Yifang Digital Technology Co., LTD. + Building NO. 23, Fifth Region, Baiwangxin Industrial Park, Songbai Rd. Nanshan, Shenzhen + Shenzhen 518108 + CN + +40-48-FD (hex) Plus One Global Ltd. +900000-9FFFFF (base 16) Plus One Global Ltd. + 2-8-6,Nishishinbashi + Minato-ku Tokyo 105-0003 + JP + +F8-B5-68 (hex) etectRx +500000-5FFFFF (base 16) etectRx + 107 SW 140th Terr., Ste. 1 + Newberry FL 32669 + US + +40-48-FD (hex) SMART SENSOR DEVICES AB +E00000-EFFFFF (base 16) SMART SENSOR DEVICES AB + Sollentunavägen 67A + Sollentuna Stockholm 19140 + SE + +F8-B5-68 (hex) LifePrint Products, Inc. +000000-0FFFFF (base 16) LifePrint Products, Inc. + 4667 Golden Foothill Parkway, Suite 102 + El Dorado Hills CA 95762 + US + +F8-B5-68 (hex) SinePulse GmbH +A00000-AFFFFF (base 16) SinePulse GmbH + Kistlerhofstr. 170 + Munich D-81379 + DE + +28-2C-02 (hex) Shenzhen emb-star technology co. LTD +200000-2FFFFF (base 16) Shenzhen emb-star technology co. LTD + 2/f,building C,qinghu science park,qingxiang road,qinghu,longhua new district + shenzhen Guangdong 518131 + CN + +A4-4F-29 (hex) Private +F00000-FFFFFF (base 16) Private + +0C-EF-AF (hex) Private +F00000-FFFFFF (base 16) Private + +28-2C-02 (hex) EFENTO T P SZYDŁOWSKI K ZARĘBA SPÓŁKA JAWNA +400000-4FFFFF (base 16) EFENTO T P SZYDŁOWSKI K ZARĘBA SPÓŁKA JAWNA + Dietla 93/6 + Kraków 31-031 + PL + +28-2C-02 (hex) Capintec, Inc. +E00000-EFFFFF (base 16) Capintec, Inc. + 7 Vreeland Road + Florham Park NJ 07932 + US + +9C-43-1E (hex) R-S-I Elektrotechnik GmbH CO KG +600000-6FFFFF (base 16) R-S-I Elektrotechnik GmbH CO KG + Woelkestrasse 11 + Schweitenkirchen 85276 + DE + +9C-43-1E (hex) CONTINENT Co. Ltd +900000-9FFFFF (base 16) CONTINENT Co. Ltd + Bumazhnaya st., 16/3 lit B, of. 414 + Saint-Petersburg 190020 + RU + +9C-43-1E (hex) SuZhou Jinruiyang Information Technology CO.,LTD +C00000-CFFFFF (base 16) SuZhou Jinruiyang Information Technology CO.,LTD + NO.1003 Room A1 Buliding Tengfei Business Park in Suzhou Industrial Park. + Suzhou Jiangsu 215123 + CN + +9C-43-1E (hex) JNL Technologies Inc +B00000-BFFFFF (base 16) JNL Technologies Inc + W1205 Industrial Dr + Ixonia WI 53036 + US + +9C-43-1E (hex) Midas Technology DBA Phoenix Audio Technologies +E00000-EFFFFF (base 16) Midas Technology DBA Phoenix Audio Technologies + 16 Goodyear #120 + Irvine CA 92618 + US + +C4-FF-BC (hex) Advanced Navigation +A00000-AFFFFF (base 16) Advanced Navigation + Level 8, 37 Pitt Street + Sydney NSW 2000 + AU + +DC-E5-33 (hex) ShenZhen C&D Electronics CO.Ltd. +300000-3FFFFF (base 16) ShenZhen C&D Electronics CO.Ltd. + 9th FIoor, Building 9, No.1 Qingxiang road, BaoNeng Science and TechnoIogy Industrial Park, Longhua New District + ShenZhen GuangDong 518000 + CN + +DC-E5-33 (hex) WECAN Solution Inc. +600000-6FFFFF (base 16) WECAN Solution Inc. + 71, Yulhadong-ro 8-gil, Dong-gu, Daegu, Republic of Korea + Daegu 41102 + KR + +DC-E5-33 (hex) BRCK +C00000-CFFFFF (base 16) BRCK + PO Box 58275-00200, 2nd Floor Bishop Magua Center, George Padmore Lane, 2nd Floor Bishop Magua Center, George Padmore Lane + Nairobi Nairobi 00200 + KE + +A4-DA-22 (hex) Malldon Technology Limited +900000-9FFFFF (base 16) Malldon Technology Limited + 607 Longsheng Technology Building, Longhua Dist + Shenzhen Guangdong 518000 + CN + +88-A9-A7 (hex) AVLINK INDUSTRIAL CO., LTD +D00000-DFFFFF (base 16) AVLINK INDUSTRIAL CO., LTD + 7/F, A1 Bldg, 1st Shuichanjingwan Industrial Park, Nanchang Village, Gushu, Bao'an Dist + Shenzhen Guangdong 518126 + CN + +88-A9-A7 (hex) Volterman Inc. +500000-5FFFFF (base 16) Volterman Inc. + Suite B2, Sunset Lake Road + Newark DE 19702 + US + +F0-41-C8 (hex) Powervault Ltd +B00000-BFFFFF (base 16) Powervault Ltd + 29 Shand Street, London Bridge + London SE1 2ES + GB + +F0-41-C8 (hex) Telstra +A00000-AFFFFF (base 16) Telstra + 231 Elisabeth St + SYDNEY NSW 2000 + AU + +30-1F-9A (hex) Smart Component Technologies LTD +B00000-BFFFFF (base 16) Smart Component Technologies LTD + Cooper Buildings, Arundel Street + Sheffield South Yorkshire S1 2NS + GB + +30-1F-9A (hex) NCM Supplies, Inc. +400000-4FFFFF (base 16) NCM Supplies, Inc. + 8125 NW 64th Street + Miami FL 33166 + US + +30-1F-9A (hex) MICOMSOFT CO.,LTD. +300000-3FFFFF (base 16) MICOMSOFT CO.,LTD. + 6F,KEIHAN-YODOYABASHI BLDG., 3-2-25,KITAHAMA,CHUO-KU + osaka 541-0041 + JP + +30-1F-9A (hex) Triax A/S +700000-7FFFFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +30-1F-9A (hex) FINE TRIUMPH TECHNOLOGY CORP.,LTD. +800000-8FFFFF (base 16) FINE TRIUMPH TECHNOLOGY CORP.,LTD. + Xixiang + Shenzhen Guangdong 518126 + CN + +88-5F-E8 (hex) Inor Process AB +C00000-CFFFFF (base 16) Inor Process AB + Travbanegatan 10 + Malmo Skane SE-213 77 + SE + +88-5F-E8 (hex) Red Technologies, LLC. +700000-7FFFFF (base 16) Red Technologies, LLC. + 34 Parker + Irvine CA 92618 + US + +48-0B-B2 (hex) XIAMEN RONGTA TECHNOLOGY CO.,LTD. +A00000-AFFFFF (base 16) XIAMEN RONGTA TECHNOLOGY CO.,LTD. + 3F, E Plant, Gaoqi Industrial Zones, No.195, Gaoqi Community, Gaodian Village, Huli + Xiamen 361000 + CN + +88-5F-E8 (hex) Unicom Global, Inc. +E00000-EFFFFF (base 16) Unicom Global, Inc. + 581, Ruiguang Road, Neihu Dist. + Taipei 11492 + TW + +48-0B-B2 (hex) shanghai Rinlink Intelligent Technology Co., Ltd. +300000-3FFFFF (base 16) shanghai Rinlink Intelligent Technology Co., Ltd. + Room1510,ROAD Xiuwen,Minhang District + shanghai 201100 + CN + +48-0B-B2 (hex) Ridango AS +000000-0FFFFF (base 16) Ridango AS + Pärnu maantee 139E/13 + Tallinn Harjumaa 11317 + EE + 34-04-9E (hex) Eclipse Information Technologies 800000-8FFFFF (base 16) Eclipse Information Technologies Gulsuyu Mah. Fevzi Cakmak Cad Lefke Sk 16/6 @@ -10475,233 +11129,32 @@ E00000-EFFFFF (base 16) MANUFACTURAS Y TRANSFORMADOS AB, S.L. Eindhoven 5656 AE NL -AC-1D-DF (hex) WESCO INTEGRATED SUPPLY -A00000-AFFFFF (base 16) WESCO INTEGRATED SUPPLY - 36 HARBOR PARK DRIVE - PORT WASHINGTON NY 11050 +48-0B-B2 (hex) Solaredge LTD. +500000-5FFFFF (base 16) Solaredge LTD. + Hamada 1 + Herzelia 4673335 + IL + +0C-73-EB (hex) Synaccess Networks +B00000-BFFFFF (base 16) Synaccess Networks + 14425 N 79th St., Suite C + Scottsdale AZ 85260 US -AC-1D-DF (hex) Solare Datensysteme GmbH -900000-9FFFFF (base 16) Solare Datensysteme GmbH - Fuhrmannstraße 9 - Geislingen-Binsdorf Baden-Wuerttemberg 72351 - DE - -80-0A-80 (hex) Private -F00000-FFFFFF (base 16) Private - -34-D0-B8 (hex) OROSOUND SAS -B00000-BFFFFF (base 16) OROSOUND SAS - 48 RUE AMELOT - PARIS 75011 - FR - -34-D0-B8 (hex) Glory Mark Electronic Ltd. Taiwan Branch (B.V.I.) -C00000-CFFFFF (base 16) Glory Mark Electronic Ltd. Taiwan Branch (B.V.I.) - 3F, No. 6, Lane 148, Li De St., Chungho Dist. - New Taipei City Taiwan 235 +0C-73-EB (hex) Taiwan Pulse Motion Co., Ltd. +E00000-EFFFFF (base 16) Taiwan Pulse Motion Co., Ltd. + 5F.-11, No. 210, Gongyequ 38th Rd. + Taichung City 40768 TW -34-D0-B8 (hex) Tascent, Inc. -300000-3FFFFF (base 16) Tascent, Inc. - 475 Alberto Way, Suite #200 - Los Gatos CA 95032 - US - -34-D0-B8 (hex) NumberFour AG -600000-6FFFFF (base 16) NumberFour AG - Schoenhauser Allee 8 - Berlin 10119 - DE - -EC-9F-0D (hex) WisIOE -400000-4FFFFF (base 16) WisIOE - Room 601, Hongyuan Building, Baoyuan Road, Xixiang Street, Baoan District - Shenzhen Guangdong 518000 - CN - -EC-9F-0D (hex) Sarcos Corp -C00000-CFFFFF (base 16) Sarcos Corp - 360 S Wakara Way - Salt Lake City UT 84108 - US - -EC-9F-0D (hex) Zhejiang HEJU Communication Technology Co., Ltd -800000-8FFFFF (base 16) Zhejiang HEJU Communication Technology Co., Ltd - F4,Block B, Lotus Commercial Building,Lianhua Street 333#,XiHu District - HANGZHOU ZHEJIANG 310012 - CN - -38-73-EA (hex) ISTCONTROL -500000-5FFFFF (base 16) ISTCONTROL - #1203, 37 Maebongsan-ro, Mapo-gu - Seoul 03909 - KR - -38-73-EA (hex) LG Electronics -C00000-CFFFFF (base 16) LG Electronics - 51, Gasan Digital1-ro, Geumcheon-gu - Seoul 08592 - KR - -38-73-EA (hex) KingWay Information Co.,Ltd. -100000-1FFFFF (base 16) KingWay Information Co.,Ltd. - 3/F Rongxin business organization #56 Jinyan Road - Fuzhou Fujian 350000 - CN - -38-73-EA (hex) Lightform, Inc. -900000-9FFFFF (base 16) Lightform, Inc. - 123 Langton St. - San Francisco CA 94103 - US - -40-48-FD (hex) RL Controls LLC. -300000-3FFFFF (base 16) RL Controls LLC. - 2 G Gill St - Woburn MA 01801 - US - -40-48-FD (hex) BEIJING C&W ELECTRONICS(GROUP)CO.,LTD -000000-0FFFFF (base 16) BEIJING C&W ELECTRONICS(GROUP)CO.,LTD - No.14 Jiuxianqiao,chaoyang,Beijing,China - Beijing Beijing 100015 - CN - -40-48-FD (hex) Shenzhen Yifang Digital Technology Co., LTD. -A00000-AFFFFF (base 16) Shenzhen Yifang Digital Technology Co., LTD. - Building NO. 23, Fifth Region, Baiwangxin Industrial Park, Songbai Rd. Nanshan, Shenzhen - Shenzhen 518108 - CN - -40-48-FD (hex) Plus One Global Ltd. -900000-9FFFFF (base 16) Plus One Global Ltd. - 2-8-6,Nishishinbashi - Minato-ku Tokyo 105-0003 +3C-24-F0 (hex) Inter Action Corporation +600000-6FFFFF (base 16) Inter Action Corporation + 14F,Yokohama-Kanazawa High-Tech Center,1-1, + Yokohama Kanagawa 236-0004 JP -F8-B5-68 (hex) etectRx -500000-5FFFFF (base 16) etectRx - 107 SW 140th Terr., Ste. 1 - Newberry FL 32669 - US - -40-48-FD (hex) SMART SENSOR DEVICES AB -E00000-EFFFFF (base 16) SMART SENSOR DEVICES AB - Sollentunavägen 67A - Sollentuna Stockholm 19140 - SE - -F8-B5-68 (hex) LifePrint Products, Inc. -000000-0FFFFF (base 16) LifePrint Products, Inc. - 4667 Golden Foothill Parkway, Suite 102 - El Dorado Hills CA 95762 - US - -F8-B5-68 (hex) SinePulse GmbH -A00000-AFFFFF (base 16) SinePulse GmbH - Kistlerhofstr. 170 - Munich D-81379 - DE - -28-2C-02 (hex) Shenzhen emb-star technology co. LTD -200000-2FFFFF (base 16) Shenzhen emb-star technology co. LTD - 2/f,building C,qinghu science park,qingxiang road,qinghu,longhua new district - shenzhen Guangdong 518131 +3C-24-F0 (hex) Shenzhen Bestway Technology Co., Ltd +A00000-AFFFFF (base 16) Shenzhen Bestway Technology Co., Ltd + 2nd Floor, Building 9, Jingxuan Industrial Park, East Ring Road, Longhua District, + Shenzhen GuangDong 518109 CN - -A4-4F-29 (hex) Private -F00000-FFFFFF (base 16) Private - -0C-EF-AF (hex) Private -F00000-FFFFFF (base 16) Private - -28-2C-02 (hex) EFENTO T P SZYDŁOWSKI K ZARĘBA SPÓŁKA JAWNA -400000-4FFFFF (base 16) EFENTO T P SZYDŁOWSKI K ZARĘBA SPÓŁKA JAWNA - Dietla 93/6 - Kraków 31-031 - PL - -28-2C-02 (hex) Capintec, Inc. -E00000-EFFFFF (base 16) Capintec, Inc. - 7 Vreeland Road - Florham Park NJ 07932 - US - -9C-43-1E (hex) R-S-I Elektrotechnik GmbH CO KG -600000-6FFFFF (base 16) R-S-I Elektrotechnik GmbH CO KG - Woelkestrasse 11 - Schweitenkirchen 85276 - DE - -9C-43-1E (hex) CONTINENT Co. Ltd -900000-9FFFFF (base 16) CONTINENT Co. Ltd - Bumazhnaya st., 16/3 lit B, of. 414 - Saint-Petersburg 190020 - RU - -9C-43-1E (hex) SuZhou Jinruiyang Information Technology CO.,LTD -C00000-CFFFFF (base 16) SuZhou Jinruiyang Information Technology CO.,LTD - NO.1003 Room A1 Buliding Tengfei Business Park in Suzhou Industrial Park. - Suzhou Jiangsu 215123 - CN - -9C-43-1E (hex) JNL Technologies Inc -B00000-BFFFFF (base 16) JNL Technologies Inc - W1205 Industrial Dr - Ixonia WI 53036 - US - -9C-43-1E (hex) Midas Technology DBA Phoenix Audio Technologies -E00000-EFFFFF (base 16) Midas Technology DBA Phoenix Audio Technologies - 16 Goodyear #120 - Irvine CA 92618 - US - -C4-FF-BC (hex) Advanced Navigation -A00000-AFFFFF (base 16) Advanced Navigation - Level 8, 37 Pitt Street - Sydney NSW 2000 - AU - -DC-E5-33 (hex) ShenZhen C&D Electronics CO.Ltd. -300000-3FFFFF (base 16) ShenZhen C&D Electronics CO.Ltd. - 9th FIoor, Building 9, No.1 Qingxiang road, BaoNeng Science and TechnoIogy Industrial Park, Longhua New District - ShenZhen GuangDong 518000 - CN - -DC-E5-33 (hex) WECAN Solution Inc. -600000-6FFFFF (base 16) WECAN Solution Inc. - 71, Yulhadong-ro 8-gil, Dong-gu, Daegu, Republic of Korea - Daegu 41102 - KR - -DC-E5-33 (hex) BRCK -C00000-CFFFFF (base 16) BRCK - PO Box 58275-00200, 2nd Floor Bishop Magua Center, George Padmore Lane, 2nd Floor Bishop Magua Center, George Padmore Lane - Nairobi Nairobi 00200 - KE - -A4-DA-22 (hex) Malldon Technology Limited -900000-9FFFFF (base 16) Malldon Technology Limited - 607 Longsheng Technology Building, Longhua Dist - Shenzhen Guangdong 518000 - CN - -88-A9-A7 (hex) AVLINK INDUSTRIAL CO., LTD -D00000-DFFFFF (base 16) AVLINK INDUSTRIAL CO., LTD - 7/F, A1 Bldg, 1st Shuichanjingwan Industrial Park, Nanchang Village, Gushu, Bao'an Dist - Shenzhen Guangdong 518126 - CN - -88-A9-A7 (hex) Volterman Inc. -500000-5FFFFF (base 16) Volterman Inc. - Suite B2, Sunset Lake Road - Newark DE 19702 - US - -F0-41-C8 (hex) Powervault Ltd -B00000-BFFFFF (base 16) Powervault Ltd - 29 Shand Street, London Bridge - London SE1 2ES - GB diff --git a/hwdb/ma-small.txt b/hwdb/ma-small.txt index 79b2cc672..93d659d0b 100644 --- a/hwdb/ma-small.txt +++ b/hwdb/ma-small.txt @@ -1187,12 +1187,6 @@ D86000-D86FFF (base 16) WPGSYS Pte Ltd Bridgewater NJ 08807 US -00-1B-C5 (hex) Triax A/S -08C000-08CFFF (base 16) Triax A/S - Bjørnkærvej 3 - Hornsyld DK-8783 - DK - 00-1B-C5 (hex) Seven Solutions S.L 090000-090FFF (base 16) Seven Solutions S.L C/Baza, parcela 19, @@ -2705,12 +2699,6 @@ EF7000-EF7FFF (base 16) DAVE SRL PORCIA PORDENONE 330850 IT -70-B3-D5 (hex) Sierra Nevada Corporation -252000-252FFF (base 16) Sierra Nevada Corporation - 444 Salomon Circle - Sparks NV 89434 - US - 70-B3-D5 (hex) MANSION INDUSTRY CO., LTD. 734000-734FFF (base 16) MANSION INDUSTRY CO., LTD. 5F., No.6, Siwei Ln., Zhongzheng Rd., Xindian Dist., @@ -2771,72 +2759,6 @@ B6C000-B6CFFF (base 16) GHM-Messtechnik GmbH (Standort IMTRON) Kraków 31-031 PL -70-B3-D5 (hex) KST technology -351000-351FFF (base 16) KST technology - KST B/D 4-5, Wiryeseong-daero 12-gil - Songpa-gu Seoul 05636 - KR - -70-B3-D5 (hex) Vtron Pty Ltd -15D000-15DFFF (base 16) Vtron Pty Ltd - Unit 2, 62 Township Drive West - West Burleigh Queensland 4219 - AU - -70-B3-D5 (hex) Vtron Pty Ltd -341000-341FFF (base 16) Vtron Pty Ltd - Unit 2, 62 Township Drive West - West Burleigh Queensland 4219 - AU - -70-B3-D5 (hex) Kunshan excellent Intelligent Technology Co., Ltd. -BE4000-BE4FFF (base 16) Kunshan excellent Intelligent Technology Co., Ltd. - Room 2002 Site B Modern Square No 8 Wei yi Road - kunshan Jiangsu Province 215301 - CN - -70-B3-D5 (hex) YUYAMA MFG Co.,Ltd -E86000-E86FFF (base 16) YUYAMA MFG Co.,Ltd - 3-3-1 - TOYONAKASHI OSAKA 561-0841 - JP - -70-B3-D5 (hex) QUANTAFLOW -6EB000-6EBFFF (base 16) QUANTAFLOW - AVENUE DU CANADA - HONFLEUR 14600 - FR - -70-B3-D5 (hex) FLUDIA -4A0000-4A0FFF (base 16) FLUDIA - 4T rue honoré d'estienne d'orves - Suresnes 92150 - FR - -70-B3-D5 (hex) OLEDCOMM -A43000-A43FFF (base 16) OLEDCOMM - 10-12 avenue de l'Europe - Vélizy Villacoublay Ile de France 78140 - FR - -70-B3-D5 (hex) Peter Huber Kaeltemaschinenbau AG -D7B000-D7BFFF (base 16) Peter Huber Kaeltemaschinenbau AG - Werner-von-Siemens-Str. 1 - Offenburg Ba-Wue 77656 - DE - -70-B3-D5 (hex) TORGOVYY DOM TEHNOLOGIY LLC -7C0000-7C0FFF (base 16) TORGOVYY DOM TEHNOLOGIY LLC - The village of Rumyantsevo, Build.1 - Moscow Moscow 142784 - RU - -70-B3-D5 (hex) Cardinal Health -75E000-75EFFF (base 16) Cardinal Health - 444 McDonnell Blvd. - Hazelwood MO 63042 - US - 70-B3-D5 (hex) Matrix Orbital Corporation 2B7000-2B7FFF (base 16) Matrix Orbital Corporation Suite 602, 4774 Westwinds Dr NE @@ -2903,17 +2825,128 @@ DAA000-DAAFFF (base 16) AmTote Australasia Istanbul 34467 TR +70-B3-D5 (hex) Zamir Recognition Systems Ltd. +981000-981FFF (base 16) Zamir Recognition Systems Ltd. + Manachat Tech Park 1/22 + Jerusalem 96951 + IL + 70-B3-D5 (hex) TRIDENT INFOSOL PVT LTD C8F000-C8FFFF (base 16) TRIDENT INFOSOL PVT LTD NO1A , KUSHAL GARDEN , PEENYA INDUSTRIAL AREA BANGALORE 560058 IN -70-B3-D5 (hex) Zamir Recognition Systems Ltd. -981000-981FFF (base 16) Zamir Recognition Systems Ltd. - Manachat Tech Park 1/22 - Jerusalem 96951 - IL +70-B3-D5 (hex) Uplevel Systems Inc +A13000-A13FFF (base 16) Uplevel Systems Inc + 6950 SW Hampton Street, Suite 308 + Tigard OR 97223 + US + +00-1B-C5 (hex) Triax A/S +08C000-08CFFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +70-B3-D5 (hex) Sierra Nevada Corporation +252000-252FFF (base 16) Sierra Nevada Corporation + 444 Salomon Circle + Sparks NV 89434 + US + +70-B3-D5 (hex) X-SPEX GmbH +D6F000-D6FFFF (base 16) X-SPEX GmbH + Albert-Einstein-Str. 14 + Berlin Berlin 12489 + DE + +70-B3-D5 (hex) KST technology +351000-351FFF (base 16) KST technology + KST B/D 4-5, Wiryeseong-daero 12-gil + Songpa-gu Seoul 05636 + KR + +70-B3-D5 (hex) Vtron Pty Ltd +15D000-15DFFF (base 16) Vtron Pty Ltd + Unit 2, 62 Township Drive West + West Burleigh Queensland 4219 + AU + +70-B3-D5 (hex) Vtron Pty Ltd +341000-341FFF (base 16) Vtron Pty Ltd + Unit 2, 62 Township Drive West + West Burleigh Queensland 4219 + AU + +70-B3-D5 (hex) Kunshan excellent Intelligent Technology Co., Ltd. +BE4000-BE4FFF (base 16) Kunshan excellent Intelligent Technology Co., Ltd. + Room 2002 Site B Modern Square No 8 Wei yi Road + kunshan Jiangsu Province 215301 + CN + +70-B3-D5 (hex) YUYAMA MFG Co.,Ltd +E86000-E86FFF (base 16) YUYAMA MFG Co.,Ltd + 3-3-1 + TOYONAKASHI OSAKA 561-0841 + JP + +70-B3-D5 (hex) QUANTAFLOW +6EB000-6EBFFF (base 16) QUANTAFLOW + AVENUE DU CANADA + HONFLEUR 14600 + FR + +70-B3-D5 (hex) FLUDIA +4A0000-4A0FFF (base 16) FLUDIA + 4T rue honoré d'estienne d'orves + Suresnes 92150 + FR + +70-B3-D5 (hex) OLEDCOMM +A43000-A43FFF (base 16) OLEDCOMM + 10-12 avenue de l'Europe + Vélizy Villacoublay Ile de France 78140 + FR + +70-B3-D5 (hex) Peter Huber Kaeltemaschinenbau AG +D7B000-D7BFFF (base 16) Peter Huber Kaeltemaschinenbau AG + Werner-von-Siemens-Str. 1 + Offenburg Ba-Wue 77656 + DE + +70-B3-D5 (hex) TORGOVYY DOM TEHNOLOGIY LLC +7C0000-7C0FFF (base 16) TORGOVYY DOM TEHNOLOGIY LLC + The village of Rumyantsevo, Build.1 + Moscow Moscow 142784 + RU + +70-B3-D5 (hex) Cardinal Health +75E000-75EFFF (base 16) Cardinal Health + 444 McDonnell Blvd. + Hazelwood MO 63042 + US + +70-B3-D5 (hex) Private +90E000-90EFFF (base 16) Private + +70-B3-D5 (hex) CoXlab Inc. +DF1000-DF1FFF (base 16) CoXlab Inc. + 312 Hannuri-daero, 309 + Sejong 30128 + KR + +70-B3-D5 (hex) Verity Studios AG +7AC000-7ACFFF (base 16) Verity Studios AG + Zürcherstrasse 39 + Schlieren 8952 + CH + +70-B3-D5 (hex) GSP Sprachtechnologie GmbH +2A4000-2A4FFF (base 16) GSP Sprachtechnologie GmbH + Teltowkanalstraße 1 + Berlin 12247 + DE 70-B3-D5 (hex) Flintab AB D60000-D60FFF (base 16) Flintab AB @@ -4850,6 +4883,456 @@ D32000-D32FFF (base 16) Euklis by GSG International Trezzano sul Naviglio MI 20090 IT +70-B3-D5 (hex) SHENZHEN GAONA ELECTRONIC CO.LTD +031000-031FFF (base 16) SHENZHEN GAONA ELECTRONIC CO.LTD + F3.East block. Xinwu Industrial Building, Longzhu Road.Nanshan District + Shenzhen Guangdong China 518000 + CN + +70-B3-D5 (hex) DIGIVERV INC +548000-548FFF (base 16) DIGIVERV INC + 1515 Evanvale Dr + Allen TX 75013 + US + +70-B3-D5 (hex) Globalcom Engineering SPA +284000-284FFF (base 16) Globalcom Engineering SPA + Via Volta 39 + CARDANO AL CAMPO VA 21010 + IT + +70-B3-D5 (hex) Array Technologies Inc. +A4E000-A4EFFF (base 16) Array Technologies Inc. + 21 Sequin Drive + Glastonbury 06033 + US + +70-B3-D5 (hex) Private +580000-580FFF (base 16) Private + +70-B3-D5 (hex) Alma +BA9000-BA9FFF (base 16) Alma + 4A, Bd de la Gare, Porte 1 + Boissy St Léger PACA 94470 + FR + +70-B3-D5 (hex) Health Care Originals, Inc. +2F2000-2F2FFF (base 16) Health Care Originals, Inc. + 1 Pleasant St., Ste. 442 + Rochester NY 14604 + US + +70-B3-D5 (hex) GSF Corporation Pte Ltd +B98000-B98FFF (base 16) GSF Corporation Pte Ltd + 60 Paya Lebar Road + # 12-05 Paya Lebar Square 409051 + SG + +70-B3-D5 (hex) Grossenbacher Systeme AG +0DE000-0DEFFF (base 16) Grossenbacher Systeme AG + Spinnereistrasse 10 + St. Gallen 9008 + CH + +70-B3-D5 (hex) International Roll-Call Corporation +4B8000-4B8FFF (base 16) International Roll-Call Corporation + 8346 Old Richfood Road + Mechanicsville VA 23116 + US + +70-B3-D5 (hex) Javasparrow Inc. +991000-991FFF (base 16) Javasparrow Inc. + 303,1-31-17,Koudou + Adachi Tokyo 120013 + JP + +70-B3-D5 (hex) RCATSONE +3AA000-3AAFFF (base 16) RCATSONE + 5925 Airport Road - Suite 905 + Mississauga Ontario L4V 1W1 + CA + +70-B3-D5 (hex) UnI Systech Co.,Ltd +894000-894FFF (base 16) UnI Systech Co.,Ltd + A-511 Sigma2 164,Tancheongsang-ro,Bundang-gu + Seongnam-si Gyeonggi-do 13631 + KR + +70-B3-D5 (hex) IOT Engineering +16B000-16BFFF (base 16) IOT Engineering + 3 Eglington Ave + Epson Auckland 1024 + NZ + +70-B3-D5 (hex) DEUTA-WERKE GmbH +432000-432FFF (base 16) DEUTA-WERKE GmbH + Paffrather Str. 140 + Bergisch Gladbach North Rhine-Westphalia 51465 + DE + +70-B3-D5 (hex) Husty M.Styczen J.Hupert Sp.J. +086000-086FFF (base 16) Husty M.Styczen J.Hupert Sp.J. + Rzepakowa 5e + Krakow malopolska 31-989 + PL + +70-B3-D5 (hex) Private +E17000-E17FFF (base 16) Private + +70-B3-D5 (hex) megatec electronic GmbH +8A8000-8A8FFF (base 16) megatec electronic GmbH + Lehenhammer 14 + Etzelwang Bayern 92268 + DE + +70-B3-D5 (hex) EFG CZ spol. s r.o. +897000-897FFF (base 16) EFG CZ spol. s r.o. + Na Jarově 4 + Praha 3 Czech republic 13000 + CZ + +70-B3-D5 (hex) Certus Operations Ltd +4B2000-4B2FFF (base 16) Certus Operations Ltd + Dragonara Business Centre, 5th Floor, Dragonara Road c/w Ball Street + St Julians STJ 3141 + MT + +70-B3-D5 (hex) Service Plus LLC +169000-169FFF (base 16) Service Plus LLC + Kotlyakovskaya str. 5 + Moscow 115201 + RU + +70-B3-D5 (hex) Spectrum Techniques, LLC +953000-953FFF (base 16) Spectrum Techniques, LLC + 106 Union Valley Rd + Oak Ridge TN 37930 + US + +70-B3-D5 (hex) Private +A03000-A03FFF (base 16) Private + +70-B3-D5 (hex) Xacti Corporation +828000-828FFF (base 16) Xacti Corporation + Tower East 28F, Umeda Sky bldg, 1-1-88, Oyodonaka, Kita-ku, + Osaka Osaka 5316028 + JP + +70-B3-D5 (hex) Shangdong Bosure Automation Technology Ltd +A88000-A88FFF (base 16) Shangdong Bosure Automation Technology Ltd + No.1 Shunhua Road, Gaoxin District + Jinan Shangdong 250101 + CN + +70-B3-D5 (hex) HumanEyes Technologies Ltd. +9DD000-9DDFFF (base 16) HumanEyes Technologies Ltd. + Neve Ilan + Neve Ilan 90850 + IL + +70-B3-D5 (hex) Ideetron b.v. +9B5000-9B5FFF (base 16) Ideetron b.v. + Dorpsstraat 81 + Doorn Utrecht 3941JL + NL + +70-B3-D5 (hex) APG Cash Drawer, LLC +BB3000-BB3FFF (base 16) APG Cash Drawer, LLC + 5250 Industrial Blvd NE + Minneapolis MN 55421 + US + +70-B3-D5 (hex) Asystems Corporation +255000-255FFF (base 16) Asystems Corporation + 10F., No.70, Sec.1, Keelung Rd + Taipei Taiwan 11070 + TW + +70-B3-D5 (hex) Mettler Toledo Hi Speed +74A000-74AFFF (base 16) Mettler Toledo Hi Speed + 5 Barr Road + Ithaca NY 14850 + US + +70-B3-D5 (hex) Polynet Telecommunications Consulting and Contractor Ltd. +877000-877FFF (base 16) Polynet Telecommunications Consulting and Contractor Ltd. + Montevideo street 3/b + Budapest 1037 + HU + +70-B3-D5 (hex) Movicom LLC +5DB000-5DBFFF (base 16) Movicom LLC + Nauchny proezd, 20 + Moscow 117246 + RU + +70-B3-D5 (hex) PAMIR Inc +D93000-D93FFF (base 16) PAMIR Inc + B-222, 606, Seobusaet-gil, Geumcheon-gu + Seoul 08504 + KR + +70-B3-D5 (hex) RIKEN OPTECH CORPORATION +63E000-63EFFF (base 16) RIKEN OPTECH CORPORATION + 5615-1 Taguchi + Saku-city Nagano 384-0412 + JP + +70-B3-D5 (hex) LOGICUBE INC +999000-999FFF (base 16) LOGICUBE INC + 19755 Nordhoff Place + Chatsworth CA 91311 + US + +70-B3-D5 (hex) Electrolux +7A6000-7A6FFF (base 16) Electrolux + Corso Lino Zanussi 24 + Porcia PORDENONE 33080 + IT + +70-B3-D5 (hex) Autocom Diagnostic Partner AB +98E000-98EFFF (base 16) Autocom Diagnostic Partner AB + Grafitvägen 23B + TROLLHÄTTAN 46138 + SE + +70-B3-D5 (hex) Breas Medical AB +E88000-E88FFF (base 16) Breas Medical AB + Företagsvägen 1 + Mölnlycke SE-435 33 + SE + +70-B3-D5 (hex) LG Electronics +723000-723FFF (base 16) LG Electronics + 189, LG Gasan Digital Center, Gasan digital 1-ro, Geumcheon-gu + Seoul 153-803 + KR + +70-B3-D5 (hex) InOut Communication Systems +FF9000-FF9FFF (base 16) InOut Communication Systems + via Nobel, 10 + Noventa di Piave Venezia 30020 + IT + +70-B3-D5 (hex) Jiangsu Jinheng Information Technology Co.,Ltd. +492000-492FFF (base 16) Jiangsu Jinheng Information Technology Co.,Ltd. + LuHe District,XieJiaDian,Ninggang Road No.81 + Nanjing Jiangsu 210035 + CN + +70-B3-D5 (hex) BLOCKSI LLC +95E000-95EFFF (base 16) BLOCKSI LLC + 228 Hamilton avenue 3rd floor + Palo Alto 94301 + US + +70-B3-D5 (hex) VAGLER International Sdn Bhd +582000-582FFF (base 16) VAGLER International Sdn Bhd + 2006 Jalan Jelawat, Seberang Jaya Industrial Estate + Prai Penang 13700 + MY + +70-B3-D5 (hex) TechSigno srl +0A2000-0A2FFF (base 16) TechSigno srl + Via Giovanni Paolo II, 3 + Udiner UD 33100 + IT + +70-B3-D5 (hex) Neuron GmbH +E1B000-E1BFFF (base 16) Neuron GmbH + Badenerstrasse 9 + Brugg 5200 + CH + +70-B3-D5 (hex) HAVELSAN A.Ş. +096000-096FFF (base 16) HAVELSAN A.Ş. + Mustafa Kemal Mah. 2120.Cad. No.39 + ANKARA 06510 + TR + +70-B3-D5 (hex) Selex ES Inc. +F5E000-F5EFFF (base 16) Selex ES Inc. + 4221 Tudor Lane + Greensboro NC 27410 + US + +70-B3-D5 (hex) YG COMPANY CO., LTD +63F000-63FFFF (base 16) YG COMPANY CO., LTD + 65, Techno 3-ro + Daejeon Yuseong-gu 34016 + KR + +70-B3-D5 (hex) QIAGEN Instruments AG +A29000-A29FFF (base 16) QIAGEN Instruments AG + Garstligweg 8 + Hombrechtikon Zurich 8634 + CH + +70-B3-D5 (hex) DIMASTEC GESTAO DE PONTO E ACESSO EIRELI-ME +F8F000-F8FFFF (base 16) DIMASTEC GESTAO DE PONTO E ACESSO EIRELI-ME + Praça Rotary Club, 355 + Ribeirão Preto São Paulo 14021-355 + BR + +70-B3-D5 (hex) Savari Inc +207000-207FFF (base 16) Savari Inc + 2005 De la cruz blvd, st 111, + santa clara CA 95050 + US + +70-B3-D5 (hex) Emergency Lighting Products Limited +480000-480FFF (base 16) Emergency Lighting Products Limited + Gillmans Industrial Estate, Natts Lane + Billingshurst RH14 9EZ + GB + +70-B3-D5 (hex) ONDEMAND LABORATORY Co., Ltd. +069000-069FFF (base 16) ONDEMAND LABORATORY Co., Ltd. + Daiba 449 Space 369 Building 2F + Mishima Shizuoka 411-0803 + JP + +70-B3-D5 (hex) EPSOFT Co., Ltd +A3A000-A3AFFF (base 16) EPSOFT Co., Ltd + 301, Bupyeong-daero, Bupyeong-gu + Incheon 21315 + KR + +70-B3-D5 (hex) CSM MACHINERY srl +FE3000-FE3FFF (base 16) CSM MACHINERY srl + Via Cadore Mare, 25 + Cimetta di Codognè Treviso 31013 + IT + +70-B3-D5 (hex) X-Laser LLC +711000-711FFF (base 16) X-Laser LLC + 9125 Whiskey Bottom Rd Ste A + Laurel MD 20723 + US + +70-B3-D5 (hex) GS Elektromedizinsiche Geräte G. Stemple GmbH +144000-144FFF (base 16) GS Elektromedizinsiche Geräte G. Stemple GmbH + Hauswiesenstr. 26 + Kaufering Bayern 86916 + DE + +70-B3-D5 (hex) NESA SRL +BFA000-BFAFFF (base 16) NESA SRL + Via Sartori, 6/8 + Vidor Treviso 31020 + IT + +70-B3-D5 (hex) Renesas Electronics +340000-340FFF (base 16) Renesas Electronics + 2801 Scott Blvd + Santa Clara CA 95050 + US + +70-B3-D5 (hex) AEM Singapore Pte. Ltd. +AC1000-AC1FFF (base 16) AEM Singapore Pte. Ltd. + 52 Serangoon North Ave 4 + Singapore Singapore 555853 + SG + +70-B3-D5 (hex) Planewave Instruments +CB4000-CB4FFF (base 16) Planewave Instruments + 1819 Kona Dr. + Compton CA 90220 + US + +70-B3-D5 (hex) Avionica +611000-611FFF (base 16) Avionica + 9941 West Jessamine St + Miami FL 33157 + US + +70-B3-D5 (hex) ELDES +9A0000-9A0FFF (base 16) ELDES + Ukmerges 283B + Vilnius 06313 + LT + +70-B3-D5 (hex) Intesens +B17000-B17FFF (base 16) Intesens + 425 rue Jean Rostand + labege 31670 + FR + +70-B3-D5 (hex) Avant Technologies, Inc +410000-410FFF (base 16) Avant Technologies, Inc + Road 156 Caguas West Ind. Park bldg 39 + Caguas PR 00726 + US + +70-B3-D5 (hex) Lab241 Co.,Ltd. +21B000-21BFFF (base 16) Lab241 Co.,Ltd. + 25Dong 241Ho, 97, Siheung-daero, Geumcheon-gu + Seoul Seoul 08639 + KR + +70-B3-D5 (hex) HEITEC AG +228000-228FFF (base 16) HEITEC AG + Dr.-Otto-Leich-Str. 16 + Eckental Bavaria 90542 + DE + +70-B3-D5 (hex) Insitu, Inc +B3B000-B3BFFF (base 16) Insitu, Inc + 118 E Columbia River Way + Bingen WA 98605 + US + +70-B3-D5 (hex) Alere Technologies AS +2AE000-2AEFFF (base 16) Alere Technologies AS + Kjelsaasveien 161 + Oslo Oslo 0382 + NO + +70-B3-D5 (hex) MatchX GmbH +1CB000-1CBFFF (base 16) MatchX GmbH + Adalbert Str.8 + Berlin 10999 + DE + +70-B3-D5 (hex) Metrum Sweden AB +F98000-F98FFF (base 16) Metrum Sweden AB + Anders Personsgatan 16 + Goteborg 41664 + SE + +70-B3-D5 (hex) Private +DE9000-DE9FFF (base 16) Private + +70-B3-D5 (hex) FOSHAN VOHOM +2BF000-2BFFFF (base 16) FOSHAN VOHOM + Unit 402, 4/F ENT A3 Bldg, Hantian Science and Technology City, No. 17 Shenhai RD. + Foshan Guangdong 528200 + CN + +70-B3-D5 (hex) Hills Health Solutions +78A000-78AFFF (base 16) Hills Health Solutions + Unit 1, Builing F, 3-29 Birnie Ave + Lidcombe New South Wales 2141 + AU + +70-B3-D5 (hex) Cambridge Pixel +023000-023FFF (base 16) Cambridge Pixel + New Cambridge House, Litlington + Royston Herts SG8 0SS + GB + +70-B3-D5 (hex) Triax A/S +C2E000-C2EFFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +70-B3-D5 (hex) D.E.M. SPA +C1C000-C1CFFF (base 16) D.E.M. SPA + Z.I. VILLANOVA 20 + Longarone (BL) 32013 + IT + 70-B3-D5 (hex) PTYPE Co., LTD. 6B0000-6B0FFF (base 16) PTYPE Co., LTD. B121, B-dong, Keumkang Penterium IT Tower, 810, Gwanyand 2-dong, Dongan-gu @@ -5030,12 +5513,6 @@ E9C000-E9CFFF (base 16) ATG UV Technology Sissach 4450 CH -70-B3-D5 (hex) Triax A/S -C2E000-C2EFFF (base 16) Triax A/S - Bjornkaervej 3 - Hornsyld Denmark 8783 - DK - 70-B3-D5 (hex) Dextera Labs 0EF000-0EFFFF (base 16) Dextera Labs 3175 Quatre-Bourgeois #104 @@ -5465,426 +5942,84 @@ EB9000-EB9FFF (base 16) Thiel Audio Products Company, LLC Nashville TN 37228 US -70-B3-D5 (hex) SHENZHEN GAONA ELECTRONIC CO.LTD -031000-031FFF (base 16) SHENZHEN GAONA ELECTRONIC CO.LTD - F3.East block. Xinwu Industrial Building, Longzhu Road.Nanshan District - Shenzhen Guangdong China 518000 - CN - -70-B3-D5 (hex) DIGIVERV INC -548000-548FFF (base 16) DIGIVERV INC - 1515 Evanvale Dr - Allen TX 75013 - US - -70-B3-D5 (hex) Globalcom Engineering SPA -284000-284FFF (base 16) Globalcom Engineering SPA - Via Volta 39 - CARDANO AL CAMPO VA 21010 +70-B3-D5 (hex) TATTILE SRL +2CA000-2CAFFF (base 16) TATTILE SRL + VIA DONIZETTI, 1/3/5 + MAIRANO BRESCIA 25030 IT -70-B3-D5 (hex) Array Technologies Inc. -A4E000-A4EFFF (base 16) Array Technologies Inc. - 21 Sequin Drive - Glastonbury 06033 - US +70-B3-D5 (hex) DORLET SAU +8E3000-8E3FFF (base 16) DORLET SAU + Albert Eistein 34 + Alava SPAIN 01510 + ES -70-B3-D5 (hex) Private -580000-580FFF (base 16) Private - -70-B3-D5 (hex) Alma -BA9000-BA9FFF (base 16) Alma - 4A, Bd de la Gare, Porte 1 - Boissy St Léger PACA 94470 - FR - -70-B3-D5 (hex) Health Care Originals, Inc. -2F2000-2F2FFF (base 16) Health Care Originals, Inc. - 1 Pleasant St., Ste. 442 - Rochester NY 14604 - US - -70-B3-D5 (hex) GSF Corporation Pte Ltd -B98000-B98FFF (base 16) GSF Corporation Pte Ltd - 60 Paya Lebar Road - # 12-05 Paya Lebar Square 409051 - SG - -70-B3-D5 (hex) Grossenbacher Systeme AG -0DE000-0DEFFF (base 16) Grossenbacher Systeme AG - Spinnereistrasse 10 - St. Gallen 9008 - CH - -70-B3-D5 (hex) International Roll-Call Corporation -4B8000-4B8FFF (base 16) International Roll-Call Corporation - 8346 Old Richfood Road - Mechanicsville VA 23116 - US - -70-B3-D5 (hex) Javasparrow Inc. -991000-991FFF (base 16) Javasparrow Inc. - 303,1-31-17,Koudou - Adachi Tokyo 120013 - JP - -70-B3-D5 (hex) RCATSONE -3AA000-3AAFFF (base 16) RCATSONE - 5925 Airport Road - Suite 905 - Mississauga Ontario L4V 1W1 - CA - -70-B3-D5 (hex) UnI Systech Co.,Ltd -894000-894FFF (base 16) UnI Systech Co.,Ltd - A-511 Sigma2 164,Tancheongsang-ro,Bundang-gu - Seongnam-si Gyeonggi-do 13631 - KR - -70-B3-D5 (hex) IOT Engineering -16B000-16BFFF (base 16) IOT Engineering - 3 Eglington Ave - Epson Auckland 1024 - NZ - -70-B3-D5 (hex) DEUTA-WERKE GmbH -432000-432FFF (base 16) DEUTA-WERKE GmbH - Paffrather Str. 140 - Bergisch Gladbach North Rhine-Westphalia 51465 - DE - -70-B3-D5 (hex) Husty M.Styczen J.Hupert Sp.J. -086000-086FFF (base 16) Husty M.Styczen J.Hupert Sp.J. - Rzepakowa 5e - Krakow malopolska 31-989 - PL - -70-B3-D5 (hex) Private -E17000-E17FFF (base 16) Private - -70-B3-D5 (hex) megatec electronic GmbH -8A8000-8A8FFF (base 16) megatec electronic GmbH - Lehenhammer 14 - Etzelwang Bayern 92268 - DE - -70-B3-D5 (hex) EFG CZ spol. s r.o. -897000-897FFF (base 16) EFG CZ spol. s r.o. - Na Jarově 4 - Praha 3 Czech republic 13000 - CZ - -70-B3-D5 (hex) Certus Operations Ltd -4B2000-4B2FFF (base 16) Certus Operations Ltd - Dragonara Business Centre, 5th Floor, Dragonara Road c/w Ball Street - St Julians STJ 3141 - MT - -70-B3-D5 (hex) Service Plus LLC -169000-169FFF (base 16) Service Plus LLC - Kotlyakovskaya str. 5 - Moscow 115201 - RU - -70-B3-D5 (hex) Spectrum Techniques, LLC -953000-953FFF (base 16) Spectrum Techniques, LLC - 106 Union Valley Rd - Oak Ridge TN 37930 - US - -70-B3-D5 (hex) Private -A03000-A03FFF (base 16) Private - -70-B3-D5 (hex) Xacti Corporation -828000-828FFF (base 16) Xacti Corporation - Tower East 28F, Umeda Sky bldg, 1-1-88, Oyodonaka, Kita-ku, - Osaka Osaka 5316028 - JP - -70-B3-D5 (hex) Shangdong Bosure Automation Technology Ltd -A88000-A88FFF (base 16) Shangdong Bosure Automation Technology Ltd - No.1 Shunhua Road, Gaoxin District - Jinan Shangdong 250101 - CN - -70-B3-D5 (hex) HumanEyes Technologies Ltd. -9DD000-9DDFFF (base 16) HumanEyes Technologies Ltd. - Neve Ilan - Neve Ilan 90850 - IL - -70-B3-D5 (hex) Ideetron b.v. -9B5000-9B5FFF (base 16) Ideetron b.v. - Dorpsstraat 81 - Doorn Utrecht 3941JL - NL - -70-B3-D5 (hex) APG Cash Drawer, LLC -BB3000-BB3FFF (base 16) APG Cash Drawer, LLC - 5250 Industrial Blvd NE - Minneapolis MN 55421 - US - -70-B3-D5 (hex) Asystems Corporation -255000-255FFF (base 16) Asystems Corporation - 10F., No.70, Sec.1, Keelung Rd - Taipei Taiwan 11070 +70-B3-D5 (hex) Gentec Systems Co. +469000-469FFF (base 16) Gentec Systems Co. + 5F., No.51-3, Fuxing Rd., Xindian Dist., + New Taipei City 23150 TW -70-B3-D5 (hex) Mettler Toledo Hi Speed -74A000-74AFFF (base 16) Mettler Toledo Hi Speed - 5 Barr Road - Ithaca NY 14850 - US - -70-B3-D5 (hex) Polynet Telecommunications Consulting and Contractor Ltd. -877000-877FFF (base 16) Polynet Telecommunications Consulting and Contractor Ltd. - Montevideo street 3/b - Budapest 1037 - HU - -70-B3-D5 (hex) Movicom LLC -5DB000-5DBFFF (base 16) Movicom LLC - Nauchny proezd, 20 - Moscow 117246 - RU - -70-B3-D5 (hex) PAMIR Inc -D93000-D93FFF (base 16) PAMIR Inc - B-222, 606, Seobusaet-gil, Geumcheon-gu - Seoul 08504 - KR - -70-B3-D5 (hex) RIKEN OPTECH CORPORATION -63E000-63EFFF (base 16) RIKEN OPTECH CORPORATION - 5615-1 Taguchi - Saku-city Nagano 384-0412 - JP - -70-B3-D5 (hex) LOGICUBE INC -999000-999FFF (base 16) LOGICUBE INC - 19755 Nordhoff Place - Chatsworth CA 91311 - US - -70-B3-D5 (hex) Electrolux -7A6000-7A6FFF (base 16) Electrolux - Corso Lino Zanussi 24 - Porcia PORDENONE 33080 - IT - -70-B3-D5 (hex) Autocom Diagnostic Partner AB -98E000-98EFFF (base 16) Autocom Diagnostic Partner AB - Grafitvägen 23B - TROLLHÄTTAN 46138 - SE - -70-B3-D5 (hex) Breas Medical AB -E88000-E88FFF (base 16) Breas Medical AB - Företagsvägen 1 - Mölnlycke SE-435 33 - SE - -70-B3-D5 (hex) LG Electronics -723000-723FFF (base 16) LG Electronics - 189, LG Gasan Digital Center, Gasan digital 1-ro, Geumcheon-gu - Seoul 153-803 - KR - -70-B3-D5 (hex) InOut Communication Systems -FF9000-FF9FFF (base 16) InOut Communication Systems - via Nobel, 10 - Noventa di Piave Venezia 30020 - IT - -70-B3-D5 (hex) Jiangsu Jinheng Information Technology Co.,Ltd. -492000-492FFF (base 16) Jiangsu Jinheng Information Technology Co.,Ltd. - LuHe District,XieJiaDian,Ninggang Road No.81 - Nanjing Jiangsu 210035 - CN - -70-B3-D5 (hex) BLOCKSI LLC -95E000-95EFFF (base 16) BLOCKSI LLC - 228 Hamilton avenue 3rd floor - Palo Alto 94301 - US - -70-B3-D5 (hex) VAGLER International Sdn Bhd -582000-582FFF (base 16) VAGLER International Sdn Bhd - 2006 Jalan Jelawat, Seberang Jaya Industrial Estate - Prai Penang 13700 - MY - -70-B3-D5 (hex) TechSigno srl -0A2000-0A2FFF (base 16) TechSigno srl - Via Giovanni Paolo II, 3 - Udiner UD 33100 - IT - -70-B3-D5 (hex) Neuron GmbH -E1B000-E1BFFF (base 16) Neuron GmbH - Badenerstrasse 9 - Brugg 5200 - CH - -70-B3-D5 (hex) HAVELSAN A.Ş. -096000-096FFF (base 16) HAVELSAN A.Ş. - Mustafa Kemal Mah. 2120.Cad. No.39 - ANKARA 06510 - TR - -70-B3-D5 (hex) YG COMPANY CO., LTD -63F000-63FFFF (base 16) YG COMPANY CO., LTD - 65, Techno 3-ro - Daejeon Yuseong-gu 34016 - KR - -70-B3-D5 (hex) Selex ES Inc. -F5E000-F5EFFF (base 16) Selex ES Inc. - 4221 Tudor Lane - Greensboro NC 27410 - US - -70-B3-D5 (hex) DIMASTEC GESTAO DE PONTO E ACESSO EIRELI-ME -F8F000-F8FFFF (base 16) DIMASTEC GESTAO DE PONTO E ACESSO EIRELI-ME - Praça Rotary Club, 355 - Ribeirão Preto São Paulo 14021-355 - BR - -70-B3-D5 (hex) Savari Inc -207000-207FFF (base 16) Savari Inc - 2005 De la cruz blvd, st 111, - santa clara CA 95050 - US - -70-B3-D5 (hex) QIAGEN Instruments AG -A29000-A29FFF (base 16) QIAGEN Instruments AG - Garstligweg 8 - Hombrechtikon Zurich 8634 - CH - -70-B3-D5 (hex) ONDEMAND LABORATORY Co., Ltd. -069000-069FFF (base 16) ONDEMAND LABORATORY Co., Ltd. - Daiba 449 Space 369 Building 2F - Mishima Shizuoka 411-0803 - JP - -70-B3-D5 (hex) EPSOFT Co., Ltd -A3A000-A3AFFF (base 16) EPSOFT Co., Ltd - 301, Bupyeong-daero, Bupyeong-gu - Incheon 21315 - KR - -70-B3-D5 (hex) Emergency Lighting Products Limited -480000-480FFF (base 16) Emergency Lighting Products Limited - Gillmans Industrial Estate, Natts Lane - Billingshurst RH14 9EZ +70-B3-D5 (hex) Exi Flow Measurement Ltd +AAF000-AAFFFF (base 16) Exi Flow Measurement Ltd + Unit 22 Ford Lane business Park + Ford, ARUNDEL West Sussex BN164HP GB -70-B3-D5 (hex) CSM MACHINERY srl -FE3000-FE3FFF (base 16) CSM MACHINERY srl - Via Cadore Mare, 25 - Cimetta di Codognè Treviso 31013 - IT +70-B3-D5 (hex) OÜ ELIKO Tehnoloogia Arenduskeskus +D4A000-D4AFFF (base 16) OÜ ELIKO Tehnoloogia Arenduskeskus + Mäealuse 2/1 + Tallinn Harju 12618 + EE -70-B3-D5 (hex) X-Laser LLC -711000-711FFF (base 16) X-Laser LLC - 9125 Whiskey Bottom Rd Ste A - Laurel MD 20723 - US +70-B3-D5 (hex) SEASON DESIGN TECHNOLOGY +2C9000-2C9FFF (base 16) SEASON DESIGN TECHNOLOGY + FLOOR 4, WARDS EXCHANGE, 199 ECCLESALL ROAD + SHEFFIELD SOUTH YORKSHIRE S11 8HW + GB -70-B3-D5 (hex) GS Elektromedizinsiche Geräte G. Stemple GmbH -144000-144FFF (base 16) GS Elektromedizinsiche Geräte G. Stemple GmbH - Hauswiesenstr. 26 - Kaufering Bayern 86916 - DE +70-B3-D5 (hex) BCD Audio +728000-728FFF (base 16) BCD Audio + 5 Bristol Way, Stoke Gardens + Slough Berkshire SL1 3QE + GB -70-B3-D5 (hex) NESA SRL -BFA000-BFAFFF (base 16) NESA SRL - Via Sartori, 6/8 - Vidor Treviso 31020 - IT +70-B3-D5 (hex) Resolution Systems +D89000-D89FFF (base 16) Resolution Systems + 1/214 Greenhill Rd + Eastwood South Australia 6063 + AU -70-B3-D5 (hex) Renesas Electronics -340000-340FFF (base 16) Renesas Electronics - 2801 Scott Blvd - Santa Clara CA 95050 - US - -70-B3-D5 (hex) AEM Singapore Pte. Ltd. -AC1000-AC1FFF (base 16) AEM Singapore Pte. Ltd. - 52 Serangoon North Ave 4 - Singapore Singapore 555853 - SG - -70-B3-D5 (hex) Planewave Instruments -CB4000-CB4FFF (base 16) Planewave Instruments - 1819 Kona Dr. - Compton CA 90220 - US - -70-B3-D5 (hex) Avionica -611000-611FFF (base 16) Avionica - 9941 West Jessamine St - Miami FL 33157 - US - -70-B3-D5 (hex) ELDES -9A0000-9A0FFF (base 16) ELDES - Ukmerges 283B - Vilnius 06313 - LT - -70-B3-D5 (hex) Intesens -B17000-B17FFF (base 16) Intesens - 425 rue Jean Rostand - labege 31670 - FR - -70-B3-D5 (hex) Avant Technologies, Inc -410000-410FFF (base 16) Avant Technologies, Inc - Road 156 Caguas West Ind. Park bldg 39 - Caguas PR 00726 - US - -70-B3-D5 (hex) Lab241 Co.,Ltd. -21B000-21BFFF (base 16) Lab241 Co.,Ltd. - 25Dong 241Ho, 97, Siheung-daero, Geumcheon-gu - Seoul Seoul 08639 +70-B3-D5 (hex) WARECUBE,INC +F06000-F06FFF (base 16) WARECUBE,INC + #A-811, 142-10, Saneop-ro, 156beon-gil, Gwonseon-gu + Suwon-si 16648 KR -70-B3-D5 (hex) HEITEC AG -228000-228FFF (base 16) HEITEC AG - Dr.-Otto-Leich-Str. 16 - Eckental Bavaria 90542 - DE - -70-B3-D5 (hex) Alere Technologies AS -2AE000-2AEFFF (base 16) Alere Technologies AS - Kjelsaasveien 161 - Oslo Oslo 0382 - NO - -70-B3-D5 (hex) Insitu, Inc -B3B000-B3BFFF (base 16) Insitu, Inc - 118 E Columbia River Way - Bingen WA 98605 +70-B3-D5 (hex) Roxford +651000-651FFF (base 16) Roxford + PO Box 231851 + Encinitas CA 92023-1851 US -70-B3-D5 (hex) MatchX GmbH -1CB000-1CBFFF (base 16) MatchX GmbH - Adalbert Str.8 - Berlin 10999 +70-B3-D5 (hex) Scenario Automation +8B4000-8B4FFF (base 16) Scenario Automation + Rua Paulo Elias, 216 + São Carlos São Paulo 13564400 + BR + +70-B3-D5 (hex) Talleres de Escoriaza SA +532000-532FFF (base 16) Talleres de Escoriaza SA + Barrio Ventas, 35 + Irun Gipuzkoa 20305 + ES + +70-B3-D5 (hex) MB connect line GmbH Fernwartungssysteme +8D9000-8D9FFF (base 16) MB connect line GmbH Fernwartungssysteme + Winnettener Straße 6 + Dinkelsbuehl Bavaria 91550 DE -70-B3-D5 (hex) Metrum Sweden AB -F98000-F98FFF (base 16) Metrum Sweden AB - Anders Personsgatan 16 - Goteborg 41664 - SE - -70-B3-D5 (hex) Private -DE9000-DE9FFF (base 16) Private - 70-B3-D5 (hex) Schildknecht AG 494000-494FFF (base 16) Schildknecht AG Haugweg 26 @@ -6011,12 +6146,6 @@ FCF000-FCFFFF (base 16) Acc+Ess Ltd Centurion Gauteng 0157 ZA -70-B3-D5 (hex) Triax A/S -D7E000-D7EFFF (base 16) Triax A/S - Bjornkaervej 3 - Hornsyld Denmark 8783 - DK - 70-B3-D5 (hex) IntelliDesign Pty Ltd 061000-061FFF (base 16) IntelliDesign Pty Ltd 99 Bluestone Circuit @@ -6161,12 +6290,6 @@ E3B000-E3BFFF (base 16) ComNav Technology Ltd. Shanghai Shanghai 201103 CN -70-B3-D5 (hex) Sierra Nevada Corporation -339000-339FFF (base 16) Sierra Nevada Corporation - 444 Salomon Circle - Sparks NV 89434 - US - 70-B3-D5 (hex) StromIdee GmbH 703000-703FFF (base 16) StromIdee GmbH Walzmühlestrasse 51 @@ -6650,12 +6773,6 @@ F2B000-F2BFFF (base 16) SENSYS GmbH Halmstad Halland 30241 SE -70-B3-D5 (hex) Triax A/S -941000-941FFF (base 16) Triax A/S - Bjørnkærvej 3 - Hornsyld 8783 - DK - 70-B3-D5 (hex) Cyberteam Sp z o o 36D000-36DFFF (base 16) Cyberteam Sp z o o Kalinowice 157 @@ -6908,12 +7025,6 @@ B3D000-B3DFFF (base 16) Inras GmbH Linz Oberösterreich A-4040 AT -00-1B-C5 (hex) Triax A/S -0BB000-0BBFFF (base 16) Triax A/S - Bjornskærvej 3 - Hornsyld Denmark 8783 - US - 00-1B-C5 (hex) Roslen Eco-Networking Products 0B1000-0B1FFF (base 16) Roslen Eco-Networking Products 2010 Vada Ranch Road @@ -8573,6 +8684,96 @@ CFE000-CFEFFF (base 16) Secturion Systems Centerville UT 84014 US +70-B3-D5 (hex) PHB Eletronica Ltda. +904000-904FFF (base 16) PHB Eletronica Ltda. + Aroaba St., 129 + São Paulo 05315-020 + BR + +70-B3-D5 (hex) SoftLab-NSK +555000-555FFF (base 16) SoftLab-NSK + Pr.Koptjuga 1 + Novosibirsk 630090 + RU + +70-B3-D5 (hex) TIAMA +BA3000-BA3FFF (base 16) TIAMA + ZA des Plattes - 1 Chemin des Plattes + VOURLES 69390 + FR + +70-B3-D5 (hex) SAICE +FB7000-FB7FFF (base 16) SAICE + 5-23-1 + Shinagawa Higashi-Gotanda Tokyo 141-0022 + JP + +70-B3-D5 (hex) Core Balance Co., Ltd. +D5F000-D5FFFF (base 16) Core Balance Co., Ltd. + #1807, #1808, 308-4, Seongsu-dong 2-ga, Seongdong-gu + Seoul 04781 + KR + +70-B3-D5 (hex) Triax A/S +D7E000-D7EFFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +00-1B-C5 (hex) Triax A/S +0BB000-0BBFFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +70-B3-D5 (hex) Triax A/S +941000-941FFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +70-B3-D5 (hex) Agramkow Fluid Systems A/S +4AF000-4AFFFF (base 16) Agramkow Fluid Systems A/S + Augustenborg Landevej 19 + Soenderborg DK 6400 + DK + +70-B3-D5 (hex) PULLNET TECHNOLOGY, SA DE CV SSC1012302S73 +70A000-70AFFF (base 16) PULLNET TECHNOLOGY, SA DE CV SSC1012302S73 + LUZ SAVIÑON 2007 + BENITO JUAREZ CIUDAD DE MEXICO 03020 + MX + +70-B3-D5 (hex) Systems With Intelligence Inc. +93E000-93EFFF (base 16) Systems With Intelligence Inc. + 6889 Rexwood Road, Unit 9 + Mississauga Ontario L4V 1R2 + CA + +70-B3-D5 (hex) ENTEC Electric & Electronic Co., LTD. +E0B000-E0BFFF (base 16) ENTEC Electric & Electronic Co., LTD. + 78-2 Buncheon-ri, Bongdam-eup + Hwaseong-city Gyungki-do 445-894 + KR + +70-B3-D5 (hex) Labtronik s.r.l. +6C1000-6C1FFF (base 16) Labtronik s.r.l. + Via di Cervara 49 + Rome Italy 00155 + IT + +70-B3-D5 (hex) Nautel Limited +87C000-87CFFF (base 16) Nautel Limited + 10089 Peggy's Cove Road + Hackett's Cove Nova Scotia B3Z3J4 + CA + +70-B3-D5 (hex) Biovigil Hygiene Technologies +DB1000-DB1FFF (base 16) Biovigil Hygiene Technologies + 924 N. Main st., Suite 2 + Ann Arbor MI 48104 + US + 70-B3-D5 (hex) Shenzhen INVT Electric Co.,Ltd 1D0000-1D0FFF (base 16) Shenzhen INVT Electric Co.,Ltd INVT Bldg., GaoFa Scientific Park, Longjing, Nanshan, Shenzhen. @@ -8687,6 +8888,102 @@ BB9000-BB9FFF (base 16) KOSMEK.Ltd Plymouth MI 48170 US +70-B3-D5 (hex) Shanghai YuanAn Environmental Protection Technology Co.,Ltd +6D8000-6D8FFF (base 16) Shanghai YuanAn Environmental Protection Technology Co.,Ltd + Rm213/225,Oriental Pearl European City,No 285 East luochuan Road + Shanghai Shanghai 200072 + CN + +70-B3-D5 (hex) ST Aerospace Systems +27F000-27FFFF (base 16) ST Aerospace Systems + 505A Airport Road Paya Lebar + Singapore Singapore 539934 + SG + +70-B3-D5 (hex) Sierra Nevada Corporation +339000-339FFF (base 16) Sierra Nevada Corporation + 444 Salomon Circle + Sparks NV 89434 + US + +70-B3-D5 (hex) Hi Tech Systems Ltd +4B4000-4B4FFF (base 16) Hi Tech Systems Ltd + Holbrook House, Oakley Lane + Basingstoke Hampshire RG23 7JY + GB + +70-B3-D5 (hex) Hermann Lümmen GmbH +D4B000-D4BFFF (base 16) Hermann Lümmen GmbH + Biberweg 32 + Troisdorf 53842 + DE + +70-B3-D5 (hex) DEUTA-WERKE GmbH +EF5000-EF5FFF (base 16) DEUTA-WERKE GmbH + Paffrather Str. 140 + Bergisch Gladbach North Rhine-Westphalia 51465 + DE + +70-B3-D5 (hex) BigStuff3, Inc. +64E000-64EFFF (base 16) BigStuff3, Inc. + 4352 Fenton Rd + Hartland MI 48353 + US + +70-B3-D5 (hex) Teko Telecom Srl +29C000-29CFFF (base 16) Teko Telecom Srl + via Meucci 24/a + Castel San Pietro Terme Bologna 40024 + IT + +70-B3-D5 (hex) Henrich Electronics Corporation +436000-436FFF (base 16) Henrich Electronics Corporation + 225 Deming Place + Westmont IL 60559 + US + +70-B3-D5 (hex) Cubitech +7D0000-7D0FFF (base 16) Cubitech + Likourgou 9 + Athens 17676 + GR + +70-B3-D5 (hex) Euklis by GSG International +AD8000-AD8FFF (base 16) Euklis by GSG International + via Colombo 23 + Trezzano sul Naviglio MI 20090 + IT + +70-B3-D5 (hex) Chengdu Cove Technology CO.,LTD +24E000-24EFFF (base 16) Chengdu Cove Technology CO.,LTD + 6-419, Hi-tech Incubation Park, No.1480 Tianfu Ave + Chengdu Sichuan 610000 + CN + +70-B3-D5 (hex) Star Systems International +5EF000-5EFFFF (base 16) Star Systems International + Unit 04, 12/F Vanta Industrial Centre, 21-33 Tai Lin Pai Road + Kwai Chung 852 + HK + +70-B3-D5 (hex) ZAO ZEO +B43000-B43FFF (base 16) ZAO ZEO + Khachaturiana 14a + Moscow 127562 + RU + +70-B3-D5 (hex) Robotelf Technologies (Chengdu) Co., Ltd. +1A6000-1A6FFF (base 16) Robotelf Technologies (Chengdu) Co., Ltd. + N3-4-1-1914, Global Center, No. 1700, Tianfu Road North, High-rech Zone + Chengdu City Sichuan 610041 + CN + +70-B3-D5 (hex) LG Electronics +257000-257FFF (base 16) LG Electronics + 10, Magokjungang 10-ro, Gangseo-gu + Seoul 07796 + KR + 70-B3-D5 (hex) Innitive B.V. 66B000-66BFFF (base 16) Innitive B.V. Brouwerijstraat 20 @@ -10085,18 +10382,6 @@ A66000-A66FFF (base 16) Trapeze Software Group Inc Sankt-Peterburg 197348 RU -70-B3-D5 (hex) Sicon srl -36C000-36CFFF (base 16) Sicon srl - Via Sila 1/3 - Isola Vicentina Vicenza 36033 - IT - -70-B3-D5 (hex) Sicon srl -04D000-04DFFF (base 16) Sicon srl - Via Sila 1/3 - Isola Vicentina Vicenza 36033 - IT - 70-B3-D5 (hex) Bionics co.,ltd. A78000-A78FFF (base 16) Bionics co.,ltd. Honmachi 1chome 2-1 Honmachi-riverside-bill 2F @@ -10145,12 +10430,6 @@ D63000-D63FFF (base 16) CRDE Dresden Saxony 01069 DE -70-B3-D5 (hex) Triax A/S -C9F000-C9FFFF (base 16) Triax A/S - Bjornkaervej 3 - Hornsyld Denmark 8783 - DK - 70-B3-D5 (hex) Aplex Technology Inc. 8E4000-8E4FFF (base 16) Aplex Technology Inc. 2nd Floor,Tower3,District5,HongHuaLing industrial park, Nanshan District @@ -10772,12 +11051,6 @@ FBF000-FBFFFF (base 16) SenSys (Design Electronics Ltd) MAIRANO BRESCIA 25030 IT -70-B3-D5 (hex) Sicon srl -D37000-D37FFF (base 16) Sicon srl - Via Sila 1/3 - Isola Vicentina Vicenza 36033 - IT - 70-B3-D5 (hex) DoWoo Digitech 039000-039FFF (base 16) DoWoo Digitech A-706ho,Ssangyong IT Twintower, dunchondaero, JungWon-Gu @@ -11318,11 +11591,11 @@ BA2000-BA2FFF (base 16) MAMAC Systems, Inc. West Burleigh Queensland 4219 AU -70-B3-D5 (hex) ELVA-1 MICROWAVE HANDELSBOLAG -FA3000-FA3FFF (base 16) ELVA-1 MICROWAVE HANDELSBOLAG - c/o Hornlund, Kungsgatan 54 - Furulund 244 62 - SE +70-B3-D5 (hex) Preston Industries dba PolyScience +3B5000-3B5FFF (base 16) Preston Industries dba PolyScience + 6600 W. Touhy Ave + Niles IL 60714-4588 + US 70-B3-D5 (hex) Collini Dienstleistungs GmbH C67000-C67FFF (base 16) Collini Dienstleistungs GmbH @@ -11330,6 +11603,12 @@ C67000-C67FFF (base 16) Collini Dienstleistungs GmbH Hohenems A 6845 AT +70-B3-D5 (hex) Fire4 Systems UK Ltd +E69000-E69FFF (base 16) Fire4 Systems UK Ltd + 8 Regent Street + Leeds West Yorkshire LS7 4PE + GB + 70-B3-D5 (hex) Richard Paul Russell Ltd 98B000-98BFFF (base 16) Richard Paul Russell Ltd The Lodge, Unit 1 Barnes Farm Business Park @@ -11342,24 +11621,132 @@ AEB000-AEBFFF (base 16) Association Romandix Lausanne Vaud 1004 CH -70-B3-D5 (hex) Special Services Group, LLC -0F8000-0F8FFF (base 16) Special Services Group, LLC - PO Box 825 - Denair CA 95316 - US - 70-B3-D5 (hex) Divigraph (Pty) LTD A86000-A86FFF (base 16) Divigraph (Pty) LTD Postnet Suite 72, Private Bag X7 Chempet 7442 ZA -70-B3-D5 (hex) Tunstall A/S -A17000-A17FFF (base 16) Tunstall A/S - Niels Bohrs vej 42 - Stilling Skanderborg 8660 +70-B3-D5 (hex) RealD +CCB000-CCBFFF (base 16) RealD + 5700 Flatiron Parkway + Boulder CO 80301 + US + +70-B3-D5 (hex) Melecs EWS GmbH +704000-704FFF (base 16) Melecs EWS GmbH + GZO-Technologiestrasse 1 + Siegendorf 7011 + AT + +70-B3-D5 (hex) Raft Technologies +8D0000-8D0FFF (base 16) Raft Technologies + Habarzel 25 + Tel aviv 6971035 + IL + +70-B3-D5 (hex) Jacarta Ltd +09B000-09BFFF (base 16) Jacarta Ltd + Wagon Yard, London Road + Marlborough SN8 1LH + GB + +70-B3-D5 (hex) APP Engineering, Inc. +049000-049FFF (base 16) APP Engineering, Inc. + 5234 Elmwood Avenue + Indianapolis IN 46203 + US + +70-B3-D5 (hex) Hangzhou AwareTec Technology Co., Ltd +5DE000-5DEFFF (base 16) Hangzhou AwareTec Technology Co., Ltd + 6th Floor,Building 2,No.307 Liuhe Road,Binjiang District,Hangzhou 城市: Hangzhou + Hangzhou Zhejiang 310000 + CN + +70-B3-D5 (hex) ELEUSI GmbH +1CD000-1CDFFF (base 16) ELEUSI GmbH + Rottendorferstrasse 1 + Feldkirchen Kaernten 9560 + AT + +70-B3-D5 (hex) Sicon srl +04D000-04DFFF (base 16) Sicon srl + Via Sila 1/3 + Isola Vicentina Vicenza 36033 + IT + +70-B3-D5 (hex) Sicon srl +36C000-36CFFF (base 16) Sicon srl + Via Sila 1/3 + Isola Vicentina Vicenza 36033 + IT + +70-B3-D5 (hex) ERA a.s. +A90000-A90FFF (base 16) ERA a.s. + Prumyslova 462 + Pardubice 53003 + CZ + +70-B3-D5 (hex) Wimate Technology Solutions Private Limited +253000-253FFF (base 16) Wimate Technology Solutions Private Limited + 96, 34th B cross, 16th Main, Jayanagar 4th T block + Bangalore Karnataka 560041 + IN + +70-B3-D5 (hex) ioThings +993000-993FFF (base 16) ioThings + Past. Debijestraat 42 + Hegelsom Limburg 5963AG + NL + +70-B3-D5 (hex) Guangzhou Male Industrial Animation Technology Co.,Ltd. +0D4000-0D4FFF (base 16) Guangzhou Male Industrial Animation Technology Co.,Ltd. + 4/F,Block A, 23 Huancun Road,Dalong Street, Panyu District,Guangzhou City + Guangzhou City Guangdong Province 514000 + CN + +70-B3-D5 (hex) Zigencorp, Inc +739000-739FFF (base 16) Zigencorp, Inc + 6934 Canby Avenue 107 + Reseda CA 91335 + US + +70-B3-D5 (hex) FlowNet LLC +526000-526FFF (base 16) FlowNet LLC + 580 Lake Ave + Lancaster NY 14086 + US + +70-B3-D5 (hex) Urbana Smart Solutions Pte Ltd +224000-224FFF (base 16) Urbana Smart Solutions Pte Ltd + 6 Eu Tong Sen Street #06-20 The Central + Singapore 059817 + SG + +70-B3-D5 (hex) OnYield Inc Ltd +B74000-B74FFF (base 16) OnYield Inc Ltd + 814 Houston Centre, 63 Mody Road + Kowloon TST East + HK + +70-B3-D5 (hex) SonoSound ApS +656000-656FFF (base 16) SonoSound ApS + Malov Byvej 229 + Malov Hovedstaden 2760 DK +70-B3-D5 (hex) Granite River Labs Inc +749000-749FFF (base 16) Granite River Labs Inc + 3500 Thomas Rd # A, + Santa Clara 95054 + US + +70-B3-D5 (hex) CT Company +3AD000-3ADFFF (base 16) CT Company + Godovikova , 9, Moscow + Moscow RUSSIA 129085 + RU + 70-B3-D5 (hex) Saline Lectronics, Inc. 246000-246FFF (base 16) Saline Lectronics, Inc. 710 N Maple Rd @@ -11462,23 +11849,23 @@ AF2000-AF2FFF (base 16) True Networks Ltd. Baltimore MD 21230 US -70-B3-D5 (hex) HGH SYSTEMES INFRAROUGES -853000-853FFF (base 16) HGH SYSTEMES INFRAROUGES - 10 Rue Maryse Bastié - Igny IDF 91430 - FR - 70-B3-D5 (hex) Shenzhen bayue software co. LTD 784000-784FFF (base 16) Shenzhen bayue software co. LTD B301, second phase of China merchants street technology building, nanshan district ShenZhen 518000 CN -70-B3-D5 (hex) Preston Industries dba PolyScience -3B5000-3B5FFF (base 16) Preston Industries dba PolyScience - 6600 W. Touhy Ave - Niles IL 60714-4588 - US +70-B3-D5 (hex) ELVA-1 MICROWAVE HANDELSBOLAG +FA3000-FA3FFF (base 16) ELVA-1 MICROWAVE HANDELSBOLAG + c/o Hornlund, Kungsgatan 54 + Furulund 244 62 + SE + +70-B3-D5 (hex) HGH SYSTEMES INFRAROUGES +853000-853FFF (base 16) HGH SYSTEMES INFRAROUGES + 10 Rue Maryse Bastié + Igny IDF 91430 + FR 70-B3-D5 (hex) KMtronic ltd 0AF000-0AFFFF (base 16) KMtronic ltd @@ -11492,35 +11879,65 @@ AF2000-AF2FFF (base 16) True Networks Ltd. Palo Alto 94301 US -70-B3-D5 (hex) Fire4 Systems UK Ltd -E69000-E69FFF (base 16) Fire4 Systems UK Ltd - 8 Regent Street - Leeds West Yorkshire LS7 4PE - GB - -70-B3-D5 (hex) RealD -CCB000-CCBFFF (base 16) RealD - 5700 Flatiron Parkway - Boulder CO 80301 +70-B3-D5 (hex) Special Services Group, LLC +0F8000-0F8FFF (base 16) Special Services Group, LLC + PO Box 825 + Denair CA 95316 US -70-B3-D5 (hex) Melecs EWS GmbH -704000-704FFF (base 16) Melecs EWS GmbH - GZO-Technologiestrasse 1 - Siegendorf 7011 +70-B3-D5 (hex) Tunstall A/S +A17000-A17FFF (base 16) Tunstall A/S + Niels Bohrs vej 42 + Stilling Skanderborg 8660 + DK + +70-B3-D5 (hex) Triax A/S +C9F000-C9FFFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +70-B3-D5 (hex) Gedomo GmbH +7D7000-7D7FFF (base 16) Gedomo GmbH + Erlacker 483 + Poellau bei Hartberg Steiermark 8225 AT -70-B3-D5 (hex) Raft Technologies -8D0000-8D0FFF (base 16) Raft Technologies - Habarzel 25 - Tel aviv 6971035 - IL +70-B3-D5 (hex) Sicon srl +D37000-D37FFF (base 16) Sicon srl + Via Sila 1/3 + Isola Vicentina Vicenza 36033 + IT -70-B3-D5 (hex) Jacarta Ltd -09B000-09BFFF (base 16) Jacarta Ltd - Wagon Yard, London Road - Marlborough SN8 1LH - GB +70-B3-D5 (hex) Contec DTx +8B7000-8B7FFF (base 16) Contec DTx + 1800 Penn St Suite 1 + Melbourne FL 32901 + US + +70-B3-D5 (hex) HZHY TECHNOLOGY +4A6000-4A6FFF (base 16) HZHY TECHNOLOGY + The 2th floor,Longzeyuan Multi-use + beijing 102208 + CN + +70-B3-D5 (hex) Mesa Labs, Inc. +23A000-23AFFF (base 16) Mesa Labs, Inc. + 12100 West 6th Ave. + Lakewood CO 80228 + US + +70-B3-D5 (hex) De Haardt bv +CA2000-CA2FFF (base 16) De Haardt bv + Marithaime 6 + Elst 6662 WD + NL + +70-B3-D5 (hex) Colorimetry Research, Inc +10E000-10EFFF (base 16) Colorimetry Research, Inc + 26612 Heirloom Place + Santa Clarita CA 91350 + US 70-B3-D5 (hex) EMAC, Inc. 8AB000-8ABFFF (base 16) EMAC, Inc. @@ -12065,12 +12482,6 @@ C97000-C97FFF (base 16) CSINFOTEL Daejeon Republic of Korea 305-340 KR -70-B3-D5 (hex) Riegl Laser Measurement Systems GmbH -F10000-F10FFF (base 16) Riegl Laser Measurement Systems GmbH - Riedenburgstrasse 48 - Horn Lower Austria 3580 - AT - 70-B3-D5 (hex) Twoway Communications, Inc. 4AA000-4AAFFF (base 16) Twoway Communications, Inc. 41 Wu Kung 6 Rd., New Taipei Industrial Park, New Taipei City,24891,Taiwan,R.O.C. @@ -12917,12 +13328,6 @@ AE1000-AE1FFF (base 16) DimoCore Corporation Dachau 85221 DE -70-B3-D5 (hex) Sicon srl -30C000-30CFFF (base 16) Sicon srl - Via Sila 1/3 - Isola Vicentina Vicenza 36033 - IT - 70-B3-D5 (hex) ANTEK GmbH 90C000-90CFFF (base 16) ANTEK GmbH Im Koechersgrund 3 @@ -13205,12 +13610,6 @@ CCC000-CCCFFF (base 16) AEC s.r.l. Creazzo Vicenza 36051 IT -70-B3-D5 (hex) Sicon srl -3B2000-3B2FFF (base 16) Sicon srl - Via Sila 1/3 - Isola Vicentina Vicenza 36033 - IT - 70-B3-D5 (hex) GWF MessSysteme AG 387000-387FFF (base 16) GWF MessSysteme AG Obergrundstrasse 119 @@ -13403,6 +13802,393 @@ F95000-F95FFF (base 16) Get SAT Casazza Lombardia 24060 IT +70-B3-D5 (hex) SureFlap Ltd +F9C000-F9CFFF (base 16) SureFlap Ltd + 7 The Irwin Centre, Scotland Road, Dry Drayton + Cambridge Cambridgeshire CB23 8AR + GB + +70-B3-D5 (hex) Private +279000-279FFF (base 16) Private + +70-B3-D5 (hex) NETWAYS GmbH +73D000-73DFFF (base 16) NETWAYS GmbH + Deutschherrnstraße 15 + Nürnberg 90429 + DE + +70-B3-D5 (hex) The Dini Group, La Jolla inc. +678000-678FFF (base 16) The Dini Group, La Jolla inc. + 7469 Draper Ave. + La Jolla CA 92037 + US + +70-B3-D5 (hex) Uwinloc +D6B000-D6BFFF (base 16) Uwinloc + 57 Avenue Jean Monnet + Colomiers 31770 + FR + +70-B3-D5 (hex) PHPower Srl +A3F000-A3FFFF (base 16) PHPower Srl + Via Borgonuovo 27 + Milano MI 20121 + IT + +70-B3-D5 (hex) Rtone +5F3000-5F3FFF (base 16) Rtone + 120 rue de Saint cyr + Lyon 69009 + FR + +70-B3-D5 (hex) FreeFlight Systems +5F6000-5F6FFF (base 16) FreeFlight Systems + 8150 Springwood Drive, Suite 100 + Irving TX 75063 + US + +70-B3-D5 (hex) MI Inc. +D26000-D26FFF (base 16) MI Inc. + 6F, Toto building, 5-1-4, Toranomon, Minato-ku + Tokyo 1050001 + JP + +70-B3-D5 (hex) TOSEI ENGINEERING CORP. +24B000-24BFFF (base 16) TOSEI ENGINEERING CORP. + 4-6, Higashi-Nakanuki-machi + Tsuchiura-city Ibaraki 300-0006 + JP + +70-B3-D5 (hex) Maharsystem +72E000-72EFFF (base 16) Maharsystem + No 1, 5th Alley ,Ozgol , Artesh Blvd + Tehran Tehran 1694937141 + IR + +70-B3-D5 (hex) Cannex Technology Inc. +CD1000-CD1FFF (base 16) Cannex Technology Inc. + No.182, Sec.2, Yuanlu Rd. + Sihu Changhua 51449 + TW + +70-B3-D5 (hex) Mettler Toledo +4FC000-4FCFFF (base 16) Mettler Toledo + 6005 Benjamin Road + Tampa FL 33634 + US + +70-B3-D5 (hex) NAS Australia P/L +E91000-E91FFF (base 16) NAS Australia P/L + 28 Newstead Terrace + Newstead QLD 4006 + AU + +70-B3-D5 (hex) Toughdog Security Systems +A32000-A32FFF (base 16) Toughdog Security Systems + 1317 E Hackberry Ave + McAllen TX 78501 + US + +70-B3-D5 (hex) Lode BV +716000-716FFF (base 16) Lode BV + Zernikepark 16 + Groningen 9747 AN + NL + +70-B3-D5 (hex) Fater Rasa Noor +5F1000-5F1FFF (base 16) Fater Rasa Noor + Damavand St. , Between Khaghani and Ayat station, Hadi Building, no.499, second floor + Tehran Tehran 0098 + IR + +70-B3-D5 (hex) Schneider Electric Motion USA +153000-153FFF (base 16) Schneider Electric Motion USA + 370 N. Main St. + Marlborough CT 06447 + US + +70-B3-D5 (hex) BioBusiness +A08000-A08FFF (base 16) BioBusiness + 4 Elsafwa Towers, Ellebiny st, Mariutia Haram + Giza Cairo 12111 + EG + +70-B3-D5 (hex) nyantec GmbH +C6F000-C6FFFF (base 16) nyantec GmbH + Europaplatz 2 + Berlin 10557 + DE + +70-B3-D5 (hex) CE LINK LIMITED +547000-547FFF (base 16) CE LINK LIMITED + 2/F, Building G, Licheng Tech. Ind. Zone + Shenzhen Guangdong 518104 + CN + +70-B3-D5 (hex) Embedded Arts Co., Ltd. +0C6000-0C6FFF (base 16) Embedded Arts Co., Ltd. + 1-1-6 Ryousoutuuun Bldg. 2F + Kisarazu-shi Chiba 292-0067 + JP + +70-B3-D5 (hex) IDEM INC. +DC6000-DC6FFF (base 16) IDEM INC. + 17302 Daimler St. STE A + Irvine CA 92614 + US + +70-B3-D5 (hex) JL World Corporation Limited +D54000-D54FFF (base 16) JL World Corporation Limited + Unit 20, 5/F., Block B, Proficient Industrial Centre + Kowloon Bay 0000 + HK + +70-B3-D5 (hex) Landis Gyr +0B6000-0B6FFF (base 16) Landis Gyr + Hasdrubal Bellegard, 400, CIC + Curitiba Paraná 81460120 + BR + +70-B3-D5 (hex) Ofil USA +9E2000-9E2FFF (base 16) Ofil USA + 5415 Sugarloaf Parkway Suite 1102 A&B + Lawrenceville GA 30043 + US + +70-B3-D5 (hex) WeWork Companies, Inc. +2CC000-2CCFFF (base 16) WeWork Companies, Inc. + 115 W 18th St + New York NY 10011 + US + +70-B3-D5 (hex) Hagenuk KMT Kabelmesstechnik GmbH +132000-132FFF (base 16) Hagenuk KMT Kabelmesstechnik GmbH + Röderaue 41 + Radeburg Sachsen 01471 + DE + +70-B3-D5 (hex) Critical Link LLC +D5C000-D5CFFF (base 16) Critical Link LLC + 6712 Brooklawn Parkway + Syracuse 13211 + US + +70-B3-D5 (hex) Critical Link LLC +EF9000-EF9FFF (base 16) Critical Link LLC + 6712 Brooklawn Pkwy + Syracuse NY 13211 + US + +70-B3-D5 (hex) QUERCUS TECHNOLOGIES, S.L. +777000-777FFF (base 16) QUERCUS TECHNOLOGIES, S.L. + Av. Onze de Setembre 19 + Reus Tarragona 43203 + ES + +70-B3-D5 (hex) White Matter LLC +368000-368FFF (base 16) White Matter LLC + 999 3rd Ave 700 + Seattle 98104 + US + +70-B3-D5 (hex) iFreecomm Technology Co., Ltd +032000-032FFF (base 16) iFreecomm Technology Co., Ltd + D401, NO.16 Langshan Road, Nanshan District + Shenzhen Guangdong 518057 + CN + +70-B3-D5 (hex) RELISTE Ges.m.b.H. +1B9000-1B9FFF (base 16) RELISTE Ges.m.b.H. + Enzersdorfer Strasse 8-10 + Brunn am Gebirge 2345 + AT + +70-B3-D5 (hex) JUSTEK INC +EB5000-EB5FFF (base 16) JUSTEK INC + 613-9, DONGCHUN-RI, JINWI-MYEON + PYEONGTAEK-SI GYEONGGI-DO 17711 + KR + +70-B3-D5 (hex) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD +94A000-94AFFF (base 16) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD + No.826,Zone 1,Block B,Famous industrial product display purchasing center,Baoyuan Road,Xixiang,Bao'an Dis., Shenzhen,P.R.China + shenzhen China 518102 + CN + +70-B3-D5 (hex) Mo-Sys Engineering Ltd +075000-075FFF (base 16) Mo-Sys Engineering Ltd + Thames Bank House, Tunnel Avenue + London SE100PA + GB + +70-B3-D5 (hex) Abbas, a.s. +B18000-B18FFF (base 16) Abbas, a.s. + Edisonova 5 + Brno CZ 61200 + CZ + +70-B3-D5 (hex) Shanghai Holystar Information Technology Co.,Ltd +6E1000-6E1FFF (base 16) Shanghai Holystar Information Technology Co.,Ltd + 8F Building A3 NO.1528 Gumei Rd Shanghai China PR + shanghai 200233 + CN + +70-B3-D5 (hex) Mimo Networks +25D000-25DFFF (base 16) Mimo Networks + 701 E Middlefield Road Mountain View, + Mountain View CA 94043 + US + +70-B3-D5 (hex) ATBiS Co.,Ltd +C2F000-C2FFFF (base 16) ATBiS Co.,Ltd + #1603 5th. Ace High-end Tower, 226 Gasan Digital 1-ro, Geumcheon-gu + Seoul 08502 + KR + +70-B3-D5 (hex) Cyanview +E3A000-E3AFFF (base 16) Cyanview + 26, Rue de la Foire + Papignies 7861 + BE + +70-B3-D5 (hex) Valk Welding B.V. +5DA000-5DAFFF (base 16) Valk Welding B.V. + Staalindustrieweg 15 + Alblasserdam Zuid Holland 2952 AT + NL + +70-B3-D5 (hex) AdInte, inc. +BAC000-BACFFF (base 16) AdInte, inc. + 347-1, Shijo-cho, Shimogyo-ku, 7F CUBE Nishikarasuma BLDG. + Kyoto-shi Kyoto 6008441 + JP + +70-B3-D5 (hex) VITEC +CDA000-CDAFFF (base 16) VITEC + 99 rue pierre sémard + Chatillon France 92320 + FR + +70-B3-D5 (hex) Nortek Global HVAC +4D4000-4D4FFF (base 16) Nortek Global HVAC + Fens Pool Ave + Brierley Hill West Midlands DY5 1QA + GB + +70-B3-D5 (hex) Insitu, Inc +7AD000-7ADFFF (base 16) Insitu, Inc + 118 E Columbia River Way + Bingen WA 98605 + US + +70-B3-D5 (hex) KWS-Electronic GmbH +EB3000-EB3FFF (base 16) KWS-Electronic GmbH + Sportplatzstrasse 1 + Grosskarolinenfeld D-83109 + DE + +70-B3-D5 (hex) University Of Groningen +700000-700FFF (base 16) University Of Groningen + Broerstraat 5 + Groningen Groningen 9712 CP + NL + +70-B3-D5 (hex) Triton Electronics Ltd +7A5000-7A5FFF (base 16) Triton Electronics Ltd + Bigods Hall, Bigods Lane + DUNMOW Essex CM63BE + GB + +70-B3-D5 (hex) ETON Deutschland Electro Acoustic GmbH +213000-213FFF (base 16) ETON Deutschland Electro Acoustic GmbH + Pfaffenweg 21 + Neu-Ulm Bavaria 89231 + DE + +70-B3-D5 (hex) Globalcom Engineering SPA +A0D000-A0DFFF (base 16) Globalcom Engineering SPA + Via Volta 39 + CARDANO AL CAMPO VA 21010 + IT + +70-B3-D5 (hex) Monnit Corporation +236000-236FFF (base 16) Monnit Corporation + 3400 S West Temple + Salt Lake City 84115 + US + +70-B3-D5 (hex) Advice +810000-810FFF (base 16) Advice + 16 Atir Yeda St + Kfar Saba Not applicable 4464321 + IL + +70-B3-D5 (hex) Triax A/S +963000-963FFF (base 16) Triax A/S + Bjornkaervej 3 + Hornsyld Denmark 8783 + DK + +70-B3-D5 (hex) Sicon srl +30C000-30CFFF (base 16) Sicon srl + Via Sila 1/3 + Isola Vicentina Vicenza 36033 + IT + +70-B3-D5 (hex) Sicon srl +3B2000-3B2FFF (base 16) Sicon srl + Via Sila 1/3 + Isola Vicentina Vicenza 36033 + IT + +70-B3-D5 (hex) Sicon srl +A35000-A35FFF (base 16) Sicon srl + Via Sila 1/3 + Isola Vicentina Vicenza 36033 + IT + +70-B3-D5 (hex) G+D Mobile Security +024000-024FFF (base 16) G+D Mobile Security + C/ 114 nº 27, Polígon Pratenc + El Prat de Llobregat Barcelona E-08820 + ES + +70-B3-D5 (hex) Sicon srl +145000-145FFF (base 16) Sicon srl + Via Sila 1/3 + Isola Vicentina Vicenza 36033 + IT + +70-B3-D5 (hex) E-MetroTel +FF0000-FF0FFF (base 16) E-MetroTel + 2828 West Parker Unit B201 + Plano TX 75075 + US + +70-B3-D5 (hex) Silex Inside +3BA000-3BAFFF (base 16) Silex Inside + rue du bosquet 7 + LouvainlaNeuve Brabant 1348 + BE + +70-B3-D5 (hex) Yaham Optoelectronics Co., Ltd +2FE000-2FEFFF (base 16) Yaham Optoelectronics Co., Ltd + Bldg A & Bldg D, Yongwei Industrial Park,#118 Yongfu Rd, Qiaotou Community, Fuyong,Bao'an District,Shenzhen + Shenzhen Bao'an District/GuangDong 518103 + CN + +70-B3-D5 (hex) Shandong Hospot IOT Technology Co.,Ltd. +576000-576FFF (base 16) Shandong Hospot IOT Technology Co.,Ltd. + No.96 Road Fuyang + Rizhao Shandong 276800 + CN + +70-B3-D5 (hex) Brakels IT +54B000-54BFFF (base 16) Brakels IT + Veldboersweg 10a + Langeveen Overijssel 7679TL + NL + 70-B3-D5 (hex) Apantac LLC CD5000-CD5FFF (base 16) Apantac LLC 7556 SW Bridgeport Road @@ -13964,12 +14750,6 @@ D43000-D43FFF (base 16) EZSYS Co., Ltd. Gwangmyeong-si Gyeonggi-do 14322 KR -70-B3-D5 (hex) Sicon srl -A35000-A35FFF (base 16) Sicon srl - Via Sila 1/3 - Isola Vicentina Vicenza 36033 - IT - 70-B3-D5 (hex) Boutronic 359000-359FFF (base 16) Boutronic Edisonstraat 24 @@ -14024,305 +14804,32 @@ EC7000-EC7FFF (base 16) Neoptix Inc. Kosice-Krasna 04018 SK -70-B3-D5 (hex) SureFlap Ltd -F9C000-F9CFFF (base 16) SureFlap Ltd - 7 The Irwin Centre, Scotland Road, Dry Drayton - Cambridge Cambridgeshire CB23 8AR - GB - -70-B3-D5 (hex) Private -279000-279FFF (base 16) Private - -70-B3-D5 (hex) NETWAYS GmbH -73D000-73DFFF (base 16) NETWAYS GmbH - Deutschherrnstraße 15 - Nürnberg 90429 - DE - -70-B3-D5 (hex) The Dini Group, La Jolla inc. -678000-678FFF (base 16) The Dini Group, La Jolla inc. - 7469 Draper Ave. - La Jolla CA 92037 +70-B3-D5 (hex) Vitro Technology Corporation +F19000-F19FFF (base 16) Vitro Technology Corporation + Box 91232 + Austin TX 78709-1232 US -70-B3-D5 (hex) Uwinloc -D6B000-D6BFFF (base 16) Uwinloc - 57 Avenue Jean Monnet - Colomiers 31770 - FR - -70-B3-D5 (hex) PHPower Srl -A3F000-A3FFFF (base 16) PHPower Srl - Via Borgonuovo 27 - Milano MI 20121 - IT - -70-B3-D5 (hex) Rtone -5F3000-5F3FFF (base 16) Rtone - 120 rue de Saint cyr - Lyon 69009 - FR - -70-B3-D5 (hex) FreeFlight Systems -5F6000-5F6FFF (base 16) FreeFlight Systems - 8150 Springwood Drive, Suite 100 - Irving TX 75063 - US - -70-B3-D5 (hex) MI Inc. -D26000-D26FFF (base 16) MI Inc. - 6F, Toto building, 5-1-4, Toranomon, Minato-ku - Tokyo 1050001 - JP - -70-B3-D5 (hex) TOSEI ENGINEERING CORP. -24B000-24BFFF (base 16) TOSEI ENGINEERING CORP. - 4-6, Higashi-Nakanuki-machi - Tsuchiura-city Ibaraki 300-0006 - JP - -70-B3-D5 (hex) Maharsystem -72E000-72EFFF (base 16) Maharsystem - No 1, 5th Alley ,Ozgol , Artesh Blvd - Tehran Tehran 1694937141 - IR - -70-B3-D5 (hex) Cannex Technology Inc. -CD1000-CD1FFF (base 16) Cannex Technology Inc. - No.182, Sec.2, Yuanlu Rd. - Sihu Changhua 51449 - TW - -70-B3-D5 (hex) Mettler Toledo -4FC000-4FCFFF (base 16) Mettler Toledo - 6005 Benjamin Road - Tampa FL 33634 - US - -70-B3-D5 (hex) NAS Australia P/L -E91000-E91FFF (base 16) NAS Australia P/L - 28 Newstead Terrace - Newstead QLD 4006 - AU - -70-B3-D5 (hex) Toughdog Security Systems -A32000-A32FFF (base 16) Toughdog Security Systems - 1317 E Hackberry Ave - McAllen TX 78501 - US - -70-B3-D5 (hex) Lode BV -716000-716FFF (base 16) Lode BV - Zernikepark 16 - Groningen 9747 AN - NL - -70-B3-D5 (hex) Fater Rasa Noor -5F1000-5F1FFF (base 16) Fater Rasa Noor - Damavand St. , Between Khaghani and Ayat station, Hadi Building, no.499, second floor - Tehran Tehran 0098 - IR - -70-B3-D5 (hex) Schneider Electric Motion USA -153000-153FFF (base 16) Schneider Electric Motion USA - 370 N. Main St. - Marlborough CT 06447 - US - -70-B3-D5 (hex) BioBusiness -A08000-A08FFF (base 16) BioBusiness - 4 Elsafwa Towers, Ellebiny st, Mariutia Haram - Giza Cairo 12111 - EG - -70-B3-D5 (hex) nyantec GmbH -C6F000-C6FFFF (base 16) nyantec GmbH - Europaplatz 2 - Berlin 10557 - DE - -70-B3-D5 (hex) CE LINK LIMITED -547000-547FFF (base 16) CE LINK LIMITED - 2/F, Building G, Licheng Tech. Ind. Zone - Shenzhen Guangdong 518104 - CN - -70-B3-D5 (hex) Embedded Arts Co., Ltd. -0C6000-0C6FFF (base 16) Embedded Arts Co., Ltd. - 1-1-6 Ryousoutuuun Bldg. 2F - Kisarazu-shi Chiba 292-0067 - JP - -70-B3-D5 (hex) IDEM INC. -DC6000-DC6FFF (base 16) IDEM INC. - 17302 Daimler St. STE A - Irvine CA 92614 - US - -70-B3-D5 (hex) JL World Corporation Limited -D54000-D54FFF (base 16) JL World Corporation Limited - Unit 20, 5/F., Block B, Proficient Industrial Centre - Kowloon Bay 0000 - HK - -70-B3-D5 (hex) Landis Gyr -0B6000-0B6FFF (base 16) Landis Gyr - Hasdrubal Bellegard, 400, CIC - Curitiba Paraná 81460120 - BR - -70-B3-D5 (hex) Ofil USA -9E2000-9E2FFF (base 16) Ofil USA - 5415 Sugarloaf Parkway Suite 1102 A&B - Lawrenceville GA 30043 - US - -70-B3-D5 (hex) WeWork Companies, Inc. -2CC000-2CCFFF (base 16) WeWork Companies, Inc. - 115 W 18th St - New York NY 10011 - US - -70-B3-D5 (hex) Hagenuk KMT Kabelmesstechnik GmbH -132000-132FFF (base 16) Hagenuk KMT Kabelmesstechnik GmbH - Röderaue 41 - Radeburg Sachsen 01471 - DE - -70-B3-D5 (hex) Critical Link LLC -D5C000-D5CFFF (base 16) Critical Link LLC - 6712 Brooklawn Parkway - Syracuse 13211 - US - -70-B3-D5 (hex) Critical Link LLC -EF9000-EF9FFF (base 16) Critical Link LLC - 6712 Brooklawn Pkwy - Syracuse NY 13211 - US - -70-B3-D5 (hex) QUERCUS TECHNOLOGIES, S.L. -777000-777FFF (base 16) QUERCUS TECHNOLOGIES, S.L. - Av. Onze de Setembre 19 - Reus Tarragona 43203 - ES - -70-B3-D5 (hex) Triax A/S -963000-963FFF (base 16) Triax A/S - Bjornkaervej 3 - Hornsyld Denmark 8783 - DK - -70-B3-D5 (hex) White Matter LLC -368000-368FFF (base 16) White Matter LLC - 999 3rd Ave 700 - Seattle 98104 - US - -70-B3-D5 (hex) iFreecomm Technology Co., Ltd -032000-032FFF (base 16) iFreecomm Technology Co., Ltd - D401, NO.16 Langshan Road, Nanshan District - Shenzhen Guangdong 518057 - CN - -70-B3-D5 (hex) RELISTE Ges.m.b.H. -1B9000-1B9FFF (base 16) RELISTE Ges.m.b.H. - Enzersdorfer Strasse 8-10 - Brunn am Gebirge 2345 +70-B3-D5 (hex) Riegl Laser Measurement Systems GmbH +F10000-F10FFF (base 16) Riegl Laser Measurement Systems GmbH + Riedenburgstrasse 48 + Horn Lower Austria 3580 AT -70-B3-D5 (hex) JUSTEK INC -EB5000-EB5FFF (base 16) JUSTEK INC - 613-9, DONGCHUN-RI, JINWI-MYEON - PYEONGTAEK-SI GYEONGGI-DO 17711 - KR - -70-B3-D5 (hex) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD -94A000-94AFFF (base 16) SHENZHEN WISEWING INTERNET TECHNOLOGY CO.,LTD - No.826,Zone 1,Block B,Famous industrial product display purchasing center,Baoyuan Road,Xixiang,Bao'an Dis., Shenzhen,P.R.China - shenzhen China 518102 - CN - -70-B3-D5 (hex) Mo-Sys Engineering Ltd -075000-075FFF (base 16) Mo-Sys Engineering Ltd - Thames Bank House, Tunnel Avenue - London SE100PA - GB - -70-B3-D5 (hex) Abbas, a.s. -B18000-B18FFF (base 16) Abbas, a.s. - Edisonova 5 - Brno CZ 61200 - CZ - -70-B3-D5 (hex) Shanghai Holystar Information Technology Co.,Ltd -6E1000-6E1FFF (base 16) Shanghai Holystar Information Technology Co.,Ltd - 8F Building A3 NO.1528 Gumei Rd Shanghai China PR - shanghai 200233 - CN - -70-B3-D5 (hex) Mimo Networks -25D000-25DFFF (base 16) Mimo Networks - 701 E Middlefield Road Mountain View, - Mountain View CA 94043 - US - -70-B3-D5 (hex) ATBiS Co.,Ltd -C2F000-C2FFFF (base 16) ATBiS Co.,Ltd - #1603 5th. Ace High-end Tower, 226 Gasan Digital 1-ro, Geumcheon-gu - Seoul 08502 - KR - -70-B3-D5 (hex) Cyanview -E3A000-E3AFFF (base 16) Cyanview - 26, Rue de la Foire - Papignies 7861 - BE - -70-B3-D5 (hex) AdInte, inc. -BAC000-BACFFF (base 16) AdInte, inc. - 347-1, Shijo-cho, Shimogyo-ku, 7F CUBE Nishikarasuma BLDG. - Kyoto-shi Kyoto 6008441 - JP - -70-B3-D5 (hex) Valk Welding B.V. -5DA000-5DAFFF (base 16) Valk Welding B.V. - Staalindustrieweg 15 - Alblasserdam Zuid Holland 2952 AT - NL - -70-B3-D5 (hex) VITEC -CDA000-CDAFFF (base 16) VITEC - 99 rue pierre sémard - Chatillon France 92320 - FR - -70-B3-D5 (hex) Nortek Global HVAC -4D4000-4D4FFF (base 16) Nortek Global HVAC - Fens Pool Ave - Brierley Hill West Midlands DY5 1QA - GB - -70-B3-D5 (hex) Insitu, Inc -7AD000-7ADFFF (base 16) Insitu, Inc - 118 E Columbia River Way - Bingen WA 98605 - US - -70-B3-D5 (hex) KWS-Electronic GmbH -EB3000-EB3FFF (base 16) KWS-Electronic GmbH - Sportplatzstrasse 1 - Grosskarolinenfeld D-83109 - DE - -70-B3-D5 (hex) University Of Groningen -700000-700FFF (base 16) University Of Groningen - Broerstraat 5 - Groningen Groningen 9712 CP - NL - -70-B3-D5 (hex) Globalcom Engineering SPA -A0D000-A0DFFF (base 16) Globalcom Engineering SPA - Via Volta 39 - CARDANO AL CAMPO VA 21010 +70-B3-D5 (hex) M.T. S.R.L. +141000-141FFF (base 16) M.T. S.R.L. + VIA MONZA 83 + GESSATE 20060 IT + +70-B3-D5 (hex) Ariston Thermo s.p.a. +C11000-C11FFF (base 16) Ariston Thermo s.p.a. + Via Aristide Merloni 45 + Fabriano Ancona 60044 + IT + +70-B3-D5 (hex) Walk Horizon Technology (Beijing) Co., Ltd. +154000-154FFF (base 16) Walk Horizon Technology (Beijing) Co., Ltd. + Rm121 B1 Shouxindasha Building, 5 Jiangtailu Rd., Chaoyang District + Beijing 100015 + CN diff --git a/hwdb/pci.ids b/hwdb/pci.ids index f749ba401..d6f8b1cf2 100644 --- a/hwdb/pci.ids +++ b/hwdb/pci.ids @@ -1,8 +1,8 @@ # # List of PCI ID's # -# Version: 2017.12.06 -# Date: 2017-12-06 03:15:02 +# Version: 2018.01.14 +# Date: 2018-01-14 03:15:02 # # Maintained by Albert Pool, Martin Mares, and other volunteers from # the PCI ID Project at http://pci-ids.ucw.cz/. @@ -42,6 +42,7 @@ # nee nCipher 0100 Thales e-Security 0123 General Dynamics +0128 Dell (wrong ID) # 018a is not LevelOne but there is a board misprogrammed 018a LevelOne 0106 FPC-0106TX misprogrammed [RTL81xx] @@ -584,6 +585,7 @@ 0096 SAS3004 PCI-Express Fusion-MPT SAS-3 0097 SAS3008 PCI-Express Fusion-MPT SAS-3 1000 3090 SAS9311-8i + 1000 30a0 SAS9300-8e 1000 30e0 SAS9300-8i 1000 3130 SAS 9300-16i 1028 1f45 HBA330 Adapter @@ -749,7 +751,8 @@ 131b Kaveri [Radeon R4 Graphics] 131c Kaveri [Radeon R7 Graphics] 131d Kaveri [Radeon R6 Graphics] - 15dd Radeon Vega 8 Mobile + 15dd Vega [Radeon Vega 8 Mobile] + 15ff Vega [Radeon Vega 28 Mobile] 1714 BeaverCreek HDMI Audio [Radeon HD 6500D and 6400G-6600G series] 103c 168b ProBook 4535s 3150 RV380/M24 [Mobility Radeon X600] @@ -2267,6 +2270,7 @@ 67b9 Vesuvius [Radeon R9 295X2] 67be Hawaii LE 67c0 Ellesmere [Radeon Pro WX 7100] + 67c2 Ellesmere [Radeon Pro V7300X / V7350x2] 67c4 Ellesmere [Radeon Pro WX 7100] 1002 0336 Radeon Pro Duo 1002 1336 Radeon Pro Duo @@ -2274,6 +2278,7 @@ 67ca Ellesmere [Polaris10] 67cc Ellesmere [Polaris10] 67cf Ellesmere [Polaris10] + 67d0 Ellesmere [Radeon Pro V7300X / V7350x2] 67df Ellesmere [Radeon RX 470/480/570/580] 1002 0b37 Radeon RX 480 1043 04a8 Radeon RX 480 @@ -2293,13 +2298,13 @@ 1787 a470 Radeon RX 470 1787 a480 Radeon RX 480 1da2 e353 Sapphire Radeon RX 580 Pulse 8GB - 1da2 e366 Radeon RX 570 + 1da2 e366 Nitro+ Radeon RX 580 4GB 67e0 Baffin [Polaris11] 67e1 Baffin [Polaris11] 67e3 Baffin [Radeon Pro WX 4100] 67e8 Baffin [Polaris11] 67e9 Baffin [Polaris11] - 67eb Baffin [Polaris11] + 67eb Baffin [Radeon Pro V5300X] 67ef Baffin [Radeon RX 460/560D / Pro 450/455/460/560] 106b 0160 Radeon Pro 460 106b 0166 Radeon Pro 455 @@ -2343,6 +2348,7 @@ 1002 0b05 Radeon HD 8870 OEM 174b 8b04 Radeon HD 8860 6819 Pitcairn PRO [Radeon HD 7850 / R7 265 / R9 270 1024SP] + 1043 042c Radeon HD 7850 1682 7269 Radeon R9 270 1024SP 1682 9278 Radeon R9 270 1024SP 174b a008 Radeon R9 270 1024SP @@ -2505,8 +2511,14 @@ 144d c0c7 Radeon HD 7550M 6842 Thames LE [Radeon HD 7000M Series] 6843 Thames [Radeon HD 7670M] + 6860 Vega 10 [Radeon Instinct MI25] 6861 Vega 10 XT [Radeon PRO WX 9100] + 6862 Vega 10 XT [Radeon PRO SSG] 6863 Vega 10 XTX [Radeon Vega Frontier Edition] + 6864 Vega + 6867 Vega + 6868 Vega + 686c Vega 10 [Radeon Instinct MI25 MxGPU] 687f Vega 10 XT [Radeon RX Vega 64] 6888 Cypress XT [FirePro V8800] 6889 Cypress PRO [FirePro V7800] @@ -3015,11 +3027,12 @@ 148c 9380 Radeon R9 380 # Make naming scheme consistent 174b e308 Radeon R9 380 Nitro 4G D5 + 694c Vega [Radeon RX Vega M] 6980 Polaris12 6981 Polaris12 6985 Lexa XT [Radeon PRO WX 3100] 6986 Polaris12 - 6987 Polaris12 + 6987 Lexa [Radeon E9171 MCM] 6995 Lexa XT [Radeon PRO WX 2100] 699f Lexa PRO [Radeon RX 550] 148c 2380 Lexa XL [Radeon RX 550] @@ -4041,6 +4054,11 @@ 1423 Family 15h (Models 30h-3fh) I/O Memory Management Unit 1424 Family 15h (Models 30h-3fh) Processor Root Port 1426 Family 15h (Models 30h-3fh) Processor Root Port + 142e Liverpool Processor Function 0 + 142f Liverpool Processor Function 1 + 1430 Liverpool Processor Function 2 + 1431 Liverpool Processor Function 3 + 1432 Liverpool Processor Function 4 1436 Liverpool Processor Root Complex 1437 Liverpool I/O Memory Management Unit 1438 Liverpool Processor Root Port @@ -5439,10 +5457,11 @@ 1028 014e PCI7410,7510,7610 OHCI-Lynx Controller (Latitude D800) 802e PCI7x20 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller 1028 018d Inspiron 700m/710m - 8031 PCIxx21/x515 Cardbus Controller + 8031 PCIxx21/PCIxx11/PCIx515 PC Card Controller 1025 0064 Extensa 3000 series laptop 1025 0080 Aspire 5024WLMi 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 103c 308b MX6125 8032 OHCI Compliant IEEE 1394 Host Controller @@ -5451,19 +5470,22 @@ 103c 0934 Compaq nw8240/nx8220 103c 099c NX6110/NC6120 103c 308b MX6125 - 8033 PCIxx21 Integrated FlashMedia Controller + 8033 PCIxx21/PCIxx11 Flash Media Controller 1025 0064 Extensa 3000 series laptop 1025 0080 Aspire 5024WLMi 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 103c 308b MX6125 - 8034 PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller + 8034 PCIxx21/PCIxx11 SD Host Controller 1025 0080 Aspire 5024WLMi 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 103c 308b MX6125 - 8035 PCI6411/6421/6611/6621/7411/7421/7611/7621 Smart Card Controller + 8035 PCIxx21/PCIxx11 Smart Card Controller 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 8036 PCI6515 Cardbus Controller 8038 PCI6515 SmartCard Controller @@ -5477,7 +5499,7 @@ 103c 30a1 NC2400 103c 30a3 Compaq nw8440 104d 902d VAIO VGN-NR120E - 803b 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) + 803b PCIxx12 Flash Media Controller 103c 309f nx9420 103c 30a3 Compaq nw8440 104d 8212 VAIO VGN-N21E @@ -5650,6 +5672,22 @@ 90a3 Aeolia Memory (DDR3/SPM) 90a4 Aeolia USB 3.0 xHCI Host Controller 90bc SxS Pro+ memory card + 90c8 Belize ACPI + 90c9 Belize Ethernet Controller + 90ca Belize SATA AHCI Controller + 90cb Belize SD/MMC Host Controller + 90cc Belize PCI Express Glue and Miscellaneous Devices + 90cd Belize DMA Controller + 90ce Belize Memory (DDR3/SPM) + 90cf Belize USB 3.0 xHCI Host Controller + 90d7 Baikal ACPI + 90d8 Baikal Ethernet Controller + 90d9 Baikal SATA AHCI Controller + 90da Baikal SD/MMC Host Controller + 90db Baikal PCI Express Glue and Miscellaneous Devices + 90dc Baikal DMA Controller + 90dd Baikal Memory (DDR3/SPM) + 90de Baikal USB 3.0 xHCI Host Controller 104e Oak Technology, Inc 0017 OTI-64017 0107 OTI-107 [Spitfire] @@ -6230,6 +6268,10 @@ 8070 FastLinQ QL41000 Series 10/25/40/50GbE Controller 1077 0001 10GE 2P QL41162HxRJ-DE Adapter 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x1GE+2x10GE QL41264HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA 1077 000b 25GE 2P QL41262HxCU-DE Adapter 1077 0011 FastLinQ QL41212H 25GbE Adapter 1077 0012 FastLinQ QL41112H 10GbE Adapter @@ -6240,19 +6282,34 @@ 8080 FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) 1077 0001 10GE 2P QL41162HxRJ-DE Adapter 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x1GE+2x10GE QL41264HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA 1077 000b 25GE 2P QL41262HxCU-DE Adapter + 1077 000c QLogic 2x25GE QL41262HMCU CNA 1077 000d FastLinQ QL41262H 25GbE FCoE Adapter 1077 000e FastLinQ QL41162H 10GbE FCoE Adapter 8084 FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) 1077 0001 10GE 2P QL41162HxRJ-DE Adapter 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x25GE QL41262HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA 1077 000b 25GE 2P QL41262HxCU-DE Adapter + 1077 000c QLogic 2x25GE QL41262HMCU CNA 1077 000d FastLinQ QL41262H 25GbE iSCSI Adapter 1077 000e FastLinQ QL41162H 10GbE iSCSI Adapter 8090 FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) 1077 0001 25GE 2P QL41262HxCU-DE Adapter 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x1GE+2x10GE QL41264HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA 1077 000b 25GE 2P QL41262HxCU-DE Adapter + 1077 000c QLogic 2x25GE QL41262HMCU CNA 1077 000d FastLinQ QL41262H 25GbE FCoE Adapter (SR-IOV VF) 1077 000e FastLinQ QL41162H 10GbE iSCSI Adapter (SR-IOV VF) 1077 0011 FastLinQ QL41212H 25GbE Adapter (SR-IOV VF) @@ -10834,11 +10891,12 @@ 13d8 GM204M [GeForce GTX 970M] 13d9 GM204M [GeForce GTX 965M] 13da GM204M [GeForce GTX 980 Mobile] - 13e7 GM204 [GeForce GTX 980 Engineering Sample] + 13e7 GM204GL [GeForce GTX 980 Engineering Sample] 13f0 GM204GL [Quadro M5000] 13f1 GM204GL [Quadro M4000] 13f2 GM204GL [Tesla M60] 13f3 GM204GL [Tesla M6] + 10de 1184 GRID M6-8Q 13f8 GM204GLM [Quadro M5000M / M5000 SE] 13f9 GM204GLM [Quadro M4000M] 13fa GM204GLM [Quadro M3000M] @@ -10902,6 +10960,7 @@ 1bb7 GP104GLM [Quadro P4000 Mobile] 1462 11e9 Quadro P4000 Max-Q 1bb8 GP104GLM [Quadro P3000 Mobile] + 1bc7 GP104 [P104-101] 1be0 GP104M [GeForce GTX 1080 Mobile] 1028 07c0 GeForce GTX 1080 Max-Q 1458 355b GeForce GTX 1080 Max-Q @@ -10910,6 +10969,8 @@ 1c01 GP106 1c02 GP106 [GeForce GTX 1060 3GB] 1c03 GP106 [GeForce GTX 1060 6GB] + 1c04 GP106 [GeForce GTX 1060 5GB] + 1c06 GP106 [GeForce GTX 1060 6GB Rev. 2] 1c07 GP106 [P106-100] 1c09 GP106 [P106-090] 1c20 GP106M [GeForce GTX 1060 Mobile] @@ -10937,7 +10998,8 @@ 1cb3 GP107GL [Quadro P400] 1d01 GP108 [GeForce GT 1030] 1d10 GP108M [GeForce MX150] - 1d81 GV100 + 1d33 GP108GL [Quadro P500] + 1d81 GV100 [TITAN V] 1db1 GV100 [Tesla V100 SXM2] 1db4 GV100 [Tesla V100 PCIe] 10df Emulex Corporation @@ -10965,6 +11027,7 @@ e180 Proteus-X: LightPulse IOV Fibre Channel Host Adapter e200 LightPulse LPe16002 1014 03f1 PCIe2 16 Gb 2-port Fibre Channel Adapter (FC EL5B; CCIN 577F) + 10df e282 Flex System FC5054 4-port 16Gb FC Adapter e208 LightPulse 16Gb Fibre Channel Host Adapter (Lancer-VF) e220 OneConnect NIC (Lancer) 17aa 1054 ThinkServer LPm16002B-M6-L AnyFabric @@ -11139,13 +11202,14 @@ 8129 RTL-8129 10ec 8129 RT8129 Fast Ethernet Adapter 11ec 8129 RTL8111/8168 PCIe Gigabit Ethernet (misconfigured) - 8136 RTL8101/2/6E PCI Express Fast Ethernet controller + 8136 RTL810xE PCI Express Fast Ethernet controller 103c 1985 RTL8106E on Pavilion 17-e163sg Notebook PC 103c 2a8c Compaq 500B Microtower 103c 2ab1 Pavilion p6774 103c 30cc Pavilion dv6700 1179 ff64 RTL8102E PCI-E Fast Ethernet NIC 17c0 1053 RTL8101e Medion WIM 2210 Notebook PC [MD96850] + 8137 RTL8104E PCIe Fast Ethernet Controller 8138 RT8139 (B/C) Cardbus Fast Ethernet Adapter 10ec 8138 RT8139 (B/C) Fast Ethernet Adapter 8139 RTL-8100/8101L/8139 PCI Fast Ethernet Adapter @@ -14066,20 +14130,49 @@ 0043 RocketPort Infinity 16port, External Interface 0044 RocketPort Infinity Quad, 4port, DB 0045 RocketPort Infinity Octa, 8port, DB + 0046 RocketPort INFINITY 4-port w/external I/F 0047 RocketPort Infinity 4port, RJ45 + 0048 RocketPort INFINITY 4J (4-port) w/RJ45 connectors + 004a RocketPort INFINITY Plus 4-port + 004b RocketPort INFINITY Plus 8-port + 004c RocketModem INFINITY III 8-port + 004d RocketModem INFINITY III 4-port + 004e RocketPort INFINITY Plus 2-port 004f RocketPort Infinity 2port, SMPTE + 0050 RocketPort INFINITY Plus 4-port RJ45 + 0051 RocketPort INFINITY Plus 8-port RJ11 0052 RocketPort Infinity Octa, 8port, SMPTE - 0801 RocketPort UPCI 32 port w/external I/F - 0802 RocketPort UPCI 8 port w/external I/F - 0803 RocketPort UPCI 16 port w/external I/F - 0805 RocketPort UPCI 8 port w/octa cable - 080c RocketModem III 8 port - 080d RocketModem III 4 port - 0810 RocketPort UPCI Plus 4 port RS232 - 0811 RocketPort UPCI Plus 8 port RS232 - 0812 RocketPort UPCI Plus 8 port RS422 + 0060 RocketPort EXPRESS 8-port w/Octa Cable + 0061 RocketPort EXPRESS 32-port w/external I/F + 0062 RocketPort EXPRESS 8-Port w/external I/F + 0063 RocketPort EXPRESS 16-port w/external I/F + 0064 RocketPort EXPRESS 4-port w/Quad Cable + 0065 RocketPort EXPRESS 8-port w/Octa Cable + 0066 RocketPort EXPRESS 4-port w/external I/F + 0067 RocketPort EXPRESS 4J (4-port) w/RJ45 connectors + 0068 RocketPort EXPRESS 8J (8-port) w/RJ11 connectors + 006f RocketPort EXPRESS SMPTE 2-port + 0072 RocketPort EXPRESS SMPTE 8-port w/external I/F + 0801 RocketPort uPCI 32-port w/external I/F + 0802 RocketPort uPCI 8-port w/external I/F + 0803 RocketPort uPCI 16-port w/external I/F + 0805 RocketPort uPCI 8-port w/Octa Cable + 080b RocketPort Plus uPCI 8-port w/Octa Cable + 080c RocketModem III 8-port + 080d RcoketModem III 4-port + 080e RocketPort uPCI 2-port RS232 w/DB9 connectors + 080f RocketPort uPCI SMPTE 2-port + 0810 RocketPort Plus uPCI 4J (4-port) w/RJ45 connectors + 0811 RocketPort Plus uPCI 8J (8-port) w/RJ11 connectors + 0812 RocketPort Plus uPCI 422 8-port + 0813 RocketModem IV uPCI 8-port + 0814 RocketModem IV uPCI 4-port 0903 RocketPort Compact PCI 16 port w/external I/F - 8015 RocketPort 4-port UART 16954 +# 16954 UART + 8015 RocketPort 550 4-port + 8805 RocketPort uPCI 4-port w/Quad Cable + 880b RocketPort Plus uPCI 4-port w/Quad Cable + 8812 RocketPort Plus uPCI 4-port RS422 w/Quad Cable 11ff Scion Corporation 0003 AG-5 1200 CSS Corporation @@ -15642,6 +15735,7 @@ 0252 XR17V252 Dual UART PCI controller 0254 XR17V254 Quad UART PCI controller 0258 XR17V258 Octal UART PCI controller + 0352 XR17V3521 Dual PCIe UART 13a9 Siemens Medical Systems, Ultrasound Group 13aa Broadband Networks Inc 13ab Arcom Control Systems Ltd @@ -16302,6 +16396,7 @@ 50a9 T580-50A9 Unified Wire Ethernet Controller 50aa T580-50AA Unified Wire Ethernet Controller 50ab T520-50AB Unified Wire Ethernet Controller + 50ac T540-50AC Unified Wire Ethernet Controller 5401 T520-CR Unified Wire Ethernet Controller 5402 T522-CR Unified Wire Ethernet Controller 5403 T540-CR Unified Wire Ethernet Controller @@ -16364,6 +16459,7 @@ 54a9 T580-50A9 Unified Wire Ethernet Controller 54aa T580-50AA Unified Wire Ethernet Controller 54ab T520-50AB Unified Wire Ethernet Controller + 54ac T540-50AC Unified Wire Ethernet Controller 5501 T520-CR Unified Wire Storage Controller 5502 T522-CR Unified Wire Storage Controller 5503 T540-CR Unified Wire Storage Controller @@ -16424,6 +16520,9 @@ 55a7 T580-50A7 Unified Wire Storage Controller 55a8 T580-50A8 Unified Wire Storage Controller 55a9 T580-50A9 Unified Wire Storage Controller + 55aa T580-50AA Unified Wire Storage Controller + 55ab T520-50AB Unified Wire Storage Controller + 55ac T540-50AC Unified Wire Storage Controller 5601 T520-CR Unified Wire Storage Controller 5602 T522-CR Unified Wire Storage Controller 5603 T540-CR Unified Wire Storage Controller @@ -16486,6 +16585,7 @@ 56a9 T580-50A9 Unified Wire Storage Controller 56aa T580-50AA Unified Wire Storage Controller 56ab T520-50AB Unified Wire Storage Controller + 56ac T540-50AC Unified Wire Storage Controller 5701 T520-CR Unified Wire Ethernet Controller 5702 T522-CR Unified Wire Ethernet Controller 5703 T540-CR Unified Wire Ethernet Controller @@ -16587,6 +16687,7 @@ 58a9 T580-50A9 Unified Wire Ethernet Controller [VF] 58aa T580-50AA Unified Wire Ethernet Controller [VF] 58ab T520-50AB Unified Wire Ethernet Controller [VF] + 58ac T540-50AC Unified Wire Ethernet Controller [VF] 6001 T6225-CR Unified Wire Ethernet Controller 6002 T6225-SO-CR Unified Wire Ethernet Controller 6003 T6425-CR Unified Wire Ethernet Controller @@ -16607,6 +16708,7 @@ 6084 T64100-6084 Unified Wire Ethernet Controller 6085 T6240-6085 Unified Wire Ethernet Controller 6086 T6225-6086 Unified Wire Ethernet Controller + 6087 T6225-6087 Unified Wire Ethernet Controller 6401 T6225-CR Unified Wire Ethernet Controller 6402 T6225-SO-CR Unified Wire Ethernet Controller 6403 T6425-CR Unified Wire Ethernet Controller @@ -16627,6 +16729,7 @@ 6484 T64100-6084 Unified Wire Ethernet Controller 6485 T6240-6085 Unified Wire Ethernet Controller 6486 T6225-6086 Unified Wire Ethernet Controller + 6487 T6225-6087 Unified Wire Ethernet Controller 6501 T6225-CR Unified Wire Storage Controller 6502 T6225-SO-CR Unified Wire Storage Controller 6503 T6425-CR Unified Wire Storage Controller @@ -16647,6 +16750,7 @@ 6584 T64100-6084 Unified Wire Storage Controller 6585 T6240-6085 Unified Wire Storage Controller 6586 T6225-6086 Unified Wire Storage Controller + 6587 T6225-6087 Unified Wire Storage Controller 6601 T6225-CR Unified Wire Storage Controller 6602 T6225-SO-CR Unified Wire Storage Controller 6603 T6425-CR Unified Wire Storage Controller @@ -16667,6 +16771,7 @@ 6684 T64100-6084 Unified Wire Storage Controller 6685 T6240-6085 Unified Wire Storage Controller 6686 T6225-6086 Unified Wire Storage Controller + 6687 T6225-6087 Unified Wire Storage Controller 6801 T6225-CR Unified Wire Ethernet Controller [VF] 6802 T6225-SO-CR Unified Wire Ethernet Controller [VF] 6803 T6425-CR Unified Wire Ethernet Controller [VF] @@ -16687,6 +16792,7 @@ 6884 T64100-6084 Unified Wire Ethernet Controller [VF] 6885 T6240-6085 Unified Wire Ethernet Controller [VF] 6886 T6225-6086 Unified Wire Ethernet Controller [VF] + 6887 T6225-6087 Unified Wire Ethernet Controller [VF] a000 PE10K Unified Wire Ethernet Controller 1426 Storage Technology Corp. 1427 Better On-Line Solutions @@ -17198,6 +17304,7 @@ 103c 169d Ethernet 1Gb 4-port 331FLR Adapter 103c 22be Ethernet 1Gb 4-port 331i Adapter 103c 3383 Ethernet 1Gb 4-port 331T Adapter + 14e4 1904 4-port 1Gb Ethernet Adapter 1659 NetXtreme BCM5721 Gigabit Ethernet PCI Express 1014 02c6 eServer xSeries server mainboard 1028 01e6 PowerEdge 860 @@ -17269,6 +17376,7 @@ 1014 0577 ThinkPad X41 / Z60t 103c 0934 nx8220 103c 0940 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC 17aa 2081 ThinkPad R60e 167e NetXtreme BCM5751F Fast Ethernet PCI Express 167f NetLink BCM5787F Fast Ethernet PCI Express @@ -18253,6 +18361,8 @@ 1556 PLDA 1100 PCI Express Core Reference Design 110f PCI Express Core Reference Design Virtual Function + 1110 XpressRich Reference Design + 1113 XpressSwitch 1557 MEDIASTAR Co Ltd 1558 CLEVO/KAPOK Computer 1559 SI LOGIC Ltd @@ -18408,6 +18518,7 @@ 020b MT27710 Family [ConnectX-4 Lx Flash Recovery] 020d MT28800 Family [ConnectX-5 Flash Recovery] 020f MT28908A0 Family [ConnectX-6 Flash Recovery] + 0210 MT28908A0 Family [ConnectX-6 Secure Flash Recovery] 0211 MT416842 Family [BlueField SoC Flash Recovery] # reserved for RM#105916 024e MT53100 [Spectrum-2, Flash recovery mode] @@ -18415,9 +18526,11 @@ 024f MT53100 [Spectrum-2, Flash recovery mode] 0262 MT27710 [ConnectX-4 Lx Programmable] EN 0263 MT27710 [ConnectX-4 Lx Programmable Virtual Function] EN + 0264 Innova-2 Flex Burn image 0281 NPS-600 Flash Recovery 1002 MT25400 Family [ConnectX-2 Virtual Function] 1003 MT27500 Family [ConnectX-3] + 1014 04b5 PCIe3 40GbE RoCE Converged Host Bus Adapter for Power 103c 1777 InfiniBand FDR/EN 10/40Gb Dual Port 544FLR-QSFP Adapter (Rev Cx) 103c 17c9 Infiniband QDR/Ethernet 10Gb 2-port 544i Adapter 103c 18ce InfiniBand QDR/EN 10Gb Dual Port 544M Adapter @@ -18463,6 +18576,7 @@ 1011 MT27600 [Connect-IB] 1012 MT27600 Family [Connect-IB Virtual Function] 1013 MT27700 Family [ConnectX-4] + 1014 04f7 PCIe3 2-port 100 GbE (NIC and RoCE) QSFP28 Adapter for Power 15b3 0003 Mellanox Technologies ConnectX-4 Stand-up single-port 40GbE MCX413A-BCAT 15b3 0005 Mellanox Technologies ConnectX-4 Stand-up single-port 40GbE MCX415A-BCAT 15b3 0006 MCX416A-BCAT, ConnectX-4 EN, 40/56GbE 2P, PCIe3.0 x16 @@ -18472,6 +18586,7 @@ 15b3 0050 ConnectX-4 100 GbE Dual Port QSFP28 Adapter 1014 MT27700 Family [ConnectX-4 Virtual Function] 1015 MT27710 Family [ConnectX-4 Lx] + 15b3 0004 ConnectX-4 Lx Stand-up dual-port 10GbE MCX4121A-XCAT 15b3 0005 Mellanox Technologies ConnectX-4 Lx Stand-up single-port 40GbE MCX4131A-BCAT 15b3 0016 ConnectX-4 Lx 25 GbE Dual Port SFP28 Adapter 15b3 0020 MCX4411A-ACQN, ConnectX-4 Lx EN OCP, 1x25Gb @@ -18507,6 +18622,7 @@ 6372 MT25408 [ConnectX EN 10GigE 10GBaseT, PCIe 2.0 2.5GT/s] 6732 MT26418 [ConnectX VPI PCIe 2.0 5GT/s - IB DDR / 10GigE] 673c MT26428 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE] + 1014 0415 PCIe2 2-port 4X InfiniBand QDR Adapter for Power 1014 0487 GX++ 1-port 4X IB QDR Adapter for Power 795 103c 1782 4X QDR InfiniBand Mezzanine HCA for c-Class BladeSystem 15b3 0021 HP InfiniBand 4X QDR CX-2 PCI-e G2 Dual Port HCA @@ -18529,6 +18645,7 @@ 7121 NPS-600 configuration and management interface 7122 NPS-600 network interface PF 7123 NPS-600 network interface VF + 8200 Innova-2 Flex Shell Logic a2d0 MT416842 BlueField SoC Crypto enabled a2d1 MT416842 BlueField SoC Crypto disabled a2d2 MT416842 BlueField integrated ConnectX-5 network controller @@ -18565,6 +18682,7 @@ 0015 ZBox 15b7 Sandisk Corp 2001 Skyhawk Series NVME SSD + 5001 WD Black NVMe SSD 15b8 ADDI-DATA GmbH 1001 APCI1516 SP controller (16 digi outputs) 1003 APCI1032 SP controller (32 digi inputs w/ opto coupler) @@ -18713,6 +18831,11 @@ 1006 Format synchronizer, model 10500 1007 Format synchronizer, model 21000 2002 Fast Universal Data Output + 3100 IO31000 Frame Synchronizer and I/O + 3200 IO32000 Frame Synchronizer and I/O + 4002 High Rate Demodulator + 5001 High Rate FEC + 6001 High Rate Demodulator and FEC 1631 Packard Bell B.V. 1638 Standard Microsystems Corp [SMC] 1100 SMC2602W EZConnect / Addtron AWA-100 / Eumitcom PCI WL11000 @@ -19019,6 +19142,7 @@ 0777 4005 SR71-15 802.11an Mini PCI Adapter 1186 3a7a DWA-552 802.11n Xtreme N Desktop Adapter (rev A2) 1186 3a7d DWA-552 802.11n Xtreme N Desktop Adapter (rev A3) + 168c 0029 AR922X Wireless Network Adapter 168c 2096 Compex WLM200NX / Wistron DNMA-92 002a AR928X Wireless Network Adapter (PCI-Express) 0777 4f05 SR71-X 802.11abgn Wireless ExpressCard Adapter [AR9280] @@ -19203,17 +19327,23 @@ 7012 AP440-2: 32-Channel Isolated Digital Input Module 7013 AP440-3: 32-Channel Isolated Digital Input Module 7014 AP445: 32-Channel Isolated Digital Output Module + 7015 AP471 48-Channel TTL Level Digital Input/Output Module 7016 AP470 48-Channel TTL Level Digital Input/Output Module 7017 AP323 16-bit, 20 or 40 Channel Analog Input Module 7018 AP408: 32-Channel Digital I/O Module 7019 AP341 14-bit, 16-Channel Simultaneous Conversion Analog Input Module 701a AP220-16 12-Bit, 16-Channel Analog Output Module 701b AP231-16 16-Bit, 16-Channel Analog Output Module + 701c AP225 12-Bit, 16-Channel Analog Output Module with Waveform Memory + 701d AP235 16-Bit, 16-Channel Analog Output Module with Waveform Memory 7021 APA7-201 Reconfigurable Artix-7 FPGA module 48 TTL channels 7022 APA7-202 Reconfigurable Artix-7 FPGA module 24 RS485 channels 7023 APA7-203 Reconfigurable Artix-7 FPGA module 24 TTL & 12 RS485 channels 7024 APA7-204 Reconfigurable Artix-7 FPGA module 24 LVDS channels 7027 AP418 16-Channel High Voltage Digital Input/Output Module + 7029 AP342 14-bit, 12-Channel Isolated Simultaneous Conversion Analog Input Module + 702a AP226 12-Bit, 8-Channel Isolated Analog Output Module + 702b AP236 16-Bit, 8-Channel Isolated Analog Output Module 7042 AP482 Counter Timer Module with TTL Level Input/Output 7043 AP483 Counter Timer Module with TTL Level and RS422 Input/Output 7044 AP484 Counter Timer Module with RS422 Input/Output @@ -20070,11 +20200,15 @@ 1924 8019 SFN8542-R2 8000 Series 10/40G Adapter 1924 801a SFN8722-R1 8000 Series OCP 10G Adapter 1924 801b SFN8522-R3 8000 Series 10G Adapter + 0b03 SFC9250 10/25/40/50/100G Ethernet Controller + 1924 801d x2522-R1 2000 Series 10/25G Adapter + 1924 801e x2542-R1 2000 Series 40/100G Adapter 1803 SFC9020 10G Ethernet Controller (Virtual Function) 1813 SFL9021 10GBASE-T Ethernet Controller (Virtual Function) 1903 SFC9120 10G Ethernet Controller (Virtual Function) 1923 SFC9140 10/40G Ethernet Controller (Virtual Function) 1a03 SFC9220 10/40G Ethernet Controller (Virtual Function) + 1b03 SFC9250 10/25/40/50/100G Ethernet Controller (Virtual Function) 6703 SFC4000 rev A iSCSI/Onload [Solarstorm] 10b8 0102 SMC10GPCIe-10BT (A2) [TigerCard] 10b8 0103 SMC10GPCIe-10BT (A3) [TigerCard] @@ -20095,6 +20229,7 @@ 000c Qualcomm MSM6275 UMTS chip 1932 DiBcom 193c MAXIM Integrated Products +193d Hangzhou H3C Technologies Co., Ltd. 193f AHA Products Group 0001 AHA36x-PCIX 0360 AHA360-PCIe @@ -20737,6 +20872,8 @@ 1bbf Maxeler Technologies Ltd. 0003 MAX3 0004 MAX4 +1bcf NEC Corporation + 001c Vector Engine 1.0 1bd0 Astronics Corporation 1001 Mx5 PMC/XMC Databus Interface Card 1002 PM1553-5 (PC/104+ MIL-STD-1553 Interface Card) @@ -20920,7 +21057,13 @@ 1d65 Imagine Communications Corp. 04de Taurus/McKinley 1d6a Aquantia Corp. + 07b1 AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 08b1 AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 11b1 AQC111 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 12b1 AQC112 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 87b1 AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] d107 AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + d108 AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] 1d6c Atomic Rules LLC 1001 A5PL-E1 1002 A5PL-E7 @@ -20943,6 +21086,36 @@ 1d7c Aerotech, Inc. 1d87 Fuzhou Rockchip Electronics Co., Ltd 1d8f Enyx +1d94 Chengdu Higon IC Design Co.Ltd + 1450 Root Complex + 1451 I/O Memory Management Unit + 1452 PCIe Dummy Host Bridge + 1453 PCIE GPP Bridge + 1454 Internal PCIe GPP Bridge 0 to Bus B + 1455 PCIe Dummy Function + 1456 PSPCCP Command DMA Processor + 1458 10 Gb Ethernet Controller Port 0/Port1 + 1459 10 Gb Ethernet Controller Port 2/Port3 + 145a PCIe Dummy Function + 145b PCIE Non-Transparent Bridge + 145c USB3 XHCI + 145d Switch upstream in PCIe + 145e Switch downstream in PCIe + 145f USB 3.0 Host controller + 1460 Data Fabric: Device 18h; Function 0 + 1461 Data Fabric: Device 18h; Function 1 + 1462 Data Fabric: Device 18h; Function 2 + 1463 Data Fabric: Device 18h; Function 3 + 1464 Data Fabric: Device 18h; Function 4 + 1465 Data Fabric: Device 18h; Function 5 + 1466 Data Fabric: Device 18h; Function 6 + 1467 Data Fabric: Device 18h; Function 7 + 1468 NTBCCP + 7901 FCH SATA Controller [AHCI mode] + 7904 FCH SATA Controller [AHCI mode] + 7906 FCH SD Flash Controller + 790b FCH SMBus Controller + 790e FCH LPC Bridge 1d95 Graphcore Ltd 1da1 Teko Telecom S.r.l. 1da2 Sapphire Technology Limited @@ -20954,6 +21127,16 @@ 1de5 Eideticom, Inc 1000 IO Memory Controller 2000 NoLoad Hardware Development Kit +1def Ampere Computing, LLC + e005 Skylark PCI Express Root Port 0 [X-Gene 3] + e006 Skylark PCI Express Root Port 1 [X-Gene 3] + e007 Skylark PCI Express Root Port 2 [X-Gene 3] + e008 Skylark PCI Express Root Port 3 [X-Gene 3] + e009 Skylark PCI Express Root Port 4 [X-Gene 3] + e00a Skylark PCI Express Root Port 5 [X-Gene 3] + e00b Skylark PCI Express Root Port 6 [X-Gene 3] + e00c Skylark PCI Express Root Port 7 [X-Gene 3] +1df7 opencpi.org # nee Tumsan Oy 1fc0 Ascom (Finland) Oy 0300 E2200 Dual E1/Rawpipe Card @@ -21668,6 +21851,8 @@ 3000 HD-3000 5500 HD5500 HDTV 7284 HT OMEGA Inc. +7357 IOxOS Technologies SA + 7910 7910 [Althea] 7401 EndRun Technologies e100 PTP3100 PCIe PTP Slave Clock 7470 TP-LINK Technologies Co., Ltd. @@ -23659,8 +23844,9 @@ 15c7 Ethernet Connection X553 1GbE 15c8 Ethernet Connection X553/X557-AT 10GBASE-T 15ce Ethernet Connection X553 10 GbE SFP+ - 15d0 Ethernet SDI Adapter FM10420-100GbE-QDA2 + 15d0 Ethernet SDI Adapter 8086 0001 Ethernet SDI Adapter FM10420-100GbE-QDA2 + 8086 0002 Ethernet SDI Adapter FM10840-MTP2 15d1 Ethernet Controller 10G X550T 8086 0002 Ethernet Converged Network Adapter X550-T1 8086 001b Ethernet Server Adapter X550-T1 for OCP @@ -23685,6 +23871,14 @@ 15e3 Ethernet Connection (5) I219-LM 15e4 Ethernet Connection X553 1GbE 15e5 Ethernet Connection X553 1GbE + 15e7 JHL7540 Thunderbolt 3 Bridge [Titan Ridge 2C 2018] + 15e8 JHL7540 Thunderbolt 3 NHI [Titan Ridge 2C 2018] + 15e9 JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 2C 2018] + 15ea JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] + 15eb JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] + 15ec JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] + 15ef JHL7540 Thunderbolt 3 Bridge [Titan Ridge DD 2018] + 15f0 JHL7540 Thunderbolt 3 USB Controller [Titan Ridge DD 2018] 1600 Broadwell-U Host Bridge -OPI 1601 Broadwell-U PCI Express x16 Controller 1602 Broadwell-U Integrated Graphics @@ -24111,6 +24305,7 @@ 144d c652 NP300E5C series laptop 1849 1e2d Motherboard 1e31 7 Series/C210 Series Chipset Family USB xHCI Host Controller + 103c 179b Elitebook 8470p 103c 17ab ProBook 6570b 1043 108d VivoBook X202EV 1043 1477 N56VZ @@ -24420,6 +24615,7 @@ 1028 040a Latitude E6410 1028 040b Latitude E6510 103c 0934 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 103c 309f Compaq nx9420 Notebook 103c 30a3 Compaq nw8440 @@ -25087,6 +25283,7 @@ 1014 0575 ThinkPad X41 / Z60t 1028 0182 Latitude C610 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 104d 81b7 Vaio VGN-S3XP a304 81b7 Vaio VGN-S3XP @@ -25271,6 +25468,7 @@ 2641 82801FBM (ICH6M) LPC Interface Bridge 1014 0568 ThinkPad X41 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 2642 82801FW/FRW (ICH6W/ICH6RW) LPC Interface Bridge 2651 82801FB/FW (ICH6/ICH6W) SATA Controller @@ -25291,6 +25489,7 @@ 1028 0177 Dimension 8400 1028 0179 Optiplex GX280 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 1043 80a6 P5GD1-VW Mainboard 1458 2558 GA-8I915ME-G Mainboard @@ -25304,6 +25503,7 @@ 1028 0177 Dimension 8400 1028 0179 Optiplex GX280 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 1043 80a6 P5GD1-VW Mainboard 1458 2659 GA-8I915ME-G Mainboard @@ -25317,6 +25517,7 @@ 1028 0177 Dimension 8400 1028 0179 Optiplex GX280 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 1043 80a6 P5GD1-VW Mainboard 1458 265a GA-8I915ME-G Mainboard @@ -25342,6 +25543,7 @@ 1028 0177 Dimension 8400 1028 0179 Optiplex GX280 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 1043 80a6 P5GD1-VW Mainboard 1458 5006 GA-8I915ME-G Mainboard @@ -25353,12 +25555,14 @@ e4bf 58b1 XB1 2660 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 103c 0934 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 e4bf 0ccd CCD-CALYPSO e4bf 0cd3 CD3-JIVE e4bf 58b1 XB1 2662 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 103c 0934 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC e4bf 0ccd CCD-CALYPSO e4bf 0cd3 CD3-JIVE e4bf 58b1 XB1 @@ -25412,6 +25616,7 @@ 266f 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller 1028 0177 Dimension 8400 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC 103c 099c NX6110/NC6120 1043 80a6 P5GD1-VW Mainboard 1458 266f GA-8I915ME-G Mainboard @@ -25484,6 +25689,12 @@ 103c 31fe ProLiant DL140 G3 15d9 8680 X7DVL-E-O motherboard 15d9 9680 X7DBN Motherboard + 2700 Optane SSD 900P Series + 8086 3900 900P Series [Add-in Card] + 8086 3901 900P Series [2.5" SFF] + 2701 Optane DC P4800X Series SSD + 8086 3904 DC P4800X Series [Add-in Card] + 8086 3905 DC P4800X Series [2.5" SFF] 2770 82945G/GZ/P/PL Memory Controller Hub 1028 01ad OptiPlex GX620 103c 2a3b Pavilion A1512X @@ -25514,6 +25725,7 @@ 2792 Mobile 915GM/GMS/910GML Express Graphics Controller 1014 0582 ThinkPad X41 103c 099c NX6110/NC6120 + 103c 308a Compaq nc6220 Notebook PC 1043 1881 GMA 900 915GM Integrated Graphics e4bf 0ccd CCD-CALYPSO e4bf 0cd3 CD3-JIVE @@ -27544,7 +27756,7 @@ 4117 Atom Processor E6xx PCI Host Bridge #4 4220 PRO/Wireless 2200BG [Calexico2] Network Connection 103c 0934 Compaq nw8240/nx8220 - 103c 12f6 nc6120/nx8220/nw8240 + 103c 12f6 nc6120/nc6220/nw8240/nx8220 8086 2701 WM3B2200BG Mini-PCI Card 8086 2712 IBM ThinkPad R50e 8086 2721 Dell B130 laptop integrated WLAN @@ -27692,9 +27904,11 @@ 590f Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers 5910 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers 5912 HD Graphics 630 + 5914 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers 5916 HD Graphics 620 17aa 2248 ThinkPad T570 17aa 224f ThinkPad X1 Carbon 5th Gen + 5917 UHD Graphics 620 591d HD Graphics P630 591f Intel Kaby Lake Host Bridge 5a84 Celeron N3350/Pentium N4200/Atom E3900 Series Integrated Graphics Controller @@ -28111,6 +28325,8 @@ 8c26 8 Series/C220 Series Chipset Family USB EHCI #1 103c 1909 ZBook 15 17aa 220e ThinkPad T440p + 17aa 2210 ThinkPad T540p + 2210 17aa ThinkPad T540p 8c2d 8 Series/C220 Series Chipset Family USB EHCI #2 103c 1909 ZBook 15 17aa 220e ThinkPad T440p @@ -29018,6 +29234,11 @@ 103c 0701 Smart Array P204i-b SR Gen10 103c 1100 Smart Array P816i-a SR Gen10 103c 1101 Smart Array P416ie-m SR G10 + 152d 8a22 QS-8204-8i + 152d 8a23 QS-8238-16i + 152d 8a24 QS-8236-16i + 152d 8a36 QS-8240-24i + 152d 8a37 QS-8242-24i 9005 0800 SmartRAID 3154-8i 9005 0801 SmartRAID 3152-8i 9005 0802 SmartRAID 3151-4i @@ -29220,8 +29441,8 @@ bdbd Blackmagic Design a124 Intensity Extreme a126 Intensity Shuttle a127 UltraStudio Express - a129 UltraStudio Mini Monitor - a12a UltraStudio Mini Recorder + a129 UltraStudio Mini Recorder + a12a UltraStudio Mini Monitor a12d UltraStudio 4K a12e DeckLink 4K Extreme a12f DeckLink Mini Monitor @@ -29236,6 +29457,11 @@ bdbd Blackmagic Design a13e UltraStudio 4K Extreme a13f DeckLink Quad 2 a140 DeckLink Duo 2 + a141 UltraStudio 4K Extreme 3 + a142 UltraStudio HD Mini + a143 DeckLink Mini Recorder 4K + a144 DeckLink Mini Monitor 4K + a14b DeckLink 8K Pro c001 TSI Telsys c0a9 Micron/Crucial Technology c0de Motorola diff --git a/hwdb/usb.ids b/hwdb/usb.ids index ec20b2fa2..cc8556a42 100644 --- a/hwdb/usb.ids +++ b/hwdb/usb.ids @@ -9,8 +9,8 @@ # The latest version can be obtained from # http://www.linux-usb.org/usb.ids # -# Version: 2017.11.27 -# Date: 2017-11-27 20:34:05 +# Version: 2018.01.04 +# Date: 2018-01-04 20:34:07 # # Vendors, devices and interfaces. Please keep sorted. @@ -16161,6 +16161,35 @@ 0002 HDReye (before firmware loads) 1519 Comneon 0020 HSIC Device +151f Opal Kelly Incorporated + 0020 XEM3001v1 + 0021 XEM3001v2 + 0022 XEM3010 + 0023 XEM3005 + 0028 XEM3050 + 002b XEM5010 + 002c XEM6001 + 002d XEM6010-LX45 + 002e XEM6010-LX150 + 0030 XEM6006-LX16 + 0033 XEM6002-LX9 + 0034 XEM7001-A15 + 0036 XEM7010-A50 + 0037 XEM7010-A200 + 0120 ZEM4310 + 0121 XEM6310-LX45 + 0122 XEM6310-LX150 + 0123 XEM6310MT-LX45T + 0125 XEM7350-K70T + 0126 XEM7350-K160T + 0127 XEM7350-K410T + 0128 XEM6310MT-LX150T + 0129 ZEM5305-A2 + 012b XEM7360-K160T + 012c XEM7360-K410T + 012d ZEM5310-A4 + 0130 XEM7310-A75 + 0131 XEM7310-A200 1520 Bitwire Corp. 1524 ENE Technology Inc 6680 UTS 6680 @@ -18673,6 +18702,19 @@ 24e1 Paratronic 3001 Adp-usb 3005 Radius +2516 Cooler Master Co., Ltd. + 0003 Storm Xornet + 0004 Storm QuickFire Rapid Mechanical Keyboard + 0006 Storm Recon + 0007 Storm Sentinel Advance II + 0009 Storm Quick Fire PRO + 0011 Storm Quick Fire TK + 0017 CM Storm Quick Fire Stealth + 0020 QuickFire Rapid-i Keyboard + 0027 CM Storm Coolermaster Novatouch TKL + 002d Alcor mouse + 0047 MasterKeys Pro L + 9494 Sirus Headset 2632 TwinMOS 3209 7-in-1 Card Reader 2639 Xsens diff --git a/man/binfmt.d.xml b/man/binfmt.d.xml index 5f55cb4db..4b085bcc1 100644 --- a/man/binfmt.d.xml +++ b/man/binfmt.d.xml @@ -69,7 +69,7 @@ Each file contains a list of binfmt_misc kernel binary format rules. Consult binfmt_misc.txt + url="https://www.kernel.org/doc/Documentation/admin-guide/binfmt-misc.rst">binfmt-misc.rst for more information on registration of additional binary formats and how to write rules. diff --git a/man/busctl.xml b/man/busctl.xml index 0c0d28b5d..2320cb8ed 100644 --- a/man/busctl.xml +++ b/man/busctl.xml @@ -241,6 +241,16 @@ + + BOOL + + + Controls whether to wait for the specified AF_UNIX bus socket to appear in the + file system before connecting to it. Defaults to off. When enabled, the tool will watch the file system until + the socket is created and then connect to it. + + + diff --git a/man/coredump.conf.xml b/man/coredump.conf.xml index 097296059..f6ac86aaf 100644 --- a/man/coredump.conf.xml +++ b/man/coredump.conf.xml @@ -146,6 +146,9 @@ + The defaults for all values are listed as comments in the + template /etc/systemd/coredump.conf file that + is installed by default. diff --git a/man/crypttab.xml b/man/crypttab.xml index 474d3d83e..dc43257d4 100644 --- a/man/crypttab.xml +++ b/man/crypttab.xml @@ -218,16 +218,23 @@ - This device will not be automatically unlocked - on boot. + This device will not be added to cryptsetup.target. + This means that it will not be automatically unlocked on boot, unless something else pulls + it in. In particular, if the device is used for a mount point, it'll be unlocked + automatically during boot, unless the mount point itself is also disabled with + . - The system will not wait for the device to - show up and be unlocked at boot, and not fail the boot if it - does not show up. + This device will not be a hard dependency of + cryptsetup.target. It'll be still pulled in and started, but the system + will not wait for the device to show up and be unlocked, and boot will not fail if this is + unsuccessful. Note that other units that depend on the unlocked device may still fail. In + particular, if the device is used for a mount point, the mount point itself is also needs to + have option, or the boot will fail if the device is not unlocked + successfully. diff --git a/man/custom-html.xsl b/man/custom-html.xsl index 47ce6abfe..e8a7404df 100644 --- a/man/custom-html.xsl +++ b/man/custom-html.xsl @@ -73,6 +73,18 @@ + + + + https://git.zx2c4.com/WireGuard/about/src/tools/ + + . + + + + + + diff --git a/man/file-hierarchy.xml b/man/file-hierarchy.xml index b1442dd82..4220520a1 100644 --- a/man/file-hierarchy.xml +++ b/man/file-hierarchy.xml @@ -605,8 +605,8 @@ daemon code, to create it via tmpfiles.d5 fragments during boot, or via the - RuntimeDirectory= directive of service units - (see + StateDirectory= and RuntimeDirectory= + directives of service units (see systemd.unit5 for details). @@ -694,7 +694,7 @@ /run/package - Runtime data for the package. Packages must be able to create the necessary subdirectories in this tree on their own, since the directory is flushed automatically on boot. Alternatively, a tmpfiles.d5 fragment may be used to create the necessary directories during boot. Alternatively, the RuntimeDirectory= directive of service units may be used (see systemd.unit5 for details.) + Runtime data for the package. Packages must be able to create the necessary subdirectories in this tree on their own, since the directory is flushed automatically on boot. Alternatively, a tmpfiles.d5 fragment may be used to create the necessary directories during boot, or the RuntimeDirectory= directive of service units may be used to create them at service startup (see systemd.unit5 for details). /run/log/package @@ -702,15 +702,15 @@ /var/cache/package - Persistent cache data of the package. If this directory is flushed, the application should work correctly on next invocation, though possibly slowed down due to the need to rebuild any local cache files. The application must be capable of recreating this directory should it be missing and necessary. + Persistent cache data of the package. If this directory is flushed, the application should work correctly on next invocation, though possibly slowed down due to the need to rebuild any local cache files. The application must be capable of recreating this directory should it be missing and necessary. To create an empty directory, a tmpfiles.d5 fragment or the CacheDirectory= directive of service units (see systemd.unit5) may be used. /var/lib/package - Persistent private data of the package. This is the primary place to put persistent data that does not fall into the other categories listed. Packages should be able to create the necessary subdirectories in this tree on their own, since the directory might be missing on boot. Alternatively, a tmpfiles.d5 fragment may be used to create the necessary directories during boot. + Persistent private data of the package. This is the primary place to put persistent data that does not fall into the other categories listed. Packages should be able to create the necessary subdirectories in this tree on their own, since the directory might be missing on boot. To create an empty directory, a tmpfiles.d5 fragment or the StateDirectory= directive of service units (see systemd.unit5) may be used. /var/log/package - Persistent log data of the package. As above, the package should make sure to create this directory if necessary, as it might be missing. + Persistent log data of the package. As above, the package should make sure to create this directory if necessary, possibly using tmpfiles.d5 or LogsDirectory= (see systemd.unit5), as it might be missing. /var/spool/package diff --git a/man/halt.xml b/man/halt.xml index 0abcdb475..78860d94d 100644 --- a/man/halt.xml +++ b/man/halt.xml @@ -166,8 +166,12 @@ Notes - These are legacy commands available for compatibility - only. + These commands are implemented in a way that preserves compatiblity with + the original SysV commands. + systemctl1 + verbs halt, poweroff, + reboot provide the same functionality with some additional + features. diff --git a/man/journalctl.xml b/man/journalctl.xml index 257ff5a81..37fb0d67f 100644 --- a/man/journalctl.xml +++ b/man/journalctl.xml @@ -578,6 +578,29 @@ priorities. + + + + + Filter output to entries where the MESSAGE= + field matches the specified regular expression. PERL-compatible regular expressions + are used, see + pcre2pattern3 + for a detailed description of the syntax. + + If the pattern is all lowercase, matching is case insensitive. + Otherwise, matching is case sensitive. This can be overridden with the + option, see below. + + + + + + + Make pattern matching case sensitive or case insenstive. + + + diff --git a/man/kernel-command-line.xml b/man/kernel-command-line.xml index 422c0607d..be55f14e4 100644 --- a/man/kernel-command-line.xml +++ b/man/kernel-command-line.xml @@ -85,6 +85,7 @@ systemd.crash_shell systemd.crash_reboot systemd.confirm_spawn + systemd.service_watchdogs systemd.show_status systemd.log_target= systemd.log_level= diff --git a/man/machinectl.xml b/man/machinectl.xml index 43f4d127b..1adebf5da 100644 --- a/man/machinectl.xml +++ b/man/machinectl.xml @@ -439,9 +439,9 @@ specified, the connection is made to the local host instead. This works similar to login but immediately invokes a user process. This command runs the - specified executable with the specified arguments, or - /bin/sh if none is specified. By default, - opens a root shell, but by using + specified executable with the specified arguments, or the + default shell for the user if none is specified, or + /bin/sh if no default shell is found. By default, , or by prefixing the machine name with a username and an @ character, a different user may be selected. Use to set @@ -881,7 +881,7 @@ - cancel-transfers ID + cancel-transfer ID Aborts a download, import or export of the container or VM image with the specified ID. To list ongoing diff --git a/man/rules/meson.build b/man/rules/meson.build index 499fe6d19..bfc267b54 100644 --- a/man/rules/meson.build +++ b/man/rules/meson.build @@ -105,7 +105,12 @@ manpages = [ ['sd-journal', '3', [], ''], ['sd-login', '3', [], 'HAVE_PAM'], ['sd_booted', '3', [], ''], - ['sd_bus_add_match', '3', [], ''], + ['sd_bus_add_match', + '3', + ['sd_bus_add_match_async', + 'sd_bus_match_signal', + 'sd_bus_match_signal_async'], + ''], ['sd_bus_creds_get_pid', '3', ['sd_bus_creds_get_audit_login_uid', @@ -181,6 +186,7 @@ manpages = [ ['SD_BUS_ERROR_END', 'SD_BUS_ERROR_MAP', 'sd_bus_error_map'], ''], ['sd_bus_get_fd', '3', [], ''], + ['sd_bus_is_open', '3', ['sd_bus_is_ready'], ''], ['sd_bus_message_append', '3', ['sd_bus_message_appendv'], ''], ['sd_bus_message_append_array', '3', @@ -200,6 +206,7 @@ manpages = [ ['sd_bus_message_get_realtime_usec', 'sd_bus_message_get_seqnum'], ''], ['sd_bus_message_read_basic', '3', [], ''], + ['sd_bus_message_set_destination', '3', ['sd_bus_message_set_sender'], ''], ['sd_bus_negotiate_fds', '3', ['sd_bus_negotiate_creds', 'sd_bus_negotiate_timestamp'], @@ -210,7 +217,15 @@ manpages = [ ['sd_bus_path_decode', 'sd_bus_path_decode_many', 'sd_bus_path_encode_many'], ''], ['sd_bus_process', '3', [], ''], - ['sd_bus_request_name', '3', ['sd_bus_release_name'], ''], + ['sd_bus_request_name', + '3', + ['sd_bus_release_name', + 'sd_bus_release_name_async', + 'sd_bus_request_name_async'], + ''], + ['sd_bus_set_connected_signal', '3', ['sd_bus_get_connected_signal'], ''], + ['sd_bus_set_sender', '3', ['sd_bus_get_sender'], ''], + ['sd_bus_set_watch_bind', '3', ['sd_bus_get_watch_bind'], ''], ['sd_bus_track_add_name', '3', ['sd_bus_track_add_sender', @@ -594,6 +609,7 @@ manpages = [ '8', ['systemd-random-seed'], 'ENABLE_RANDOMSEED'], + ['systemd-rc-local-generator', '8', [], ''], ['systemd-remount-fs.service', '8', ['systemd-remount-fs'], ''], ['systemd-resolve', '1', [], 'ENABLE_RESOLVE'], ['systemd-resolved.service', '8', ['systemd-resolved'], 'ENABLE_RESOLVE'], @@ -654,6 +670,7 @@ manpages = [ ['systemd', '1', ['init'], ''], ['systemd.automount', '5', [], ''], ['systemd.device', '5', [], ''], + ['systemd.dnssd', '5', [], 'ENABLE_RESOLVE'], ['systemd.environment-generator', '7', [], 'ENABLE_ENVIRONMENT_D'], ['systemd.exec', '5', [], ''], ['systemd.generator', '7', [], ''], @@ -662,7 +679,6 @@ manpages = [ ['systemd.link', '5', [], ''], ['systemd.mount', '5', [], ''], ['systemd.netdev', '5', [], 'ENABLE_NETWORKD'], - ['systemd.dnssd', '5', [], 'ENABLE_RESOLVE'], ['systemd.network', '5', [], 'ENABLE_NETWORKD'], ['systemd.nspawn', '5', [], ''], ['systemd.offline-updates', '7', [], ''], diff --git a/man/runlevel.xml b/man/runlevel.xml index b3d90d8ff..596307af9 100644 --- a/man/runlevel.xml +++ b/man/runlevel.xml @@ -173,10 +173,9 @@ - /var/run/utmp + /run/utmp - The utmp database runlevel - reads the previous and current runlevel + The utmp database runlevel reads the previous and current runlevel from. diff --git a/man/sd_bus_add_match.xml b/man/sd_bus_add_match.xml index 4772c738a..f11d07828 100644 --- a/man/sd_bus_add_match.xml +++ b/man/sd_bus_add_match.xml @@ -45,14 +45,24 @@ sd_bus_add_match + sd_bus_add_match_async + sd_bus_match_signal + sd_bus_match_signal_async - Add a match rule for message dispatching + Add a match rule for incoming message dispatching #include <systemd/sd-bus.h> + + typedef int (*sd_bus_message_handler_t) + sd_bus_message *m + void *userdata + sd_bus_error *ret_error + + int sd_bus_add_match sd_bus *bus @@ -63,65 +73,122 @@ - typedef int (*sd_bus_message_handler_t) - sd_bus_message *m + int sd_bus_add_match_async + sd_bus *bus + sd_bus_slot **slot + const char *match + sd_bus_message_handler_t callback + sd_bus_message_handler_t install_callback void *userdata - sd_bus_error *ret_error + + + int sd_bus_match_signal + sd_bus *bus + sd_bus_slot **slot + const char *sender + const char *path + const char *interface + const char *member + sd_bus_message_handler_t callback + void *userdata + + + + int sd_bus_match_signal_async + sd_bus *bus + sd_bus_slot **slot + const char *sender + const char *path + const char *interface + const char *member + sd_bus_message_handler_t callback + sd_bus_message_handler_t install_callback + void *userdata + + Description - - sd_bus_add_match() installs a match rule for incoming messages received on the specified bus - connection object bus. The syntax of the match rule expression passed in - match is described in the D-Bus Specification. The specified handler - function callback is called for eaching incoming message matching the specified - expression, the userdata parameter is passed as-is to the callback function. + sd_bus_add_match() installs a match rule for messages received on the specified bus + connection object bus. The syntax of the match rule expression passed in + match is described in the D-Bus Specification. The specified handler + function callback is called for eaching incoming message matching the specified expression, + the userdata parameter is passed as-is to the callback function. The match is installed + synchronously when connected to a bus broker, i.e. the call sends a control message requested the match to be added + to the broker and waits until the broker confirms the match has been installed successfully. + + sd_bus_add_match_async() operates very similar to + sd_bus_match_signal(), however it installs the match asynchronously, in a non-blocking + fashion: a request is sent to the broker, but the call does not wait for a response. The + install_callback function is called when the response is later received, with the response + message from the broker as parameter. If this function is specified as NULL a default + implementation is used that terminates the bus connection should installing the match fail. + + sd_bus_match_signal() is very similar to sd_bus_add_match(), but + only matches signals, and instead of a match expression accepts four parameters: sender (the + service name of the sender), path (the object path of the emitting object), + interface (the interface the signal belongs to), member (the signal + name), from which the match string is internally generated. Optionally, these parameters may be specified as + NULL in which case the relevant field of incoming signals is not tested. + + sd_bus_match_signal_async() is combines the signal matching logic of + sd_bus_match_signal() with the asynchronous behaviour of + sd_bus_add_match_async(). + + On success, and if non-NULL, the slot return parameter will be + set to a slot object that may be used as a reference to the installed match, and may be utilized to remove it again + at a later time with + sd_bus_slot_unref3. If specified + as NULL the lifetime of the match is bound to the lifetime of the bus object itself, and the + match cannot be removed independently. + + The message m passed to the callback is only borrowed, that is, the callback should + not call sd_bus_message_unref3 + on it. If the callback wants to hold on to the message beyond the lifetime of the callback, it needs to call + sd_bus_message_ref3 to create a + new reference. + + If an error occurs during the callback invocation, the callback should return a negative error number + (optionally, a more precise error may be returned in ret_error, as well). If it wants other + callbacks that match the same rule to be called, it should return 0. Otherwise it should return a positive integer. - - On success, and if non-NULL, the slot return parameter will be set to - a slot object that may be used as a reference to the installed match, and may be utilized to remove it again at a - later time with - sd_bus_slot_unref3. If - specified as NULL the lifetime of the match is bound to the lifetime of the bus object itself, and the match - cannot be removed independently. - - - - The message m passed to the callback is only borrowed, that is, the callback should not - call sd_bus_message_unref3 on - it. If the callback wants to hold on to the message beyond the lifetime of the callback, it needs to call - sd_bus_message_ref3 to create - a new reference. - - - - If an error occurs during the callback invocation, the callback should return a negative error number. If it - wants other callbacks that match the same rule to be called, it should return 0. Otherwise it should return a - positive integer. - + If the bus refers to a direct connection (i.e. not a bus connection, as set with + sd_bus_set_bus_client3) the + match is only installed on the client side, and the synchronous and asynchronous functions operate the same. Return Value - On success, sd_bus_add_match() returns 0 or a positive integer. On failure, it returns a - negative errno-style error code. + On success, sd_bus_add_match() and the other calls return 0 or a positive integer. On + failure, they return a negative errno-style error code. + + Notes + + sd_bus_add_match() and the other functions described here are available as a shared + library, which can be compiled and linked to with the libsystemd pkg-config1 file. + + See Also systemd1, - sd-bus3 + sd-bus3, + sd_bus_slot_unref3, + sd_bus_message_ref3, + sd_bus_set_bus_client3 diff --git a/man/sd_bus_creds_get_pid.xml b/man/sd_bus_creds_get_pid.xml index 6bc78edf0..d08a24ea8 100644 --- a/man/sd_bus_creds_get_pid.xml +++ b/man/sd_bus_creds_get_pid.xml @@ -369,7 +369,7 @@ sd_bus_creds_get_cgroup() will retrieve the control group path. See cgroups.txt. + url="https://www.kernel.org/doc/Documentation/cgroup-v1/cgroups.txt">cgroups.txt. sd_bus_creds_get_unit() will retrieve diff --git a/man/sd_bus_is_open.xml b/man/sd_bus_is_open.xml new file mode 100644 index 000000000..9bc671fc3 --- /dev/null +++ b/man/sd_bus_is_open.xml @@ -0,0 +1,137 @@ + + + + + + + + + sd_bus_is_open + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + sd_bus_is_open + 3 + + + + sd_bus_is_open + sd_bus_is_ready + + Check whether the a bus connection is open or ready. + + + + + #include <systemd/sd-bus.h> + + + int sd_bus_is_open + sd_bus *bus + + + + int sd_bus_is_ready + sd_bus *bus + + + + + + + Description + + sd_bus_is_open() checks whether the specified bus connection is open, i.e. in the + process of being established, already established or in the process of being torn down. It returns zero when the + connection has not been started yet + (i.e. sd_bus_start3 or some + equivalent call has not been invoked yet), or is fully terminated again (for example after + sd_bus_close3), it returns + positive otherwise. + + sd_bus_is_ready() checks whether the specified connection is fully established, + i.e. completed the connection and authentication phases of the protocol and received the + Hello() method call response, and is not in the process of being torn down again. It returns + zero outside of this state, and positive otherwise. Effectively, this function returns positive while regular + messages can be sent or received on the connection. + + To be notified when the connection is fully established, use + sd_bus_set_connected_signal3 and + install a match for the Connected() signal on the + org.freedesktop.DBus.Local interface. To be notified when the connection is torn down again, + install a match for the Disconnected() signal on the + org.freedesktop.DBus.Local interface. + + + + Return Value + + On success, these functions return 0 or a positive integer. On failure, they return a negative errno-style + error code. + + + + Errors + + Returned errors may indicate the following problems: + + + + -ECHILD + + The bus connection has been created in a different process. + + + + + + Notes + + sd_bus_is_open() and sd_bus_is_ready() are available as + a shared library, which can be compiled and linked to with the libsystemd pkg-config1 file. + + + + See Also + + + systemd1, + sd-bus3, + sd_bus_start3, + sd_bus_close3, + sd_bus_set_connected_signal3 + + + + diff --git a/man/sd_bus_message_set_destination.xml b/man/sd_bus_message_set_destination.xml new file mode 100644 index 000000000..ff69a2315 --- /dev/null +++ b/man/sd_bus_message_set_destination.xml @@ -0,0 +1,137 @@ + + + + + + + + sd_bus_message_set_destination + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + sd_bus_message_set_destination + 3 + + + + sd_bus_message_set_destination + sd_bus_message_set_sender + Set the destination or sender service name of a bus message + + + + + #include <systemd/sd-bus.h> + + + int sd_bus_message_set_destination + sd_bus_message *message + const char *destination + + + + int sd_bus_message_set_sender + sd_bus_message *message + const char *sender + + + + + + Description + + sd_bus_message_set_destination() sets the destination service name for the specified bus + message object. The specified name must be a valid unique or well-known service name. + + sd_bus_message_set_sender() sets the sender service name for the specified bus message + object. The specified name must be a valid unique or well-known service name. This function is useful only for + messages to send on direct connections as for connections to bus brokers the broker will fill in the destination + field anyway, and the sender field set by original sender is ignored. + + + + Return Value + + On success, these calls return 0 or a positive integer. On failure, these calls return a negative errno-style + error code. + + + + Errors + + Returned errors may indicate the following problems: + + + + -EINVAL + + A specified parameter is invalid. + + + + -EPERM + + The message is already sealed. + + + + -EEXIST + + The message already has a destination or sender field set. + + + + + + Notes + + The sd_bus_message_set_destination() and + sd_bus_message_set_sender() interfaces + are available as a shared library, which can be compiled and + linked to with the + libsystemd pkg-config1 + file. + + + + See Also + + + systemd1, + sd-bus3, + sd_bus_new3, + sd_bus_set_sender3 + + + + diff --git a/man/sd_bus_request_name.xml b/man/sd_bus_request_name.xml index f44cfdb1a..9e668f0b0 100644 --- a/man/sd_bus_request_name.xml +++ b/man/sd_bus_request_name.xml @@ -46,7 +46,9 @@ sd_bus_request_name + sd_bus_request_name_async sd_bus_release_name + sd_bus_release_name_async Request or release a well-known service name on a bus @@ -61,71 +63,103 @@ uint64_t flags + + int sd_bus_request_name_async + sd_bus *bus + sd_bus_slot **slot + const char *name + uint64_t flags + sd_bus_message_handler_t callback + void *userdata + + int sd_bus_release_name sd_bus *bus const char *name + + + int sd_bus_release_name_async + sd_bus *bus + sd_bus_slot **slot + const char *name + sd_bus_message_handler_t callback + void *userdata + Description - sd_bus_request_name() requests a - well-known service name on a bus. It takes a bus connection, a - valid bus name and a flags parameter. The flags parameter is a - combination of the following flags: + sd_bus_request_name() requests a well-known service name on a bus. It takes a bus + connection, a valid bus name and a flags parameter. The flags parameter is a combination of the following + flags: SD_BUS_NAME_ALLOW_REPLACEMENT - After acquiring the name successfully, permit - other peers to take over the name when they try to acquire it - with the SD_BUS_NAME_REPLACE_EXISTING flag - set. If SD_BUS_NAME_ALLOW_REPLACEMENT is - not set on the original request, such a request by other peers - will be denied. + After acquiring the name successfully, permit other peers to take over the name when they try + to acquire it with the SD_BUS_NAME_REPLACE_EXISTING flag set. If + SD_BUS_NAME_ALLOW_REPLACEMENT is not set on the original request, such a request by other + peers will be denied. SD_BUS_NAME_REPLACE_EXISTING - Take over the name if it is already acquired - by another peer, and that other peer has permitted takeover by - setting SD_BUS_NAME_ALLOW_REPLACEMENT while - acquiring it. + Take over the name if it is already acquired by another peer, and that other peer has permitted + takeover by setting SD_BUS_NAME_ALLOW_REPLACEMENT while acquiring it. SD_BUS_NAME_QUEUE - Queue the acquisition of the name when the - name is already taken. + Queue the acquisition of the name when the name is already taken. - sd_bus_release_name() releases an - acquired well-known name. It takes a bus connection and a valid - bus name as parameters. + sd_bus_request_name() operates in a synchronous fashion: a message requesting the name + is sent to the bus broker, and the call waits until the broker responds. + + sd_bus_request_name_async() is an asynchronous version of of + sd_bus_release_name(). Instead of waiting for the request to complete, the request message is + enqueued. The specified callback will be called when the broker's response is received. If + the parameter is specified as NULL a default implementation is used instead which will + terminate the connection when the name cannot be acquired. The function returns a slot object in its + slot parameter — if it is passed as non-NULL — which may be used as a + reference to the name request operation. Use + sd_bus_slot_unref3 to destroy + this reference. Note that destroying the reference will not unregister the name, but simply ensure the specified + callback is no longer called. + + sd_bus_release_name() releases an acquired well-known name. It takes a bus connection + and a valid bus name as parameters. This function operates synchronously, sending a release request message to the + bus broker and waiting for it to reply. + + sd_bus_release_name_async() is an asynchronous version of + sd_bus_release_name(). The specified callback function is called when + the name has been released successfully. If specified as NULL a generic implementation is used + that ignores the result of the operation. As above, the slot (if + non-NULL) is set to an object that may be used to reference the operation. + + These functions are supported only on bus connections, i.e. connections to a bus broker and not on direct + connections. Return Value - On success, these calls return 0 or a positive integer. On - failure, these calls return a negative errno-style error - code. + On success, these calls return 0 or a positive integer. On failure, these calls return a negative errno-style + error code. - If SD_BUS_NAME_QUEUE is specified, - sd_bus_request_name() will return 0 when the - name is already taken by another peer and the client has been - added to the queue for the name. In that case, the caller can - subscribe to NameOwnerChanged signals to be - notified when the name is successfully acquired. - sd_bus_request_name() returns > 0 when the - name has immediately been acquired successfully. + If SD_BUS_NAME_QUEUE is specified, sd_bus_request_name() will return + 0 when the name is already taken by another peer and the client has been added to the queue for the name. In that + case, the caller can subscribe to NameOwnerChanged signals to be notified when the name is + successfully acquired. sd_bus_request_name() returns > 0 when the name has immediately + been acquired successfully. @@ -137,56 +171,50 @@ -EALREADY - The caller already is the owner of the - specified name. + The caller already is the owner of the specified name. -EEXIST - The name has already been acquired by a - different peer, and SD_BUS_NAME_REPLACE_EXISTING was not - specified or the other peer did not specify - SD_BUS_NAME_ALLOW_REPLACEMENT while acquiring the + The name has already been acquired by a different peer, and SD_BUS_NAME_REPLACE_EXISTING was + not specified or the other peer did not specify SD_BUS_NAME_ALLOW_REPLACEMENT while acquiring the name. -ESRCH - It was attempted to release a name that is - currently not registered on the bus. + It was attempted to release a name that is currently not registered on the + bus. -EADDRINUSE - It was attempted to release a name that is - owned by a different peer on the bus. + It was attempted to release a name that is owned by a different peer on the + bus. -EINVAL - A specified parameter is invalid. This is also - generated when the requested name is a special service name - reserved by the D-Bus specification, or when the operation is - requested on a connection that does not refer to a - bus. + A specified parameter is invalid. This is also generated when the requested name is a special + service name reserved by the D-Bus specification, or when the operation is requested on a connection that does + not refer to a bus. -ENOTCONN - The bus connection has been - disconnected. + The bus connection has been disconnected. -ECHILD - The bus connection has been created in a - different process than the current one. + The bus connection has been created in a different process than the current + one. @@ -194,12 +222,9 @@ Notes - The sd_bus_acquire_name() and - sd_bus_release_name() interfaces are - available as a shared library, which can be compiled and linked to - with the - libsystemd pkg-config1 - file. + The sd_bus_acquire_name() and the other interfaces described here are available as a + shared library, which can be compiled and linked to with the libsystemd pkg-config1 file. @@ -208,7 +233,8 @@ systemd1, sd-bus3, - sd_bus_new3 + sd_bus_new3, + sd_bus_slot_unref3 diff --git a/man/sd_bus_set_connected_signal.xml b/man/sd_bus_set_connected_signal.xml new file mode 100644 index 000000000..9374dac3a --- /dev/null +++ b/man/sd_bus_set_connected_signal.xml @@ -0,0 +1,143 @@ + + + + + + + + + sd_bus_set_connected_signal + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + sd_bus_set_connected_signal + 3 + + + + sd_bus_set_connected_signal + sd_bus_get_connected_signal + + Control emmission of local connection establishment signal on bus connections + + + + + #include <systemd/sd-bus.h> + + + int sd_bus_set_connected_signal + sd_bus *bus + int b + + + + int sd_bus_get_connected_signal + sd_bus *bus + + + + + + + Description + + sd_bus_set_connected_signal() may be used to control whether a local, synthetic + Connected() signal message shall be generated and enqueued for dispatching when the connection + is fully established. If the b parameter is zero the message is not generated (the default), + otherwise it is generated. + + sd_bus_get_connected_signal() may be used to query whether this feature is enabled. It + returns zero if not, positive otherwise. + + The Connected() signal message is generated from the + org.freedesktop.DBus.Local service and interface, and + /org/freedesktop/DBus/Local object path. Use + sd_bus_match_signal_async3 to + match on this signal. + + This message is particularly useful on slow transports where connections take a long time to be + established. This is especially the case when + sd_bus_set_watch_bind3 is + used. The signal is generated when the + sd_bus_is_ready3 returns + positive for the first time. + + The Connected() signal corresponds with the Disconnected() signal + that is synthesized locally when the connection is terminated. The latter is generated unconditionally however, + unlike the former which needs to be enabled explicitly before it is generated, with + sd_bus_set_connected_signal(). + + + + Return Value + + On success, these functions return 0 or a positive integer. On failure, they return a negative errno-style + error code. + + + + Errors + + Returned errors may indicate the following problems: + + + + -ECHILD + + The bus connection has been created in a different process. + + + + + + Notes + + sd_bus_set_connected_signal() and sd_bus_get_connected_signal() are available as + a shared library, which can be compiled and linked to with the libsystemd pkg-config1 file. + + + + See Also + + + systemd1, + sd-bus3, + sd_bus_match_signal_async3, + sd_bus_set_watch_bind3, + sd_bus_is_ready3 + + + + diff --git a/man/sd_bus_set_sender.xml b/man/sd_bus_set_sender.xml new file mode 100644 index 000000000..38efda728 --- /dev/null +++ b/man/sd_bus_set_sender.xml @@ -0,0 +1,136 @@ + + + + + + + + + sd_bus_set_sender + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + sd_bus_set_sender + 3 + + + + sd_bus_set_sender + sd_bus_get_sender + + Configure default sender for outgoing messages + + + + + #include <systemd/sd-bus.h> + + + int sd_bus_set_sender + sd_bus *bus + const char* name + + + + int sd_bus_get_sender + sd_bus *bus + const char** name + + + + + + + Description + + sd_bus_set_sender() configures the default sender service name to use for outgoing + messages. The service name specified in the name parameter is set on all outgoing messages + that are sent on the connection and have no sender set yet, for example through + sd_bus_message_set_sender3. Note + that this function is only supported on direct connections, i.e. not on connections to a bus broker as the broker + will fill in the sender service name automatically anyway. By default no sender name is configured, and hence + messages are sent without sender field set. If the name parameter is specified as + NULL the default sender service name is cleared, returning to the default state if a default + sender service name was set before. If passed as non-NULL the specified name must be a valid + unique or well-known service name. + + sd_bus_get_sender() may be used to query the current default service name for outgoing + messages. + + + + Return Value + + On success, these functions return 0 or a positive integer. On failure, they return a negative errno-style + error code. + + + + Errors + + Returned errors may indicate the following problems: + + + + -ECHILD + + The bus connection has been created in a different process. + + + + -EPERM + + The specified bus connection object is a not a direct but a brokered connection. + + + + + + Notes + + sd_bus_set_sender() and sd_bus_get_sender() are available as + a shared library, which can be compiled and linked to with the libsystemd pkg-config1 file. + + + + See Also + + + systemd1, + sd-bus3, + sd_bus_message_set_sender3 + + + + diff --git a/man/sd_bus_set_watch_bind.xml b/man/sd_bus_set_watch_bind.xml new file mode 100644 index 000000000..5e6a6fa58 --- /dev/null +++ b/man/sd_bus_set_watch_bind.xml @@ -0,0 +1,152 @@ + + + + + + + + + sd_bus_set_watch_bind + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + sd_bus_set_watch_bind + 3 + + + + sd_bus_set_watch_bind + sd_bus_get_watch_bind + + Control socket binding watching on bus connections + + + + + #include <systemd/sd-bus.h> + + + int sd_bus_set_watch_bind + sd_bus *bus + int b + + + + int sd_bus_get_watch_bind + sd_bus *bus + + + + + + + Description + + sd_bus_set_watch_bind() may be used to enable or disable client-side watching of server + socket binding for a bus connection object. If the b is true, the feature is enabled, + otherwise disabled (which is the default). When enabled, and the selected bus address refers to an + AF_UNIX socket in the file system which does not exist while the connection attempt is made an + inotify7 watch is installed on + it, waiting for the socket to appear. As soon as the socket appears the connection is made. This functionality is + useful in particular in early-boot programs that need to run before the system bus is available, but want to + connect to it the instant it may be connected to. + + sd_bus_get_watch_bind() may be used to query the current setting of this feature. It + returns zero when the feature is disabled, and positive if enabled. + + Note that no timeout is applied while it is waited for the socket to appear. This means that any synchronous + remote operation (such as + sd_bus_call3, + sd_bus_add_match3 or + sd_bus_request_name3), that is + used on a connection with this feature enabled that is not established yet might block unbounded if the socket is + never created. However, asynchronous remote operations (such as + sd_bus_send3, + sd_bus_add_match_async3 or + sd_bus_request_match_async3) do + not block in this case, and safely enqueue the requested operations to be dispatched the instant the connection is + set up. + + Use sd_bus_is_ready3 to + determine whether the connection is fully established, i.e. whether the peer socket has been bound, connected to + and authenticated. Use + sd_bus_set_connected_signal3 to + be notified when the connection is fully established. + + + + + Return Value + + On success, these functions return 0 or a positive integer. On failure, they return a negative errno-style + error code. + + + + Errors + + Returned errors may indicate the following problems: + + + + -ECHILD + + The bus connection has been created in a different process. + + + + + + Notes + + sd_bus_set_watch_bind() and sd_bus_get_watch_bind() are available as + a shared library, which can be compiled and linked to with the libsystemd pkg-config1 file. + + + + See Also + + + systemd1, + sd-bus3, + inotify7, + sd_bus_call3, + sd_bus_add_match3, + sd_bus_request_name3, + sd_bus_is_ready3, + sd_bus_set_connected_signal3 + + + + diff --git a/man/sd_journal_get_fd.xml b/man/sd_journal_get_fd.xml index b162b2bf1..b15fc1728 100644 --- a/man/sd_journal_get_fd.xml +++ b/man/sd_journal_get_fd.xml @@ -230,6 +230,20 @@ else { journal. + + Signal safety + + In general, sd_journal_get_fd(), sd_journal_get_events(), and + sd_journal_get_timeout() are not "async signal safe" in the meaning of + signal-safety7. + Nevertheless, only the first call to any of those three functions performs unsafe operations, so subsequent calls + are safe. + + sd_journal_process() and sd_journal_wait() are not + safe. sd_journal_reliable_fd() is safe. + + Notes diff --git a/man/sd_journal_print.xml b/man/sd_journal_print.xml index f771ba307..038d3bbbd 100644 --- a/man/sd_journal_print.xml +++ b/man/sd_journal_print.xml @@ -205,8 +205,8 @@ sd_journal_send("MESSAGE=Hello World, this is PID %lu!", (unsigned long) getpid( Thread safety All functions listed here are thread-safe and may be called in parallel from multiple threads. - sd_journal_sendv() is "async signal safe" in the meaning of - signal7. + sd_journal_sendv() is "async signal safe" in the meaning of signal-safety7. sd_journal_print, diff --git a/man/sd_journal_stream_fd.xml b/man/sd_journal_stream_fd.xml index 29d64f91d..13972aea7 100644 --- a/man/sd_journal_stream_fd.xml +++ b/man/sd_journal_stream_fd.xml @@ -94,6 +94,10 @@ It is recommended that applications log UTF-8 messages only with this API, but this is not enforced. + + Each invocation of sd_journal_stream_fd() allocates a new log stream file descriptor, + that is not shared with prior or later invocations. The file descriptor is write-only (its reading direction is + shut down), and O_NONBLOCK is turned off initially. @@ -103,12 +107,19 @@ success or a negative errno-style error code. + + Signal safety + + sd_journal_stream_fd() is "async signal safe" in the meaning of signal-safety7. + + + Notes Function sd_journal_stream_fd() is thread-safe and may be called - from multiple threads. All calls will return the same file descriptor, although temporarily - multiple file descriptors may be open. + from multiple threads. The sd_journal_stream_fd() interface is available as a shared library, which can be compiled and linked to diff --git a/man/systemd-analyze.xml b/man/systemd-analyze.xml index 876f96d55..4f7248cd0 100644 --- a/man/systemd-analyze.xml +++ b/man/systemd-analyze.xml @@ -53,7 +53,7 @@ systemd-analyze - Analyze system boot-up performance + Analyze and debug system manager @@ -94,24 +94,14 @@ systemd-analyze OPTIONS - set-log-level - LEVEL + log-level + LEVEL systemd-analyze OPTIONS - set-log-target - TARGET - - - systemd-analyze - OPTIONS - get-log-level - - - systemd-analyze - OPTIONS - get-log-target + log-target + TARGET systemd-analyze @@ -131,6 +121,12 @@ calendar SPECS + + systemd-analyze + OPTIONS + service-watchdogs + BOOL + @@ -139,7 +135,8 @@ systemd-analyze may be used to determine system boot-up performance statistics and retrieve other state and tracing information from the system and service manager, and to - verify the correctness of unit files. + verify the correctness of unit files. It is also used to access + special functions useful for advanced system manager debugging. systemd-analyze time prints the time spent in the kernel before userspace has been reached, the time @@ -191,26 +188,20 @@ state. Its format is subject to change without notice and should not be parsed by applications. - systemd-analyze set-log-level - LEVEL changes the current log - level of the systemd daemon to - LEVEL (accepts the same values as + systemd-analyze log-level + prints the current log level of the systemd daemon. + If an optional argument LEVEL is provided, then the command changes the current log + level of the systemd daemon to LEVEL (accepts the same values as described in systemd1). - systemd-analyze set-log-target - TARGET changes the current log - target of the systemd daemon to - TARGET (accepts the same values as + systemd-analyze log-target + prints the current log target of the systemd daemon. + If an optional argument TARGET is provided, then the command changes the current log + target of the systemd daemon to TARGET (accepts the same values as , described in systemd1). - systemd-analyze get-log-level - prints the current log level of the systemd daemon. - - systemd-analyze get-log-target - prints the current log target of the systemd daemon. - systemd-analyze syscall-filter SET will list system calls contained in the specified system call set SET, or all known sets if no sets are specified. Argument SET must include @@ -232,6 +223,14 @@ syntax described in systemd.time7. + systemd-analyze service-watchdogs + prints the current state of service runtime watchdogs of the systemd daemon. + If an optional boolean argument is provided, then globally enables or disables the service + runtime watchdogs () and emergency actions (e.g. + or ); see + systemd.service5. + The hardware watchdog is not affected by this setting. + If no command is passed, systemd-analyze time is implied. diff --git a/man/systemd-getty-generator.xml b/man/systemd-getty-generator.xml index adb48a7fd..17fd0e9c1 100644 --- a/man/systemd-getty-generator.xml +++ b/man/systemd-getty-generator.xml @@ -75,7 +75,7 @@ sufficient to redirect the kernel console with a kernel command line argument such as console= to get both kernel messages and a getty prompt on a serial TTY. See kernel-parameters.txt + url="https://www.kernel.org/doc/Documentation/admin-guide/kernel-parameters.txt">kernel-parameters.txt for more information on the console= kernel parameter. diff --git a/man/systemd-journal-gatewayd.service.xml b/man/systemd-journal-gatewayd.service.xml index 4d461d9be..dbc859285 100644 --- a/man/systemd-journal-gatewayd.service.xml +++ b/man/systemd-journal-gatewayd.service.xml @@ -281,7 +281,7 @@ boot Limit events to the current boot of the system - (like journalctl --this-boot). + (like journalctl -b). diff --git a/man/systemd-logind.service.xml b/man/systemd-logind.service.xml index b51158b7c..f3a3b2420 100644 --- a/man/systemd-logind.service.xml +++ b/man/systemd-logind.service.xml @@ -100,9 +100,9 @@ logind.conf5 for information about the configuration of this service. - See Multi-Seat - on Linux for an introduction into basic concepts of logind + See + sd-login3 + for information about the basic concepts of logind such as users, sessions and seats. See the loginctl1, logind.conf5, pam_systemd8 + sd-login3 diff --git a/man/systemd-mount.xml b/man/systemd-mount.xml index 87bc2b36e..76ea0550d 100644 --- a/man/systemd-mount.xml +++ b/man/systemd-mount.xml @@ -159,6 +159,14 @@ Additional mount options for the mount point. + + + + Let the specified user USER own the mounted file system. + This is done by appending and options to the list + of mount options. Only certain file systems support this option. + + diff --git a/man/systemd-notify.xml b/man/systemd-notify.xml index acd4ee41f..874bdd882 100644 --- a/man/systemd-notify.xml +++ b/man/systemd-notify.xml @@ -122,6 +122,15 @@ sd_notify3. + + USER + + Set the user ID to send the notification from. Takes a UNIX user name or numeric UID. When + specified the notification message will be sent with the specified UID as sender, in place of the user the + command was invoked as. This option requires sufficient privileges in order to be able manipulate the user + identity of the process. + + diff --git a/man/systemd-nspawn.xml b/man/systemd-nspawn.xml index 3dbdf376d..633d93938 100644 --- a/man/systemd-nspawn.xml +++ b/man/systemd-nspawn.xml @@ -149,7 +149,7 @@ Options If option is specified, the arguments - are used as arguments for the init binary. Otherwise, + are used as arguments for the init program. Otherwise, COMMAND specifies the program to launch in the container, and the remaining arguments are used as arguments for this program. If is not used and @@ -273,12 +273,12 @@ Invoke the shell or specified program as process ID (PID) 2 instead of PID 1 (init). By - default, if neither this option nor is used, the selected binary is run as process with - PID 1, a mode only suitable for programs that are aware of the special semantics that the process with PID 1 - has on UNIX. For example, it needs to reap all processes reparented to it, and should implement + default, if neither this option nor is used, the selected program is run as the process + with PID 1, a mode only suitable for programs that are aware of the special semantics that the process with + PID 1 has on UNIX. For example, it needs to reap all processes reparented to it, and should implement sysvinit compatible signal handling (specifically: it needs to reboot on SIGINT, reexecute on SIGTERM, reload configuration on SIGHUP, and so on). With a minimal stub init - process is run as PID 1 and the selected binary is executed as PID 2 (and hence does not need to implement any + process is run as PID 1 and the selected program is executed as PID 2 (and hence does not need to implement any special semantics). The stub init process will reap processes as necessary and react appropriately to signals. It is recommended to use this mode to invoke arbitrary commands in containers, unless they have been modified to run correctly as PID 1. Or in other words: this switch should be used for pretty much all commands, @@ -291,9 +291,9 @@ - Automatically search for an init binary and invoke it as PID 1, instead of a shell or a user + Automatically search for an init program and invoke it as PID 1, instead of a shell or a user supplied program. If this option is used, arguments specified on the command line are used as arguments for the - init binary. This option may not be combined with . + init program. This option may not be combined with . The following table explains the different modes of invocation and relationship to (see above): @@ -322,7 +322,7 @@ specified - An init binary as automatically searched and run as PID 1 in the container. The passed parameters are used as invocation parameters for this process. + An init program is automatically searched for and run as PID 1 in the container. The passed parameters are used as invocation parameters for this process. @@ -398,6 +398,7 @@ + Make the container part of the specified slice, instead of the default @@ -705,22 +706,17 @@ - List one or more additional capabilities to - grant the container. Takes a comma-separated list of - capability names, see + List one or more additional capabilities to grant the container. + Takes a comma-separated list of capability names, see capabilities7 - for more information. Note that the following capabilities - will be granted in any way: CAP_CHOWN, CAP_DAC_OVERRIDE, - CAP_DAC_READ_SEARCH, CAP_FOWNER, CAP_FSETID, CAP_IPC_OWNER, - CAP_KILL, CAP_LEASE, CAP_LINUX_IMMUTABLE, - CAP_NET_BIND_SERVICE, CAP_NET_BROADCAST, CAP_NET_RAW, - CAP_SETGID, CAP_SETFCAP, CAP_SETPCAP, CAP_SETUID, - CAP_SYS_ADMIN, CAP_SYS_CHROOT, CAP_SYS_NICE, CAP_SYS_PTRACE, - CAP_SYS_TTY_CONFIG, CAP_SYS_RESOURCE, CAP_SYS_BOOT, - CAP_AUDIT_WRITE, CAP_AUDIT_CONTROL. Also CAP_NET_ADMIN is - retained if is specified. - If the special value all is passed, all - capabilities are retained. + for more information. Note that the following capabilities will be granted in any way: + CAP_AUDIT_CONTROL, CAP_AUDIT_WRITE, CAP_CHOWN, CAP_DAC_OVERRIDE, CAP_DAC_READ_SEARCH, + CAP_FOWNER, CAP_FSETID, CAP_IPC_OWNER, CAP_KILL, CAP_LEASE, CAP_LINUX_IMMUTABLE, + CAP_MKNOD, CAP_NET_BIND_SERVICE, CAP_NET_BROADCAST, CAP_NET_RAW, CAP_SETFCAP, + CAP_SETGID, CAP_SETPCAP, CAP_SETUID, CAP_SYS_ADMIN, CAP_SYS_BOOT, CAP_SYS_CHROOT, + CAP_SYS_NICE, CAP_SYS_PTRACE, CAP_SYS_RESOURCE, CAP_SYS_TTY_CONFIG. Also CAP_NET_ADMIN + is retained if is specified. If the special value + all is passed, all capabilities are retained. @@ -1114,7 +1110,7 @@ Spawn a shell in a container of a minimal Debian unstable distribution - # debootstrap --arch=amd64 unstable ~/debian-tree/ + # debootstrap unstable ~/debian-tree/ # systemd-nspawn -D ~/debian-tree/ This installs a minimal Debian unstable distribution into diff --git a/man/systemd-rc-local-generator.xml b/man/systemd-rc-local-generator.xml new file mode 100644 index 000000000..89cd7ec61 --- /dev/null +++ b/man/systemd-rc-local-generator.xml @@ -0,0 +1,86 @@ + + + + + + + + systemd-rc-local-generator + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + systemd-rc-local-generator + 8 + + + + systemd-rc-local-generator + Compatibility generator for starting /etc/rc.local and /usr/sbin/halt.local during boot and shutdown + + + + /usr/lib/systemd/system-generators/systemd-rc-local-generator + + + + Description + + systemd-rc-local-generator is a generator that checks whether + /etc/rc.local exists and is executable, and if it is pulls the + rc-local.service unit into the boot process. This unit is responsible for running this script + during late boot. Note that the script will be run with slightly different semantics than the original System V + version, which was run "last" in the boot process, which is a concept that does not translate to systemd. The + script is run after network.target, but in parallel with most other regular system + services. + + systemd-rc-local-generator also checks whether /usr/sbin/halt.local + exists and is executable, and if it is pulls the halt-local.service unit into the shutdown + process. This unit is responsible for running this script during later shutdown. + + Support for both /etc/rc.local and /usr/sbin/halt.local is provided + for compatibility with specific System V systems only. However, it is strongly recommended to avoid making use of + these scripts today, and instead provide proper unit files with appropriate dependencies for any scripts to run + during the boot or shutdown processes. + + systemd-rc-local-generator implements + systemd.generator7. + + + + See Also + + systemd1, + systemctl1 + + + + diff --git a/man/systemd-run.xml b/man/systemd-run.xml index 9db6a26df..cfdbd2289 100644 --- a/man/systemd-run.xml +++ b/man/systemd-run.xml @@ -47,7 +47,7 @@ systemd-run - Run programs in transient scope units, service units, or timer-scheduled service units + Run programs in transient scope units, service units, or path-, socket-, or timer-triggered service units @@ -58,6 +58,20 @@ ARGS + + systemd-run + OPTIONS + PATH OPTIONS + COMMAND + ARGS + + + systemd-run + OPTIONS + SOCKET OPTIONS + COMMAND + ARGS + systemd-run OPTIONS @@ -72,8 +86,8 @@ systemd-run may be used to create and start a transient .service or .scope unit and run the specified COMMAND in it. It may also be - used to create and start a transient .timer unit, that activates a - .service unit when elapsing. + used to create and start a transient .path, .socket, or + .timer unit, that activates a .service unit when elapsing. If a command is run as transient service unit, it will be started and managed by the service manager like any other service, and thus shows up in the output of systemctl list-units like any other unit. It @@ -88,12 +102,13 @@ list-units. Execution in this case is synchronous, and will return only when the command finishes. This mode is enabled via the switch (see below). - If a command is run with timer options such as (see below), a transient timer - unit is created alongside the service unit for the specified command. Only the transient timer unit is started - immediately, the transient service unit will be started when the timer elapses. If the - option is specified, the COMMAND may be omitted. In this case, - systemd-run creates only a .timer unit that invokes the specified unit when - elapsing. + If a command is run with path, socket, or timer options such as (see below), + a transient path, socket, or timer unit is created alongside the service unit for the specified command. Only the + transient path, socket, or timer unit is started immediately, the transient service unit will be triggered by the + path, socket, or timer unit. If the option is specified, the + COMMAND may be omitted. In this case, systemd-run creates only a + .path, .socket, or .timer unit that triggers the + specified unit. @@ -140,8 +155,8 @@ - Provide a description for the service, scope or timer unit. If not specified, the command - itself will be used as a description. See Description= in + Provide a description for the service, scope, path, socket, or timer unit. If not specified, + the command itself will be used as a description. See Description= in systemd.unit5. @@ -155,6 +170,7 @@ + After the service process has terminated, keep the service around until it is explicitly @@ -278,7 +294,8 @@ command. See OnActiveSec=, OnBootSec=, OnStartupSec=, OnUnitActiveSec= and OnUnitInactiveSec= in systemd.timer5 for - details. These options may not be combined with or . + details. These options are shortcuts for --timer-property= with the relevant properties. + These options may not be combined with or . @@ -287,20 +304,23 @@ Defines a calendar timer for starting the specified command. See OnCalendar= in systemd.timer5. This - option may not be combined with or . + option is a shortcut for --timer-property=OnCalendar=. This option may not be combined with + or . + + - Sets a property on the timer unit that is created. This option is similar to - but applies to the transient timer unit rather than the transient service unit - created. This option only has an effect in conjunction with , - , , , - or . This option takes an assignment in the - same format as systemctl1's - set-property command. + Sets a property on the path, socket, or timer unit that is created. This option is similar to + but applies to the transient path, socket, or timer unit rather than the + transient service unit created. This option takes an assignment in the same format as + systemctl1's + set-property command. These options may not be combined with + or . + @@ -323,7 +343,7 @@ completed). On exit, terse information about the unit's runtime is shown, including total runtime (as well as CPU usage, if was set) and the exit code and status of the main process. This output may be suppressed with . This option may not be combined with - , or the various timer options. + , or the various path, socket, or timer options. @@ -352,8 +372,8 @@ All command line arguments after the first non-option argument become part of the command line of the launched - process. If a command is run as service unit, its first argument - needs to be an absolute binary path. + process. If a command is run as service unit, the first argument + needs to be an absolute program path. diff --git a/man/systemd-socket-activate.xml b/man/systemd-socket-activate.xml index 79e35dd30..ff9e7758b 100644 --- a/man/systemd-socket-activate.xml +++ b/man/systemd-socket-activate.xml @@ -62,8 +62,9 @@ Description - systemd-socket-activate may be used to launch a socket-activated service binary from the command - line for testing purposes. It may also be used to launch individual instances of the service binary per connection. + systemd-socket-activate may be used to launch a socket-activated service program from the + command line for testing purposes. It may also be used to launch individual instances of the service program per + connection. The daemon to launch and its options should be specified @@ -97,7 +98,7 @@ - Launch an instance of the service binary for each connection and pass the connection + Launch an instance of the service program for each connection and pass the connection socket. diff --git a/man/systemd.dnssd.xml b/man/systemd.dnssd.xml index 1270e08cd..054f6615c 100644 --- a/man/systemd.dnssd.xml +++ b/man/systemd.dnssd.xml @@ -206,7 +206,7 @@ # /etc/systemd/dnssd/http.dnssd [Service] -Name=%h +Name=%H Type=_http._tcp Port=80 TxtText=path=/stats/index.html t=temperature_sensor diff --git a/man/systemd.exec.xml b/man/systemd.exec.xml index 3d81e4573..2f62f1cd6 100644 --- a/man/systemd.exec.xml +++ b/man/systemd.exec.xml @@ -376,12 +376,14 @@ CapabilityBoundingSet=~CAP_B CAP_C Takes a boolean argument. If true, ensures that the service process and all its children can never gain new privileges through execve() (e.g. via setuid or setgid bits, or filesystem capabilities). This is the simplest and most effective way to ensure that a process and its children can never - elevate privileges again. Defaults to false, but certain settings force NoNewPrivileges=yes, - ignoring the value of this setting. This is the case when SystemCallFilter=, + elevate privileges again. Defaults to false, but certain settings override this and ignore the value of this + setting. This is the case when SystemCallFilter=, SystemCallArchitectures=, RestrictAddressFamilies=, RestrictNamespaces=, PrivateDevices=, ProtectKernelTunables=, ProtectKernelModules=, - MemoryDenyWriteExecute=, or RestrictRealtime= are specified. Also see + MemoryDenyWriteExecute=, RestrictRealtime=, or + LockPersonality= are specified. Note that even if this setting is overridden by them, + systemctl show shows the original value of this setting. Also see No New Privileges Flag. diff --git a/man/systemd.generator.xml b/man/systemd.generator.xml index 55bb2b4a9..7ed6a2dc8 100644 --- a/man/systemd.generator.xml +++ b/man/systemd.generator.xml @@ -261,7 +261,7 @@ Of these two rules the first rule is probably the more important one and breaks the second one sometimes. Hence, - when deciding whether to user argv[1], argv[2], or argv[3], + when deciding whether to use argv[1], argv[2], or argv[3], your default choice should probably be argv[1]. @@ -336,6 +336,7 @@ find $dir systemd-getty-generator8, systemd-gpt-auto-generator8, systemd-hibernate-resume-generator8, + systemd-rc-local-generator8, systemd-system-update-generator8, systemd-sysv-generator8, systemd.unit5, diff --git a/man/systemd.journal-fields.xml b/man/systemd.journal-fields.xml index b08ef1777..15a166280 100644 --- a/man/systemd.journal-fields.xml +++ b/man/systemd.journal-fields.xml @@ -339,7 +339,7 @@ _STREAM_ID= - Only applies to _TRANSPORT=stream records: specifies a randomized 128bit ID assigned + Only applies to _TRANSPORT=stdout records: specifies a randomized 128bit ID assigned to the stream connection when it was first created. This ID is useful to reconstruct individual log streams from the log records: all log records carrying the same stream ID originate from the same stream. @@ -347,7 +347,7 @@ _LINE_BREAK= - Only applies to _TRANSPORT=stream records: indicates that the log message in the + Only applies to _TRANSPORT=stdout records: indicates that the log message in the standard output/error stream was not terminated with a normal newline character (\n, i.e. ASCII 10). Specifically, when set this field is one of (in case the line was terminated by a NUL byte), (in case the maximum log line length was reached, as diff --git a/man/systemd.link.xml b/man/systemd.link.xml index 162674f76..794e0e06f 100644 --- a/man/systemd.link.xml +++ b/man/systemd.link.xml @@ -172,6 +172,17 @@ for details. + + KernelVersion= + + Checks whether the kernel version (as reported by uname -r) matches a certain + expression (or if prefixed with the exclamation mark does not match it). See + ConditionKernelVersion= in + systemd.unit5 for + details. + + + Architecture= @@ -442,6 +453,8 @@ + + Defaults to off. diff --git a/man/systemd.mount.xml b/man/systemd.mount.xml index 663e7fa3a..8607bd797 100644 --- a/man/systemd.mount.xml +++ b/man/systemd.mount.xml @@ -71,18 +71,22 @@ systemd.exec5, which define the execution environment the mount8 - binary is executed in, and in + program is executed in, and in systemd.kill5, which define the way the processes are terminated, and in systemd.resource-control5, which configure resource control settings for the processes of the - service. Note that the User= and Group= options are not - particularly useful for mount units specifying a - Type= option or using configuration not - specified in /etc/fstab; + service. + + Note that the options User= and + Group= are not useful for mount units. + systemd passes two parameters to + mount8; + the values of What= and Where=. + When invoked in this way, mount8 - will refuse options that are not listed in - /etc/fstab if it is not run as UID 0. + does not read any options from /etc/fstab, and + must be run as UID 0. Mount units must be named after the mount point directories they control. Example: the mount point /home/lennart must be configured in a unit file home-lennart.mount. diff --git a/man/systemd.netdev.xml b/man/systemd.netdev.xml index c92792341..eb86db979 100644 --- a/man/systemd.netdev.xml +++ b/man/systemd.netdev.xml @@ -184,6 +184,9 @@ The virtual CAN tunnel driver (vxcan). Similar to the virtual ethernet driver veth, vxcan implements a local CAN traffic tunnel between two virtual CAN network devices. When creating a vxcan, two vxcan devices are created as pair. When one end receives the packet it appears on its pair and vice versa. The vxcan can be used for cross namespace communication. + wireguard + WireGuard Secure Network Tunnel. + @@ -232,6 +235,16 @@ + + KernelVersion= + + Checks whether the kernel version (as reported by uname -r) matches a certain + expression (or if prefixed with the exclamation mark does not match it). See + ConditionKernelVersion= in + systemd.unit5 for details. + + + Architecture= @@ -499,7 +512,15 @@ Mode= The IPVLAN mode to use. The supported options are - L2 and L3. + L2,L3 and L3S. + + + + + Flags= + + The IPVLAN flags to use. The supported options are + bridge,private and vepa. @@ -871,6 +892,14 @@ + + AllowLocalRemote= + + A boolean. When true allows tunnel traffic on ip6tnl devices where the remote endpoint is a local host address. + Defaults to unset. + + + @@ -983,6 +1012,103 @@ as the [Tun] section. + + [WireGuard] Section Options + + The [WireGuard] section accepts the following + keys: + + + + PrivateKey= + + The Base64 encoded private key for the interface. It can be + generated using the wg genkey command + (see wg8). + This option is mandatory to use wireguard. + + + + ListenPort= + + Sets UDP port for listening. Takes either value between 1 and 65535 + or auto. If auto is specified, + the port is automatically generated based on interface name. + Defaults to auto. + + + + FwMark= + + Sets a firewall mark on outgoing wireguard packets from this interface. + + + + + + + [WireGuardPeer] Section Options + + The [WireGuardPeer] section accepts the following + keys: + + + + PublicKey= + + Sets a Base64 encoded public key calculated by wg pubkey + (see wg8) + from a private key, and usually transmitted out of band to the + author of the configuration file. This option is mandatory for this + section. + + + + PresharedKey= + + Optional preshared key for the interface. It can be generated + by the wg genpsk command. This option adds an + additional layer of symmetric-key cryptography to be mixed into the + already existing public-key cryptography, for post-quantum + resistance. + + + + AllowedIPs= + + Sets a comma-separated list of IP (v4 or v6) addresses with CIDR masks + from which this peer is allowed to send incoming traffic and to + which outgoing traffic for this peer is directed. The catch-all + 0.0.0.0/0 may be specified for matching all IPv4 addresses, and + ::/0 may be specified for matching all IPv6 addresses. + + + + Endpoint= + + Sets an endpoint IP address or hostname, followed by a colon, and then + a port number. This endpoint will be updated automatically once to + the most recent source IP address and port of correctly + authenticated packets from the peer at configuration time. + + + + PersistentKeepalive= + + Sets a seconds interval, between 1 and 65535 inclusive, of how often + to send an authenticated empty packet to the peer for the purpose + of keeping a stateful firewall or NAT mapping valid persistently. + For example, if the interface very rarely sends traffic, but it + might at anytime receive traffic from a peer, and it is behind NAT, + the interface might benefit from having a persistent keepalive + interval of 25 seconds. If set to 0 or "off", this option is + disabled. By default or when unspecified, this option is off. + Most users will not need this. + + + + + [Bond] Section Options @@ -1365,6 +1491,21 @@ Name=macvtap-test Kind=macvtap + + /etc/systemd/network/25-wireguard.netdev + [NetDev] +Name=wg0 +Kind=wireguard + +[WireGuard] +PrivateKey=EEGlnEPYJV//kbvvIqxKkQwOiS+UENyPncC4bF46ong= +ListenPort=51820 + +[WireGuardPeer] +PublicKey=RDf+LSpeEre7YEIKaxg+wbpsNV7du+ktR99uBEtIiCA= +AllowedIPs=fd31:bf08:57cb::/48,192.168.26.0/24 +Endpoint=wireguard.example.com:51820 + See Also diff --git a/man/systemd.network.xml b/man/systemd.network.xml index 3466f3a3c..80d280261 100644 --- a/man/systemd.network.xml +++ b/man/systemd.network.xml @@ -193,6 +193,17 @@ + + KernelVersion= + + Checks whether the kernel version (as reported by uname -r) matches a certain + expression (or if prefixed with the exclamation mark does not match it). See + ConditionKernelVersion= in + systemd.unit5 for + details. + + + Architecture= @@ -656,8 +667,16 @@ IPv6PrefixDelegation= Whether to enable or disable Router Advertisement sending on a link. - Defaults to false. See the [IPv6PrefixDelegation] - and the [IPv6Prefix] sections for configuration options. + Allowed values are static which distributes prefixes as defined in + the [IPv6PrefixDelegation] and any [IPv6Prefix] + sections, dhcpv6 which requests prefixes using a DHCPv6 client + configured for another link and any values configured in the + [IPv6PrefixDelegation] section while ignoring all static prefix + configuration sections, yes which uses both static configuration + and DHCPv6, and false which turns off IPv6 prefix delegation + altogether. Defaults to false. See the + [IPv6PrefixDelegation] and the [IPv6Prefix] + sections for more configuration options. @@ -1056,6 +1075,33 @@ + + InitialCongestionWindow= + + The TCP initial congestion window is used during the start of a TCP connection. During the start of a TCP + session, when a client requests a resource, the server's initial congestion window determines how many data bytes + will be sent during the initial burst of data. Takes a size in bytes between 1 and 4294967295 (2^32 - 1). The usual + suffixes K, M, G are supported and are understood to the base of 1024. Defaults to unset. + + + + + InitialAdvertisedReceiveWindow= + + The TCP initial advertised receive window is the amount of receive data (in bytes) that can initally be buffered at one time + on a connection. The sending host can send only that amount of data before waiting for an acknowledgment and window update + from the receiving host. Takes a size in bytes between 1 and 4294967295 (2^32 - 1). The usual suffixes K, M, G are supported + and are understood to the base of 1024. Defaults to unset. + + + + + QuickAck= + + Takes a boolean argument. When true enables TCP quick ack mode for the route. Defaults to unset. + + + @@ -1266,6 +1312,20 @@ Allow setting custom port for the DHCP client to listen on. + + + RapidCommit= + + A boolean. The DHCPv6 client can obtain configuration parameters from a DHCPv6 server through + a rapid two-message exchange (solicit and reply). When the rapid commit option is enabled by both + the DHCPv6 client and the DHCPv6 server, the two-message exchange is used, rather than the default + four-method exchange (solicit, advertise, request, and reply). The two-message exchange provides + faster client configuration and is beneficial in environments in which networks are under a heavy load. + See RFC 3315 for details. + Defaults to true. + + + diff --git a/man/systemd.offline-updates.xml b/man/systemd.offline-updates.xml index 01dd6c55e..ca7d6d3c1 100644 --- a/man/systemd.offline-updates.xml +++ b/man/systemd.offline-updates.xml @@ -82,7 +82,7 @@ systemd-system-update-generator8 checks whether /system-update exists. If so, it (temporarily and for this boot only) redirects (i.e. symlinks) default.target to - system-update.target, a special target that is pulls in the base system + system-update.target, a special target that pulls in the base system (i.e. sysinit.target, so that all file systems are mounted but little else) and the system update units. diff --git a/man/systemd.preset.xml b/man/systemd.preset.xml index 482856221..7b978f791 100644 --- a/man/systemd.preset.xml +++ b/man/systemd.preset.xml @@ -136,23 +136,26 @@ - Example + Examples - Default off example <filename>/usr/lib/systemd/system-preset/99-default.preset</filename>: + Default to off - disable * + # /usr/lib/systemd/system-preset/99-default.preset + +disable * This disables all units. Due to the filename prefix 99-, it will be read last and hence can easily - be overridden by spin or administrator preset policy or - suchlike. + be overridden by spin or administrator preset policy. - A GNOME spin example <filename>/usr/lib/systemd/system-preset/50-gnome.preset</filename>: + A GNOME spin - enable gdm.service + # /usr/lib/systemd/system-preset/50-gnome.preset + +enable gdm.service enable colord.service enable accounts-daemon.service enable avahi-daemon.* @@ -168,9 +171,11 @@ enable avahi-daemon.* example like the one from the first example above. - Administrator policy <filename>/etc/systemd/system-preset/00-lennart.preset</filename>: + Administrator policy - enable httpd.service + # /etc/systemd/system-preset/00-lennart.preset + +enable httpd.service enable sshd.service enable postfix.service disable * @@ -179,8 +184,8 @@ disable * This enables three specific services and disables all others. This is useful for administrators to specifically select the units to enable, and disable all others. Due to the filename - prefix 00- it will be read early and hence - overrides all other preset policy files. + prefix 00- it will be read early and + override all other preset policy files. diff --git a/man/systemd.scope.xml b/man/systemd.scope.xml index 092361c6b..1128d236c 100644 --- a/man/systemd.scope.xml +++ b/man/systemd.scope.xml @@ -100,8 +100,6 @@ late system shutdown should disable DefaultDependencies= option. - - diff --git a/man/systemd.service.xml b/man/systemd.service.xml index 76dfe60be..e796245ae 100644 --- a/man/systemd.service.xml +++ b/man/systemd.service.xml @@ -228,10 +228,10 @@ PrivateNetwork=. Behavior of is very similar to ; however, actual execution - of the service binary is delayed until all active jobs are dispatched. This may be used to avoid interleaving + of the service program is delayed until all active jobs are dispatched. This may be used to avoid interleaving of output of shell services with the status output on the console. Note that this type is useful only to improve console output, it is not useful as a general unit ordering tool, and the effect of this service type - is subject to a 5s time-out, after which the service binary is invoked anyway. + is subject to a 5s time-out, after which the service program is invoked anyway. @@ -264,16 +264,14 @@ PIDFile= - Takes an absolute filename pointing to the - PID file of this daemon. Use of this option is recommended for - services where Type= is set to - . systemd will read the PID of the - main process of the daemon after start-up of the service. - systemd will not write to the file configured here, although - it will remove the file after the service has shut down if it - still exists. - - + Takes an absolute path referring to the PID file of the service. Usage of this option is + recommended for services where Type= is set to . The service manager + will read the PID of the main process of the service from this file after start-up of the service. The service + manager will not write to the file configured here, although it will remove the file after the service has shut + down if it still exists. The PID file does not need to be owned by a privileged user, but if it is owned by an + unprivileged user additional safety restrictions are enforced: the file may not be a symlink to a file owned by + a different user (neither directly nor indirectly), and the PID file must refer to a process already belonging + to the service. @@ -754,7 +752,8 @@ limiting configured with StartLimitIntervalSec= and StartLimitBurst=, see systemd.unit5 - for details. + for details. A restarted service enters the failed state only + after the start limits are reached. Setting this to is the recommended choice for long-running services, in order to diff --git a/man/systemd.special.xml b/man/systemd.special.xml index 18689a0a9..2810d6f52 100644 --- a/man/systemd.special.xml +++ b/man/systemd.special.xml @@ -277,17 +277,6 @@ - - getty-pre.target - - A special passive target unit. Users of this target - are expected to pull it in the boot transaction via - a dependency (e.g. Wants=). Order your - unit before this unit if you want to make use of the console - just before getty is started. - - - graphical.target @@ -354,6 +343,29 @@ mount options set. + + initrd-root-device.target + + A special initrd target unit that is reached when the root filesystem device is available, but before + it has been mounted. + systemd-fstab-generator3 + and + systemd-gpt-auto-generator3 + automatically setup the appropriate dependencies to make this happen. + + + + + initrd-root-fs.target + + systemd-fstab-generator3 + automatically adds dependencies of type + Before= to the + sysroot.mount unit, which is generated + from the kernel command line. + + + kbrequest.target @@ -538,29 +550,6 @@ SysV. - - initrd-root-device.target - - A special initrd target unit that is reached when the root filesystem device is available, but before - it has been mounted. - systemd-fstab-generator3 - and - systemd-gpt-auto-generator3 - automatically setup the appropriate dependencies to make this happen. - - - - - initrd-root-fs.target - - systemd-fstab-generator3 - automatically adds dependencies of type - Before= to the - sysroot.mount unit, which is generated - from the kernel command line. - - - runlevel2.target runlevel3.target @@ -820,6 +809,17 @@ stopped. + + getty-pre.target + + A special passive target unit. Users of this target + are expected to pull it in the boot transaction via + a dependency (e.g. Wants=). Order your + unit before this unit if you want to make use of the console + just before getty is started. + + + local-fs-pre.target diff --git a/man/systemd.swap.xml b/man/systemd.swap.xml index 707b04b20..acedb9fb2 100644 --- a/man/systemd.swap.xml +++ b/man/systemd.swap.xml @@ -72,7 +72,7 @@ systemd.exec5, which define the execution environment the swapon8 - binary is executed in, in + program is executed in, in systemd.kill5, which define the way these processes are terminated, and in diff --git a/man/systemd.unit.xml b/man/systemd.unit.xml index 5cd8be310..90ca378e8 100644 --- a/man/systemd.unit.xml +++ b/man/systemd.unit.xml @@ -505,8 +505,8 @@ Configures requirement dependencies on other units. If this unit gets activated, the units listed here will be activated as well. If one of the other units fails to activate, and an ordering dependency After= on the failing unit is set, this unit will not be started. Besides, with or without - specifying After=, this unit will be deactivated if one of the other units get deactivated. - This option may be specified more than once or multiple space-separated units may be + specifying After=, this unit will be stopped if one of the other units is explicitly + stopped. This option may be specified more than once or multiple space-separated units may be specified in one option in which case requirement dependencies for all listed names will be created. Note that requirement dependencies do not influence the order in which services are started or stopped. This has to be configured independently with the After= or Before= options. If a unit @@ -665,7 +665,9 @@ A space-separated list of one or more units that are activated when this unit enters the - failed state. + failed state. A service unit using + Restart= enters the failed state only after + the start limits are reached. @@ -921,6 +923,7 @@ ConditionVirtualization= ConditionHost= ConditionKernelCommandLine= + ConditionKernelVersion= ConditionSecurity= ConditionCapability= ConditionACPower= @@ -937,6 +940,7 @@ ConditionFileIsExecutable= ConditionUser= ConditionGroup= + ConditionControlGroupController=