summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Enforce some more checking to avoid ↵Ermal LUÇI2014-12-191-4/+4
| | | | https://forum.pfsense.org/index.php?topic=85580.0
* include $myid in these PSK lines. Ticket #4126Chris Buechler2014-12-181-3/+3
|
* Simplify logic using a proper function as spotted by ErmalRenato Botelho2014-12-181-8/+5
|
* Replace ; by newlines when upgrading custom_options from unbound packages, ↵Renato Botelho2014-12-181-0/+3
| | | | it's related to ticket #4090
* Do not restart unneeded services. Also triger configuration for the proper ↵Ermal LUÇI2014-12-181-1/+3
| | | | interface.
* Add openvpn interfaces to group when they are created, it should fix #4110Renato Botelho2014-12-181-0/+9
|
* Check if interface exist before try to add it to groupRenato Botelho2014-12-181-2/+3
|
* Bump latest_config version that I forgot on previous commit. Spotted by Jim ↵Renato Botelho2014-12-171-1/+1
| | | | Pingle
* syslogd can't just be HUPed to pick up its new config, as many of thoseChris Buechler2014-12-171-3/+3
| | | | | are command line arguments. Go back to 2.1x and prior behavior of TERM and restart. Fixes source IP use with syslog among other config changes.
* Add a cron item to expire items from webConfiguratorlockout, also add config ↵Renato Botelho2014-12-172-1/+24
| | | | upgrade code. This fixes #4122
* Check if interface is disabled when configuring DHCP server. It fixes #4119Renato Botelho2014-12-171-2/+5
|
* Disable dhcp server when interface is disabled. Ticket #4119Renato Botelho2014-12-171-1/+5
|
* Do not check disabled interfaces, ticket #4119Renato Botelho2014-12-172-4/+10
|
* Give the proper value for the logging level since even 0 is the correct ↵Ermal LUÇI2014-12-171-1/+1
| | | | value coming from GUI.
* Encode space to avoid rejecting users with spaces in usernameErmal LUÇI2014-12-171-1/+1
|
* Use updated URLs for Limiters and Layer 7 help.jim-p2014-12-161-3/+3
|
* Remove some old comments and unnecessary cruft.jim-p2014-12-161-69/+0
|
* Pick up some more new pages for 2.2 that need help links.jim-p2014-12-161-0/+7
|
* Some misc updates to pkg help linksjim-p2014-12-161-4/+1
|
* Add help for Unbound/DNS Resolver and its related tabs.jim-p2014-12-161-0/+3
|
* Point these CARP Help pages at more useful places.jim-p2014-12-161-5/+2
|
* Use provided function to change user's passwordRenato Botelho2014-12-161-2/+6
|
* Fixup the rest of the URLs for DHCPv6/RA help.jim-p2014-12-161-5/+3
|
* The ID in DUID is Identifier.jim-p2014-12-161-5/+5
| | | | See also: ATM Machine, ISP Provider, DMZ Zone, LCD Display, GMT Time...
* Update help links for DHCPv6 relay and DHCPv6 Lease Statusjim-p2014-12-161-3/+3
|
* Remove old/invalid notejim-p2014-12-161-1/+1
|
* Fix up Help links for Inbound Load Balancing.jim-p2014-12-161-15/+9
|
* Make logic more visible as suggested by ErmalRenato Botelho2014-12-161-1/+6
|
* Tidy up "widgets" XHTMLColin Fleming2014-12-164-10/+16
| | | | | | | | Add CDATA sections to scripts Add ALT to image tags and close image tags DIV tag cannot be inside a STRONG tag, so swap them around SCRIPT cannot be part of TR tag, so place the SCRIPT inside a TD tag but hide it.
* Cleanup aliases when temporarily disable CARP, fixes #4116Renato Botelho2014-12-161-0/+1
|
* Teach interface_vip_bring_down() to deal with IP Alias over CARPRenato Botelho2014-12-161-1/+7
|
* Follow help page that moved.jim-p2014-12-151-1/+1
|
* Follow help page that moved.jim-p2014-12-151-6/+6
|
* Add DNS Resolver to the list of services to be sync'd on HA, make sure it ↵Renato Botelho2014-12-153-4/+20
| | | | and DNS Forwarder are not enabled simultaneously. It fixes #4067
* Fix password field nameRenato Botelho2014-12-151-1/+1
|
* Use newline to separate unbound custom options during config upgrade, it ↵Renato Botelho2014-12-151-4/+4
| | | | should fix #4104
* Add a shortcut for unbound and enable itRenato Botelho2014-12-152-1/+7
|
* Fix password field name to apply correct styleRenato Botelho2014-12-151-2/+2
|
* Add missing BR tags and fix display with pfsense_ng_fs theme. It fixes #4115Renato Botelho2014-12-152-5/+5
|
* Where binding Unbound to *:53, set "interface-automatic: yes" so replies are ↵Chris Buechler2014-12-131-0/+1
| | | | sourced from the correct IP. Ideally this should always work this way, but setting this causes Unbound to bind to *:53, which shouldn't happen where specific interfaces are chosen. Ticket #4111
* Validation of y/n answers in setlanipPhil Davis2014-12-121-31/+33
| | | | | | | | At the moment the user can answer "yes" to most of the questions, but then later code only checks if the answer is "y". Thus you can type in "yes" in some places, have it accepted, but actually the negative action is taken. That is weird and will mess up people who try typing a whole string starting with "y". With this change it makes the user type one of "y", "yes", "n", "no". When they type 1 of those, it is turned into either "y" or "n". Then the existing implementation logic all works as expected. Hopefully this is the "final" version that fixes the behavior of the (y/n) questions. I also included the bit at 296-297 which adds the CIDR bit-count range to the prompt, so the user can see exactly what input is valid/expected there. Redmine issue #4100
* Update service providers xml to sync with upstreamRenato Botelho2014-12-121-154/+2116
|
* rc.initial.setlanip fix validation of CIDR within rangePhil Davis2014-12-121-1/+1
| | | | | Currently this allows the user to input any number for the CIDR. I happened to try 44 for an IPv4 CIDR when playing. This fixes that little bug - I think it is good to commit that first/separately so it can be identified apart from the other (y/n) checking/handling I am working on. Better to have separate commits for distinct bugs.
* Regenerate Turkish moRenato Botelho2014-12-121-0/+0
|
* Update po from last potRenato Botelho2014-12-121-37830/+22552
|
* Update Turkish translation file from last version available on old ↵Renato Botelho2014-12-121-2330/+8898
| | | | translation server
* Regenerate pfSense.potRenato Botelho2014-12-121-35890/+17121
|
* Fix password confirmation name to make style working as expected. Fixes #3992Renato Botelho2014-12-121-2/+2
|
* Base URL must be specified when alturlenable onPhil Davis2014-12-121-0/+7
| | | | | | | | | | | | | I had a 2.1.5 system that I was wondering why the dashboard always said it could not check for updates. I discovered it had "Use an unofficial server for firmware upgrades" checked, but the "Base URL" field was empty. That can easily be checked with input validation - might as well catch dumb things like that. I thought about making it parse the string to see if it seemed like a "valid" URL. But so many strings seem like valid URLs: var_dump(parse_url("abc")); array(1) { ["path"]=> string(3) "abc" } It seemed a bit pointless to bother - if the user puts something in then hope that it might point to something some day.
* Split ICMP and ICMPv6 types on Firewall RulesRenato Botelho2014-12-114-47/+104
| | | | | | | | | | | - Remove redundant declaration of $icmptypes and move it to a common place (filter.inc) - Add missing ICMP types for v4 - Add ICMPv6 types - Adjust javascripts to show correct options depending of IP Protocol - Hide ICMP type selection when protocol is IPv4+v6 It fixes #3389
OpenPOWER on IntegriCloud