Last active
February 12, 2021 23:42
-
-
Save qlyoung/d4a2e133c01de08c638b0657802ef7df to your computer and use it in GitHub Desktop.
OpenBMP no bs setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker pull openbmp/aio | |
docker run -d -e API_FQDN=localhost.lan \ | |
--name=openbmp_aio -e MEM=15 \ | |
-p 3306:3306 -p 2181:2181 \ | |
-p 9092:9092 -p 5000:5000 \ | |
-p 8001:8001 openbmp/aio | |
# wait a few minutes for mysql to initialize itself | |
# Monitor logs: | |
# docker exec openbmp_aio tail -f /var/log/openbmpd.log | |
docker pull openbmp/ui | |
docker run -d --name=openbmp_ui \ | |
-e OPENBMP_API_HOST=localhost \ | |
-p 8000:8000 \ | |
openbmp/ui | |
# navigate to localhost:8000 in browser | |
# username: openbmp | |
# password: CiscoRA |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment