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 just now
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to RUCKUS ICX Router Security Technical Implementation Guide

V-273654

CAT III (Low)

The RUCKUS ICX BGP Router must be configured to use its loopback address as the source address for internal border gateway protocol (iBGP) peering sessions.

Rule ID

SV-273654r1111048_rule

STIG

RUCKUS ICX 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 because the source address to be used is not known globally. This makes 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 configuration to verify BGP configuration uses the loopback address as the source address for iBGP peering sessions.  

interface loopback 1
 ip address x.x.1.1 255.255.255.255
!
router bgp
 local-as 10
 neighbor x.x.x.x remote-as 10
 neighbor x.x.x.x update-source loopback 1

If the router is not using a loopback address as the source for iBGP peering sessions, this is a finding.

Fix Text

Configure BGP to use the loopback address as the source address for iBGP peering sessions.

1. Configure a loopback interface.
ICX(config)#interface loop 1
ICX(config-lbif-1)#ip addr x.x.1.1/32

2. Set the loopback interface as the update-source for iBGP peers.  
ICX(config)#router bgp
ICX(config-bgp-router)#local-as 10
ICX(config-bgp-router)#neighbor x.x.x.x remote-as 10
ICX(config-bgp-router)#neighbor x.x.x.x update-source loopback 1