两个本地服务器之间的 LDAP 通信

两个本地服务器之间的 LDAP 通信

我想让我的 LDAP 端口在我的私有网络内可访问。可以吗?

操作系统:Ubuntu 14.04 x64

我的 LDPA 服务器配置:

eth1  Link encap:Ethernet  HWaddr 04:01:41:0d:9d:02  
      inet addr:**10.129.129.244**  Bcast:10.129.255.255  Mask:255.255.0.0
      inet6 addr: fe80::601:41ff:fe0d:9d02/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:3395 errors:0 dropped:0 overruns:0 frame:0
      TX packets:3358 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:203936 (203.9 KB)  TX bytes:181780 (181.7 KB)

Netstat 结果:

netstat -anltp | grep "LISTEN" | grep 389
tcp        0      0 **127.0.1.1:389**           0.0.0.0:*  LISTEN 1096/slapd

还有另一台服务器(我想将其用作 ldap 客户端以进行身份​​验证。)

操作系统:Ubuntu 14.10 x64

eth1  Link encap:Ethernet  HWaddr 04:01:41:71:8d:02  
      inet addr:10.129.129.243  Bcast:10.129.255.255  Mask:255.255.0.0
      inet6 addr: fe80::601:41ff:fe71:8d02/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:2192 errors:0 dropped:0 overruns:0 frame:0
      TX packets:2226 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:131520 (131.5 KB)  TX bytes:129152 (129.1 KB)

NMAP 结果:

nmap 10.129.129.244

Starting Nmap 6.46 ( http://nmap.org ) at 2015-03-02 07:44 EST
Nmap scan report for 10.129.129.244
Host is up (0.00054s latency).
Not shown: 989 closed ports
PORT     STATE SERVICE
22/tcp   open  ssh
25/tcp   open  smtp
110/tcp  open  pop3
143/tcp  open  imap
443/tcp  open  https
465/tcp  open  smtps
587/tcp  open  submission
993/tcp  open  imaps
995/tcp  open  pop3s
7025/tcp open  vmsvc-2
8443/tcp open  https-alt
MAC Address: 04:01:41:0D:9D:02 (Unknown)

Nmap done: 1 IP address (1 host up) scanned in 21.45 seconds

答案1

我想让我的 LDAP 端口在我的私有网络内可访问。可以吗?

是的。

您需要解决 LDAP 服务器只监听 netstat 输出所指示的环回接口的问题:tcp 0 0 **127.0.1.1:389** 0.0.0.0:* LISTEN 1096/slapd并使其也接受远程连接。可能您还需要打开防火墙以允许远程连接。

一般来说,如果你要使用 LDAP 进行身份验证,你应该考虑配置 SSL/TLS 以提供传输安全

相关内容