主要的思路就是:
1、使用http暴露接口
2、使用net包读取本地的ip和mac
主要的代码如下:
package main
import (
"fmt"
"net"
"net/http"
)
func main() {
//设置路由
http.HandleFunc("/hello", Router)
http.ListenAndServe("127.0.0.1:8080", nil)
}
func Router(resp http.ResponseWriter, request *http.Request) {
resp.Write([]byte(GetLocalIp()+"/"+GetMac()))
}
//获取本机ip
func GetLocalIp() string {
addrs, err := net.InterfaceAddrs()
if err != nil {
fmt.Println("get local ip failed")
}
for _, address := range addrs {
if ipnet, ok := address.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
if ipnet.IP.To4() != nil {
return ipnet.IP.String()
}
}
}
return ""
}
//获取本机Mac
func GetMac() string {
interfaces, err := net.Interfaces()
if err != nil {
fmt.Println("get local mac failed")
}
for _, inter := range interfaces {
mac := inter.HardwareAddr
if mac.String() != "" {
return mac.String()
}
}
return ""
}
之后使用浏览器访问:127.0.0.1:8080/hello
就可以看到返回的IP和MAC
参考网上代码写的,勿喷!!!