summaryrefslogtreecommitdiffstats
path: root/tests/topotests/bgp_vrf_netns/peer1/exa-send.py
blob: c6a4499bd34725e70d95d2f5412f3b3d1f3de98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3

"""
exa-send.py: Send a few testroutes with ExaBGP
"""

from sys import stdout, argv
from time import sleep

sleep(5)

# 1st arg is peer number
# 2nd arg is number of routes to send
peer = int(argv[1])
numRoutes = int(argv[2])
asnum = 99

# Announce numRoutes equal routes per PE - different neighbor AS
for i in range(0, numRoutes):
    stdout.write(
        "announce route 10.201.%s.0/24 med 100 community %i:1 next-hop 10.0.%i.%i\n"
        % (i, i, (((peer - 1) / 5) + 1), peer + 100)
    )
    stdout.flush()

# Loop endlessly to allow ExaBGP to continue running
while True:
    sleep(1)