Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
## Clone
```bash
git clone https://github.internet2.edu/internet2/exabgp-full-table.git
```
## Build
```bash
docker build -t exabgp-full-table .
```
Copy and edit exabgp.conf.dist
```bash
cp exabgp.conf.dist exabgp.conf
```
Extract api-full-rrc14.run.tgz
```bash
tar zxvpf api-full-rrc14.run.tgz
```
## Run
```bash
docker run -d --name exabgp --rm -v $(pwd)/exabgp.conf:/etc/exabgp/exabgp.conf -v $(pwd)/api-full-rrc14.run:/api-full-rrc14.run exabgp-full-table /etc/exabgp/exabgp.conf
```
## Generate data (already done with the included api-full-rrc14.run.tgz)
Data was downloaded from RIPE RIS rrc14 (Palo Alto, CA)
[http://data.ris.ripe.net/rrc14/]
mrtparse [https://github.com/t2mune/mrtparse] to convert to ExaBGP API format
```bash
./mrt2exabgp.py -P latest-bview.gz > api-full-rrc14.run
```