mirror of
https://github.com/slackhq/nebula.git
synced 2026-04-03 14:05:19 +02:00
auto-assign snataddr on Mac+Windows
This commit is contained in:
@@ -216,6 +216,11 @@ func (t *tun) Activate() error {
|
||||
}
|
||||
}
|
||||
}
|
||||
if t.snatAddr.IsValid() && t.snatAddr.Addr().Is4() {
|
||||
if err = t.activate4(t.snatAddr); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// Run the interface
|
||||
ifrf.Flags = ifrf.Flags | unix.IFF_UP | unix.IFF_RUNNING
|
||||
@@ -317,6 +322,10 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
if !initial {
|
||||
t.snatAddr = prepareSnatAddr(t, t.l, c, routes)
|
||||
}
|
||||
|
||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||
if err != nil {
|
||||
return err
|
||||
|
||||
Reference in New Issue
Block a user