Centos

CentOS 6.3 上的 oidentd 問題

  • November 25, 2012

我的 VPS 上的 oident 守護程序有一個奇怪的問題。當我嘗試執行它時,我不斷收到此錯誤:

$$ root@ldvps ~ $$# oidentd

$$ line 4 $$此構造僅對使用者配置文件有效

讀取配置文件時出錯

我還確保它通過鍵入從 /etc/oidentd.conf 讀取正確的 oidentd.conf

oidentd -c /etc/oidentd.conf

但我得到同樣的錯誤。

這是我的 oidentd.conf 文件:

# Configuration for oidentd
# see oidentd.conf(5)
#

default {
       default {
               allow spoof
               allow spoof_all
               allow spoof_privport
               allow random
               allow random_numeric
               allow numeric
               allow hide
       }
}

要麼是我做的不對,要麼是 oidentd 真的有問題。任何幫助或其他建議將不勝感激。

謝謝你。

/etc/oidentd.conf應該如下所示:

default {
   default {
       allow spoof
       deny spoof_all
       deny spoof_privport
       allow random_numeric
       allow numeric
       allow hide
   }
}

user root {
   default {
       force reply "UNKNOWN"
   }
}

user username {
   default {
       allow spoof
       allow spoof_all
       allow spoof_privport
   }
}

您可以定義每個使用者的配置。發出以下

vi ~/.oidentd.conf

global { reply "nickname" }
to irc.freenode.net { reply "freenode" }

引用自:https://serverfault.com/questions/451993