NLB 配下 EC2 の secure ログに "Did not receive identification string from<IP addresses>" が出力される原因と対処法

NLB 配下 EC2 の secure ログに "Did not receive identification string from<IP addresses>" が出力される原因と対処法

Clock Icon2024.12.07

この記事は アノテーション株式会社 AWS Technical Support Advent Calendar 2024 | Advent Calendar 2024 - Qiita 7日目の記事です。

困っていること

NLB を経由して Linux OS の EC2 インスタンスへ SSH 接続をした際に、以下のメッセージが secure ログへ大量に出力されました。
原因と対処法を教えてください。

Did not receive identification string from <IP addresses>

どう対応すればいいの?

原因

当該ログは NLB のヘルスチェックに起因しています。
NLB の TCP によるヘルスチェックでは、3 way handshake による TCP 接続の確立にてターゲットが Healthy であると判定を行います。
ヘルスチェック通信では 3 way handshake 後のデータが送信されず接続が切断されるため、当該ログが出力されます。

対処法

現時点 NLB 側で制御することは叶わないため、/etc/rsyslog.conf を編集して sshd のログを制御する方法をご検討ください。

設定例.1
:msg, contains, "Did not receive identification string from" stop
設定例.2
:msg, regex, "Did not receive identification string from" stop

Amazon Linux 2 : ami-0e56f7ba9d8df2e9f を起動させた際の、デフォルト /etc/rsyslog.conf 状況

/etc/rsyslog.conf
# rsyslog configuration file

# For more information see /usr/share/doc/rsyslog-*/rsyslog_conf.html
# If you experience problems, see http://www.rsyslog.com/doc/troubleshoot.html

#### MODULES ####

# The imjournal module bellow is now used as a message source instead of imuxsock.
$ModLoad imuxsock # provides support for local system logging (e.g. via logger command)
$ModLoad imjournal # provides access to the systemd journal
#$ModLoad imklog # reads kernel messages (the same are read from journald)
#$ModLoad immark  # provides --MARK-- message capability

# Provides UDP syslog reception
#$ModLoad imudp
#$UDPServerRun 514

# Provides TCP syslog reception
#$ModLoad imtcp
#$InputTCPServerRun 514

#### GLOBAL DIRECTIVES ####

# Where to place auxiliary files
$WorkDirectory /var/lib/rsyslog

# Use default timestamp format
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat

# File syncing capability is disabled by default. This feature is usually not required,
# not useful and an extreme performance hit
#$ActionFileEnableSync on

# Include all config files in /etc/rsyslog.d/
$IncludeConfig /etc/rsyslog.d/*.conf

# Turn off message reception via local log socket;
# local messages are retrieved through imjournal now.
$OmitLocalLogging on

# File to store the position in the journal
$IMJournalStateFile imjournal.state

#### RULES ####

"/etc/rsyslog.conf" [readonly] 91L, 3232B     

参考資料

一部のログファイルは、rsyslogd という名前のデーモンによって制御されます。

以下は、プロパティーベースのフィルター例です。これは、/etc/rsyslog.conf で指定できます。syslog メッセージのテキストに文字列 error が含まれているものを選択するには、以下を使用します。
:msg, contains, "error"

以下のフィルターは、ホスト名 host1 から受信した syslog メッセージを選択します。

:hostname, isequal, "host1"

(fatal lib error など) fatal と error の間にテキストがあるかどうかに関わらず、これらを含まない syslog メッセージを選択するには、以下を入力します。

:msg, !regex, "fatal .* error"

Share this article

facebook logohatena logotwitter logo

© Classmethod, Inc. All rights reserved.