web-dev-qa-db-ja.com

LLMNRを完全に無効にする方法

デフォルトでは、LLMNR=yes/etc/systemd/resolved.confが設定されている場合、ポートバインディングは次のとおりです(netstat -l -p -a -nを使用):

tcp        0      0 0.0.0.0:5355            0.0.0.0:*               LISTEN      8214/systemd-resolv
tcp6       0      0 :::5355                 :::*                    LISTEN      8214/systemd-resolv
udp        0      0 0.0.0.0:5355            0.0.0.0:*                           8214/systemd-resolv
udp6       0      0 :::5355                 :::*                                8214/systemd-resolv

LLMNR=no/etc/systemd/resolved.confが設定されている場合、次のバインディングがまだあります。

udp        0      0 0.0.0.0:5355            0.0.0.0:*                           8214/systemd-resolv
udp6       0      0 :::5355                 :::*                                8214/systemd-resolv

すべてのLLMNRポートバインディングを完全にバインド解除するにはどうすればよいですか?


システム:Ubuntuサーバー15.04

9
Romain Moreau

/etc/systemd/resolved.confでLLMNR = noを設定した後、以下のコマンドを発行してsystemd解決済みサービスを再起動しようとしましたか?

systemctl restart systemd-resolved.service
8
random helper