<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Cisco ASA 5512x - Restrict email delivery to ip address range.. in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134241#M391962</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Makes sense.&amp;nbsp; I'm all about less clutter.&amp;nbsp; Thanks Jouni!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 03 Feb 2013 17:52:53 GMT</pubDate>
    <dc:creator>asmitherman</dc:creator>
    <dc:date>2013-02-03T17:52:53Z</dc:date>
    <item>
      <title>Cisco ASA 5512x - Restrict email delivery to ip address range..</title>
      <link>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134237#M391955</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering how to tighten the security of my email delivery to a range of ip addresses (I know how on my old firewall but the cisco is quite a bit different).&amp;nbsp; Right now anyone sending email to a particular ip address on my firewall can do so.&amp;nbsp; I want to restrict that to two ip address ranges it will accept deliver from.&amp;nbsp; I'm thinking I need two network objects for the two ranges then add to a network object group.&amp;nbsp; Can anyone help with configuring the ACL for delivery using that group if I'm correct about that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Al&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 00:55:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134237#M391955</guid>
      <dc:creator>asmitherman</dc:creator>
      <dc:date>2019-03-12T00:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ASA 5512x - Restrict email delivery to ip address rang</title>
      <link>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134238#M391957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume that you have a server or multiple servers on your network behind the ASA and want to restrict SMTP traffic to them and only allow SMTP traffic from certain address ranges?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have something like this configured for the server Static NATs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objec network SMTP-SERVER1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; host 10.10.10.10&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; (dmz,outside) static x.x.x.x dns&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network SMTP-SERVER2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; host 10.10.10.20&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; (dmz,outside) static y.y.y.y dns&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so you could simply create the following kind of configurations to restrict traffic to them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object-group network SMTP-SERVERS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; network-object object SMTP-SERVER1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; network-object object SMTP-SERVER2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object-group network ALLOWED-SMTP-SOURCE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; network-object &lt;NETWORK address=""&gt; &lt;MASK&gt;&lt;/MASK&gt;&lt;/NETWORK&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; network-object &lt;NETWORK address=""&gt; &lt;MASK&gt;&lt;/MASK&gt;&lt;/NETWORK&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;network-object host &lt;HOST address=""&gt;&lt;BR /&gt;&lt;/HOST&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list OUTSIDE-IN remark Allowed SMTP connections&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list OUTSIDE-IN permit tcp object-group ALLOWED-SMTP-SOURCE object-group SMTP-SERVERS eq smtp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-group OUTSIDE-IN in interface outside&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above configuration does the following&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Has 2 example Static NAT configurations for local DMZ servers&lt;/LI&gt;&lt;LI&gt;Groups those 2 servers to their own object-group SMTP-SERVERS (for easier use in the ACLs)&lt;/LI&gt;&lt;LI&gt;Creates an object-group that will contain all the public networks and host addresses that are allowed to contact your SMTP servers (for easier use in the ACLs)&lt;/LI&gt;&lt;LI&gt;Configures an ACL that allows SMTP (TCP/25) connections from "outside" only if the source network for the connection belongs to some address range on the ALLOWED-SMTP-SOURCE object-group and when the destination is either one of your SMTP servers.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naturally the above object/object-group, access-list and interface names could be different and same for the actual IP addresses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if you already have an ACL attached to your "outside" interface then naturally you use that and DONT NEED the "access-group" command above. (As its used to attach an ACL to interface which doesnt already have one attached)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Feb 2013 16:41:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134238#M391957</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-02-03T16:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ASA 5512x - Restrict email delivery to ip address rang</title>
      <link>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134239#M391960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Journi, thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd kinda figured that after poking around a bit&lt;/P&gt;&lt;P&gt;I'm already restricting my outbound email to those same ip's with a group (&lt;STRONG&gt;outbound_email&lt;/STRONG&gt;) from my server (&lt;STRONG&gt;mail_server&lt;/STRONG&gt;).&lt;/P&gt;&lt;P&gt;Presently the acl I have for inbound looks like the below:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list outside_acl_in extended permit tcp any object mail_server eq smtp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I could change that to be:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list outside_acl_in extended permit tcp object-group outbound_email object mail_server eq smtp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Granted I may want to duplicate my ip range group and rename it to &lt;STRONG&gt;inbound_email&lt;/STRONG&gt;.&amp;nbsp; Having in and out both being named the same may cause confusion for anyone else working on it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Makes sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Feb 2013 17:14:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134239#M391960</guid>
      <dc:creator>asmitherman</dc:creator>
      <dc:date>2013-02-03T17:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ASA 5512x - Restrict email delivery to ip address rang</title>
      <link>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134240#M391961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest creating a new "object-group" for the allowed address range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I avoid using the same "object-group" multiple times unless the enviroment is an easy one. I dont want to run into a situation where I might change something I was not meant to do. Nothing prevents you from using the same but as you said yourself, it might cause confusion later on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to keep the "object-group" to a minumum I would suggest creating an "object-group" that is named logically when used for both purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could be something like "object-group network ALLOWED-SMTP" which doesnt really state which direction its meant to be used on the ACL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Feb 2013 17:17:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134240#M391961</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-02-03T17:17:36Z</dc:date>
    </item>
    <item>
      <title>Cisco ASA 5512x - Restrict email delivery to ip address range..</title>
      <link>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134241#M391962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Makes sense.&amp;nbsp; I'm all about less clutter.&amp;nbsp; Thanks Jouni!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Feb 2013 17:52:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cisco-asa-5512x-restrict-email-delivery-to-ip-address-range/m-p/2134241#M391962</guid>
      <dc:creator>asmitherman</dc:creator>
      <dc:date>2013-02-03T17:52:53Z</dc:date>
    </item>
  </channel>
</rss>

