freeradiusテストの解析エラーユーザーが入力テストに失敗しました(応答):行末またはコンマが必要です。

freeradiusテストの解析エラーユーザーが入力テストに失敗しました(応答):行末またはコンマが必要です。

ファイルの上部にある次の認証を使用して、基本構成で新しいRadiusインストールをテストしようとしています。

head /etc/raddb/mods-config/files/authorize
bob Cleartext-Password := "hello"
    Reply-Message := "Hello, %{User-Name}"

test    Cleartext-Password := "test"
    Reply-Message := "Hello, %{User-Name}


#
#   Configuration file for the rlm_files module.
#   Please see rlm_files(5) manpage for more information.

起動時にロードされません。ログの最後の数行は次のとおりです。

/sbin/radiusd -f -X -x
.....
Wed Aug 16 16:37:38 2017 : Debug:       reference = "Accounting-Request.%{%{Acct-Status-Type}:-unknown}"
Wed Aug 16 16:37:38 2017 : Debug:   }
Wed Aug 16 16:37:38 2017 : Debug:     (Loaded rlm_files, checking if it's valid)
Wed Aug 16 16:37:38 2017 : Debug:   # Loaded module rlm_files
Wed Aug 16 16:37:38 2017 : Debug:   # Instantiating module "files" from file /etc/raddb/mods-enabled/files
Wed Aug 16 16:37:38 2017 : Debug:   files {
Wed Aug 16 16:37:38 2017 : Debug:       filename = "/etc/raddb/mods-config/files/authorize"
Wed Aug 16 16:37:38 2017 : Debug:       usersfile = "/etc/raddb/mods-config/files/authorize"
Wed Aug 16 16:37:38 2017 : Debug:       acctusersfile = "/etc/raddb/mods-config/files/accounting"
Wed Aug 16 16:37:38 2017 : Debug:       preproxy_usersfile = "/etc/raddb/mods-config/files/pre-proxy"
Wed Aug 16 16:37:38 2017 : Debug:       compat = "cistron"
Wed Aug 16 16:37:38 2017 : Debug:   }
Wed Aug 16 16:37:38 2017 : Debug: reading pairlist file /etc/raddb/mods-config/files/authorize
Wed Aug 16 16:37:38 2017 : Error: /etc/raddb/mods-config/files/authorize[5]: Parse error (reply) for entry test: Expected end of line or comma
Wed Aug 16 16:37:38 2017 : Error: Failed reading /etc/raddb/mods-config/files/authorize
Wed Aug 16 16:37:38 2017 : Error: /etc/raddb/mods-enabled/files[9]: Instantiation failed for module "files"

ベストアンサー1

数時間多くのインターネット検索を行った後。
承認フレーズを詳しく見て、この問題を解決しました。

bob Cleartext-Password := "hello"
    Reply-Message := "Hello, %{User-Name}"

test    Cleartext-Password := "test"
    Reply-Message := "Hello, %{User-Name}

問題は、"テストユーザーに末尾がないことです。
エラーをインターネットで検索しても有用な回答が得られませんでした。

Error: /etc/raddb/mods-config/files/authorize[5]: Parse error (reply) for entry test: Expected end of line or comma

"足りないコンテンツを追加しましたが、%{User-Name}"すべてがうまくいきます。

test    Cleartext-Password := "test"
    Reply-Message := "Hello, %{User-Name}"

今後はこの方法で時間を節約できることを願っています。

$ radtest "test" test 127.0.0.1 1812  testing123
Sent Access-Request Id 25 from 0.0.0.0:59986 to 127.0.0.1:1812 length 74
    User-Name = "test"
    User-Password = "test"
    NAS-IP-Address = 127.0.1.1
    NAS-Port = 1812
    Message-Authenticator = 0x00
    Cleartext-Password = "test"
Received Access-Accept Id 25 from 127.0.0.1:1812 to 0.0.0.0:0 length 33
    Reply-Message = "Hello, test"

おすすめ記事