127.0.0.1
मेरी /etc/hosts
फ़ाइल में कुछ स्थानीय डोमेन हल हैं । और यह समय की अवधि के लिए सब ठीक था लेकिन अब जब मैं चलाता हूं:
nslookup test.local
यह परिणाम है:
Server: 192.168.1.3
Address: 192.168.1.3#53
** server can't find test.local: NXDOMAIN
192.168.1.3
हमारे नेटवर्क डीएनएस है और यह मेरे स्थानीय डोमेन पता होना चाहिए नहीं कर रहा है test.local
। कुछ खोजों के बाद मैंने पाया कि /etc/nsswitch.conf
फ़ाइल DNS स्रोतों की प्राथमिकता के आधार पर क्वेरी करने के लिए जानकारी रखती है। लेकिन वहाँ कोई समस्या नहीं थी! ये मेरा:
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
passwd: compat
group: compat
shadow: compat
hosts: files mdns4_minimal [NOTFOUND=return] dns
networks: files
protocols: db files
services: db files
ethers: db files
rpc: db files
netgroup: nis
तो क्या किसी को पता है कि मेरी hosts
फाइल DNS लुक-अप में शामिल क्यों नहीं है?
ping
एक का उपयोग करना चाहिएgetent ahosts
क्योंकि इसके लिए सभी अतिरिक्त सामान की आवश्यकता नहीं होतीping
है।