├── AUTHORS ├── LICENSE ├── README.md ├── config_files ├── exabgp │ └── exabgp.conf └── ssbgp │ ├── v4_conf.yaml │ └── v6_conf.yaml ├── data ├── v4_full_table_and_default └── v6_full_table_and_default ├── requirements.txt ├── ssbgp.py └── vagrant ├── Vagrantfile ├── config.txt └── provision.py /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/README.md -------------------------------------------------------------------------------- /config_files/exabgp/exabgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/config_files/exabgp/exabgp.conf -------------------------------------------------------------------------------- /config_files/ssbgp/v4_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/config_files/ssbgp/v4_conf.yaml -------------------------------------------------------------------------------- /config_files/ssbgp/v6_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/config_files/ssbgp/v6_conf.yaml -------------------------------------------------------------------------------- /data/v4_full_table_and_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/data/v4_full_table_and_default -------------------------------------------------------------------------------- /data/v6_full_table_and_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/data/v6_full_table_and_default -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | exabgp 2 | pyYAML -------------------------------------------------------------------------------- /ssbgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/ssbgp.py -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vagrant/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/vagrant/config.txt -------------------------------------------------------------------------------- /vagrant/provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/super-smash-brogp/HEAD/vagrant/provision.py --------------------------------------------------------------------------------