Code Monkey home page Code Monkey logo

eui64's Introduction

Node.js EUI64

Node module for dealing 64bit IEEE mac addresses.

IEEE Spec

Build Status

Install

npm install eui64

Example

var eui64 = require('eui64');

// Pass a hex string seperated by colons.
var mac = eui64('11:22:33:44:55:66:77:88')

// Pass a hex string seperated by dashes
var mac3 = eui64('11-22-33-44-55-66-77-88')

// Pass a buffer
var mac4 = eui64(new Buffer([0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88]))

// pass a hex string not seperated with or without leading 0x
var mac5 = eui64('0x1122334455667788')
// or
var mac6 = eui64('1122334455667788')

// Returns null on invalid input
eui64('11:22:33:44:55:bogus') // returns null

Usage

eui64(input,options)

Parse the given input and return an object or null on failure

  • input: String separated by colon/dash or not separated or Buffer. (See examples above).

  • options: Object for optional parameters.

        {
          oui : 36, // OUI bit length 24 or 36
          separator : ':' // Separator to be used in toString()
        }
    

Eui64.toString()

Output current value to string with each octet separated by ':'

Eui64.toString()

Return buffer of current value

Eui64.oui()

Return Number representation of the oui, assumes 36 bit oui.

License

MIT

eui64's People

Contributors

adammagaluk avatar

Watchers

Diogo Cabral de Almeida avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.