summaryrefslogtreecommitdiffstats
path: root/src/etc/inc
Commit message (Collapse)AuthorAgeFilesLines
* Detect XG-1537Renato Botelho2017-09-261-0/+7
|
* Revert "Do not associate IP and MAC on down table. It should help #7813 and ↵Luiz Souza2017-09-221-3/+1
| | | | | | #7833" This reverts commit aa61ecfde0952ed1c3a035ac9489f5a5f9c51425.
* Do not associate IP and MAC on down table. It should help #7813 and #7833Renato Botelho2017-09-211-1/+3
|
* Revert "Update translation files"Renato Botelho2017-09-211-3/+1
| | | | | | Bad commit log This reverts commit ff8d44d194b6a5ada8fcd2aafe8c7ec358a7adae.
* Update translation filesRenato Botelho2017-09-211-1/+3
|
* Fix #7834: Delete IPFW pipes when disable Captive Portal zoneRenato Botelho2017-09-191-3/+13
|
* Remove correct fileRenato Botelho2017-09-191-1/+1
|
* Ticket #7834: Add missing global declarationsRenato Botelho2017-09-191-2/+2
|
* Remove the previous 'no_dad' workaround now that if_stf is fixed.Luiz Souza2017-09-151-1/+1
| | | | Partly revert b76e0baebb70775b192507ec18f523141800ce95.
* If /boot/loader.conf is not presetn check /boot/loader.conf.local.Luiz Souza2017-09-141-1/+8
|
* Move this file_exists test inside the dpinger status check loop and also ↵jim-p2017-09-141-5/+5
| | | | | | suppress PHP errors from stream_socket_client() Both are done to avoid a race where the status file can be missing and the status check fails, resulting in an alert/crash report.
* Fix incorrect function name/typo. Ticket #7719jim-p2017-09-141-2/+2
| | | | (cherry picked from commit 48c4a0ea0958c0820f6caab2bf5182967114ac58)
* Relax OpenVPN wizard cert validation to match that of the cert manager and ↵jim-p2017-09-121-0/+12
| | | | | | | encode values before using them. Fixes #7854 Also, CDATA escape these fields in config.xml since they will most likely contain characters which are invalid in XML. While here, fix a cert display issue where a SAN value could be reused from a previous entry in the cert list display.
* Fix #7719Renato Botelho2017-09-111-2/+12
| | | | | | | When Dynamic DNS entry uses a gateway group as interface, return_gateway_groups_array() will be called and it returns real interface instead of friendly name, as expected. Take both friendly and real interface name into consideration.
* Merge pull request #3763 from PiBa-NL/20170624-apinger-initializeRenato Botelho2017-09-111-19/+37
|\
| * gateway monitoring, give apinger some time to properly 'initialize' before ↵PiBa-NL2017-06-241-19/+37
| | | | | | | | using its results
* | Add a field to pick a digest algo when signing a CSR, otherwise it ends up ↵jim-p2017-09-111-1/+22
| | | | | | | | | | | | with SHA1. Fixes #7853 While here, add the cert serial number and sig digest type to the info block for each cert.
* | Use the full CA chain when sending an LDAP SSL query. Fixes #7830jim-p2017-08-301-4/+6
| | | | | | | | While here, fix a couple more ldap_start_tls() calls that need a preceding @.
* | Restore bad username or password messageSteve Beaver2017-08-302-2/+16
| |
* | Don't print a PHP error if LDAP STARTTLS fails.jim-p2017-08-291-1/+1
| |
* | Bump config revision, fix comment. Ticket #7809jim-p2017-08-242-2/+2
| |
* | Setup upgrade code for wireless interfaces to the new format needed for 2.4, ↵jim-p2017-08-241-0/+28
| | | | | | | | and switch rc.bootup so the config upgrade happens before a mismatch test, otherwise we can't fix this type of situation. Fixes #7809
* | Correct typo. Fixes #7802jim-p2017-08-231-1/+1
| |
* | If the user chose to have DDNS Hostnames forced, respect that in the backend ↵jim-p2017-08-211-0/+4
| | | | | | | | code for static map IPv6 hosts. Fixes #7324
* | Add French to GUIRenato Botelho2017-08-211-0/+1
| |
* | Add Polish to GUI, it's over 75% completeRenato Botelho2017-08-171-0/+1
| |
* | Merge pull request #3795 from PiBa-NL/20170808-hfsc-no-prioRenato Botelho2017-08-161-21/+24
|\ \
| * | shaper, hfsc cannot use priority, as such don't show the field in the webgui.PiBa-NL2017-08-081-21/+24
| | | | | | | | | | | | | | | Also for the other shapers 0 is a valid priority While fairq causes a error loading rules with a priority above 7 so prevent that.
* | | Merge pull request #3799 from marjohn56/Unbound-start-delayRenato Botelho2017-08-162-0/+21
|\ \ \
| * | | Some systems - only one that I am aware of, complain that unbound is ↵marjohn562017-08-112-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | starting before dchp6 has completed leading to problems, this occurs only on boot. Further examination did indeed show that the problem is caused by unbound starting before the dhcp6c - RTSOLD - rc.newwanipv6 have completed, making sure that these have all run before unbound is allowed to start corrects the problem. In order to fix this I have added a file creation of a file in tmp in rc.newwanipv6, this is the final function when the system is booting and ONLY when the system is booting. In interfaces.inc I have added an unlink_if_exists () of this file, this is a "just in case" catch, should the file have been left behind due to some unforeseen event. The real work is done in services.inc, a section of code has been added that can cause up-to a ten second delay before allowing unbound to start. This is achieved by waiting for the file created by rc.newwanipv6 to exist, once it does exist then the file is deleted, the sleep loop breaks and unbound is allowed to start. If the file does not exist after 10 seconds then the sleep loop exits and unbound can start. Checks are made for the fact that WAN is using Ipv6 and dhcp6,
* | | | Do not use reference to avoid losing dataRenato Botelho2017-08-161-2/+4
| | | |
* | | | Always run additional_config_upgrade() and do it after config is writtenRenato Botelho2017-08-161-8/+10
| | | |
* | | | Fix indent/spaceRenato Botelho2017-08-161-9/+14
| | | |
* | | | Check if specific config upgrade code already ran and skip itRenato Botelho2017-08-161-7/+20
| | | |
* | | | Add a function to be called every time convert_config() runsRenato Botelho2017-08-162-0/+14
| | | |
* | | | Refresh cache every 2h when using GUIRenato Botelho2017-08-151-1/+1
| | | |
* | | | Unset workaround used to set cronjob on 2.3.xRenato Botelho2017-08-151-0/+3
| | | |
* | | | Put the FQDN first in /etc/hosts to make dnsmasq happy when reverse ↵jim-p2017-08-141-3/+4
| | | | | | | | | | | | | | | | resolving hostnames. Make a special exception for localhost. Fixes #7771
* | | | Revise error page to comply with login page styleSteve Beaver2017-08-141-21/+65
| | | |
* | | | Fix a couple of 'route: writing to routing socket: Invalid argument' ↵Luiz Souza2017-08-121-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | warnings during the boot. Use the correct variable and only add the route when the hostname is resolved (if the remote address is a hostname). route: writing to routing socket: Invalid argument
* | | | Do not run the dpinger when the IPv6 address has the tentative flag even ↵Luiz Souza2017-08-111-2/+6
| | | | | | | | | | | | | | | | after the timeout.
* | | | Disable the DAD on the stf interface. This prevents the dpinger from start.Luiz Souza2017-08-111-4/+1
| | | |
* | | | Update cache when GUI successfully update pkg metadataRenato Botelho2017-08-111-0/+6
| | | |
* | | | Speedup get_system_pkg_version() considering only installed packagesRenato Botelho2017-08-101-2/+2
| | | |
* | | | Use cache file to show pfSense version informationRenato Botelho2017-08-102-4/+22
| | | |
* | | | Add a protection to prevent ending up with duplicate crontab entryRenato Botelho2017-08-101-1/+10
| | | |
* | | | Sort languages alphabetically (in English)Renato Botelho2017-08-101-6/+6
| | | |
* | | | Add Dutch to GUI, it's over 75% completeRenato Botelho2017-08-101-0/+1
| | | |
* | | | Run rc.update_pkg_metadata in background when repository changesRenato Botelho2017-08-101-1/+3
| | | |
* | | | Make sure pkg metadata is updated at least once daily. It will be used to ↵Renato Botelho2017-08-102-1/+16
|/ / / | | | | | | | | | speedup GUI parts related to pkg update
OpenPOWER on IntegriCloud