Skip to content

DICOM Destination

The DICOM destination acts as a C-STORE SCU (Service Class User), sending DICOM objects to a remote PACS, VNA, or any DICOM-compatible system over the DICOM network protocol.

It handles association negotiation, presentation context selection, and transfer syntax automatically, so you only need to configure the connection and AE title details.

destination:
type: dicom
dicom:
host: pacs.radiology.local
port: 11112
ae_title: INTU_SCU
called_ae_title: MAIN_PACS
timeout_ms: 60000
max_pdu_length: 16384
tls:
enabled: true
ca_file: ./certs/pacs-ca.crt
PropertyTypeRequiredDefaultDescription
hoststringYesHostname or IP address of the remote DICOM system.
portintYesTCP port of the remote DICOM listener. Common value: 11112.
ae_titlestringNoINTU_SCUApplication Entity title for the local (calling) side.
called_ae_titlestringNoApplication Entity title of the remote (called) system.
timeout_msintNo60000Association and operation timeout in milliseconds.
max_pdu_lengthintNo16384Maximum PDU (Protocol Data Unit) length in bytes.
tlsobjectNoTLS settings for encrypted DICOM connections (DICOM TLS).

Route DICOM images from a modality worklist channel to the main PACS:

channels/modality-store/channel.yaml
id: modality-store
enabled: true
group: radiology
source:
type: dicom
port: 4104
ae_title: INTU_SCP
transformer: tag-cleanup.ts
destinations:
- type: dicom
dicom:
host: pacs.radiology.local
port: 11112
ae_title: INTU_SCU
called_ae_title: MAIN_PACS
timeout_ms: 120000
max_pdu_length: 65536
tls:
enabled: true
ca_file: ./certs/pacs-ca.crt