dylandreimerink/gobgp-php

dev-master 2017-11-05 21:56 UTC

This package is not auto-updated.

Last update: 2025-03-26 10:22:03 UTC


README

A PHP wrapper for the GoBGP gRPC client

Requirements

Installation

  1. Install the gRPC PHP extension by following these installation instructions
  2. require the package: composer require dylandreimerink/gobgp-php

Goals

This project was made for 2 main reasons:

  1. If you wanted to use the GoBGP API you would have to manually generate the gRPC client code for PHP, which is a pain.
  2. Once you have the GoBGP API it is hard to get started because most data that is sent from and to the GoBGP API is encoded and is not well documented.

The goal of this project is to solve both of these issue's. Even tho I might decide to move the pregenerated client code to a separate repo and package.

As of this moment only a small part of the GoBGP API is wrapped, but I hope to get full coverage as soon as passable. After that is done the whole code base should receive unit tests.

Help and contributions are always welcome

Guide for contributes

Generating GoBGP gRPC API client code

The client code is generated from the .proto file at /api/gobgp.proto This file is in the protocol buffers format, gRPC uses protocol buffers as format for sending the API calls. Therefor we need to install protoc(The protocol buffers compiler) and compile the gRPC php plugin for protoc

Step by step:

  1. Follow the normal installation instructions first
  2. Install protoc by following the installation instructions for your system
  3. Install the gRPC PHP protoc plugin by following the instructions
  4. Get the latest .proto file from GoBGP, generate the latest client code and replace the code in /lib with the newly generated client code

The current version of the client code was generated from the .proto file in commit #3678607

Docs and references

Most of the work is in decoding and encoding to the correct formats. Most of the formats are from accepted BGP RFC's or draft's. Up until now I used the following docs to find what I need:

Sometimes GoBGP can differ a bit from the latest draft's, in those cases you have to reverse engineer the format or look at the source code.

TODO's

  • Wrap all API calls
  • Write unit tests for all encoding and decoding functions
  • Add rule builders to further simplify the usage of the library
  • Make a easy method of querying and filtering routes

Idea's / use cases

  • Use 2 GoBGP servers with a php-gobgp instance in the middle so more advanced input filtering can be done than is currently possible in BGP itself
  • Make route synchronization between multiple route servers so the sake of redundancy
  • Make a version of this library for symfony and laravel
  • Making a auto backup system using the MRT dumps and injection functionality of GoBGP
  • Making custom monitoring for changes in BGP announcements