mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
6a67921e40
It now includes all the fixes GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3246
35 lines
642 B
Go
35 lines
642 B
Go
package gateway
|
|
|
|
import (
|
|
"net"
|
|
"os/exec"
|
|
)
|
|
|
|
func DiscoverGateway() (ip net.IP, err error) {
|
|
ip, err = discoverGatewayUsingRoute()
|
|
if err != nil {
|
|
ip, err = discoverGatewayUsingIp()
|
|
}
|
|
return
|
|
}
|
|
|
|
func discoverGatewayUsingIp() (net.IP, error) {
|
|
routeCmd := exec.Command("/usr/bin/ip", "route", "show")
|
|
output, err := routeCmd.CombinedOutput()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return parseLinuxIPRoute(output)
|
|
}
|
|
|
|
func discoverGatewayUsingRoute() (net.IP, error) {
|
|
routeCmd := exec.Command("/usr/bin/route", "-n")
|
|
output, err := routeCmd.CombinedOutput()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return parseLinuxRoute(output)
|
|
}
|