mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-24 10:48:49 +02:00
Add the 'radius' path (#245)
* Fixes #241: Add the 'radius' path * Add changelog fragment --------- Co-authored-by: Johannes Münch <git@washiza.eu>
This commit is contained in:
parent
e4e5f64b46
commit
1d6feda0b7
4 changed files with 26 additions and 0 deletions
2
changelogs/fragments/245-add-radius-path.yml
Normal file
2
changelogs/fragments/245-add-radius-path.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- api_info, api_modify - add ``radius`` path (https://github.com/ansible-collections/community.routeros/issues/241, https://github.com/ansible-collections/community.routeros/pull/245).
|
|
@ -3228,6 +3228,28 @@ PATHS = {
|
|||
},
|
||||
),
|
||||
),
|
||||
('radius', ): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
fully_understood=True,
|
||||
fields={
|
||||
'accounting-backup': KeyInfo(default=False),
|
||||
'accounting-port': KeyInfo(default=1813),
|
||||
'address': KeyInfo(default='0.0.0.0'),
|
||||
'authentication-port': KeyInfo(default=1812),
|
||||
'called-id': KeyInfo(),
|
||||
'certificate': KeyInfo(),
|
||||
'comment': KeyInfo(can_disable=True, remove_value=''),
|
||||
'disabled': KeyInfo(default=False),
|
||||
'domain': KeyInfo(),
|
||||
'protocol': KeyInfo(default='udp'),
|
||||
'realm': KeyInfo(),
|
||||
'secret': KeyInfo(),
|
||||
'service': KeyInfo(),
|
||||
'src-address': KeyInfo(default='0.0.0.0'),
|
||||
'timeout': KeyInfo(default='300ms'),
|
||||
},
|
||||
),
|
||||
),
|
||||
('radius', 'incoming'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
single_value=True,
|
||||
|
|
|
@ -168,6 +168,7 @@ options:
|
|||
- ppp profile
|
||||
- queue interface
|
||||
- queue tree
|
||||
- radius
|
||||
- radius incoming
|
||||
- routing bgp connection
|
||||
- routing bgp instance
|
||||
|
|
|
@ -177,6 +177,7 @@ options:
|
|||
- ppp profile
|
||||
- queue interface
|
||||
- queue tree
|
||||
- radius
|
||||
- radius incoming
|
||||
- routing bgp connection
|
||||
- routing bgp instance
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue