user@sw> ping 192.168.1.1 PING 192.168.1.1 (192.168.1.1): 56 data bytes --- 192.168.1.1 ping statistics --- 5 packets transmitted, 0 packets received, 100% packet loss
Ensure that the loopback filter (lo0 filter) is configured to allow ICMP (or other required protocols) destined to the device. This enables the routing engine to process and respond to the traffic.
set firewall family inet filter lo0-in term allow-icmp from protocol icmp set firewall family inet filter lo0-in term allow-icmp then accept set firewall family inet filter lo0-in term default then discardNote: this is an example configuration, further design and requirements will need to take in consideration for this config
ping 192.168.1.1
Expected result:
user@sw> ping 192.168.1.1 PING 192.168.1.1 (192.168.1.1): 56 data bytes 64 bytes from 192.168.1.1: icmp_seq=0 ttl=64 time=1.234 ms
64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=1.234 ms
07/29/2026-rchacon-KB creation