Feeding ACARS, VDL-M2, HFDL & Satcom to ADSBItalia
ADSBItalia hosts a dedicated central ACARS & Satcom Router Engine that aggregates live telemetry from VHF ACARS, VDL Mode 2, HFDL (Shortwave), and Satcom (Inmarsat/Iridium) stations worldwide.
Our backend automatically enriches position reports with real-time GroundSpeed calculation and Altitude Memory persistence for oceanic and remote flights, rendering them live on the map.
Global Ingestion Host: feed.adsbitalia.it (or adsbitalia.it)
Dedicated Ingestion Ports Table
VHF ACARS (131 MHz)5550JSON (TCP/UDP)
VDL Mode 2 (VHF 136 MHz)5555JSON (TCP/UDP)
HFDL (Shortwave 2–30 MHz)5556JSON (TCP/UDP)
Satcom Inmarsat (JAERO / IMSL)5557JSON (TCP/UDP)
Satcom Iridium (IRDM / irdm2acars)5558JSON (TCP/UDP)
Generic BaseStation SBS (JAERO)31109SBS (TCP)
acars_router Setup (Docker / SDR-Enthusiasts)
If you run acars_router (SDR-Enthusiasts), add forwarding destinations via TCP to your docker-compose.yml environment variables and restart the container:
environment:
- AR_SEND_TCP_ACARS=feed.adsbitalia.it:5550
- AR_SEND_TCP_VDLM2=feed.adsbitalia.it:5555
- AR_SEND_TCP_HFDL=feed.adsbitalia.it:5556
- AR_SEND_TCP_IMSL=feed.adsbitalia.it:5557
- AR_SEND_TCP_IRDM=feed.adsbitalia.it:5558
Reliability note: We strongly recommend using TCP (as shown above) rather than UDP to prevent message drops caused by carrier firewalls or router NAT.
ADSB.im Setup
Open your ADSB.im web dashboard, navigate to the active HFDL, VDL2, Satcom or ACARS package, and under Custom Destinations set feed.adsbitalia.it (or adsbitalia.it) with the designated port in JSON format.
Host: feed.adsbitalia.it
Ports: 5550 (VHF ACARS) | 5555 (VDL2) | 5556 (HFDL) | 5557 (Inmarsat) | 5558 (Iridium)
Format: JSON
Standalone Demodulators & Decoders
# Satcom Inmarsat (JAERO):
Settings -> Audio/Decoding -> ACARS Output -> Host: feed.adsbitalia.it, Port: 5557, Protocol: TCP or UDP (JSON)
# (or SBS TCP output on port 31109)
# Satcom Iridium (irdm2acars / iridium-toolkit):
Host: feed.adsbitalia.it, Port: 5558, Protocol: TCP or UDP (JSON)
# VHF ACARS (acarsdec):
acarsdec -j feed.adsbitalia.it:5550
# VDL Mode 2 (dumpvdl2):
dumpvdl2 --output-acars decoded:json:tcp:address=feed.adsbitalia.it,port=5555
# HFDL (dumphfdl):
dumphfdl --output decoded:json:tcp:address=feed.adsbitalia.it,port=5556