nftables에서 명명된 ICMP 유형 세트 선언 및 사용
unamed set다음은 현재 ICMP 유형을 사용하는 방법에 대한 실제 예입니다. #!/usr/sbin/nft -f add table filter_4 add chain filter_4 icmp_out_4 { comment "Output ICMPv4 traffic" } define response_icmp_4 = { 0, # Echo Reply 3, # Destination Unreachable 10, # Router Solicitation 11, # Time...