12-13-2004 01:35 PM
We've got two subnets sitting behind a redundant pair of CSS 11050's. I need to block traffic between the two subnets (one contains our stuff, and the other contains stuff we're hosting for another company). I can use an ACL to do this, but it seems that any sort of ACL will prevent servers on either subnet from making outbound passive FTP connections.
Ref: "Understanding and Configuring FTP on the CSS 11000"
Each subnet is on a separate VLAN on the CSS, with a third VLAN for the uplink to the PIX firewall. All traffic between VLANs is bridged through the CSS--no one-arm setups.
Is there any way I can prevent communication between the two internal VLANs while allowing outbound passive FTP from each?
12-13-2004 02:31 PM
Looks like I panicked too soon. The problem appears to only come up if I NAT across the CSS. If I don't NAT, I can do outbound passive FTP and still keep the ACL in place.
12-13-2004 02:48 PM
You can do this by using ACL's and Source Groups separately (i.e. - don't use an ACL to map traffic into a Source Group). Ex:
VLAN10 = 10.10.10.0/24
Services: VLAN10-1, VLAN10-2
VLAN11 = 10.10.11.0/24
Services: VLAN11-1, VLAN11-2
!--Write some ACL's to block traffic
acl 10
clause 5 deny any 10.10.10.0 255.255.255.0 destination 10.10.11.0 255.255.255.0
clause 10 permit any any destination any
apply circuit-(VLAN10)
acl 11
clause 5 deny any 10.10.11.0 255.255.255.0 destination 10.10.10.0 255.255.255.0
clause 10 permit any any destination any
apply circuit-(VLAN11)
!--Create some src groups to NAT outbound traffic
group VLAN10
vip address x.x.x.x
add service VLAN10-1
add service VLAN10-2
active
group VLAN11
vip address y.y.y.y
add service VLAN11-1
add service VLAN11-2
active
~Zach
12-13-2004 03:05 PM
Thank you. That's the last piece of the puzzle.
-Mark
12-13-2004 03:39 PM
Hi Mark,
It also looks like the behavior described in the document you referenced (not being able to use an ACL to assign ftp pasv traffic to a src group) was the result of a bug (id CSCdv02486). This was fixed in the 04.01.046, 05.00.021 and 05.01.010 code trains.
~Zach
12-14-2004 06:37 AM
Well, that's interesting. I'm using 6.10.304 on the CSS.
Thanks again for your help.
-Mark
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide