6.8.3. 기존 규칙과 일치하는 패킷 모니터링
nftables
의 추적 기능을 nft monitor 명령과 함께 사용하면 관리자가 규칙과 일치하는 패킷을 표시할 수 있습니다. 이 절차에서는 규칙에 대한 추적을 활성화하고 이 규칙과 일치하는 패킷을 모니터링하는 방법에 대해 설명합니다.
사전 요구 사항
- 카운터를 추가하려는 규칙이 있습니다.
절차 6.23. 기존 규칙과 일치하는 패킷 모니터링
- 핸들을 포함하여 체인에 규칙을 표시합니다.
# nft --handle list chain inet example_table example_chain table inet example_table { chain example_chain { # handle 1 type filter hook input priority filter; policy accept; tcp dport ssh accept # handle 4 } }
- 규칙을 교체하지만
메타
nftrace
set
1
매개변수로 추적 기능을 추가합니다. 다음 예제에서는 이전 단계에서 표시된 규칙을 교체하고 추적을 활성화합니다.# nft replace rule inet example_table example_chain handle 4 tcp dport 22 meta nftrace set 1 accept
- nft monitor 명령을 사용하여 추적을 표시합니다. 다음 예제에서는 명령의 출력을 필터링하여
inet example_table example_chain
이 포함된 항목만 표시합니다.# nft monitor | grep "inet example_table example_chain" trace id 3c5eb15e inet example_table example_chain packet: iif "enp1s0" ether saddr 52:54:00:17:ff:e4 ether daddr 52:54:00:72:2f:6e ip saddr 192.0.2.1 ip daddr 192.0.2.2 ip dscp cs0 ip ecn not-ect ip ttl 64 ip id 49710 ip protocol tcp ip length 60 tcp sport 56728 tcp dport ssh tcp flags == syn tcp window 64240 trace id 3c5eb15e inet example_table example_chain rule tcp dport ssh nftrace set 1 accept (verdict accept) ...
주의추적이 활성화된 규칙 수와 일치하는 트래픽의 양에 따라 nft monitor 명령은 많은 출력을 표시할 수 있습니다. grep 또는 기타 유틸리티를 사용하여 출력을 필터링합니다.