mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-05-02 22:48:53 +03:00
37 lines
1.3 KiB
INI
37 lines
1.3 KiB
INI
# PYSIM_DIR passed to all components
|
|
PYSIM_DIR=../../../ # Points to the psyim top directory
|
|
|
|
# Verbosity switch passed to all components (comment-out to disable verbode mode)
|
|
#VERBOSE="--verbose"
|
|
|
|
# PCSC reader that the RCP Client shall use
|
|
PCSC_READER=0
|
|
|
|
# Since RCP Modules are custom implementations, they will most likely reside
|
|
# in a dedicated directory. This directory is passed together with PYSIM_DIR
|
|
# via PYTHONPATH to the module.
|
|
RCP_DIR=../
|
|
|
|
# CA of the certificates used in this example
|
|
CA_CERT="./certs/example_ssl_rcp_ca_cert.crt"
|
|
|
|
# Network interface where RCP Clients connect
|
|
RCPC_SERVER_PORT=8000
|
|
RCPC_SERVER_ADDR="127.0.0.1"
|
|
RCPC_SERVER_CERT="./certs/example_ssl_rcpc_rcps_cert.pem"
|
|
RCPC_SERVER_URI="wss://$RCPC_SERVER_ADDR:$RCPC_SERVER_PORT"
|
|
|
|
# Network interface where RCP Modules connect
|
|
RCPM_SERVER_PORT=8010
|
|
RCPM_SERVER_ADDR="127.0.0.1"
|
|
RCPM_SERVER_CERT="./certs/example_ssl_rcpm_rcps_cert.pem"
|
|
RCPM_SERVER_URI="wss://$RCPM_SERVER_ADDR:$RCPM_SERVER_PORT"
|
|
|
|
# Network interface where the (example) RCP Module binds its Command Server to.
|
|
# The command server is used by the RCP Server to run the command requested
|
|
# by the user. Each module needs a dedicated port. The address and port is
|
|
# automatically forwarded to the RCP Server.
|
|
RCPM_CMD_SERVER_PORT=8020
|
|
RCPM_CMD_SERVER_ADDR="127.0.0.1"
|
|
RCPM_CMD_SERVER_CERT="./certs/example_ssl_rcps_rcpm_cert.pem"
|