<?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 Security Levels and VLANs in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014233#M438218</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The security-level describe the trustworthiness of the attached networks. The higher the number, the more trustworthy is the connected network. If inside is your most trusted network, give it 100 (which is default). 0 for outside. If VOIP is nearly as trusted as inside, then 99 is ok. But I still would use 90 so that you later can add am interface between VOIP and inside if you want. DMZ and Public: which is more trustworthy? That one will get the 50, the other the 30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your outside-interface you use no subinterface. That's not considered a best practice as you are using the native vlan for that. On a security-device you better should tag all traffic. You should change that to a subinterface as you have done on Ethernet0/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;nbsp; &lt;BR /&gt;Don't stop after you've improved your network! Improve the world by lending money to the working poor: &lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://www.kiva.org/invitedby/karsteni"&gt;http://www.kiva.org/invitedby/karsteni&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2012 18:01:18 GMT</pubDate>
    <dc:creator>Karsten Iwen</dc:creator>
    <dc:date>2012-10-03T18:01:18Z</dc:date>
    <item>
      <title>Security Levels and VLANs</title>
      <link>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014232#M438217</link>
      <description>&lt;P&gt;When setting up a subinterface for a VLAN...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you set the security level at for the actual interface?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As seen below, I've managed to do two different things.Intially I didn't know what I was doing...bet you hear that alot.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)&amp;nbsp; Ethernet0/1 the actual port and a subinterface on that port becomes VLAN 100.&lt;/P&gt;&lt;P&gt;Probably not supposed to do that, it is working.&amp;nbsp; But they both have different security levels, does one step on the other?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)&amp;nbsp; Ethernet0/3 physical port has no security set, however VLANs 2 and 6 both have different security levels.&lt;/P&gt;&lt;P&gt;I have had it set that the physical port has a security level set, but I find that confusing-- wouldn't that interfere with the security levels on the subinterfaces below it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface Ethernet0/0&lt;/P&gt;&lt;P&gt;nameif Outside&lt;/P&gt;&lt;P&gt;security-level 0&lt;/P&gt;&lt;P&gt;ip address 66.162.230.66 255.255.255.224 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/1&lt;/P&gt;&lt;P&gt;nameif Inside&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;security-level 100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ip address XXX.XXX.3.254 255.255.255.0 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/1.100&lt;/P&gt;&lt;P&gt;vlan 100&lt;/P&gt;&lt;P&gt;nameif VOIP&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;security-level 99&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ip address XX.XX.1.10 255.255.255.0 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/2&lt;/P&gt;&lt;P&gt;shutdown&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/3&lt;/P&gt;&lt;P&gt;speed 100&lt;/P&gt;&lt;P&gt;duplex full&lt;/P&gt;&lt;P&gt;no nameif&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;no security-level&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;no ip address&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/3.2&lt;/P&gt;&lt;P&gt;vlan 2&lt;/P&gt;&lt;P&gt;nameif DMZ&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;security-level 50&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ip address XXX.XXX.30.254 255.255.255.0 &lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Ethernet0/3.6&lt;/P&gt;&lt;P&gt;vlan 6&lt;/P&gt;&lt;P&gt;nameif Public&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;security-level 30&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ip address XXX.XXX.112.254 255.255.255.0&lt;SPAN id="mce_marker"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really what is the best way this should be setup?&amp;nbsp; And do security levels on the physical interface affect the security levels on the subinterfaces?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 00:03:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014232#M438217</guid>
      <dc:creator>gmcvb</dc:creator>
      <dc:date>2019-03-12T00:03:32Z</dc:date>
    </item>
    <item>
      <title>Security Levels and VLANs</title>
      <link>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014233#M438218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The security-level describe the trustworthiness of the attached networks. The higher the number, the more trustworthy is the connected network. If inside is your most trusted network, give it 100 (which is default). 0 for outside. If VOIP is nearly as trusted as inside, then 99 is ok. But I still would use 90 so that you later can add am interface between VOIP and inside if you want. DMZ and Public: which is more trustworthy? That one will get the 50, the other the 30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your outside-interface you use no subinterface. That's not considered a best practice as you are using the native vlan for that. On a security-device you better should tag all traffic. You should change that to a subinterface as you have done on Ethernet0/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;nbsp; &lt;BR /&gt;Don't stop after you've improved your network! Improve the world by lending money to the working poor: &lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://www.kiva.org/invitedby/karsteni"&gt;http://www.kiva.org/invitedby/karsteni&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 18:01:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014233#M438218</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2012-10-03T18:01:18Z</dc:date>
    </item>
    <item>
      <title>Security Levels and VLANs</title>
      <link>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014234#M438219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Re:&amp;nbsp; Outside-interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That never occured then to assign a VLAN to the Outside Interface.&amp;nbsp; I'll have to reconfigure...what...for traffic to flow properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, again, what about the security-level on the physical interface?&amp;nbsp; Does that interfere with the security-level of the subinterfaces below it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 18:09:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014234#M438219</guid>
      <dc:creator>gmcvb</dc:creator>
      <dc:date>2012-10-03T18:09:30Z</dc:date>
    </item>
    <item>
      <title>Security Levels and VLANs</title>
      <link>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014235#M438220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;Also, again, what about the security-level on the physical interface?&amp;nbsp; Does that interfere with the security-level of the subinterfaces below it?&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no, it doesn't matter if it's on the main interface or on a subinterface. The security-level is to classify the firewall-interfaces. Both (on the main interface and on the sub-interface) are firewall-interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;nbsp; &lt;BR /&gt;Don't stop after you've improved your network! Improve the world by lending money to the working poor: &lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://www.kiva.org/invitedby/karsteni"&gt;http://www.kiva.org/invitedby/karsteni&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 18:15:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/security-levels-and-vlans/m-p/2014235#M438220</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2012-10-03T18:15:59Z</dc:date>
    </item>
  </channel>
</rss>

