BIG NEWS! The Adtran Support Community is moving! In the next few weeks it will be housed in a new location. Be sure to visit our NEW Adtran Community before the end of July to check it out and verify that you can access all the resources and features that you need. If you discover any issues with your account or access, or just want to let us know about your experience, be sure to use our Feedback Form to let us know!
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.