Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GAP Ansible Collection
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GAP Ansible Collection
Merge requests
!30
add radius template
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
add radius template
radius
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
add radius template
Aleksandr Kurbatov
requested to merge
radius
into
develop
Nov 30, 2023
Overview
0
Commits
1
Pipelines
1
Changes
1
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
f08f82d5
1 commit,
Nov 30, 2023
1 file
+
18
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
geant/gap_ansible/roles/base_config/templates/routers/nokia/radius_auth.j2
0 → 100644
+
18
−
0
View file @ f08f82d5
Edit in single-file editor
Open in Web IDE
<system>
<security>
<aaa xmlns="urn:nokia.com:sros:ns:yang:sr:conf" xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" xmlns:nokia-attr="urn:nokia.com:sros:ns:yang:sr:attributes">
<remote-servers alu:operation="replace">
<radius>
<authorization>true</authorization>
{% for server in system_radius_servers %}
<server>
<index>{{loop.index0 + 1 }}</index>
<address>{{ server.host }}</address>
<secret>{{ server.nokia_secret }}</secret>
</server>
{% endfor %}
</radius>
</remote-servers>
</aaa>
</security>
</system>
Loading