Golang : Get local IP and MAC address
This is a short program on how to get the local IP address, search for the correct network interface hardware name and get the MAC address. Remember, this example is not able to get MAC address of remote/client machine. ;-)
Here you go!
getlocalIPandMACaddr.go
package main
import (
"fmt"
"net"
"os"
"strings"
)
func main() {
//----------------------
// Get the local machine IP address
// https://www.socketloop.com/tutorials/golang-how-do-I-get-the-local-ip-non-loopback-address
//----------------------
addrs, err := net.InterfaceAddrs()
if err != nil {
fmt.Println(err)
}
var currentIP, currentNetworkHardwareName string
for _, address := range addrs {
// check the address type and if it is not a loopback the display it
// = GET LOCAL IP ADDRESS
if ipnet, ok := address.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
if ipnet.IP.To4() != nil {
fmt.Println("Current IP address : ", ipnet.IP.String())
currentIP = ipnet.IP.String()
}
}
}
fmt.Println("------------------------------")
fmt.Println("We want the interface name that has the current IP address")
fmt.Println("MUST NOT be binded to 127.0.0.1 ")
fmt.Println("------------------------------")
// get all the system's or local machine's network interfaces
interfaces, _ := net.Interfaces()
for _, interf := range interfaces {
if addrs, err := interf.Addrs(); err == nil {
for index, addr := range addrs {
fmt.Println("[", index, "]", interf.Name, ">", addr)
// only interested in the name with current IP address
if strings.Contains(addr.String(), currentIP) {
fmt.Println("Use name : ", interf.Name)
currentNetworkHardwareName = interf.Name
}
}
}
}
fmt.Println("------------------------------")
// extract the hardware information base on the interface name
// capture above
netInterface, err := net.InterfaceByName(currentNetworkHardwareName)
if err != nil {
fmt.Println(err)
}
name := netInterface.Name
macAddress := netInterface.HardwareAddr
fmt.Println("Hardware name : ", name)
fmt.Println("MAC address : ", macAddress)
// verify if the MAC address can be parsed properly
hwAddr, err := net.ParseMAC(macAddress.String())
if err != nil {
fmt.Println("No able to parse MAC address : ", err)
os.Exit(-1)
}
fmt.Printf("Physical hardware address : %s \n", hwAddr.String())
}
Sample output:
Current IP address : 192.168.1.65
------------------------------
We want the interface name that has the current IP address
MUST NOT be binded to 127.0.0.1
------------------------------
[ 0 ] lo0 > ::1/128
[ 1 ] lo0 > 127.0.0.1/8
[ 2 ] lo0 > fe80::1/64
[ 0 ] en3 > fe80::1aa6:f7ff:fe16:e80b/64
[ 1 ] en3 > 192.168.1.65/24
Use name : en3
------------------------------
Hardware name : en3
MAC address : 18:a6:f7:16:e8:0b
Physical hardware address : 18:a6:f7:16:e8:0b
References:
https://www.socketloop.com/tutorials/golang-how-do-I-get-the-local-ip-non-loopback-address
See also : Golang : Find network of an IP address
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5k Golang : Determine if time variables have same calendar day
+5.7k Golang : Read a file into an array or slice example
+2.2k Golang : Lock executable to a specific machine with unique hash of the machine
+10k Golang : Convert long hexadecimal with strconv.ParseUint example
+2.8k Golang : Find relative luminance or color brightness
+7.6k Golang : Defer function inside init()
+4.1k Golang : Gomobile init produce "iphoneos" cannot be located error
+6k Golang : Google Drive API upload and rename example
+8.3k Golang : Basic authentication with .htpasswd file
+12.5k Golang : Get executable name behind process ID example
+2.8k Golang : Get all countries phone codes
+13.2k Golang : Delete duplicate items from a slice/array