22 lines
734 B
Bash
22 lines
734 B
Bash
# Target RTR server address for client compose files
|
|
# TCP example: 10.0.0.12:323
|
|
# TLS example: rpki.example.com:324
|
|
# SSH example: 10.0.0.12:22
|
|
RPKI_RTR_SERVER_ADDR=rpki-rtr-tcp:323
|
|
|
|
|
|
# RTR protocol version used as client command second argument (supported: 0,1,2)
|
|
RPKI_RTR_PROTOCOL_VERSION=2
|
|
|
|
# TLS server name used by --server-name in TLS mode
|
|
# Must match server certificate SAN dNSName.
|
|
RPKI_RTR_TLS_SERVER_NAME=localhost
|
|
|
|
# SSH mode examples:
|
|
# RPKI_RTR_SERVER_ADDR=10.0.0.12:2222
|
|
# RPKI_RTR_CLIENT_KEYS_VOLUME=../../certs:/app/certs:ro
|
|
# RPKI_RTR_CLIENT_KEY_PATH=/app/certs/rtr-client.key
|
|
# RPKI_RTR_SSH_SERVER_PUBKEY_PATH=/app/certs/ssh_host_rsa_key.pub
|
|
# RPKI_RTR_SSH_USERNAME=rpki-rtr
|
|
# RPKI_RTR_SSH_PASSWORD=your-password
|