Skip to content

unixian97/PyGoBGP-Example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyGoBGP Examples (Docker)

PyGoBGP is a python library to interact with GoBGP. Below is an example docker setup to run two GoBGP routers and a controller node. Controller has PyGoBGP and Jupyter notebook installed and can access GoBGP routers. Controller can manipulate GoBGP router RIB, or change neighbor configs programmatically.

This setup is influenced by David Barroso's GoBGP examples.

GoBGP Docker Diagram

Requirements

  • docker
  • docker-compose

Environment Setup

Create docker images and bring them up

make build
make up

Now you should be able to access jupyter notebook at http://127.0.0.1:8080

Connect to one of the GoBGP Nodes and check BGP session

from pygobgp import PyGoBGP
gobgp = PyGoBGP(address="10.0.255.2")

neighbor = gobgp.get_neighbor(address="10.0.255.3")

print(neighbor.info.bgp_state)
>>> "established"

print(neighbor.conf.peer_as)
>>> 65001

Check PyGoBGP github page for more details

About

Example GoBGP Docker setup for testing PyGoBGP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.7%
  • Dockerfile 2.1%
  • Makefile 1.2%