Development
This commit is contained in:
parent
cb4e1933a7
commit
df4632ff41
6 changed files with 51 additions and 1 deletions
0
docker/routlin-dash/app/pages/radius/__init__.py
Normal file
0
docker/routlin-dash/app/pages/radius/__init__.py
Normal file
6
docker/routlin-dash/app/pages/radius/action.py
Normal file
6
docker/routlin-dash/app/pages/radius/action.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
from pathlib import Path
|
||||
from flask import Blueprint
|
||||
|
||||
_PAGE = Path(__file__).parent.name
|
||||
|
||||
bp = Blueprint(_PAGE, __name__)
|
||||
37
docker/routlin-dash/app/pages/radius/content.json
Normal file
37
docker/routlin-dash/app/pages/radius/content.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"client_requirement": "client_is_administrator+",
|
||||
"items": [
|
||||
{
|
||||
"type": "header_page_title",
|
||||
"items": [
|
||||
{
|
||||
"type": "h1",
|
||||
"text": "RADIUS"
|
||||
},
|
||||
{
|
||||
"type": "p",
|
||||
"text": "FreeRADIUS server configuration and shared secret."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "card",
|
||||
"label": "Shared Secret",
|
||||
"client_requirement": "client_is_administrator+",
|
||||
"items": [
|
||||
{
|
||||
"type": "p",
|
||||
"text": "Enter this secret in your access point or wireless controller as the RADIUS shared secret. It authenticates your APs to this router's RADIUS server."
|
||||
},
|
||||
{
|
||||
"type": "pre_block",
|
||||
"text": "%RADIUS_SECRET%"
|
||||
},
|
||||
{
|
||||
"type": "p",
|
||||
"text": "Use this router's IP address on the AP's VLAN as the RADIUS server address. Authentication port: 1812. Accounting port: 1813."
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue