summaryrefslogtreecommitdiffstats
path: root/src/etc
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Relocate subnet mask drop-down to a more sensible place on the PPPoE server, ↵jim-p2016-01-221-1/+6
| | | | | | | | | | | | | | | | add a user login count option.
* | | | Make sure LANG = C for pkg callsRenato Botelho2016-01-221-0/+1
| | | |
* | | | Move set_language() call back to guiconfig.inc since it's causing trouble on ↵Renato Botelho2016-01-221-5/+0
| | | | | | | | | | | | | | | | console
* | | | Remove attributions of return code not being used at allRenato Botelho2016-01-221-4/+4
| | | |
* | | | Follow FreeBSD steps (r294560) and stop creating rsa1 and dsa keys by defaultRenato Botelho2016-01-221-2/+0
| | | |
* | | | Fix #5690:Renato Botelho2016-01-213-14/+18
| | | | | | | | | | | | | | | | | | | | | | | | - Remove parameters from set_language() - Add a global variable for default language - add env var for LANG, otherwise it won't work
* | | | Fixed #5789Stephen Beaver2016-01-211-2/+2
| | | |
* | | | Use tab instead of spacesDenny Page2016-01-211-1/+1
| | | |
* | | | Use a single call to dpinger for a coherent view of latency/stddev/loss.Denny Page2016-01-211-5/+5
| |/ / |/| |
* | | The topology line also must be skipped if an SSL/TLS mode is used with a ↵jim-p2016-01-211-1/+2
| | | | | | | | | | | | CIDR less than 30.
* | | Initialize $stop_time inside foreach to make sure it resets to proper value ↵Renato Botelho2016-01-201-1/+1
| | | | | | | | | | | | each iteration since it's changed inside loop. Reported on https://github.com/pfsense/pfsense/pull/2487
* | | Obsolete libstrongswan-unity.MOVEDRenato Botelho2016-01-201-0/+1
| | |
* | | Fix #4178:Renato Botelho2016-01-201-13/+9
| | | | | | | | | | | | | | | | | | | | | - Stop moving unity .so file around to make it not being loaded - Include all modules default .conf file from strongswan.d/charon - After default files are included, define custom settings - When unity is disabled, add a rule to make strongswan to not load it
* | | Fix strongswan.conf indent levelRenato Botelho2016-01-201-1/+1
| | |
* | | Fix strongswan.conf indent levelRenato Botelho2016-01-201-22/+22
| | |
* | | Merge pull request #2472 from dennypage/masterChris Buechler2016-01-191-0/+1
|\ \ \
| * | | Add standard deviation to gateway status and widgetDenny Page2016-01-181-0/+1
| | | |
* | | | Remove ORIGINAL_PORTAL_IP, it was never used.Chris Buechler2016-01-191-2/+0
| | | |
* | | | Revert chmod change from 9219378b588ce968702be2a7e153aa984504b6aaNewEraCracker2016-01-191-0/+0
| | | |
* | | | Merge pull request #2450 from hexaclock/masterRenato Botelho2016-01-191-5/+29
|\ \ \ \
| * | | | Update auth.incDan Vinakovsky2016-01-181-1/+1
| | | | | | | | | | | | | | | add XXX prefix.
| * | | | add note about r284483Daniel Vinakovsky2016-01-181-4/+4
| | | | |
| * | | | more style fixes. unset old fieldsDaniel Vinakovsky2016-01-181-4/+3
| | | | |
| * | | | style fixesDaniel Vinakovsky2016-01-181-4/+2
| | | | |
| * | | | Merge remote-tracking branch 'upstream/master'Daniel Vinakovsky2016-01-1646-813/+2804
| |\ \ \ \
| * | | | | compatibility with freebsdDaniel Vinakovsky2016-01-161-0/+9
| | | | | |
| * | | | | switched to bcrypt as per #4120daniel2016-01-141-5/+23
| | | | | | | | | | | | | | | | | | | | | | | | added bcrypt auth as per #4120
* | | | | | Update smtp.inc to 2016-01-18Renato Botelho2016-01-191-5/+5
| | | | | |
* | | | | | autocapitalize off is deprecated, use none instead. Ticket #5776Chris Buechler2016-01-181-1/+1
| |_|/ / / |/| | | |
* | | | | Bring text to current realityRenato Botelho2016-01-181-1/+1
| | | | |
* | | | | Merge pull request #2421 from stilez/patch-8Renato Botelho2016-01-181-23/+31
|\ \ \ \ \
| * | | | | should be min($bits1, $bits2) for 'largest subnet'stilez2016-01-181-2/+2
| | | | | |
| * | | | | 5 or 6stilez2016-01-131-1/+1
| | | | | |
| * | | | | fix $subnet1 should be $subnet2, thanks rbgarbastilez2016-01-131-2/+2
| | | | | |
| * | | | | fix 4 should be 6 (thanks, good catch)stilez2016-01-131-3/+3
| | | | | |
| * | | | | Fix logic for subnet overlap check + canonical for IPv6stilez2016-01-131-24/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The subnet overlap functions came up as a concern while fixing redmine 5702. Specifically - The "canonical" function check_subnets_overlap() doesn't handle IPv6 (util.inc has standardised on v4/v6/agnostic versions, but this doesn't fit). Fixed by adding transparent detection of v4/v6 and a specific IPv4-only version The IPv6 version is wrong (if sub1 *contains* sub2 then neither of sub1's endpoints will be detected as "inrange" of sub2 and result will be incorrect: this logic error has been fixed recently in other code too) Bad data isn't detected - this still isn't detected for compatibility and is tagged "FIXME" instead to look at in future. Reason - not to break anything, at present always returns "overlap = true/false", not "true/false/invalid input". because CIDR overlap implies containment, the IPv4 version uses a very efficient logic, namely calculates largest size subnet and checks this is same for both. Adopting this for both, and simplifying, makes these functions far "neater" The old v4 version allowed for non-numeric $bits which doesn't make sense and I've omitted. Cannot think of a single situation where we would provide empty or bad data when we actually mean a /32 single IP. Solution in this commit - a canonical "overlap" test (IPv4/IPv6 agnostic), IPv4/v6 "overlap" versions that actually do the work, in each case using the same logic as the old v4 (identify largest bit size and test if subnets created are valid and identical), and tag lack of "bad data" detection as fixme for now, returning FALSE instead to avoid breaking anything until fixed. Should be transparent from outside.
* | | | | | Respect smtp debug settingRenato Botelho2016-01-181-2/+4
| | | | | |
* | | | | | Revert "add all of /usr/local/lib/lighttpd to obsoletedfiles"Renato Botelho2016-01-181-1/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pfBlockerNG is going to use lighttpd This reverts commit c74719cde73c8ce19465e1887f8c519c4818147c.
* | | | | | Revert "Add more lighttpd pieces to obsoletedfiles list"Renato Botelho2016-01-181-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pfBlockerNG is going to use lighttpd This reverts commit 4bebb56a23658eac8791df7c1a44927e66c6d51c.
* | | | | | fix Bug #5776heper2016-01-171-1/+1
| | | | | |
* | | | | | Fix dns test for localhost inclusion, when saving now the port value can be ↵jim-p2016-01-161-2/+2
| |_|/ / / |/| | | | | | | | | | | | | | set but empty. Fixes #5775
* | | | | Do not allow certificate to be deleted if it's been used by a package. Fixes ↵Renato Botelho2016-01-151-1/+19
| | | | | | | | | | | | | | | | | | | | #4142
* | | | | Silence stream_socket_enable_crypto() warning when CN doesn't match. Fixes #5604Renato Botelho2016-01-151-2/+2
| | | | |
* | | | | Encode DHCP/DHCPv6 server additional BOOTP text options before save to XML ↵Renato Botelho2016-01-153-4/+35
| | | | | | | | | | | | | | | | | | | | to preserve data. It fixes #5623
* | | | | Update license on files from /etc/incRenato Botelho2016-01-1538-640/+1536
| | | | |
* | | | | Update sasl classes to last version and remove all style customizations - ↵Renato Botelho2016-01-155-28/+26
| | | | | | | | | | | | | | | | | | | | http://www.phpclasses.org/package/1888-PHP-Single-API-for-standard-authentication-mechanisms.html
* | | | | Update smtp class to latest version, fixes #5604Renato Botelho2016-01-152-139/+1171
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - SMTP class from http://www.phpclasses.org/package/14-PHP-Sends-e-mail-messages-via-SMTP-protocol.html - Adapt code to current version, only change was tls parameter became start_tls
* | | | | Respect force parameter even if message is the same of last sentRenato Botelho2016-01-151-2/+2
| | | | |
* | | | | Add config upgrade code to remove L7 config pieces, and file a notice where ↵Chris Buechler2016-01-142-1/+17
| |/ / / |/| | | | | | | | | | | found. Ticket #5508
* | | | Simplify logic and fixes on interface_vlan_adapt_mtu()Renato Botelho2016-01-141-14/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove some redundant code and define $if_mtu respecting the order - Assinged interface - PPP - default - When interface is a VLAN and parent is LAGG, it must be re-created
OpenPOWER on IntegriCloud