summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix help text index when the privs are filtered.Stephen Beaver2016-02-082-2/+8
|
* Merge pull request #2592 from phil-davis/patch-1Chris Buechler2016-02-081-1/+3
|\
| * Add support for TB when reporting bytesPhil Davis2016-02-071-1/+3
| | | | | | | | | | | | Forum: https://forum.pfsense.org/index.php?topic=106470.0 I believe that this should work OK on both 32 and 64 bit systems. A 32-bit system will convert big values of $bytes and big numbers like 1099511627776 to float first, then do the comparison. 64-bit systems will do (int) comparisons. Either way, in the end, the value is sprintf() into a float anyway. I have tested on a 64-bit system. I don't have access to a 32-bit system right now, so somebody should check that to make sure my theory works in practice.
* | Fix #3209 editing unassigned VLAN tag can change an assigned interfacePhil Davis2016-02-081-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | To reproduce: a) Create VLAN 10 on some real device (e.g. em0) b) Create VLAN 11 similarly. c) Assign VLAN 11 (the last one in the vlan array in the config) to OPT1. d) Edit VLAN 10 tag to be 12. The OPT1 assignment becomes to em0 tag 12. This is because of the wrong reference to $vlan['vlanif'] that is fixed here. At this point $vlan is a leftover from a previous loop that went through all the VLANs in the config - so it happens to be the last one from the config. Hopefully this fixes all the various ways people have reported this in redmine #3209.
* | Merge pull request #2599 from phil-davis/gtvpnStephen Beaver2016-02-085-11/+11
|\ \
| * | Internationalize vpn*.phpPhil Davis2016-02-085-11/+11
| |/
* | Merge pull request #2597 from phil-davis/patch-3Stephen Beaver2016-02-081-1/+1
|\ \
| * | Enhance input error message for RADIUS secretPhil Davis2016-02-081-1/+1
| |/ | | | | Make this input error message different to the one just above for the "ordinary" secret so that users can read the message and know which are the fields with the problem.
* | Merge pull request #2596 from phil-davis/gtsugStephen Beaver2016-02-086-20/+17
|\ \
| * | Internationalize system user and group codePhil Davis2016-02-086-20/+17
| |/
* | Merge pull request #2595 from phil-davis/grpprivStephen Beaver2016-02-081-9/+10
|\ \
| * | Make group addpriv descriptions work like user addprivPhil Davis2016-02-081-9/+10
| |/
* | Merge pull request #2594 from NOYB/HTML_Compliance_-_Status_/_GatewaysStephen Beaver2016-02-081-1/+1
|\ \
| * | HTML Compliance - Status / GatewaysNOYB2016-02-071-1/+1
| |/ | | | | | | The bgcolor attribute on the td element is obsolete. Use CSS instead.
* | Fix subnet_size var name typoPhil Davis2016-02-071-1/+1
|/
* Add missing commajim-p2016-02-061-1/+1
|
* Fix NAS IP listing in captive portal. semi-related to Ticket #5656Chris Buechler2016-02-061-0/+1
|
* Don't include 127.0.0.0/8 in unbound.conf in forward mode. Ticket #5750Chris Buechler2016-02-061-1/+3
|
* Use a better check for whether there are DNS servers available with dynamic ↵Chris Buechler2016-02-061-5/+4
| | | | WAN types. Ticket #4747
* Merge pull request #2587 from davidjwood/preserve-sshd-parentChris Buechler2016-02-061-1/+6
|\
| * Don't kill an sshd parent process on exit from /etc/rc.initialDavid Wood2016-02-061-1/+6
| | | | | | | | This stops exiting a shell running in an SSH session from terminating the parent sshd process, which has the unwanted side effect of killing all other sessions running under that sshd process (including cloned shell sessions).
* | Merge pull request #2588 from davidjwood/rrd-ntp-offsetChris Buechler2016-02-061-1/+1
|\ \
| * | Tell rrd that ntpd offset can be negative as well as positiveDavid Wood2016-02-061-1/+1
| | |
* | | Verify a DNS server exists before allowing enabling of forwarding mode. ↵Chris Buechler2016-02-061-0/+26
| | | | | | | | | | | | Ticket #4747
* | | Handle start/stop of OpenVPN client instances bound to gateway groups using ↵Chris Buechler2016-02-062-2/+26
| | | | | | | | | | | | CARP IPs. Ticket #4858
* | | clean up textChris Buechler2016-02-062-4/+4
| | |
* | | Fix get_interface_ip to return correct IP for CARP VIPs. Ticket #4858Chris Buechler2016-02-061-0/+4
|/ /
* | Fix find_interface_ip for gateway groups with VIPs. Ticket #4858Chris Buechler2016-02-051-3/+3
|/
* $interface isn't used here. Wasn't before either, otherwise it would have ↵Chris Buechler2016-02-051-2/+0
| | | | broken the get_configured_carp_interface_list. Ticket #5844
* Just show the IP to the user, the VIP's uniqid is meaningless noise to the ↵Chris Buechler2016-02-051-1/+1
| | | | user. Ticket #5844
* Only show VIPs associated with the correct interface. Ticket #5844Chris Buechler2016-02-051-4/+5
|
* Select appropriate VIP where one is configured. Ticket #5844Chris Buechler2016-02-051-1/+1
|
* Add pfsync to the list of pre-defined packet capture filters. Also add ↵jim-p2016-02-051-2/+5
| | | | negation for ESP that seems to have been accidentally omitted.
* Fix #5837Renato Botelho2016-02-051-23/+23
| | | | | | | | | | | | | | | | | | | Since the introduction of pkg_with_pb(), direct calls to this function were added using the following format: if ! pkg_with_pb ... | tee -a $logfile; then What happened in this case is if was always getting a successfull return code from tee call, and pkg_with_pb return was always being ignored leading pfSense-upgrade to keep running when a fatal error happened. Since we need to print pkg output and also send it to log, _exec() call is the best option here. Added necessary flags to make sure necessary actions (unlock additional packages or cleaning up kernel package annotation) are executed on _exit call in fatal cases and replaced all direct calls by _exec()
* HTML Compliance - Status / OpenVPNNOYB2016-02-051-3/+2
| | | | | Start tag body seen but an element of the same type was already open. Stray start tag script.
* Merge pull request #2585 from k-paulius/patch-pkg-syslog-v2Chris Buechler2016-02-042-1/+14
|\
| * Adding ability to run dhcp6c in debug mode.k-paulius2016-02-042-1/+14
| |
* | Set gif interface MTU in interface_gif_configure if it's not already ↵Chris Buechler2016-02-041-0/+14
|/ | | | correct. Ticket #5842
* Fixed #5841Stephen Beaver2016-02-042-3/+4
|
* Now that the fields on interfaces.php aren't hidden upon disabling the ↵Chris Buechler2016-02-041-18/+0
| | | | interface, we don't want to handle disable separately from everything else, as that discards all the changes other than disabling the interface. Everything else with handling bringing down of interfaces is still handled correctly. semi-related to Ticket #2453
* Return blank rather than 0ms/0% for unmonitored gateways latency and loss. ↵Chris Buechler2016-02-042-3/+7
| | | | Show on dashboard widget when a gateway is unmonitored. Ticket #2226
* Remove rc.restore_full_backup, remainder of full backup components were ↵Chris Buechler2016-02-042-20/+1
| | | | removed already.
* Enable gzip compression in nginx.Chris Buechler2016-02-041-0/+3
|
* Allow gateway weights up to 30, and add a check in filter.inc to prevent ↵Chris Buechler2016-02-042-1/+9
| | | | creating too long of a route-to line. Related to pull request 1614
* Fix multi-session time counting for the FreeRADIUS start/stop case. Ticket #2164jim-p2016-02-041-1/+8
|
* Fix typo in button class for CP statusjim-p2016-02-041-1/+1
|
* Merge pull request #2584 from schinken/radvd-lifetime-defaultsRenato Botelho2016-02-041-0/+4
|\
| * Add defaults to radvd valid and preferred lifetimeschinken2016-02-041-0/+4
| |
* | Make sure subnet_size() didn't return 0Renato Botelho2016-02-041-1/+3
| |
* | Merge pull request #2435 from stilez/patch-7Renato Botelho2016-02-041-7/+39
|\ \ | |/ |/|
OpenPOWER on IntegriCloud