Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
puppet-freeradius
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Projets publics
puppet-freeradius
Commits
9cdadc08
Commit
9cdadc08
authored
6 years ago
by
Olivier Le Monnier
Browse files
Options
Downloads
Patches
Plain Diff
Freeradius 3.0.16 introduces two new EAP options
parent
eb98707b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
manifests/module/eap.pp
+2
-0
2 additions, 0 deletions
manifests/module/eap.pp
templates/eap.erb
+20
-0
20 additions, 0 deletions
templates/eap.erb
with
22 additions
and
0 deletions
manifests/module/eap.pp
+
2
−
0
View file @
9cdadc08
...
...
@@ -36,6 +36,8 @@ define freeradius::module::eap (
Optional
[
String
]
$tls_check_cert_cn
=
undef
,
String
$tls_cipher_list
=
'DEFAULT'
,
Optional
[
Freeradius
::
Boolean
]
$tls_disable_tlsv1_2
=
undef
,
Optional
[
String
]
$tls_min_version
=
undef
,
Optional
[
String
]
$tls_max_version
=
undef
,
String
$tls_ecdh_curve
=
'prime256v1'
,
Freeradius
::
Boolean
$tls_cache_enable
=
'yes'
,
Integer
$tls_cache_lifetime
=
24
,
...
...
This diff is collapsed.
Click to expand it.
templates/eap.erb
+
20
−
0
View file @
9cdadc08
...
...
@@ -381,7 +381,27 @@ eap {
disable_tlsv1_2 =
<%=
@tls_disable_tlsv1_2
%>
<%-
end
-%>
<%-
if
@tls_min_version
or
@tls_max_version
-%>
# Set min / max TLS version. Mainly for Debian
# "trusty", which disables older versions of TLS, and
# requires the application to manually enable them.
#
# If you are running Debian trusty, you should set
# these options, otherwise older clients will not be
# able to connect.
#
# Allowed values are "1.0", "1.1", and "1.2".
#
# The values must be in quotes.
#
<%-
end
-%>
<%-
if
@tls_min_version
-%>
tls_min_version = "
<%=
@tls_min_version
-%>
"
<%-
end
-%>
<%-
if
@tls_max_version
-%>
tls_max_version = "
<%=
@tls_max_version
-%>
"
<%-
end
-%>
#
# Elliptical cryptography configuration
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment