Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
shibb_idp3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
puppetpublic
shibb_idp3
Commits
004335c9
Commit
004335c9
authored
8 years ago
by
Adam Lewenberg
Browse files
Options
Downloads
Patches
Plain Diff
add forced authentication support to our authentication flows
parent
02ff5b62
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/etc/shibboleth-idp/conf/authn/general-authn.xml.erb
+24
-4
24 additions, 4 deletions
...lates/etc/shibboleth-idp/conf/authn/general-authn.xml.erb
with
24 additions
and
4 deletions
templates/etc/shibboleth-idp/conf/authn/general-authn.xml.erb
+
24
−
4
View file @
004335c9
...
...
@@ -26,6 +26,21 @@
customization, as the examples below for IP address and SPNEGO authentication illustrate.
-->
<!--
Stanford Note.
Note that to support ForcedAuthn in AuthRequest's we have to
EXPLICITLY turn orced authentication support on for each
authentication flow.
We turn forced authentication support on for these flows:
- RemoteUser
- TwoStepRemoteUser
- RemoteUserInternal
- External
-->
<util:list
id=
"shibboleth.AvailableAuthenticationFlows"
>
<bean
id=
"authn/IPAddress"
parent=
"shibboleth.AuthenticationFlow"
...
...
@@ -52,10 +67,12 @@
</bean>
<bean
id=
"authn/External"
parent=
"shibboleth.AuthenticationFlow"
p:nonBrowserSupported=
"false"
/>
p:nonBrowserSupported=
"false"
p:forcedAuthenticationSupported=
"true"
/>
<bean
id=
"authn/RemoteUser"
parent=
"shibboleth.AuthenticationFlow"
p:nonBrowserSupported=
"false"
/>
p:nonBrowserSupported=
"false"
p:forcedAuthenticationSupported=
"true"
/>
<!--
...
...
@@ -70,7 +87,8 @@
-->
<bean
id=
"authn/TwoStepRemoteUser"
parent=
"shibboleth.AuthenticationFlow"
p:nonBrowserSupported=
"false"
>
p:nonBrowserSupported=
"false"
p:forcedAuthenticationSupported=
"true"
>
<property
name=
"supportedPrincipals"
>
<list>
<bean
...
...
@@ -81,7 +99,9 @@
</property>
</bean>
<bean
id=
"authn/RemoteUserInternal"
parent=
"shibboleth.AuthenticationFlow"
/>
<bean
id=
"authn/RemoteUserInternal"
parent=
"shibboleth.AuthenticationFlow"
p:forcedAuthenticationSupported=
"true"
/>
<bean
id=
"authn/X509"
parent=
"shibboleth.AuthenticationFlow"
p:nonBrowserSupported=
"false"
>
...
...
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