PHP Classes

File: config/ieee.php

Recommend this page to a friend!
  Classes of Angel Campos   PHP Mac Address Lookup   config/ieee.php   Download  
File: config/ieee.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Mac Address Lookup
Look up a hardware vendor for a device Mac address
Author: By
Last change:
Date: 2 years ago
Size: 952 bytes
 

Contents

Class file image Download
<?php

return [

   
'oui' => [

       
/*
         | Url where the files are published.
         */
       
'url' => [

           
/*
             | IEEE MAC Address Large Assignments
             |
             */
           
'mal' => 'http://standards-oui.ieee.org/oui/oui.csv',

           
/*
             | IEEE MAC Address Medium Assignments
             |
             */
           
'mam' => 'http://standards-oui.ieee.org/oui28/mam.csv',

           
/*
             | IEEE MAC Address Small Assignments
             |
             */
           
'mas' => 'http://standards-oui.ieee.org/oui36/oui36.csv',

           
/*
             | IEEE MAC Address Assignments
             |
             */
           
'iab' => 'http://standards-oui.ieee.org/iab/iab.csv',

           
/*
             | IEEE Company ID Assignments
             |
             */
           
'cid' => 'http://standards-oui.ieee.org/cid/cid.csv',
        ],
    ],
];