<?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 Re: Cannot stopped users connect to Internet Using ASA in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627623#M595171</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Jennifer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy your Journey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Jan 2011 10:39:20 GMT</pubDate>
    <dc:creator>zain_gabon</dc:creator>
    <dc:date>2011-01-06T10:39:20Z</dc:date>
    <item>
      <title>Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627616#M595143</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have an ASA installed on my network connected to Internet.&lt;/P&gt;&lt;P&gt;I have also Windows Active Directory with users created.&lt;/P&gt;&lt;P&gt;All users connected to Internet at every time&lt;/P&gt;&lt;P&gt;i want to allowed internet by time and stopped certain users,&lt;/P&gt;&lt;P&gt;Can ASA do it with AD?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Happy New Years&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 19:30:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627616#M595143</guid>
      <dc:creator>zain_gabon</dc:creator>
      <dc:date>2019-03-11T19:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627617#M595150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, unfortunately you can't integrate ASA with AD for that purpose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 09:23:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627617#M595150</guid>
      <dc:creator>Jennifer Halim</dc:creator>
      <dc:date>2011-01-06T09:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627618#M595155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the answers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what can i do to stop all users to access Internet any time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 09:36:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627618#M595155</guid>
      <dc:creator>zain_gabon</dc:creator>
      <dc:date>2011-01-06T09:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627619#M595159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create an access-list to stop users from using the Internet, and apply that to the inside interface of the ASA where the users are connected to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you just want to stop web browsing traffic to the Internet, and still allow other type of traffic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do, then here is a sample config of how you can configure it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list inside-acl deny tcp &lt;USER-SUBNET&gt; &lt;MASK&gt; any eq 80&lt;BR /&gt;&lt;/MASK&gt;&lt;/USER-SUBNET&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list inside-acl deny tcp &lt;USER-SUBNET&gt; &lt;MASK&gt; any eq 443&lt;/MASK&gt;&lt;/USER-SUBNET&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list inside-acl permit ip any any&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you already have access-list applied to the inside interface, you can just add to the existing ACL. Just make sure that the "deny" line is above the permit line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have no access-list applied to the inside interface, then you would need to apply it:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-group inside-acl in interface inside&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hope that answers your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 09:43:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627619#M595159</guid>
      <dc:creator>Jennifer Halim</dc:creator>
      <dc:date>2011-01-06T09:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627620#M595163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Further to that, you can also use the time-range to specify time that you would like user to be blocked or to be permitted from browsing the Internet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would need to configure the time-range first, then apply that to your access-list line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the command reference for time-range:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/t.html#wp1527837"&gt;http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/t.html#wp1527837&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and within the time-range, you would need to configure either "absolute" time or "periodic" time:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;absolute: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/a1.html#wp1558494"&gt;http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/a1.html#wp1558494&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;periodic: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/p.html#wp1915163"&gt;http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/p.html#wp1915163&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and apply to the access-list accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;For example&lt;/STRONG&gt;&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;If you would like to allow users to browse the Internet between 13:00-14:00 on weekdays, then you can configure the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;time-range internet-time&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; periodic weekdays 13:00 to 14:00&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list inside-acl permit tcp &lt;USER-SUBNET&gt; &lt;MASK&gt; any eq 80 time-range internet-time&lt;BR /&gt;&lt;/MASK&gt;&lt;/USER-SUBNET&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list inside-acl permit tcp &lt;USER-SUBNET&gt; &lt;MASK&gt; any eq 443 time-range internet-time&lt;BR /&gt;&lt;/MASK&gt;&lt;/USER-SUBNET&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 09:49:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627620#M595163</guid>
      <dc:creator>Jennifer Halim</dc:creator>
      <dc:date>2011-01-06T09:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627621#M595166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Jen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i apply an ACL on inside interface, i will block all users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to only block non important users accessing internet during working hours, and keep internet access to all directors for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 10:09:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627621#M595166</guid>
      <dc:creator>zain_gabon</dc:creator>
      <dc:date>2011-01-06T10:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627622#M595169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you would need to configure the user ip addresses, or user subnet in the access-list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 10:26:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627622#M595169</guid>
      <dc:creator>Jennifer Halim</dc:creator>
      <dc:date>2011-01-06T10:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627623#M595171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Jennifer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy your Journey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 10:39:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627623#M595171</guid>
      <dc:creator>zain_gabon</dc:creator>
      <dc:date>2011-01-06T10:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627624#M595174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers, pls kindly mark the post as answered if you have no further question. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 11:10:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627624#M595174</guid>
      <dc:creator>Jennifer Halim</dc:creator>
      <dc:date>2011-01-06T11:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot stopped users connect to Internet Using ASA</title>
      <link>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627625#M595178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Jen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answers Done&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 13:04:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/cannot-stopped-users-connect-to-internet-using-asa/m-p/1627625#M595178</guid>
      <dc:creator>zain_gabon</dc:creator>
      <dc:date>2011-01-06T13:04:01Z</dc:date>
    </item>
  </channel>
</rss>

