RADIUS Source Interface
Configure RADIUS source interface settings per VRF to specify the source interface for RADIUS packets.
Diagram
Section titled “Diagram”Classes
Section titled “Classes”configuration (iosxr.devices)
Section titled “configuration (iosxr.devices)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| radius_source_interface | List | [radius_source_interface] | No |
radius_source_interface (iosxr.devices.configuration)
Section titled “radius_source_interface (iosxr.devices.configuration)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| vrf | String | Yes | ||
| interface | String | Yes |
Sample Configuration:
Section titled “Sample Configuration:”The following configuration shows how to specify a RADIUS source interace via CLI on a Cisco IOS-XR device.
radius source-interface Loopback0 vrf defaultradius source-interface MgmtEth0/0/CPU0/0 vrf MGMTExample YAML Code:
Section titled “Example YAML Code:”Example-1: Configure RADIUS source interface for default VRF.
iosxr: devices: - name: router-1 host: 10.10.10.1:57400 configuration: radius_source_interface: - vrf: "default" interface: "Loopback0"Example-2: Configure RADIUS source interfaces for multiple VRFs.
iosxr: devices: - name: router-1 host: 10.10.10.1:57400 configuration: radius_source_interface: - vrf: "default" interface: "Loopback0" - vrf: "MGMT" interface: "MgmtEth0/0/CPU0/0"