cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1025
Views
0
Helpful
2
Replies

ACE access-list and Passive FTP

paul.pink
Level 1
Level 1

Can servers sitting behind the ACE successfully ftp files if the following rules are in place?

access-list word line x extended permit tcp source destination eq 21

access-list word line y extended permit tcp source destination eq 20

With those lines I can establish an FTP session, but unable to transfer files.

With the following statement access-list word line x extended permit ip source destination, passive ftp works?

IS this because the ACE acl does not allow for stateful inspection of an FTP session?

Thank you

1 Accepted Solution

Accepted Solutions

You are right lack of fixup/inspect is the reason for FTP connections to fail.

You need something in line with the following config

class-map match-all FTP-Traffic

2 match port tcp eq ftp

policy-map multi-match xyz

class FTP-Traffic

inspect ftp

Syed Iftekhar Ahmed

View solution in original post

2 Replies 2

You are right lack of fixup/inspect is the reason for FTP connections to fail.

You need something in line with the following config

class-map match-all FTP-Traffic

2 match port tcp eq ftp

policy-map multi-match xyz

class FTP-Traffic

inspect ftp

Syed Iftekhar Ahmed

paul.pink
Level 1
Level 1

Awesome - works like a charm