diff --git a/pkg/console/install_panels.go b/pkg/console/install_panels.go index 26b12b173..9c424c874 100644 --- a/pkg/console/install_panels.go +++ b/pkg/console/install_panels.go @@ -2581,6 +2581,10 @@ func addVIPPanel(c *Console) error { c.config.Vip = vip c.config.VipHwAddr = "" + // gotoVipPanel is only called in DHCP mode, it is still empty in static mode + if c.config.VipMode == "" { + c.config.VipMode = config.NetworkMethodStatic + } return gotoNextPage(g, v) } gotoAskVipMethodPanel := func(_ *gocui.Gui, _ *gocui.View) error {