blob: e38f45035dc7e0a01a18c866e1a4646445f14e99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Automatically generated by system-login.py
# RADIUS configuration file
{% if radius_server %}
# server[:port] shared_secret timeout source_ip
{% for s in radius_server if not s.disabled %}
{% set addr_port = s.address + ":" + s.port %}
{{ "%-22s" | format(addr_port) }} {{ "%-25s" | format(s.key) }} {{ "%-10s" | format(s.timeout) }} {{ radius_source_address if radius_source_address }}
{% endfor %}
priv-lvl 15
mapped_priv_user radius_priv_user
{% if radius_vrf %}
vrf-name {{ radius_vrf }}
{% endif %}
{% endif %}
|