-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
I have been trying to debug why HFDL is not being seen by the acars_router and it doesn't seem to be listening.
Here is the docker output :
from distutils.util import strtobool
2024-03-26 18:54:50 [INFO] [acars_router.core] serving ACARS on TCP port 15550
2024-03-26 18:54:50 [INFO] [acars_router.core] serving VDLM2 on TCP port 15555
2024-03-26 18:54:50 [INFO] [acars_router.core] serving ACARS via ZMQ over TCP, port: 45550
2024-03-26 18:54:50 [INFO] [acars_router.core] serving VDLM2 via ZMQ over TCP, port: 45555
2024-03-26 18:54:50 [INFO] [acars_router.core] sending ACARS via UDP to acarshub:5550
2024-03-26 18:54:50 [INFO] [acars_router.core] sending VDLM2 via UDP to acarshub:5555
2024-03-26 18:54:50 [INFO] [acars_router.core] Listening for ACARS UDP on port 5550
2024-03-26 18:54:50 [INFO] [acars_router.core] Listening for ACARS TCP on port 5550
2024-03-26 18:54:50 [INFO] [acars_router.core] Listening for VDLM2 UDP on port 5555
2024-03-26 18:54:50 [INFO] [acars_router.core] Listening for VDLM2 TCP on port 5555
And here is the compose file :
container_name: acars_router
hostname: acars_router
image: ghcr.io/sdr-enthusiasts/acars_router:latest_nohealthcheck
restart: ${RESTART}
depends_on:
- acarsdec
- vdlm2dec
environment:
- AR_ENABLE_DEDUPE=true
- AR_LISTEN_UDP_ACARS=5550
- AR_LISTEN_TCP_ACARS=5550
- AR_LISTEN_UDP_VDLM2=5555
- AR_LISTEN_TCP_VDLM2=5555
- AR_LISTEN_UDP_HFDL=5556
- AR_LISTEN_TCP_HFDL=5556
- AR_SEND_UDP_ACARS=acarshub:5550
- AR_SEND_UDP_HFDL=acarshub:5556
- AR_SEND_UDP_VDLM2=acarshub:5555
- AR_STATS_EVERY=30
- AR_STATS_VERBOSE=true
- TZ=${FEEDER_TZ}
tmpfs:
- /run:exec,size=64M
- /var/log
I know that the router is working since ACARS and VDLM messages get routed accordingly but in the HFDL container i see the logs saying there were messages but the router seems to ignore / block.
Any help would rock!!
Metadata
Metadata
Assignees
Labels
No labels