IPアドレスとホスト名の名前解決を行うとき、DNS、NIS、/etc/hostsファイルの順に検索するよう設定したい。ただし、DNSサーバで検索しても見つからなかった場合はその時点で検索を中止、また、NISサーバからの応答がない場合もその時点で検索を中止させた。/etc/nsswitch.confファイルにはどのように記述すればよいか?
- hosts: dns [NOTFOUND=return] nis [UNAVAIL=return] hosts
- hosts: dns [UNAVAIL=return] nis [NOTFOUND=return] files
- hosts: dns [NOTFOUND=return] nis [NOTFOUND=term] files
- hosts: dns [UNAVAIL=return] nis [NOTFOUND=return] hosts
- hosts: dns [NOTFOUND=return] nis [UNAVAIL=return] files
|