Mercurial > hg > orthanc-book
annotate Sphinx/source/faq/dicom.rst @ 258:a073419272c7
typo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 26 Jun 2019 22:41:33 +0200 |
parents | a64197133114 |
children | 6cbcdb965ad3 |
rev | line source |
---|---|
0 | 1 .. _dicom: |
2 | |
3 Troubleshooting DICOM communications | |
4 ==================================== | |
5 | |
6 In general, communication problems between two DICOM modalities over a | |
7 computer network are related to the configuration of these | |
8 modalities. As preliminary debugging actions, you should: | |
9 | |
10 * Make sure you use the `most recent version <http://www.orthanc-server.com/download.php>`_ of Orthanc. | |
11 * Make sure the two computers can "ping" each other. | |
12 * Turn off all the firewalls on the two computers (especially on Microsoft Windows). | |
242 | 13 * Make sure the remote computer has `DICOM TLS encryption |
14 <https://www.dicomstandard.org/using/security/>`__ turned off (this | |
253 | 15 feature is not supported yet as of Orthanc 1.5.7). |
0 | 16 * Write down on a paper the following information about each modality: |
17 | |
18 * its IP address (avoid using symbolic names if possible to troubleshot any DNS problem), | |
19 * its TCP port for DICOM communications (for Orthanc, cf. the ``DicomPort`` option), and | |
20 * its AET (Application Entity Title - for Orthanc, cf. the ``DicomAet`` option). | |
21 | |
22 * Carefully re-read all your configuration files. As far as Orthanc is | |
23 concerned, the most important section is ``DicomModalities``: Make | |
24 sure its content matches what you wrote on the paper at the step | |
25 above. | |
26 * In the ``DicomModalities`` configuration section of Orthanc, have a | |
27 look at the fourth parameter that can activate some patches for | |
28 specific vendors. | |
29 * Have a look at the following options of Orthanc to enable the more fault-tolerant DICOM support: | |
30 | |
31 * ``DicomServerEnabled`` must be set to ``true``. | |
32 * ``DicomCheckCalledAet`` should be set to ``false``. | |
33 * All the transfer syntaxes should be set to ``true`` (see the | |
34 options with a ``TransferSyntaxAccepted`` suffix). | |
35 * Temporarily disable any Lua script and any plugin, i.e. set the | |
36 options ``LuaScripts`` and ``Plugins`` both to the empty list. | |
37 * ``DicomAssociationCloseDelay`` should be set to ``0``. | |
38 | |
39 * Restart Orthanc with the ``--verbose`` option at command line, and | |
40 carefully inspect the log. This might provide immediate debugging | |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
41 information. Make sure to read :ref:`how to generate an exploitable |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
42 log <log>`. |
0 | 43 * Issue a :ref:`DICOM C-Echo <dicom-echo>` from each modality to make |
44 sure the DICOM protocol is properly configured (sending a C-Echo | |
45 from Orthanc Explorer is possible starting with Orthanc 0.9.3, in | |
46 the "Query/Retrieve" page). | |
47 * If the two modalities succeed with C-Echo, but query/retrieve does not | |
48 succeed, please carefully read the :ref:`dicom-move` section. | |
49 | |
50 As a last resort, please contact the `mailing list | |
51 <https://groups.google.com/forum/#!forum/orthanc-users>`_ by sending a | |
52 detailed description of your problem, notably: | |
53 | |
54 * What fails: The sending of a file (aka. C-Store SCU), the searching | |
55 of a patient/study (aka. C-Find SCU), or the retrieve of a file | |
56 (aka. C-Move SCU)? Is Orthanc acting as a client or as a server? | |
57 * Describe your network topology, as written above on your paper (IP | |
58 address, port number, and AET for both modalities). | |
59 * Specify the operating system, the vendor, the DICOM software, and | |
60 the version of each modality. | |
61 * Attach sample DICOM files, possibly anonymized. | |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
62 * Attach the log of the two modalities. The :ref:`log must be |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
63 generated <log>` with the ``--trace`` command-line option as far as |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
64 Orthanc is concerned. |
0 | 65 * Attach any screenshot that is useful to understand the problem. |