Wiresharkを使用してvirtualbox(OS:Linux Mint 19.1 Tessa)内のいくつかのプロトコル(ARP、NDPなど)を分析し、「Network Time Control」同期を無効にしようとしています。
yuza@VirtualBox:~$ sudo timedatectl set-ntp off && timedatectl status
Local time: Fri 2019-04-12 09:59:28 CEST
Universal time: Fri 2019-04-12 07:59:28 UTC
RTC time: Fri 2019-04-12 07:59:29
Time zone: Europe/Vienna (CEST, +0200)
System clock synchronized: yes
systemd-timesyncd.service active: no
RTC in local TZ: no
それにもかかわらず、WiresharkはまだNTPトラフィックを頻繁にキャプチャします。
私はワイヤーシャークを知っていますキャプチャフィルタそしてフィルタ表示。
しかし、なぜNTP無効化が利用できないのか疑問に思いますsudo timedatectl set-ntp off
。
編集する:
クロニーがインストールされていません。
yuza@VirtualBox:~$ apt policy chrony | grep Installed
Installed: (none)
UDPポート123のプロセスで開かれたファイルのリスト:
yuza@VirtualBox:~$ sudo lsof -iUDP:123
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ntpd 716 ntp 16u IPv6 19895 0t0 UDP *:ntp
ntpd 716 ntp 17u IPv4 19900 0t0 UDP *:ntp
ntpd 716 ntp 18u IPv4 19904 0t0 UDP localhost:ntp
ntpd 716 ntp 19u IPv6 19906 0t0 UDP ip6-localhost:ntp
ntpd 716 ntp 23u IPv4 22229 0t0 UDP VirtualBox:ntp
ntpd 716 ntp 24u IPv6 22232 0t0 UDP VirtualBox:ntp
答え1
ついに問題が見つかりました。さらに
、コマンド
sudo timedatectl set-ntp off
を実行する必要があります
sudo /etc/init.d/ntp stop
。これにより、sudo lsof -iUDP:123
以前にアクティブ化されたUDP-port-123プロセスが表示されなくなります。そして、WiresharkはもはやNTPトラフィックをキャプチャしません。
yuza@VirtualBox:~$ sudo /etc/init.d/ntp status | grep "Active:"
Active: active (running) since Tue 2019-04-16 14:58:03 CEST; 5s ago
yuza@VirtualBox:~$ sudo /etc/init.d/ntp stop
[ ok ] Stopping ntp (via systemctl): ntp.service.
yuza@VirtualBox:~$ sudo /etc/init.d/ntp status | grep "Active:"
Active: inactive (dead) since Tue 2019-04-16 14:58:14 CEST; 3s ago
yuza@VirtualBox:~$ sudo lsof -iUDP:123
yuza@VirtualBox:~$
ありがとう通信会社ヒントを得るために!