summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/vpn_openvpn_client.php
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #7180Steve Beaver2017-01-311-1/+1
|
* Required fields for VPN pagesPhil Davis2017-01-311-12/+12
| | | | (cherry picked from commit 1bbdab13e436f5f2b9e381886be4d9c2d1a4e44f)
* Fix a probably copy/paste errorRenato Botelho2017-01-041-1/+1
|
* As done on OpenVPN Server, delete tunnel when dev_mode changes so new device ↵Renato Botelho2017-01-041-0/+9
| | | | is created accordingly
* Fix #7031 Allow interfaces that use DHCP for OpenVPNPhil Davis2016-12-221-2/+10
| | | | | | | | even though the interface (or gateway group) has not yet actually received an IP address. This is useful when setting up a new system that is currently offline. (cherry picked from commit 0f2cf2a1c47192e8394cbcec6ee291b7e753ac4b)
* Move copyright from ESF to NetgateRenato Botelho2016-09-061-1/+1
|
* Review license / copyright on all files (final round)Renato Botelho2016-07-151-42/+40
|
* write_config before openvpn_resync here as well. Ticket #6139Chris Buechler2016-07-111-1/+1
|
* webgui tables, doubleclick event to perform 'edit' actionPiBa-NL2016-07-031-1/+1
| | | | (cherry picked from commit 54691fc663eae7c6e92e4eaad596906758d7ebea)
* Always use require_oncePhil Davis2016-06-271-1/+1
| | | | | | | | | The usage of require() and require_once() throughout the system is inconsistent, and "bugs" come up now and then when the order of "requires" is a bit different and some require() happens after the include file is already included/required. It seems to me that there is no harm at all in always using require_once().
* Fixed #6872 Restored missing proxy port settingStephen Beaver2016-05-201-0/+7
|
* Miscellaneous Textual CorrectionsNOYB2016-05-011-2/+2
| | | | (cherry picked from commit bb80af580c5a4408e42c76c39c67d173540897db)
* VPN Menu - PunctuationNOYB2016-04-251-5/+5
| | | | | | Clean up some VPN menu punctuation. (cherry picked from commit be4cebbf13b28cbcce289e96fb22f0355c945be8)
* Further fix for tun/tap and topologyStephen Beaver2016-04-221-0/+2
| | | | (cherry picked from commit 2284daf2986124fc7786641774fbc3064e001465)
* Fixed #6236Stephen Beaver2016-04-221-1/+3
| | | | (cherry picked from commit b63f52433ef8429a521833c9345c4c0ebd7a4d83)
* Merge pull request #2826 from NOYB/VPN_/_OpenVPN_-_Remove_PersonalizationsStephen Beaver2016-04-041-12/+12
| | | | (cherry picked from commit 28ca20bb51fb3002f89c026f160e7d6ea0c4d310)
* Show the full OpenVPN verb debug range same as 2.2.x.Chris Buechler2016-03-241-1/+1
|
* Clarify OpenVPN verb level descriptionsChris Buechler2016-03-241-1/+1
|
* Fix OpenVPN client additional options typoJose Luis Duran2016-03-231-2/+1
| | | | Should read client instead of server. Also remove the `push` example.
* Fix text for OpenVPN client that was copied from server, client's second.Chris Buechler2016-03-021-3/+3
|
* Fixed #5904Stephen Beaver2016-02-171-1/+2
|
* Merge pull request #2637 from k-paulius/patch-6Stephen Beaver2016-02-141-5/+9
|\
| * Cert is abbreviated word so adding . to stay consistent with the usage of Avail.k-paulius2016-02-141-2/+2
| |
| * Indicate in the breadcrumb if we are editing list item.k-paulius2016-02-141-3/+7
| |
* | Review alert wording. End sentence with period, remove redundant 'Warning', ↵k-paulius2016-02-141-1/+1
|/ | | | 'Error', etc. prefixes, since alerts are now color coded. Remove <b> tags.
* Synchronize page titles with tab titles; Rename few titles in order to be ↵k-paulius2016-02-131-5/+5
| | | | more consistent.
* Convert section titles to title casek-paulius2016-02-101-3/+3
|
* Internationalize vpn*.phpPhil Davis2016-02-081-2/+2
|
* Add topology selection to OpenVPN client page. Ticket #5764Chris Buechler2016-01-281-0/+16
|
* Fixed #5789Stephen Beaver2016-01-211-1/+1
|
* UI ConsistencyPhil Davis2016-01-141-1/+1
| | | | | | | | | 1) Put the heading "Actions" at the top of all the "Actions" columns - it was on some and not others. 2) Some more consistent capitalization of panel titles etc. 3) Most interfaces section edit pages had a section titled like "GIF Configuration", "GRE Configuration". Make them all consistent, e.g. "QinQ Configuration" rather than "Interface QinQ Edit"...
* Fix #5743, spell typoRenato Botelho2016-01-071-1/+1
|
* Final updates in support of hidden passwordsStephen Beaver2015-12-291-6/+6
|
* FInished password hiding logic by ensuring $_POST['password'] != DMYPWD ↵Stephen Beaver2015-12-281-2/+8
| | | | before updating
* Added new addPassword method and password == password_confirm validation ↵Stephen Beaver2015-12-281-2/+10
| | | | where required.
* fix textChris Buechler2015-12-201-1/+1
|
* Point more directly to Certificate Revocation pagePhil Davis2015-12-171-1/+1
| | | | This could point more directly to the Certificate Revocation page.
* Code style v wPhil Davis2015-12-171-11/+15
|
* Fixed #5602 by dynamically updating hte help text based on the cert selected.Stephen Beaver2015-12-101-1/+3
|
* Standardize VPN OpenVPN breadcrumbsPhil Davis2015-12-071-1/+1
|
* Put some OpenVPN functions into include filePhil Davis2015-11-261-69/+3
| | | | | | | | | | | | | | | | Forum: https://forum.pfsense.org/index.php?topic=103036.msg574854#msg574854 A few functions were in both client and server PHP already and were the same. build_crl_list() was missing from client PHP. build_cert_list() was slightly different in server and client PHP. I made a common one that takes a parameter. Maybe actually they should both be the same? or? Anyway for the first iteration I went for consolidation with no change of code behavior. Some functions were only in server PHP and only used by server PHP. I moved them to openvpn.inc anyway - seems more logical for the future. But say if you prefer them back in just server PHP.
* Calling all of these "Page" in the privilege name is redundant since they ↵jim-p2015-11-251-1/+1
| | | | are all pages and the "WebCfg" prefix implies they are pages.
* Form_checkbox -> Form_CheckboxStephen Beaver2015-11-241-9/+9
|
* Change Form_TextArea to Form_TextareaStephen Beaver2015-11-231-3/+3
| | | | (autoload now makes the classes case sensitive)
* Added use of class autoloading (GUI stuff only)Doug Wollison2015-11-231-2/+0
| | | | | Any GUI script that loads the guiconfig.inc file will have access to the autoloader.
* Fixed saving of auth passwordStephen Beaver2015-11-171-2/+2
|
* Completes #5400, #3999, #5405Stephen Beaver2015-11-101-1/+1
| | | | Mote: New ticket will be opened to provide IP address sorting
* Delete confirmation vi fa-trash automated via pfSense.jsStephen Beaver2015-11-051-26/+52
|
* Moved action-buttons in-line styling to pfSense.cssStephen Beaver2015-11-051-1/+1
|
* replace and find for icon-embed-btnheper2015-11-051-1/+1
|
OpenPOWER on IntegriCloud