Thông tin

Tác giả Noah Van Horenbeke
Hạn chót Không có hạn chót
Giới hạn nộp bài Không có giới hạn

Đăng nhập

1 - Simple peering & prefixes advertisement

🎯 Learning Objectives

This lab will allow you to:

  • Diagnose: use vtysh to inspect BGP neighbor peering status and prefixes advertisement
  • Fix: identify and resolve configuration errors

Lab Presentation

Lab network topology

This image represents the correct topology (without errors) that you should obtain after debugging.

Your addressing scheme may be different; the addresses shown in the image are for illustrative purposes only.

This lab contains a preconfigured network infrastructure, but several intentional errors have been introduced. It's up to you to identify and fix them!

📥 Download the Base Lab

Download the starting archive
To begin the exercise, you need to download the archive. It contains the base configuration with errors to fix.
[1]This file gives a score of ~80%, the goal is to reach 100%.

Diagnostic Tools

vtysh is the unified command-line interface of FRRouting (the routing software used in the containers).

It allows you to configure and inspect all routing protocols (BGP, OSPF, RIP, etc.) from a single interface.

Useful commands for diagnosing BGP:

# Access vtysh on r5
root@r5:/# vtysh
r5#

# Displays the active BGP configuration
show running-config

# All following commands are run inside vtysh
# Display BGP neighbor summary (session status)
show bgp ipv6 summary

# Display the complete BGP routing table (learned routes)
show bgp ipv6 unicast

# Display routes specific to a neighbor
show bgp ipv6 neighbors 2001:db8:12::2 routes
The show running-config command allows you to display the active BGP configuration. This is an excellent way to check if your configuration file is properly loaded (without syntax errors).

Submit your corrected zip here

Max file size: 9.5 MiB
Allowed extensions: .zip