[Contents] [Prev] [Next] [Index] [Report an Error]

Example: Accepting Packets with Specific IPv6 TCP Flags

Configure a filter to match on IPv6 TCP flags:

[edit]
firewall {
family inet6 {
filter tcpfilt {
term 1 {
from {
next-header tcp;
tcp-flags syn;
}
then {
count tcp_syn_pkt;
log;
accept;
}
}
}
}
}

[Contents] [Prev] [Next] [Index] [Report an Error]