In an xinetd configuration file, which attribute specifies the network address that will be used to provide the service?
Answer: bind 或 interface
題解
xinetd的設定檔在「/etc/xinetd.d/」目錄下,設定檔內容的結構如下:
service <service_name>
{
<attribute> <assign_op> <value> <value> ...
...
}
<attribute>有許多屬性可以設定,其中的「bind」或是「interface」用來決定服務只允許透過哪個網路介面連進來。

