diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-02-26 02:25:29 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-02-26 02:25:29 +0000 |
commit | 763f623831761ad9e51d88a66594b90dc7e403be (patch) | |
tree | 247fb89bc624dcb06cfa94674cc38cd74d5ed7ec /etc/inc | |
parent | cdd6648ad66d779a0c740e05f523fa701f46b9e1 (diff) | |
download | pfsense-763f623831761ad9e51d88a66594b90dc7e403be.zip pfsense-763f623831761ad9e51d88a66594b90dc7e403be.tar.gz |
Clean up comments
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/config.inc | 8 | ||||
-rw-r--r-- | etc/inc/filter.inc | 7 |
2 files changed, 8 insertions, 7 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc index f34799b..a88be6f 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -574,7 +574,7 @@ EOD; echo <<<EOD Do you want to set up VLANs first? -If you're not going to use VLANs, or only for optional interfaces, you +If you are not going to use VLANs, or only for optional interfaces, you should say no here and use the webGUI to configure VLANs later, if required. Do you want to set up VLANs now [y|n]? @@ -599,7 +599,7 @@ EOD; echo <<<EOD -If you don't know the names of your interfaces, you may choose to use +If you do not know the names of your interfaces, you may choose to use auto-detection. In that case, disconnect all interfaces before you begin, and reconnect each one when prompted to do so. @@ -674,7 +674,7 @@ EOD; if ($ifarr[$i] == $ifarr[$j]) { echo <<<EOD -Error: you can't assign the same interface name twice! +Error: you cannot assign the same interface name twice! EOD; @@ -827,4 +827,4 @@ EOD; } } -?> +?>
\ No newline at end of file diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 82feef3..8e1f143 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -1111,12 +1111,13 @@ EOD; /* block bogon networks on WAN */ /* http://www.cymru.com/Documents/bogon-bn-nonagg.txt */ - /* XXX - pull from www.cymru.com at some point so we don't have to manually update */ + /* file is automatically in cron every 3000 minutes */ if (isset($config['interfaces']['wan']['blockbogons'])) { $ipfrules .= <<<EOD # block bogon networks # http://www.cymru.com/Documents/bogon-bn-nonagg.txt +anchor "wanbogons" table <bogons> persist file "/etc/bogons" block in $log quick on $wanif from <bogons> to any label "block bogon networks from wan" @@ -1148,7 +1149,7 @@ EOD; $ipfrules .= <<<EOD -# make sure the user cannot lock himself out of the webGUI +# make sure the user cannot lock himself out of the webGUI or SSH anchor "anti-lockout" pass in quick from $lansa/$lansn to $lanip keep state label "anti-lockout web rule" @@ -1617,4 +1618,4 @@ function create_firewall_outgoing_rules_to_itself() { return $rule; } -?> +?>
\ No newline at end of file |