mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-08 16:34:18 -04:00
net/freeradius: merge version 1.5.2 from master
This commit is contained in:
parent
2409221364
commit
d96f07f5c9
8 changed files with 8 additions and 9 deletions
|
|
@ -1,5 +1,5 @@
|
|||
PLUGIN_NAME= freeradius
|
||||
PLUGIN_VERSION= 1.5.1
|
||||
PLUGIN_VERSION= 1.5.2
|
||||
PLUGIN_COMMENT= RADIUS Authentication, Authorization and Accounting Server
|
||||
PLUGIN_DEPENDS= freeradius3
|
||||
PLUGIN_MAINTAINER= m.muenz@gmail.com
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@
|
|||
</field>
|
||||
<field>
|
||||
<id>eap.enable_client_cert</id>
|
||||
<label>Enable Client Certficate Authentication</label>
|
||||
<label>Validate Certificates</label>
|
||||
<type>checkbox</type>
|
||||
<help>This will activate certificate based authentication. Please choose CA and Certificate below and do not forget to roll out certificates to the clients.</help>
|
||||
<help>This will activate certificate based authentication (EAP-TLS) and validation (EAP-TTLS). Please choose CA and Certificate below and do not forget to roll out certificates to the clients.</help>
|
||||
</field>
|
||||
<field>
|
||||
<id>eap.ca</id>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
|
||||
#}
|
||||
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
|
||||
$( document ).ready(function() {
|
||||
/*************************************************************************************************************
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
$( document ).ready(function () {
|
||||
var data_get_map = {'frm_eap_settings':"/api/freeradius/eap/get"};
|
||||
mapDataToFormUI(data_get_map).done(function (data) {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
$( document ).ready(function () {
|
||||
var data_get_map = {'frm_general_settings':"/api/freeradius/general/get"};
|
||||
mapDataToFormUI(data_get_map).done(function (data) {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
$( document ).ready(function () {
|
||||
var data_get_map = {'frm_ldap_settings':"/api/freeradius/ldap/get"};
|
||||
mapDataToFormUI(data_get_map).done(function (data) {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
|
||||
#}
|
||||
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
|
||||
$( document ).ready(function() {
|
||||
/*************************************************************************************************************
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
{% if helpers.exists('OPNsense.freeradius.general.enabled') and OPNsense.freeradius.general.enabled == '1' %}
|
||||
radiusd_opnsense_bootup_run="/usr/local/opnsense/scripts/Freeradius/setup.sh"
|
||||
radiusd_var_script="/usr/local/opnsense/scripts/Freeradius/setup.sh"
|
||||
radiusd_enable="YES"
|
||||
{% else %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue