STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 2 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Arista MLS EOS 4.2x Router Security Technical Implementation Guide

V-256048

CAT III (Low)

The Arista BGP router must be configured to use its loopback address as the source address for iBGP peering sessions.

Rule ID

SV-256048r882486_rule

STIG

Arista MLS EOS 4.2x Router Security Technical Implementation Guide

Version

V1R1

CCIs

CCI-000366

Discussion

Using a loopback address as the source address offers a multitude of uses for security, access, management, and scalability of the BGP routers. It is easier to construct appropriate ingress filters for router management plane traffic destined to the network management subnet since the source addresses will be from the range used for loopback interfaces instead of a larger range of addresses used for physical interfaces. Log information recorded by authentication and syslog servers will record the router's loopback address instead of the numerous physical interface addresses. When the loopback address is used as the source for eBGP peering, the BGP session will be harder to hijack since the source address to be used is not known globally—making it more difficult for a hacker to spoof an eBGP neighbor. By using traceroute, a hacker can easily determine the addresses for an eBGP speaker when the IP address of an external interface is used as the source address. The routers within the iBGP domain should also use loopback addresses as the source address when establishing BGP sessions.

Check Content

Review the Arista router configuration to verify a loopback address has been configured.

Verify a loopback interface is used as the source address for all iBGP sessions.

Step 1: To verify the Loopback interface is defined, execute the command "sh run int loopback YY".

interface loopback 0
  ip address 10.1.1.1/32

Step 2: To verify a loopback interface is used as the source address for all iBGP sessions, execute the command "sh run sec router bgp".

router bgp 65001
   router-id 10.1.1.1
   neighbor Peer_Leaf peer group
   neighbor Peer_Leaf remote-as 65001
   neighbor Peer_Leaf update-source Loopback0
   neighbor 10.2.2.2 peer group Peer_Leaf
   
If the Arista router does not use its loopback address as the source address for all iBGP sessions, this is a finding.

Fix Text

Ensure the Arista router's loopback address is used as the source address when originating traffic.

Step 1: Configure the Loopback interface.

LEAF-1A(config)#interface Loopback0
LEAF-1A(config-if-Lo0)#ip address 10.1.1.1/32

Step 2: Configure the loopback interface as source for all iBGP sessions.

router bgp 65001
LEAF-1A(config-router-bgp)#
LEAF-1A(config-router-bgp)#neighbor Peer_Leaf peer group
LEAF-1A(config-router-bgp)#Peer_Leaf remote-as 65001
LEAF-1A(config-router-bgp)#Peer_Leaf update-source Loopback0
LEAF-1A(config-router-bgp)#10.2.2.2 peer group Peer_Leaf