OpenBSD 4.9의 방화벽 라인을 OpenBSD 4.7로 변환

OpenBSD 4.9의 방화벽 라인을 OpenBSD 4.7로 변환

OpenBSD 4.9에서 pf와 함께 사용되는 이 라인과 동등한 OpenBSD 4.7은 무엇입니까?

no nat on egress proto udp from 192.168.1.10 port 4672 to any

답변1

이전 규칙이 다음과 같다고 가정합니다.

nat on egress from 192.168.1.0/24 -> (egress)
no nat on egress proto udp from 192.168.1.10 port 4672 to any

새로운 규칙을 사용하여 이를 수행하는 예는 다음과 같습니다.

match out on egress proto udp from 192.168.1.10 port 4672 tag NONAT
match out on egress from 192.168.1.0/24 !tagged NONAT nat-to (egress)

관련 정보