"syn_sent" ss 또는 netstat 연결 또는 시도했지만 모두 실패한 이러한 명령 중 실시간으로 소켓 상태를 확인하고 싶습니다.
watch netstat -tnaop|grep -i syn
ss -4 state syn
답변1
해결책을 찾았습니다. 이 명령은 완벽하게 작동합니다.
watch "ss -o state syn-sent '( dport = :https or sport = :https )'
이 명령도 잘 작동합니다
while true;do sleep 2s && netstat -napotep|grep SYN_SENT; done