summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_captiveportal_mac.php
Commit message (Collapse)AuthorAgeFilesLines
* Improve checks for params 'id', 'dup' and other similar ones to make sure ↵Renato Botelho2014-03-121-1/+1
| | | | they are numeric integer, also, pass them through htmlspecialchars() before print
* Convert mac address to lowercase when saving to avoid duplicates. It fixes #3195Renato Botelho2013-09-121-1/+1
|
* s/require/require_once/g for filter.inc to avoid redeclaration errors in ↵jim-p2013-08-281-1/+1
| | | | some rare cases.
* Add missing context parameterbcyrill2013-01-271-4/+4
|
* Convert all captiveportal code to not use ipfw_set_context since its not ↵Ermal2013-01-231-7/+5
| | | | needed anymore. Also add code to validate cpzone on webgui pages before being used
* Various fixes to removal of pipesErmal2012-12-191-1/+1
|
* Separate ipfw rule no db from limiter ones. Since ipfw has per instance ↵Ermal2012-12-171-4/+16
| | | | feature while dummynet/limiters is a single instance.
* Activate new shortcuts/status in the rest of the areas that are currently setup.jim-p2012-08-101-3/+1
|
* Correct disconnection of macsErmal2012-02-101-1/+1
|
* Add the multi instance CP to master branch. This allows to define CP with ↵Ermal2011-09-071-19/+39
| | | | different properties on different interfaces.
* Free ipfw rule number after mac pass-through deletion.Ermal2011-05-261-0/+1
|
* Misc fixupsScott Ullrich2011-01-251-1/+1
|
* Prevent drop down menu creationScott Ullrich2011-01-251-1/+1
|
* Adding tab for allowed hostnamesScott Ullrich2011-01-251-0/+1
|
* gettext fixesRenato Botelho2010-08-121-2/+2
|
* Implement gettext() calls on services_captiveportal_mac.phpCarlos Eduardo Ramos2010-07-141-18/+19
|
* Provide some error messages when posting from a script so consumers can have ↵Ermal2010-06-241-2/+8
| | | | a clue at what happened.
* fix description in line with 2.0 changesChris Buechler2010-06-101-1/+1
|
* Remove auth logs tab, since it is handled by the log link above.jim-p2010-06-021-1/+0
|
* Add status/log links to Captive Portal pagesjim-p2010-06-021-0/+3
|
* Free ipfw ruleno so it can be reused. Propperly delete passthrough mac ↵Ermal2010-06-011-0/+1
| | | | entries that are not used.
* Revert "add a status tab to the CP screens as well", this is just a tad too longChris Buechler2010-05-281-1/+0
| | | | This reverts commit 881eb09217613337da4dd5376a038446a0e18b1c.
* add a status tab to the CP screens as wellChris Buechler2010-05-281-0/+1
|
* add auth logs tab to CP screensChris Buechler2010-05-281-0/+1
|
* Add a function to find the mac address on a passthrough mac entry by ↵Ermal2010-05-281-2/+9
| | | | username(if present) in the <username> tag of the entry.
* Ticket #565. Correct deleting passthru mac entries. revert back to always ↵Ermal2010-05-031-8/+6
| | | | allow a passthru mac as with allowed ips. Remove the check during login for passthru mac entries they will never make it to the login page.
* add double click to editChris Buechler2010-05-011-2/+2
|
* Allow a passthrough mac to be deleted by a POST. Take the neccessary actions ↵Ermal2010-04-201-0/+22
| | | | to disconnect and remove the mac from CP.
* Make pasthrough GUI code catch-up with the latest changes.Ermal2010-04-201-9/+3
|
* Use tables of ipfw for passthrough mac entries. This makes it scale way ↵Ermal2010-04-201-3/+3
| | | | better than previously. Fix multiple entries on adding mac through entries automatically after login for the same user. The changes allow even pass through mac to be controlled from the Status->Captiveportal. Use serialize/unserialize on some files that keep temporary information to speed up calculations. Really allow mac passthrough to follow radius rules or time out rules when present.
* Add a new option which allows the admin user to configure CP so that it ↵Ermal2010-04-201-2/+12
| | | | automatically enters an MAC passthru entry. The MAC is taken from login details and has to be removed manually. Also do improvements on rules handling and pipes. Add some optmizations. Teach the GUI/backend on ip/mac passthrough to configure a bw limit for this entries.
* Include commonly used .inc files such as filter.inc, shaper.inc, etcScott Ullrich2009-11-241-1/+4
|
* Rework includes/require. This saves about 4 megabytes.Scott Ullrich2009-11-211-0/+1
| | | | Simplify get_memory(). Tested on mips/i386
* Add pfSense_BUILDER_BINARIES: and pfSense_MODULE:. Adjust Copyright to ↵Scott Ullrich2009-09-141-1/+3
| | | | include 2009 on files that I have asserted (C) on
* Clear guiconfig from all sort junk functions and put them on the specific ↵Ermal Luçi2009-06-301-1/+0
| | | | | | pages where they are needed. Remove some sort functions not used.
* * Reorganize the 'apply' button infrustructure in the GUI.Ermal Luçi2009-06-301-7/+4
| | | | | | - Present three new functions is/mark/clear_subsystem_dirty('name_of_subsystem'). This makes easier to create such things without needing to introduce new globals. - Convert all pages to the new infrustructure - This improves a lot the control on this notification
* Port voucher login ability on CaptivePortal from M0n0Wall.Charlie2009-06-131-0/+1
| | | | Various locking fixes are done with the import and this means that as of now pfSense has a better performin/behaving CP than m0n0wall.
* * Create two new functions lock($subsystem)/unlock() to have more reliable ↵Ermal Luçi2009-05-081-2/+0
| | | | | | | | | | | locking using semaphores. This function can sleep till the resource is free and can help find not well behaving code. * Remove most of the config_lock/config_unlock logics on the whole scripts/pages it is an abuse of this. If any sybsytem wants to lock can do so with its own lock. * Lock the config when doing a filter reload to avoid parallell recursion on this function, since it is not reentrant. This compenstates for the removal of lock aquiring from the scripts/pages. * config_lock/config_unlock are now compate shims that do nothing. They are preserved since packages 'abuse' them too.
* Modify captive portal to use centralized user management. The user manager hasmgrooms2009-03-151-2/+1
| | | | been modified to include an account expiration option to support this service.
* Rewrite the pfsense privilege system with the following goals in mind ...Matthew Grooms2008-08-011-0/+8
| | | | | | | | 1) Redefine page privileges to not use static urls 2) Accurate generation of privilege definitions from source 3) Merging the user and group privileges into a single set 4) Allow any privilege to be added to users or groups w/ inheritance 5) Cleaning up the related WebUI pages
* Switch over to array style page titles. Obtained-from: m0n0wallScott Ullrich2007-11-161-2/+1
|
* correct the html structure, and show errors properlyScott Dale2007-04-261-0/+3
| | | | MFC: asap
* Do not show Apply button twice on Captive Portal changesScott Ullrich2007-03-191-1/+0
|
* Reload allowed mac addresses upon saving. We do not need to control a ↵Scott Ullrich2007-02-261-3/+3
| | | | reboot scenario here.
* not the file manager tabs, don't highlightScott Ullrich2006-01-041-1/+1
|
* Sync w/ m0n0wall 1.21Scott Ullrich2006-01-041-8/+7
|
* Remove #!/usr/local/bin/phpScott Ullrich2006-01-021-1/+0
|
* Remove reboot required checksScott Ullrich2005-12-141-3/+3
|
* Remove "Extra" Apply buttonScott Ullrich2005-10-111-1/+1
|
* Remove double <br/> ... It was not the correct fix. The correct fix was ↵Scott Ullrich2005-09-161-2/+0
| | | | the Title
OpenPOWER on IntegriCloud