summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_routes.php
Commit message (Collapse)AuthorAgeFilesLines
* Move main pfSense content to src/Renato Botelho2015-08-251-407/+0
|
* Fix #4813 validation of enable/disable of gateways and static routesPhil Davis2015-07-051-6/+17
| | | | | | | | | | | | | | | | 1) A disabled gateway can always be enabled - no extra validation needed. 2) When disabling an enabled gateway, check to see that the gateway is not used in any gateway group or enabled static route (similar tests to what is already checked before deleting a gateway). 3) A static route can always be disabled - no extra checks needed. 4) When enabling a static route, check that the selected gateway is enabled - you cannot have a static route enabled on a disabled gateway. 5) Do the address family cross-check between static route and gateway even when the static route is disabled - we do not want to save mismatched IP address families in any case. This covers all the cases I can see to ensure that the enable/disable status combinations of Gateways and Static Routes is always valid.
* Fix put static route destination in config change descriptionPhil Davis2015-07-041-2/+2
| | | | When enabling or disabling a route by using the enable/disable button on the Routes page, the destination network was not being put in the config change description, although the code intended it to be there. This fixes it.
* Code style system h and rPhil Davis2015-05-301-20/+41
|
* Fix lineup of copyright linesPhil Davis2015-01-011-1/+1
| | | | | and module names and other bits of formatting and typos in header comment sections.
* Welcome 2015Renato Botelho2014-12-311-1/+1
|
* Fixup text rule should be routePhil Davis2014-12-101-6/+6
| | | This code was obviously taken from firewall rules and reused here without changing the word "rule" to "route".
* Change copyright statement to reflect realityJim Thompson2014-11-101-0/+2
|
* removed duplicate type=text/javascriptayvis2014-03-251-1/+1
| | | added type for <script>
* replaced uppercase html tags with lowercaseayvis2014-03-191-1/+1
| | | | js files saved as UTF-8 / LF language="JavaScript" deprecated, replaced with type="text/javascript"
* xhtml Complianceayvis2014-03-141-1/+1
| | | replaced <br>, <br/> and </br> with <br />
* Allow toggle enable/disable, reorder and multiple delete static routesRenato Botelho2013-11-261-42/+193
|
* Be able to delete static routes that uses aliases. Fixes #2948Renato Botelho2013-04-151-11/+26
|
* Fix whitespace and indentRenato Botelho2013-04-151-90/+91
|
* Tidy up "system_routes.php" XHTMLColin Fleming2013-04-031-14/+14
| | | | | | | Close INPUT, BR and IMG tags and add alt to IMG tags Move start TR tag with the PHP foreach statement Move NOWRAP to class Deprecate ampersand in ANCHOR tags
* Set family here to avoid any ambiguityErmal2013-02-091-0/+1
|
* Fixes #804. Correct deletion of ipv6 routes.Ermal2013-01-241-7/+10
|
* Activate new shortcuts/status in the rest of the areas that are currently setup.jim-p2012-08-101-1/+1
|
* Allow for Null routessmos2012-06-041-1/+1
|
* Add the ability to disable static routes without deleting themWarren Baker2012-03-021-3/+14
|
* Fix static routes editing and removal for both IPv4 and IPv6. Changing a ↵Seth Mos2011-10-111-1/+3
| | | | | | route should clean up too. Fix ticket #1892
* Remove GUI code to enable fast routing. The backend code was removed back in ↵jim-p2011-08-051-25/+0
| | | | December in 4f76b144b0885b9a407db026723bb61f568effc3
* Ticket #866 #632. Save old settings or actions to be taken for reconfiguring ↵Ermal2010-09-011-1/+8
| | | | a route/vip on a tmp file and make use that information when apply settings buttons is clicked. This makes the gui behave as expected.
* gettext fixesRenato Botelho2010-08-121-1/+1
|
* Add status links to gateway/route pages.jim-p2010-06-021-0/+2
|
* Move the settings of down/latency/loss to per gateway. This allows more fine ↵Ermal2010-05-071-1/+0
| | | | grained control on gateways.
* Merge remote branch 'mainline/master'Renato Botelho2010-04-301-1/+1
|\
| * show gateway IP as well as nameChris Buechler2010-04-301-1/+1
| |
* | Merge branch 'master' into gettextErik Fonnesbeck2010-04-281-11/+4
|\ \ | |/ | | | | | | | | | | Resolved conflicts: usr/local/www/system_advanced_firewall.php usr/local/www/system_routes.php usr/local/www/system_routes_edit.php
| * Ticket #507. Do not remove all static routes to readd them back. The change ↵Ermal2010-04-281-11/+4
| | | | | | | | will never delete a rule but define the action to be taken on it, either add or change a present route. Be consinstent on gateways allowed to be selected as destinations for static routes, including dynamic gateways.
* | Reviewing gettext()Carlos Eduardo Ramos2010-04-281-5/+5
| |
* | Fix : for translationsRenato Botelho2010-04-271-1/+1
| |
* | Implementing gettext()Vinicius Coque2010-04-271-14/+14
|/
* Require filter.inc and shaper.incScott Ullrich2009-11-211-0/+3
|
* 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
* * 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.
* * Make sure the trigger level on the gateway groups edit page loads it's ↵Seth Mos2009-03-131-0/+1
| | | | | | | settings from the config. * Add the settings tab to the tabs * Add a settings page that allows you to define the global trigger levels for all the gateways which are monitored
* Show which route is being deleted, not the id of the config rowScott Ullrich2008-10-241-1/+1
|
* Do not hard code whiteScott Ullrich2008-10-121-1/+1
|
* 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
* Trigger setup_gateways_monitor() when applying routing or gateway settings.Seth Mos2008-07-011-0/+2
|
* double active tab not ok.Seth Mos2008-06-171-1/+1
|
* Add menu item and tabs for page to comeSeth Mos2008-06-171-1/+2
|
* Make page look consistent with the others.Scott Ullrich2008-03-101-5/+12
|
* /Routes/Static Routes/Scott Ullrich2007-12-021-4/+4
|
* Switch over to array style page titles. Obtained-from: m0n0wallScott Ullrich2007-11-161-2/+1
|
* Add prelimenary Routing page.Seth Mos2007-10-191-15/+28
| | | | Allow multiple gateways on one (static) interface
* Add duplicate option to system_routes.php.Seth Mos2007-05-101-5/+15
| | | | By request of Seth.
OpenPOWER on IntegriCloud