├── .gitignore ├── LICENSE ├── README.md ├── base.py ├── bgperf.py ├── bird.py ├── docs ├── benchmark_remote_target.md ├── bgperf.jpg ├── bgperf_remote.jpg ├── how_bgperf_works.md └── mrt.md ├── exabgp.py ├── frr.py ├── gobgp.py ├── monitor.py ├── mrt_tester.py ├── pip-requirements.txt ├── quagga.py ├── settings.py └── tester.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/README.md -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/base.py -------------------------------------------------------------------------------- /bgperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/bgperf.py -------------------------------------------------------------------------------- /bird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/bird.py -------------------------------------------------------------------------------- /docs/benchmark_remote_target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/docs/benchmark_remote_target.md -------------------------------------------------------------------------------- /docs/bgperf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/docs/bgperf.jpg -------------------------------------------------------------------------------- /docs/bgperf_remote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/docs/bgperf_remote.jpg -------------------------------------------------------------------------------- /docs/how_bgperf_works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/docs/how_bgperf_works.md -------------------------------------------------------------------------------- /docs/mrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/docs/mrt.md -------------------------------------------------------------------------------- /exabgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/exabgp.py -------------------------------------------------------------------------------- /frr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/frr.py -------------------------------------------------------------------------------- /gobgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/gobgp.py -------------------------------------------------------------------------------- /monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/monitor.py -------------------------------------------------------------------------------- /mrt_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/mrt_tester.py -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/pip-requirements.txt -------------------------------------------------------------------------------- /quagga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/quagga.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/settings.py -------------------------------------------------------------------------------- /tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/bgperf/HEAD/tester.py --------------------------------------------------------------------------------