@@ -3,7 +3,9 @@ package common
3
3
import (
4
4
"fmt"
5
5
"net"
6
+ "os"
6
7
"sync"
8
+ "syscall"
7
9
"time"
8
10
9
11
"github.com/golang/glog"
@@ -468,11 +470,12 @@ func (eit *EgressIPTracker) lookupNodeIP(ip string) string {
468
470
return ip
469
471
}
470
472
471
- // Ping a node and return whether or not it is online. We do this by trying to open a TCP
472
- // connection to the "discard" service (port 9); if the node is offline, the attempt will
473
- // time out with no response (and we will return false). If the node is online then we
474
- // presumably will get a "connection refused" error; the code below assumes that anything
475
- // other than timing out indicates that the node is online.
473
+ // Ping a node and return whether or not we think it is online. We do this by trying to
474
+ // open a TCP connection to the "discard" service (port 9); if the node is offline, the
475
+ // attempt will either time out with no response, or else return "no route to host" (and
476
+ // we will return false). If the node is online then we presumably will get a "connection
477
+ // refused" error; but the code below assumes that anything other than timeout or "no
478
+ // route" indicates that the node is online.
476
479
func (eit * EgressIPTracker ) Ping (ip string , timeout time.Duration ) bool {
477
480
// If the caller used a public node IP, replace it with the SDN IP
478
481
ip = eit .lookupNodeIP (ip )
@@ -481,11 +484,15 @@ func (eit *EgressIPTracker) Ping(ip string, timeout time.Duration) bool {
481
484
if conn != nil {
482
485
conn .Close ()
483
486
}
484
- if opErr , ok := err .(* net.OpError ); ok && opErr .Timeout () {
485
- return false
486
- } else {
487
- return true
487
+ if opErr , ok := err .(* net.OpError ); ok {
488
+ if opErr .Timeout () {
489
+ return false
490
+ }
491
+ if sysErr , ok := opErr .Err .(* os.SyscallError ); ok && sysErr .Err == syscall .EHOSTUNREACH {
492
+ return false
493
+ }
488
494
}
495
+ return true
489
496
}
490
497
491
498
// Finds the best node to allocate the egress IP to, given the existing allocation. The
0 commit comments