summaryrefslogtreecommitdiffstats
path: root/usr
Commit message (Collapse)AuthorAgeFilesLines
* Domain override with multiple authoritative DNS serversPhil Davis2015-04-131-1/+2
| | | | | | Tell users that this is possible in DNS Resolver and how to achieve it. The code in unbound.inc already supports it and works. I had asked for this in Redmine feature request #4350 and when I went to look at coding to implement it I found code that already did it. So IMHO it is worth telling users.
* Allow single interface bridges. Useful with span port option, and when ↵Chris Buechler2015-04-081-2/+2
| | | | shuffling configuration around.
* Few minor text typosPhil Davis2015-04-063-7/+6
| | | | | | Note that advertise is spelt with an "s" in other places in the GUI, so making it consistent in services_ntpd - but maybe Americans do spell it "advertize" these days?
* diag_sockets show sockets listening on localhostPiBa-NL2015-04-061-2/+2
| | | | this helps pick a free port for services using sockets bound to localhost, and helps determine if the service has at least started and bound the port without needing to go through all 'connected' sockets as well
* Fix up Ticket #4504 implementation. Match config style with other areas. Use ↵Chris Buechler2015-04-041-9/+9
| | | | a config setting to disable, rather than enable, this functionality since it's enabled by default so the tag isn't necessary in the default config. Remove now unnecessary config upgrade code.
* Remove array_intersect_key here too, definitely not needed. add to ↵Chris Buechler2015-04-041-1/+0
| | | | obsoletedfiles
* There is no longer any need to restrict protocols for IPv4+IPv6 rules, the ↵Chris Buechler2015-04-041-5/+0
| | | | appropriate ruleset is generated and problem scenarios that would otherwise break here are prevented by other input validation.
* remove dead code, clean up excess white space a bit.Chris Buechler2015-04-031-24/+0
|
* Fixes #4504 use correct key indexErmal LUÇI2015-04-031-1/+1
|
* Fixes #4504 Allow the bypass policy for LAN to be enabled and prevent ↵Ermal LUÇI2015-04-031-0/+16
| | | | traffic sent to lan ip to go to the ipsec tunnel
* Fixes #4259 Use proper variable to do calculationsErmal LUÇI2015-04-032-5/+5
|
* Add SCTP to protocol list for filtering.jim-p2015-03-311-1/+1
|
* Merge manually pull request #1593Ermal LUÇI2015-03-311-0/+1
|
* Fix encoding issues in Configuration History list.jim-p2015-03-311-4/+4
|
* Fix a few misc encoding issues in load balancer code.jim-p2015-03-316-10/+26
|
* Fixed minor spelling errorPhilip Hansen2015-03-301-1/+1
|
* Voucher messages using wrong config field nameGertjan2015-03-261-3/+3
| | | | | | | | | | | | https://forum.pfsense.org/index.php?topic=91168.msg505273#msg505273 $config['voucher'][$cpzone]['msgnoaccess'] and $config['voucher'][$cpzone]['msgexpired'] do not exist. These should be $config['voucher'][$cpzone]['descrmsgnoaccess'] and $config['voucher'][$cpzone]['descrmsgexpired']
* RRD Graph Custom Tab display friendly descriptionPhil Davis2015-03-261-1/+5
| | | | | The other tabs of Status:RRD Graphs put the friendly description of each interface into the drop-down list for selection. This change makes the Custom tab do that also.
* Status DHCP Leases handle expire neverPhil Davis2015-03-261-6/+16
| | | | | | | | | | | | | | Note: We can let the code pass "never" (or any other unexpected stuff) to adjust_gmt() adjust_gmt() should anyway handle the case when strtotime() cannot understand the input string and thus returns false. In that case we return the input string as-is so it will be displayed as the time. That way the user will see it and can report easily whatever other unexpected char data was in the leases file. It also prevents "false" (zero) being converted to the date-time string and thus becoming the Unix epoch 1 Jan 1970 on the display. Latest forum report of this kind of thing: https://forum.pfsense.org/index.php?topic=90083.0
* Use is_numericint() instead of empty() to check if value has been entered ↵k-paulius2015-03-231-4/+4
| | | | because empty() does not allow 0, which is a valid value.
* Make sure 'DHCPv6 Prefix Delegation size' is provided if 'Send IPv6 prefix ↵k-paulius2015-03-231-0/+3
| | | | hint' flag is checked to avoid generating invalid dhcp6c configuration file.
* Handle release number in installerPhil Davis2015-03-231-2/+3
| | | | | This code just looked wrong. It was considering 10.1-RELEASE-p6 to be release number "1" and comparing it to "9". These changes to do what it seems to intend. This will make that UFS+J stuff appear, if that is of any consequence.
* Add option for wireless standard "auto", to omit "mode" entirely from ↵Chris Buechler2015-03-181-0/+5
| | | | ifconfig. This shouldn't be necessary, but specifying mode has proven to trigger driver problems that don't exist if it's left unspecified (such as FreeBSD PR 198680). Chosing "auto" fixes ath(4) BSS mode issues otherwise preventing it from connecting.
* change the location of jquery-ui images in each theme's css fileJared Dillard2015-03-189-144/+144
|
* Cleanup code path when adding a new userPhil Davis2015-03-181-2/+2
| | | | | | | | | | | | | 1) Only attempt to delete the oldusername if it actually was non-empty - at the moment errors are logged in the system log when adding a new user, because the code was trying to delete the user name "". 2) Call local_user_set() first to create (change, whatever) the user record. This makes the user record exist for a new user. Then call local_user_set_groups() to sort out what groups the user should be in or not in. The existing code would fail to add a new user to the specified group/s because local_user_set_groups() was called too early, before the user actually existed. Typical system log errors from the old code: Mar 18 17:10:31 php-fpm[9542]: /system_usermanager.php: Tried to remove user but got user pw instead. Bailing. Mar 18 17:10:31 php-fpm[9542]: /system_usermanager.php: The command '/usr/sbin/pw groupmod admins -g 1999 -M '0,2003,2006,2008' 2>&1' returned exit code '67', the output was 'pw: user `2008' does not exist' From looking at the code history, I think this has been this way for a long time, not a new bug at all. Discussed in forum: https://forum.pfsense.org/index.php?topic=90700.msg501766#msg501766
* Do not allow VLAN tag zeroPhil Davis2015-03-181-1/+1
| | | | | At the moment you can make a VLAN with tag 0. The input validation does not catch it because when $_POST['tag'] = "0" that evaluates to false by PHP. Always make the checks on 'tag' value whenever the 'tag' key is set at all. If the (required) 'tag' key is not set, then that is already checked for by do_input_validation().
* pfSsh.php readline function return valuePhil Davis2015-03-161-1/+1
| | | | This just looks wrong. But I guess the code path never comes through here because function readline() already exists in the environment of this script.
* txpower was disabled for good reason it would appear, it triggers syntax ↵Chris Buechler2015-03-131-1/+3
| | | | errors in some configurations. Disable it again since it's been disabled for years, and comment out the user-facing config portion for now since it doesn't do anything. Ticket #4516
* Apply WME input validation to all modes, not just hostap. Ticket #4516Chris Buechler2015-03-131-5/+5
|
* Default to 11ng if an option hasn't been configured. Previously we let the ↵Chris Buechler2015-03-131-1/+7
| | | | browser pick the first in the list (the first the card reported as available), which ended up being 802.11b. Ticket #4516
* Default to WPA2, AES for new wireless interface configs. Ticket #4516Chris Buechler2015-03-131-2/+2
|
* Auto-size the interface box on the bridge edit page.Chris Buechler2015-03-131-1/+2
|
* touch up interfaces.php textChris Buechler2015-03-137-10/+10
|
* Require WPA PSK where WPA-PSK is enabled. Clean up some other text. Ticket #4516Chris Buechler2015-03-127-10/+15
|
* clean up input errors textChris Buechler2015-03-127-9/+9
|
* Fix up text, remove "only for Atheros" since the option is only shown if a ↵Chris Buechler2015-03-127-5/+5
| | | | compatible card exists.
* "Auto" channel with hostap doesn't work correctly at the moment, force ↵Chris Buechler2015-03-121-0/+4
| | | | choosing a specific channel with hostap mode for now.
* add more wireless validation. Ticket #4516Chris Buechler2015-03-121-1/+4
|
* Add more validation for wireless config settings. Ticket #4516Chris Buechler2015-03-121-0/+22
|
* Add more input validation for wireless parameters. Ticket #4516Chris Buechler2015-03-121-0/+36
|
* Touch up wifi textChris Buechler2015-03-127-12/+12
|
* clean up unique IDs text a bit.Chris Buechler2015-03-111-2/+2
|
* Proper fix #4443, do not unset carp entry when content differ, also set ↵Renato Botelho2015-03-111-3/+7
| | | | correct real interface and use subnet to check IP protocol
* Save vip interface and subnet to use to delete old vips from secondary ↵Renato Botelho2015-03-111-13/+14
| | | | nodes. Fixes #4446
* Revert "Use a consistent variable name here. related to Ticket #4446"Renato Botelho2015-03-111-4/+4
| | | | This reverts commit 0e7954b8a333d7ca92f56c86c74e2d9d7457b546.
* add granular control of state timeouts. Ticket #4509Chris Buechler2015-03-111-2/+196
|
* Remove BEAST protection option since default cipher is now good and works ↵Renato Botelho2015-03-111-37/+0
| | | | with hifn cards
* Fix password box cursor positionPhil Davis2015-03-114-29/+29
| | | | | | | | | | | | | | | Similar to https://github.com/pfsense/pfsense/commit/dedc40f7ded5f88aee4720aa8a3a57667b975254 The password field shows the little lock icon, but the text input area starts over the top of the icon and as I type in the field the password "dots" go over the lock icon in each of these data entry places. Changing the field name/id to not be "password" but to be "passwordfld", "passwordfld1" "passwordfld2" and the like fixes it. Something does not like the field being called just "password". In interfaces.php I also changed the field "username" to be "ppp_username". This standardized it to work in a similar way to pppoe_username pptp_username fields. It looks easier to understand for me.
* Pencil symbolsPhil Davis2015-03-119-16/+16
| | | | | | | | | These are places in the GUI where the cursor sits not in the far left side of the input box and there is odd-looking white space to the left of the cursor. Normally there would be a little input graphic in the white space to the left of the cursor (a pencil, a computer screen, a lock symbol...) This change makes the pencil be displayed in all those places.
* update description after adaptive start/end default change.Chris Buechler2015-03-111-1/+1
|
OpenPOWER on IntegriCloud