mirror of
https://github.com/NLnetLabs/routinator.git
synced 2024-05-19 06:50:04 +00:00
22de300fa8
This commit restructures the TAL configuration in response to the dropped requirement to opt into the ARIN TAL. Routinator will now use the bundled RIR TALs directly unless told otherwise by the new --no-rir-tals command line and config option. The additional bundled TALs can be added via the new --tal command line and config option. Additionally, the TAL directory can still be used via the --extra-tals-dir option. The tal-dir option has been removed but will still be accepted – and ignored – in the config file only. The init command has been removed. Co-authored-by: Alex Band <alex@nlnetlabs.nl> Co-authored-by: ximon18 <3304436+ximon18@users.noreply.github.com> Co-authored-by: Luuk Hendriks <mail@luukhendriks.eu>
21 lines
821 B
Plaintext
21 lines
821 B
Plaintext
# Configuration for Running Routinator as a System Service
|
|
# ========================================================
|
|
#
|
|
# This configuration assumes that the repository cache is maintained in
|
|
# /var/lib/routinator/rpki-cache.
|
|
#
|
|
# It will start Routinator with an RTR server listening on port 3323 and
|
|
# an HTTP server listening on port 8323. Both are limited to localhost by
|
|
# default.
|
|
#
|
|
# You can use this configuration as /etc/routinator/routinator.conf and
|
|
# start Routinator with --config /etc/routinator/routinator.conf.
|
|
#
|
|
# This file contains only the relevant configuration options. For a complete
|
|
# example, see etc/routinator.conf.example in the source distribution or
|
|
# consult the manual page.
|
|
|
|
repository-dir = "/var/lib/routinator/rpki-cache"
|
|
rtr-listen = ["127.0.0.1:3323"]
|
|
http-listen = ["127.0.0.1:8323"]
|