35 lines
676 B
Go
35 lines
676 B
Go
package gateway
|
|
|
|
import (
|
|
"net"
|
|
"os/exec"
|
|
)
|
|
|
|
func DiscoverGateway() (ip net.IP, iface string, err error) {
|
|
ip, iface, err = discoverGatewayUsingRoute()
|
|
if err != nil {
|
|
ip, iface, err = discoverGatewayUsingIp()
|
|
}
|
|
return
|
|
}
|
|
|
|
func discoverGatewayUsingIp() (net.IP, string, error) {
|
|
routeCmd := exec.Command("ip", "route", "show")
|
|
output, err := routeCmd.CombinedOutput()
|
|
if err != nil {
|
|
return nil, "", err
|
|
}
|
|
|
|
return parseLinuxIPRoute(output)
|
|
}
|
|
|
|
func discoverGatewayUsingRoute() (net.IP, string, error) {
|
|
routeCmd := exec.Command("route", "-n")
|
|
output, err := routeCmd.CombinedOutput()
|
|
if err != nil {
|
|
return nil, "", err
|
|
}
|
|
|
|
return parseLinuxRoute(output)
|
|
}
|