show firewall family inet filter v4-copp term accept-established { from { protocol tcp; tcp-established; } then { count accept-established; accept; } } term accept-ntp { from { protocol udp; port ntp; } then { policer 500kbps; count accept-ntp; accept; } } term accept-icmpv4 { from { protocol icmp; } then { policer 500kbps; count accept-icmpv4; accept; } } term accept-telnet_ssh { from { source-prefix-list { v4-as48144; } protocol tcp; port [ ssh telnet ]; } then { count accept-telnet_ssh; accept; } } term accept-dns { from { protocol udp; source-port 53; } then { count accept-dns; accept; } } term accept-bgp { from { source-prefix-list { v4-peers; } destination-port bgp; } then { count accept-bgp; accept; } } term accept-snmp { from { source-prefix-list { v4-as48144; } protocol udp; port snmp; } then { count accept-snmp; accept; } } term accept-pim { from { protocol pim; } then { policer 500kbps; count accept-pim; accept; } } term reject-all { then { count reject-all; log; reject administratively-prohibited; } } [edit]