
Hello all, I've got a query for the networking types. I'm currently trying to get a wiki to LDAP authentication. Despite my best attempts it keeps failing. I can't understand the following. Some commands can resolve the ip address of internal servers when using there FQDN while others cannot. This is all within a Windows network. The server I'm trying to configure is Debian Squeeze. I am wondering if this might be why the LDAP authentication is not working. Any thoughts? Cheers, Chris ############## Find the ip address of thesun.tesla.local ############## wikiserver:~# dig thesun.tesla.local ; <<>> DiG 9.7.3 <<>> thesun.tesla.local ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 45615 ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION: ;thesun.tesla.local. IN A ;; ANSWER SECTION: thesun.tesla.local. 3600 IN A 10.0.0.10 ;; Query time: 1 msec ;; SERVER: 10.0.0.10#53(10.0.0.10) ;; WHEN: Wed Sep 5 15:36:29 2012 ;; MSG SIZE rcvd: 52 ############### Then check if port 389 is open. It fails to resolve the IP address. ############### wikiserver:~# nmap -p 389 thesun.tesla.local Starting Nmap 5.00 ( http://nmap.org ) at 2012-09-05 15:37 NZST Failed to resolve given hostname/IP: thesun.tesla.local. Note that you can't use '/mask' AND '1-4,7,100-' style IP ranges WARNING: No targets were specified, so 0 hosts scanned. Nmap done: 0 IP addresses (0 hosts up) scanned in 5.15 seconds wikiserver:~# ############## Try again using the IP address Promptly returns an answer ############## wikiserver:~# nmap -p 389 10.0.0.10 Starting Nmap 5.00 ( http://nmap.org ) at 2012-09-05 15:37 NZST Interesting ports on thesun.tesla.local (10.0.0.10): PORT STATE SERVICE 389/tcp open ldap MAC Address: 00:50:56:93:76:FB (VMWare) Nmap done: 1 IP address (1 host up) scanned in 0.44 seconds wikiserver:~#