Commit a6afaf23 authored by Ad Schellevis's avatar Ad Schellevis

fixed typo in CP rule generation ( https://github.com/opnsense/core/issues/73 )

parent 66a9c270
...@@ -133,7 +133,7 @@ class Rules ...@@ -133,7 +133,7 @@ class Rules
if ($interface != "wan" && $content->ipaddr != "dhcp") { if ($interface != "wan" && $content->ipaddr != "dhcp") {
// only keep state of dns traffic to prevent dns resolver failures // only keep state of dns traffic to prevent dns resolver failures
$this->rules[] = "add ".$rulenum++." allow udp from any to ". $this->rules[] = "add ".$rulenum++." allow udp from any to ".
$content->ipaddr." dst-port 53 keep-state in"; $content->ipaddr." dst-port 53 keep-state";
$this->rules[] = "add ".$rulenum++." allow ip from any to { 255.255.255.255 or ". $this->rules[] = "add ".$rulenum++." allow ip from any to { 255.255.255.255 or ".
$content->ipaddr." } in"; $content->ipaddr." } in";
$this->rules[] = "add ".$rulenum++." allow ip from { 255.255.255.255 or ". $this->rules[] = "add ".$rulenum++." allow ip from { 255.255.255.255 or ".
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment