diff --git a/syz-manager/manager.go b/syz-manager/manager.go index 1c86668f187b..5963c07c1d3a 100644 --- a/syz-manager/manager.go +++ b/syz-manager/manager.go @@ -242,6 +242,11 @@ func main() { } func RunManager(mode *Mode, cfg *mgrconfig.Config) { + // localhost is going to be used later, notify users + if _, err := net.LookupHost("localhost"); err != nil { + log.Fatalf("'localhost' is not resolving on this system, configure your DNS resolver") + } + var vmPool *vm.Pool if !cfg.VMLess { var err error