gpt4 book ai didi

linux - 为什么sudo下运行的tcpdump超时不能生效?

转载 作者:可可西里 更新时间:2023-11-01 11:48:34 24 4
gpt4 key购买 nike

我想以 10 秒的时间限制运行 tcpdump 命令。

timeout 10 sudo tcpdump -i eth0 -nn 'host 192.168.1.176'

它不会停止。为什么这里的tcpdumptimeout命令不生效?

最佳答案

问题是 timeout 以您的用户权限运行。 sudo 进程将权限提升到 root(或其他用户),因此 timeout 不允许向子进程发送 SIGTERM。这可以用 strace 显示(我以 # 开头的注释,以及为了便于阅读而留空行):

user$ strace timeout 1 sudo sleep 5
# lots of irrelevant stuff
# here, timeout sets up the timer to get a signal when the child should be terminated
rt_sigprocmask(SIG_UNBLOCK, [ALRM], NULL, 8) = 0
timer_create(CLOCK_REALTIME, {sigev_value={sival_int=1889673072, sival_ptr=0x560c70a21f70}, sigev_signo=SIGALRM, sigev_notify=SIGEV_SIGNAL}, [0]) = 0
timer_settime(0, 0, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=1, tv_nsec=0}}, NULL) = 0
wait4(12320, 0x7ffdfeb0ef0c, 0, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set)

# the signal arrives
--- SIGALRM {si_signo=SIGALRM, si_code=SI_TIMER, si_timerid=0, si_overrun=0, si_value={int=1889673072, ptr=0x560c70a21f70}} ---

# timeout tries to kill the child
kill(12320, SIGTERM) = -1 EPERM (Operation not permitted)
# and gets EPERM!

解决方法是也以 root 权限运行超时。以下将按预期工作:

user$ sudo timeout 1 sleep 5

当然,如果您已经是 root,那么将 timeout 1 放在 sudo 之前还是之后都没有关系命令行。

root$ sudo timeout 1 sleep 5
root$ timeout 1 sudo sleep 5

关于linux - 为什么sudo下运行的tcpdump超时不能生效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41974498/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com