captaintuba
Technical User
I have a site-to-site VPN working from our HQ to an ISP.
All traffic goes down the VPN tunnel and is not natted.
Now I need to stop SMTP traffic destined for the ISP going down the VPN tunnel.
Here's why:
The ISP needs to send reports back using SMTP from a machine in the VPN network. They send all their mail over their Internet link and not down the VPN tunnel.
This is what I think happens:
I end up with asymetric comms.
Incoming mail from the ISP comes from the Internet and our PIX recognises the source as an IP address down the VPN tunnel and sends the reply down the VPN. FOOBAR
My first attempt at a fix was:
I tried to add an ACL with a DENY the SMTP e.g.
I think it did not work because there is a permit statement higher up:
So what can I do?
Do I need to DENY SMTP traffic in my NO-NAT acl too?
Do I need to do some split-tunnel stuff?
Thanks C.T.
P.S. How do you sort out the order of an ACL?
Use notepad - cut & paste? e.g.
Copy the access-list twice into notepad
Add NO to the beginning of each line of the first set of acls
Re-arrange the second set of ACLs into the right order
Conf T cut and paste the ACL back
All traffic goes down the VPN tunnel and is not natted.
Now I need to stop SMTP traffic destined for the ISP going down the VPN tunnel.
Here's why:
The ISP needs to send reports back using SMTP from a machine in the VPN network. They send all their mail over their Internet link and not down the VPN tunnel.
This is what I think happens:
I end up with asymetric comms.
Incoming mail from the ISP comes from the Internet and our PIX recognises the source as an IP address down the VPN tunnel and sends the reply down the VPN. FOOBAR
My first attempt at a fix was:
I tried to add an ACL with a DENY the SMTP e.g.
Code:
access-list VPN deny tcp host X host ISP eq smtp
Code:
access-list VPN permit ip ins.ide.net.0 host ISP
So what can I do?
Do I need to DENY SMTP traffic in my NO-NAT acl too?
Do I need to do some split-tunnel stuff?
Thanks C.T.
P.S. How do you sort out the order of an ACL?
Use notepad - cut & paste? e.g.
Copy the access-list twice into notepad
Add NO to the beginning of each line of the first set of acls
Re-arrange the second set of ACLs into the right order
Conf T cut and paste the ACL back