Hi,
I've created FW filter:
family ethernet-switching {
filter by_dest_ip {
term 1 {
from {
ip-protocol icmp;}
then {
forwarding-class no-loss;
loss-priority high;
}}}}
And port configured:
root# show interfaces xe-0/0/44
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members vl100;
}
filter {
input by_dest_ip;}}}
root# show vlans
vl100 {
vlan-id 100;
l3-interface irb.100;
}
root# show interfaces irb
unit 100 {
family inet {
address 4.0.0.1/24;}}
IP 4.0.0.10 sits behind switch and ping works id from stranza is deactivated.
If I remove destination address and set from ip-protocol icmp ping doesnot work too.
Can I classify traffic on edge port somehow by port proto and destination IP?