-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2263b30
commit 8e4d152
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
log_level = "info" # "error", "warn", "info", "debug" or "trace" | ||
log_target = "stderr" # "stderr", "file" or "syslog" | ||
log_facility = "daemon" # used if log_target is "syslog" | ||
log_file = "./rotonda.log" # used if log_target is "file" | ||
|
||
# Optional path to a directory from which any .roto files present will be | ||
# loaded into Rotonda. Filter names used below refer to blocks in the .roto | ||
# files loaded from this directory. | ||
roto_scripts_path = "etc/" | ||
|
||
http_listen = ["127.0.0.1:8080"] | ||
|
||
[units.bgp-in] | ||
type = "bgp-tcp-in" | ||
listen = "0.0.0.0:11179" # TODO: When we can drop privileges make this 179 | ||
my_asn = 64512 # Tip: edit me, or comment this unit out | ||
my_bgp_id = [0, 0, 0, 0] # Tip: edit me, or comment this unit out | ||
filter_name = "bgp-in-filter" | ||
|
||
[units.bmp-in] | ||
type = "bmp-tcp-in" | ||
listen = "0.0.0.0:11019" | ||
filter_name = "bmp-in-filter" | ||
http_api_path = "/bmp-routers/" | ||
tracing_mode = "Off" | ||
|
||
[units.rib-in-pre] | ||
type = "rib" | ||
sources = ["bgp-in", "bmp-in"] | ||
rib_type = "Physical" | ||
filter_name = "rib-in-pre-filter" | ||
http_api_path = "/rib-in-pre/" | ||
|
||
[units.rib-in-post] | ||
type = "rib" | ||
sources = ["rib-in-pre"] | ||
rib_type = "Virtual" | ||
vrib_upstream = "rib-in-pre" | ||
filter_name = "rib-in-post-filter" | ||
http_api_path = "/rib-in-post/" | ||
|
||
[targets.null] | ||
type = "null-out" | ||
sources = ["rib-in-post"] |