Re: how to do a ldapsearch from a telnet session

From: Shakespeare <whatsin_at_xs4all.nl>
Date: Mon, 26 Apr 2010 09:47:33 +0200
Message-ID: <4bd5451e$0$22936$e4fe514c_at_news.xs4all.nl>



Op 21-4-2010 20:39, kat schreef:
> Hi,
> I'm trying to check the status of our OID (10.1.0.4) server running
> OEL 4 from another OEL server by passing a string (cn=mytestdb) and
> I'm hoping to receive an expected string back but I'm getting
> connection closed by foreign host. Is there a configuration change
> that has to be made to open up the access?
>
> $> telnet oidserver 389
> Trying 192.168.2.34...
> Connected to oidserver.
> Escape character is '^]'.
> ldapsearch "cn=mytestdb"
> Connection to oidserver closed by foreign host.
> $>
>
> I'm able to successfully run ldapsearch "cn=mytestdb" directly on the
> oidserver.
>
> Can someone help?
>
> thanks.

Your OID server is not running telnet on port 389, that is the port for LDAP. Telnet should normally be running on the normal telnet port.

But you don't need telnet at all to perform an ldap search on another server. You can use ldapsearch on the second server with the target host and target port as parameters, like:
ldapsearch -h <targethost> -p <targetport> -D cn=orcladmin -w <password> -b <basedn> (cn=mytestdb)

Shakespeare Received on Mon Apr 26 2010 - 02:47:33 CDT

Original text of this message