Skip to content
Permalink
75a1b811e0
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
30 lines (26 sloc) 587 Bytes
Original Juniper readme moved to [juniper_readme.md](juniper_readme.md)
Customize `ui/config.yml`
__At least one router of type RR has to be configured__
```yaml
age_out_interval: 00:01:00
dev_pw: juniper123
dev_user: root
routers:
- rt1:
type: rr
ip: 10.11.111.120
- rt2:
type: asbr
ip: 10.11.111.121
```
Use Python 3 and virtualenv
```
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python main.py
```
Docker
```
docker run -it --rm -p 8080:8080 -v $PWD/ui/config.yml:/srv/ui/config.yml karlnewell/i2-flowspec-portal
```