Roa

ROA #

The roa handler will return the current ROA status for the requested IP. It’ll first determine the live RIB entry for the IP, then ROA check the RIB entry.

c = bgpstuff.Client()

c.get_roa("1.1.1.1")
if c.roa:
    print(f"The ROA for 1.1.1.1 is {c.roa}")
The ROA for 1.1.1.1 is VALID
TODO