在我的瞻博路由器 MX480 的防火墙过滤器中DENY-EMAIL-PORT
:
dele@MX-RE0# show firewall filter DENY-EMAIL-PORT
term ALLOW-IP {
from {
address {
102.100.100.1/32;
}
}
then accept;
}
term DENY-EMAIL {
from {
port [ 25 109 110 143 465 587 993 994 995 ];
}
then {
discard;
}
}
term default {
then accept;
}
你看我已经禁止那些电子邮件端口,例如25
, 143
。
我还在 DENY-EMAIL 术语之前插入了 ALLOW-IP 术语。所以,我的疑问是102.100.100.1/32
电子邮件端口是否仍会被拒绝?