From cd8dfadb31dca6a288370fb9e3677549d719ad35 Mon Sep 17 00:00:00 2001 From: yanyx Date: Sun, 7 Jul 2019 23:42:19 +0800 Subject: [PATCH] fix: fix tcpdump syntax error (#123) Signed-off-by: Yixing Yan --- command/tcpdump.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/tcpdump.md b/command/tcpdump.md index 9a067d6a0a..a22dc4e807 100644 --- a/command/tcpdump.md +++ b/command/tcpdump.md @@ -120,7 +120,7 @@ tcpdump -i eth0 dst host hostname 如果想要获取主机210.27.48.1接收或发出的telnet包,使用如下命令 ```shell -tcpdump tcp port 23 host 210.27.48.1 +tcpdump tcp port 23 and host 210.27.48.1 ``` 对本机的udp 123 端口进行监视 123 为ntp的服务端口