2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 16:10:59 +08:00

feat: 优化防火墙

This commit is contained in:
耗子
2024-09-27 17:47:58 +08:00
parent 4054c788f3
commit 93b72ad45f

View File

@@ -130,7 +130,9 @@ func (r *Firewall) Port(port FireInfo, operation string) error {
if err != nil {
return fmt.Errorf("%s port %d/%s failed, err: %s", operation, port.Port, port.Protocol, stdout)
}
return systemctl.Reload("firewalld")
_, err = shell.Execf("firewall-cmd --reload")
return err
}
func (r *Firewall) RichRules(rule FireInfo, operation string) error {
@@ -156,7 +158,8 @@ func (r *Firewall) RichRules(rule FireInfo, operation string) error {
}
}
return systemctl.Reload("firewalld")
_, err := shell.Execf("firewall-cmd --reload")
return err
}
func (r *Firewall) PortForward(info Forward, operation string) error {
@@ -178,7 +181,8 @@ func (r *Firewall) PortForward(info Forward, operation string) error {
return fmt.Errorf("%s port forward failed, err: %s", operation, out)
}
return systemctl.Reload("firewalld")
_, err = shell.Execf("firewall-cmd --reload")
return err
}
func (r *Firewall) parseRichRule(line string) (*FireInfo, error) {
@@ -208,10 +212,11 @@ func (r *Firewall) enableForward() error {
return fmt.Errorf("%s: %s", err, out)
}
return systemctl.Reload("firewalld")
_, err = shell.Execf("firewall-cmd --reload")
return err
}
return fmt.Errorf("%s: %s", err, out)
return fmt.Errorf("%v: %s", err, out)
}
return nil