comparison Sphinx/source/faq/security.rst @ 413:3ec4d890912e c-get

fix c-get
author Alain Mazy <alain@mazy.be>
date Tue, 12 May 2020 14:59:10 +0200
parents 0fb9369e893e
children c95817c254fe
comparison
equal deleted inserted replaced
412:969d50e63b17 413:3ec4d890912e
152 to validate the IP and hostname address of the remote modalities. 152 to validate the IP and hostname address of the remote modalities.
153 153
154 * For each modality that is defined in ``DicomModalities``, 154 * For each modality that is defined in ``DicomModalities``,
155 selectively specify what DICOM commands are allowed to be issued by 155 selectively specify what DICOM commands are allowed to be issued by
156 the SCU of this modality by setting the suboptions ``AllowEcho``, 156 the SCU of this modality by setting the suboptions ``AllowEcho``,
157 ``AllowFind``, ``AllowMove`` and ``AllowStore``. For instance, a 157 ``AllowFind``, ``AllowMove``, ``AllowStore`` and ``AllowGet``. For instance, a
158 modality could be allowed to C-STORE images, but be disallowed to 158 modality could be allowed to C-STORE images, but be disallowed to
159 C-FIND the content of Orthanc. Here is a sample configuration to 159 C-FIND the content of Orthanc. Here is a sample configuration to
160 define a single modality that is only allowed to send DICOM 160 define a single modality that is only allowed to send DICOM
161 instances to Orthanc:: 161 instances to Orthanc::
162 162
167 "Port" : 104, 167 "Port" : 104,
168 "Host" : "192.168.0.10", 168 "Host" : "192.168.0.10",
169 "AllowEcho" : false, 169 "AllowEcho" : false,
170 "AllowFind" : false, 170 "AllowFind" : false,
171 "AllowMove" : false, 171 "AllowMove" : false,
172 "AllowGet" : false,
172 "AllowStore" : true 173 "AllowStore" : true
173 } 174 }
174 } 175 }
175 } 176 }
176 177