- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2019 08:00 AM
hi
I am trying to configure two netflow destinations on asa 8.2 but only one work
here is my configuration
access-list flow_export_acl extended permit ip any any
access-list flow_export_acl-2 extended permit ip any any
flow-export destination xxxxxxx 10.30.1.45 2055
flow-export destination xxxxxxx 10.30.1.250 9996
flow-export delay flow-create 30
flow-export template timeout-rate 1
class-map flow_export_class
match access-list flow_export_acl
policy-map global_policy
class-map flow_export_class-2
match access-list flow_export_acl-2
class flow_export_class
flow-export event-type all destination 10.30.1.45
class flow_export_class-2
flow-export event-type all destination 10.30.1.250
service-policy flow_export_policy global
after that only the 10.30.1.45 worked and the other one 10.30.1.250 did not work untill I removed class flow_export_class from the policy-map
so what is missing??????
Solved! Go to Solution.
- Labels:
-
Firewalls
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2019 11:00 PM
enough).
access-list netflow-export extended permit ip any any
!
class-map netflow-export-class
match access-list netflow-export
!
policy-map global_policy
class netflow-export-class
flow-export event-type all destination 10.10.150.11 10.10.150.12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2019 11:00 PM
enough).
access-list netflow-export extended permit ip any any
!
class-map netflow-export-class
match access-list netflow-export
!
policy-map global_policy
class netflow-export-class
flow-export event-type all destination 10.10.150.11 10.10.150.12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2019 02:21 AM
Dear Mohammed
many thanks for your help
