Skip to content

RADIUS Source Interface

Configure RADIUS source interface settings per VRF to specify the source interface for RADIUS packets.

Diagram
NameTypeConstraintMandatoryDefault Value
radius_source_interfaceList[radius_source_interface]No

radius_source_interface (iosxr.devices.configuration)

Section titled “radius_source_interface (iosxr.devices.configuration)”
NameTypeConstraintMandatoryDefault Value
vrfStringYes
interfaceStringYes

The following configuration shows how to specify a RADIUS source interace via CLI on a Cisco IOS-XR device.

radius source-interface Loopback0 vrf default
radius source-interface MgmtEth0/0/CPU0/0 vrf MGMT

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"