summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Backport #5512 RADIUS secretPhil Davis2015-11-231-1/+1
| | | Another little easy thing to backport just in case.
* Merge pull request #2014 from phil-davis/patch-1Renato Botelho2015-11-191-2/+2
|\
| * Fix firewall log dynamic rule lookupPhil Davis2015-11-021-2/+2
| | | | | | for rows that are dynamically added as time goes by.
* | Merge pull request #2069 from jean-m-cyr/RELENG_2_2Renato Botelho2015-11-191-0/+4
|\ \
| * | Add missing stratum parameterJean Cyr2015-11-151-0/+4
| | | | | | | | | | | | | | | Add missing stratum parameter in ntpd.conf when specified on Serial GPS page.
* | | Ticket #5451 for RELENG_2_2Phil Davis2015-11-151-1/+1
|/ / | | | | | | | | Actually this can be fixed by adding just a space after "from any". The code here builds up $tmprule and each time it adds a new clause it puts a space at the end, ready for if there is another clause to come. The "from any" here was the only offender in this scheme. It seems good to me to still backport little easy fixes to RELENG_2_2. That way production users can get them easily if they like (with system patches or...).
* | Change version to 2.2.6-DEVELOPMENTRenato Botelho2015-11-061-1/+1
| |
* | A new fix for #4130:RELENG_2_2_5Renato Botelho2015-11-031-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | The fix added for this bug, that check xml file size is < 200 to decide if file must or not be read created a new issue, single entry is not showed. Instead of doing this, check parse_xml_config() return and return empty array when it's -1 While here, prevent errors saying parse_xml_config() doesn't exist and make sure xmlparse.inc is required
* | Only call pfSense_ipsec_list_sa() when IPsec is enabledRenato Botelho2015-11-031-0/+13
| |
* | bump to 2.2.5-RELEASEChris Buechler2015-11-021-1/+1
| |
* | fix whitespaceChris Buechler2015-11-021-5/+5
|/
* Deprecate strongswan smp componentsRenato Botelho2015-10-301-0/+4
|
* Remove ipsec_smp_dump_status(), last dependency of strongswan XMP moduleRenato Botelho2015-10-301-47/+0
|
* Set leftsendcert=always for IKEv2 configurations with certificates to better ↵jim-p2015-10-281-0/+5
| | | | accommodate OS X and iOS manual configurations. Fixes #5353
* fix logging config upgrade. Ticket #5340Chris Buechler2015-10-261-2/+2
|
* terminate argument parsing before giving the log level. Ticket #5340Chris Buechler2015-10-261-1/+1
|
* Use 1-6 rather than 0-5 for IPsec logging levels, to stay away from ↵Chris Buechler2015-10-263-5/+22
| | | | complications of 0 due to PHP stupidity. Upgrade config to add 1 to any configured log levels. Default to 1 as log level where none is configured by the user. Ticket #5340
* IKE auto mode is back, remove this config upgrade code unsetting it.Chris Buechler2015-10-241-4/+0
|
* Check unbound root.key file contents, and remove it if invalid, before ↵Chris Buechler2015-10-211-0/+9
| | | | unbound-anchor runs otherwise it will fail and unbound will fail to start. fsync the file after writing to prevent the problem. Ticket #5334
* Make setting charon.plugins.attr.subnet conditional on net_list being set. SetMatt Smith2015-10-211-3/+1
| | | | it's value to list of subnets configured as P2's for mobile IPsec. Fixes #5327.
* Disable strongswan logging under auth since it's all logged under daemon,Chris Buechler2015-10-201-0/+5
| | | | so nothing is duplicated. Ticket #5242
* Check whether the P2 or its associated P1 are disabled before adding NATChris Buechler2015-10-201-1/+8
| | | | rules. Ticket #5320
* Disable zero copy buffers in bpf.Luiz Otavio O Souza2015-10-191-1/+0
| | | | | | | | | This was a no-op before my changes (so this was never really enabled) and now it is known to cause issues with tcpdump and hostapd. Disable this until we fix all the raised issues. Issue: #5257
* Cherry-pick 98bf4991dc31f97fc7315a6b8aba433de9d39cea:Luiz Otavio O Souza2015-10-191-20/+14
| | | | | | | | | | | | Fixes #4150. Move to tables to accomodate unlimited number of interfaces. Cherry-pick 52fe0465b463dd8b8f4b2099d562254da320e704: Fix the captive portal rules after 98bf4991dc31f97fc7315a6b8aba433de9d39cea. The malformed rules breaks the parsing of initialisation rules. Issue: #4746
* Add 'caref' attribute to the ca object passed into ca_inter_create so aMatt Smith2015-10-161-0/+1
| | | | relationship to the signing CA can be maintained. Fixes #5313.
* Limit strongswan trusted CA certificates to those required for authentication ofMatt Smith2015-10-161-22/+46
| | | | the configured IPsec SA's instead of trusting all known CA's. Fixes #5243.
* only use daemon and not auth for strongswan logging. As it was, all logs ↵Chris Buechler2015-10-151-6/+0
| | | | were duplicated. Ticket #5242
* fix comparison here. Ticket #4558Chris Buechler2015-10-151-1/+1
|
* Set rightca for IPsec phase 1 using Mutual RSA, Mutual RSA + xauth, or ↵Matt Smith2015-10-151-0/+24
| | | | EAP-TLS. Fixes #5241.
* s/ip/IP/ it got lost on revert. Spotted by @phil-davisRenato Botelho2015-10-141-1/+1
|
* This is necessary for dhcrelay to function. Revert "remove the destination ↵Chris Buechler2015-10-141-6/+132
| | | | | | server's interface(s) from dhcrelay" This reverts commit 97613114b5b74c334609d7fcd79c94741b111793.
* Auto-add firewall rules for DHCP Relay, same as is done for DHCP Server. Add ↵Chris Buechler2015-10-141-0/+13
| | | | filter reload to DHCP Relay config so rules are immediately added/removed. Ticket #4558
* Remove original rightsourceip. Ticket #5284Chris Buechler2015-10-131-1/+0
|
* PHP chmod() doesn't like 1777, gives it 01777 thenRenato Botelho2015-10-131-1/+1
|
* Add missing ; and also mute chmodRenato Botelho2015-10-131-1/+1
|
* Preserve /tmp permission, it fixes #5298Renato Botelho2015-10-131-0/+1
|
* Remove strongswan's cert directories and repopulate them, to ensure no ↵Chris Buechler2015-10-121-0/+5
| | | | removed CAs, certs, or CRLs remain. Ticket #5238
* Fix up strongswan logging levels. Remove charondebug since strongswan.conf ↵Chris Buechler2015-10-121-7/+11
| | | | settings take precedence. Set logging levels in strongswan.conf to match what's set on a running system via 'ipsec stroke loglevel', and remove log levels that were hard coded in strongswan.conf. Ticket #5242
* Add SVG MIME type - RELENG_2_2doktornotor2015-10-091-0/+1
| | | Because it breaks traffic graphs for people.https://forum.pfsense.org/index.php?topic=87390.0
* Do curl_init above any curl_setopt, and take it out of that if block since ↵Chris Buechler2015-10-081-1/+2
| | | | it applies to all types.
* https://redmine.pfsense.org/issues/5207Matt Smith2015-10-071-2/+1
| | | | change auth methods for both peers when using hybrid RSA + xauth with IKEv1
* Add support for an IPv6 pool for mobile clients.Matt Smith2015-10-071-4/+13
|
* Where doing a dynamic DNS update on IPv4, force curl to resolve IPv4 IPs. ↵Chris Buechler2015-10-031-0/+4
| | | | Ticket #3858
* Fix typoChris Buechler2015-10-021-1/+1
|
* Specify PSK for mobile configurations without the leading ID selectors. ↵Chris Buechler2015-10-021-0/+3
| | | | Fixes PSK mismatches from iOS clients.
* When using eap-radius, if the virtual address pool is left blank, pull the ↵jim-p2015-10-011-2/+6
| | | | IP addresses from RADIUS instead. (Will need an IP address defined for each account.) Doesn't seem to be possible to pull from either RADIUS *or* a local pool that I can see from experimenting and looking at strongSwan's docs.
* Specify %any where identifier is "any", so the note on these pagesChris Buechler2015-10-011-0/+3
| | | | actually works.
* Only need to check 'vip' here.Chris Buechler2015-09-301-1/+1
|
* Can't use continue here as it continues the foreach, which skips theChris Buechler2015-09-301-6/+5
| | | | | "ipfw zone" command, breaking CP for any system that doesn't have VIPs defined.
* Bring this back, I'll fix issues afterwards. Revert "Remove "auto", it's ↵Chris Buechler2015-09-291-1/+3
| | | | | | just a synonym for IKEv2. Ticket #4873" This reverts commit 47f802694a1e1dfbbd011d7ec431c0948358b5c3.
OpenPOWER on IntegriCloud