Exciting News! Coming soon, our support community will have a new look and feel. There won't be any changes to your favorite features, but you can look forward to an exciting new experience. Stay tuned for more information!
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Anonymous
Not applicable

Needing to drop packets ingress and egress.

Jump to solution

I have a 4430 that is used for 802.1Q routing only. The firewall is not active. Using AOS is their a way to drop packets from/to specific IP addresses.

Example

drop from 0.0.0.0 0.0.0.0 to 98.98.98.98 255.255.255.255

drop from 98.98.98.98 255.255.255.255 to 0.0.0.0 0.0.0.0

Labels (1)
0 Kudos
1 Solution

Accepted Solutions
jayh
Honored Contributor
Honored Contributor

Re: Needing to drop packets ingress and egress.

Jump to solution

If you just don't want a specific IP or subnet to pass through the device you can null-route it without invoking the firewall.

Your example above would be configured with:

ip route 98.98.98.98 255.255.255.255 null 0

View solution in original post

2 Replies
jayh
Honored Contributor
Honored Contributor

Re: Needing to drop packets ingress and egress.

Jump to solution

If you just don't want a specific IP or subnet to pass through the device you can null-route it without invoking the firewall.

Your example above would be configured with:

ip route 98.98.98.98 255.255.255.255 null 0

Anonymous
Not applicable

Re: Needing to drop packets ingress and egress.

Jump to solution

This is good to know, jayh.