GET INTERFACE GOLANG PART 2

Wanted to share a few updates and tweaks to the original Get Interface name by hardware address code. The below is broken up in to functions to help with code re-useability .

If also prints all interface names and hardware address when no command line argument are present.

package main

import (
    "net"
    "fmt"
    "os"
    "strings"
)

// Use the net library to return all Interfaces
// and capture any errors.
func getInterfaces() ([]net.Interface) {
    interfaces, err := net.Interfaces()
    if err != nil {
        panic("Unable to get interfaces.")
    }
    return interfaces
}

// Use the net library to get Interface by Index number
// and capture any errors.
func getInterfaceByIndex(index int) (*net.Interface) {
    inter, err := net.InterfaceByIndex(index)
    if err != nil {
        panic("Unable to get interface by index")
    }
    return inter
}

// Use the net library to get Interface by Name
// and capture any errors
func getInterfaceByName(name string) (*net.Interface) {
    inter, err := net.InterfaceByName(name)
    if err != nil {
        panic("Unable to get interface by name")
    }
    return inter
}

// Using the net library we will loop over all interfaces
// looking for the interface with matching mac_address.
func getInterfaceByHardwareAddress(mac string) (net.Interface) {
    interfaces := getInterfaces()
    for _, inter := range interfaces {
        if strings.ToUpper(mac) == strings.ToUpper(inter.HardwareAddr.String()) {
            return inter
        }
    }
    panic("Unable to find interface with Hardware Address.")
}

func main() {

    args := os.Args
    // If we have only 2 arguments we will assume the
    // second is mac_address.
    if len(args) == 2 {
        mac_address := args[1]
        inter := getInterfaceByHardwareAddress(mac_address)
        fmt.Println(inter.Name)

    // If no arguments were passed in lets just return
    // a list of all interface names and hardware addresses.
    } else if len(args) == 1 {
        for _, inter := range getInterfaces() {
            fmt.Println(inter.Name, inter.HardwareAddr)
        }

    // If the number of command line arguments are not expected
    // lets panic and explain why.
    } else {
        panic("We require one (mac_address) or no command line arguments.")
    }

}

Usage looks something like this:

GET INTERFACE NAME BY HARDWARE ADDRESS

At work we have had a need for getting a interface name by mac address and are in a environment that doesn’t have many common Linux tools (nor would I want to regex it as the environment will constantly be changing).

My first solution was to to write a C program (about 125 lines) which used the linux/rtnetlink library. However, now that I’m looking at Golang I figured why not rewrite this (which is only about 40 lines).

RAINY DAY

When it rains out side, the family will play Talisman !

image

GEEK OR NERD?

So the other day two of my book arrived in the mail.

  1. Pathfinder Advanced Player’s Guide
  2. An Introduction to Programming in Go

The Go Programming book was so cheap I couldn’t say no (only $9.00), and the Pathfinder Players Guide offered new classes which my kids wanted to check out.

So here is the question, does this make me a Nerd or a Geek ?

geek_or_nerd

ZOMBIE DICE

Was able to pull out a victory last night against my two boys in Zombie Dice with some help from a little Homebrew.

zombie_dice

If you don’t know what Zombie Dice is, you should have a look at the Tabletop Video.

It is a very inexpensive travel sized gamed, which is easy for younger players, and very exciting!

QUITE POSSIBLY THE BEST 404 IMAGE

dead_link

PAINTING MINIATURES

Did some miniature painting over the weekend with my eldest son.

I really like the kobold army with leader.

image

image

PATHFINDER DICE ARENA SETUP

We are getting ready to test out the new Pathfinder Dice Arena game, check out the setup.

image

image

PATHFINDER DICE ARENA

Last night while checking my email I noticed a very exciting message labeled “Be the First to Try Pathfinder Dice Arena!” .

What I received in this email was a link to the

Print and Play

version of the game, along with information stating the game will be available on Kickstarter later this week.

I can’t wait to print out the documentation and give this gave a quick look over.

PF-DiceArena

CHESS ANYONE?

Four Player Chess Board , the only way to play Chess at the office.

As you can can see, we have just recently started a 4 player chess match at my office. The game is loads of fun, but is certainly a twist on the standard chess match. IMG_20131113_070248