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

Example: Configuring a Filter Within a Filter

Define a filter common-filter and configure it into two separate filters:

[edit]
firewall {
filter common-filter {
term t1 {
from {
protocol udp;
port tftp;
}
then {
log;
discard;
}
}
}
filter filter1 {
term term1 {
filter common-filter;
}
}
filter filter2 {
term term1 {
filter common-filter;
}
}
}

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