DNS and ldab

Hello,

      I would like to ask about the following:
1. Does orthanc support LDAP authentication?

Orthanc does not support LDAP authentication out-of-the-box, but a plugin can be developed using the "OrthancPluginRegisterIncomingHttpRequestFilter()" primitive:
http://book.orthanc-server.com/developers/creating-plugins.html

2. Does orthanc support DNS, so we can use name instead of IP in AET conf ?

Orthanc supports DNS lookups for all the HTTP part (both as server and as client).

Regarding the DICOM protocol, DNS lookups are disabled by the following line, as this results in memory leaks within DCMTK:
https://bitbucket.org/sjodogne/orthanc/src/596528620416977d9293ab64d23b9d7dd28dc0be/OrthancServer/OrthancInitialization.cpp?at=default&fileviewer=file-view-default#OrthancInitialization.cpp-499

I will add a generic option to force the enabling of such DNS lookups for DICOM in forthcoming Orthanc 1.2.1. Note however that, in general, DICOM network topologies are defined using raw IP addresses by most PACS managers.

HTH,
Sébastien-