<?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 Hello in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/how-to-configure-bwth-restriction-on-7200/m-p/1825331#M937339</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;You might accomplish this using an EEM applet, like this:&lt;/P&gt;

&lt;PRE&gt;
event manager applet SHUT_IF_BW_ABOVE_100
 event tag 1.0 timer watchdog time 5
 action 1.0 info type interface-names regexp "Fa|Gi|Tu"
 action 1.1 foreach _iface "$_info_interface_names"
 action 1.1.1  cli command "show interfaces $_iface | i output rate"
 action 1.1.2  set bw "0"
 action 1.1.3  set result "none"
 action 1.1.4  regexp "5 minute output rate ([0-9]+)" "$_cli_result" result bw
 action 1.1.5.01  if $bw gt "100000000"
 action 1.1.5.02   puts "Interface $_iface is above 100Mbps ($bw)"
 action 1.1.5.03   cli command "enable"
 action 1.1.5.04   cli command "config t"
 action 1.1.5.05   cli command "interface $_iface"
 action 1.1.5.06   cli command "shutdown"
 action 1.1.5.07   cli command "end"
 action 1.1.5.08  else
 action 1.1.5.09   puts "Interface $_iface is below 100Mbps ($bw)"
 action 1.1.5.10 end
 action 1.2 end
 action 1.3   exit&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The above script will retrieve a list of all interfaces (matching Fa or Gi or Tu in the interface name) every 5 seconds and get the current output rate from the show interfaces command. If this value is above 100Mbps then the interface is shutdown. Every 5 seconds an output is for all interfaces is given which shows the bandwidth utilization. The interfaces are not "un-shut" once the bandwidth returns to normal. You can modify this according to your needs, I'm sure you get the idea.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Martin&lt;/P&gt;</description>
    <pubDate>Mon, 17 Aug 2015 11:21:47 GMT</pubDate>
    <dc:creator>Martin Hruby</dc:creator>
    <dc:date>2015-08-17T11:21:47Z</dc:date>
    <item>
      <title>how to configure BWth restriction on 7200</title>
      <link>https://community.cisco.com/t5/network-security/how-to-configure-bwth-restriction-on-7200/m-p/1825330#M937338</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like some help in configuring interfaces on a 7200.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ideally is there anyway you can configure any interface to auto shutdown if a bandwidth limit has been reached?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As far as I am aware I can configure the following command to drop packets:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;rate-limit output 10000000 2000 2000 conform-action continue exceed-action drop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however I would like the interface if possible to be shutdown.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have seen a TCL script available (TCP_Syn_Flow_Detection.tar) that will carry out this action if the Syn flow of TCP packets has hit a certain limit however not sure if this will suffice....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help anyone can give me would be most appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Router config is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#sh run&lt;/P&gt;&lt;P&gt;Building configuration...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current configuration : 30077 bytes&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;! Last configuration change at 19:22:26 UTC Tue Nov 29 2011 by support&lt;/P&gt;&lt;P&gt;! NVRAM config last updated at 19:22:28 UTC Tue Nov 29 2011 by support&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;upgrade fpd auto&lt;/P&gt;&lt;P&gt;version 12.4&lt;/P&gt;&lt;P&gt;service timestamps debug datetime msec localtime&lt;/P&gt;&lt;P&gt;service timestamps log datetime msec localtime&lt;/P&gt;&lt;P&gt;service password-encryption&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;hostname THN-7201-A&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;boot-start-marker&lt;/P&gt;&lt;P&gt;boot-end-marker&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;logging message-counter syslog&lt;/P&gt;&lt;P&gt;enable secret 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxx&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;no aaa new-model&lt;/P&gt;&lt;P&gt;clock summer-time GB recurring last Sun Mar 2:00 last Sun Oct 2:00&lt;/P&gt;&lt;P&gt;ip source-route&lt;/P&gt;&lt;P&gt;ip cef&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;no ipv6 cef&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;multilink bundle-name authenticated&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;memory-size iomem 0&lt;/P&gt;&lt;P&gt;username support secret 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&lt;/P&gt;&lt;P&gt;archive&lt;/P&gt;&lt;P&gt;log config&lt;/P&gt;&lt;P&gt;&amp;nbsp; hidekeys&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;path t&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="ftp://xx.xxx.xxx.xx/SIPCOM/THN-7201-A" target="_blank"&gt;ftp://xx.xxx.xxx.xx/SIPCOM/THN-7201-A&lt;/A&gt;&lt;/P&gt;&lt;P&gt;write-memory&lt;/P&gt;&lt;P&gt;time-period 1440&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip ftp username sipcom_backup&lt;/P&gt;&lt;P&gt;ip ftp password 7 xxxxxxxxxxxxxxxxxxxxxxxx&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Loopback0&lt;/P&gt;&lt;P&gt;ip address xx.xxx.xxx.x 255.255.255.255&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Tunnel0&lt;/P&gt;&lt;P&gt;bandwidth 100000&lt;/P&gt;&lt;P&gt;ip address xx.xxx.xxx.x 255.255.255.252&lt;/P&gt;&lt;P&gt;keepalive 10 3&lt;/P&gt;&lt;P&gt;tunnel source FastEthernet0/0&lt;/P&gt;&lt;P&gt;tunnel destination xxx.xxx.x.xx&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Tunnel64&lt;/P&gt;&lt;P&gt;bandwidth 2000&lt;/P&gt;&lt;P&gt;ip address xxx.xx.xx.x 255.255.255.252&lt;/P&gt;&lt;P&gt;keepalive 10 3&lt;/P&gt;&lt;P&gt;tunnel source GigabitEthernet0/1&lt;/P&gt;&lt;P&gt;tunnel destination xxx.xxx.xxx.xxx&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface FastEthernet0/0&lt;/P&gt;&lt;P&gt;description TATA CCT 347764&lt;/P&gt;&lt;P&gt;ip address xxx.xxx.x.xx 255.255.255.252&lt;/P&gt;&lt;P&gt;ip access-group SIPCOM_VOICERECORD_IN in&lt;/P&gt;&lt;P&gt;ip nat outside&lt;/P&gt;&lt;P&gt;ip virtual-reassembly&lt;/P&gt;&lt;P&gt;duplex full&lt;/P&gt;&lt;P&gt;speed 100&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/0&lt;/P&gt;&lt;P&gt;description THN PRIVATE&lt;/P&gt;&lt;P&gt;ip address xx.xxx.xxx.xxx 255.255.255.128&lt;/P&gt;&lt;P&gt;ip virtual-reassembly&lt;/P&gt;&lt;P&gt;duplex auto&lt;/P&gt;&lt;P&gt;speed 1000&lt;/P&gt;&lt;P&gt;media-type rj45&lt;/P&gt;&lt;P&gt;negotiation auto&lt;/P&gt;&lt;P&gt;standby 0 ip xx.xxx.xxx.xxx&lt;/P&gt;&lt;P&gt;standby 0 preempt&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/1&lt;/P&gt;&lt;P&gt;description VTL LINK 1&lt;/P&gt;&lt;P&gt;ip address xxx.xxx.xx.xx 255.255.255.252&lt;/P&gt;&lt;P&gt;ip access-group 101 in&lt;/P&gt;&lt;P&gt;ip flow ingress&lt;/P&gt;&lt;P&gt;ip nat outside&lt;/P&gt;&lt;P&gt;ip virtual-reassembly&lt;/P&gt;&lt;P&gt;duplex full&lt;/P&gt;&lt;P&gt;speed 1000&lt;/P&gt;&lt;P&gt;media-type rj45&lt;/P&gt;&lt;P&gt;negotiation auto&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/2&lt;/P&gt;&lt;P&gt;description BT IPEX LINK 1&lt;/P&gt;&lt;P&gt;ip address xx.xxx.xxx.xxx 255.255.255.248&lt;/P&gt;&lt;P&gt;ip virtual-reassembly&lt;/P&gt;&lt;P&gt;duplex full&lt;/P&gt;&lt;P&gt;speed 1000&lt;/P&gt;&lt;P&gt;negotiation auto&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/3&lt;/P&gt;&lt;P&gt;description THN PUBLIC&lt;/P&gt;&lt;P&gt;ip address xx.xxx.xxx.x 255.255.255.128&lt;/P&gt;&lt;P&gt;ip access-group 117 in&lt;/P&gt;&lt;P&gt;ip nat inside&lt;/P&gt;&lt;P&gt;ip virtual-reassembly&lt;/P&gt;&lt;P&gt;duplex auto&lt;/P&gt;&lt;P&gt;speed auto&lt;/P&gt;&lt;P&gt;negotiation auto&lt;/P&gt;&lt;P&gt;standby 1 ip xx.xxx.xxx.x&lt;/P&gt;&lt;P&gt;standby 1 preempt&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Group-Async0&lt;/P&gt;&lt;P&gt;physical-layer async&lt;/P&gt;&lt;P&gt;no ip address&lt;/P&gt;&lt;P&gt;encapsulation slip&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;router eigrp 200&lt;/P&gt;&lt;P&gt;redistribute connected metric 1500 0 1 255 1500 route-map EIGRP-TUNNEL&lt;/P&gt;&lt;P&gt;network xx.xxx.xxx.xxx 0.0.0.0&lt;/P&gt;&lt;P&gt;network xx.xxx.xxx.x 0.0.0.0&lt;/P&gt;&lt;P&gt;no auto-summary&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;router ospf 100&lt;/P&gt;&lt;P&gt;log-adjacency-changes&lt;/P&gt;&lt;P&gt;redistribute connected subnets&lt;/P&gt;&lt;P&gt;network xx.xx.x.x 0.0.0.255 area 0&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;router bgp 47631&lt;/P&gt;&lt;P&gt;bgp log-neighbor-changes&lt;/P&gt;&lt;P&gt;neighbor xx.xxx.xxx.xxx remote-as 47631&lt;/P&gt;&lt;P&gt;neighbor xxx.xxx.x.xx remote-as 6453&lt;/P&gt;&lt;P&gt;neighbor xxx.xxx.xx.xx remote-as 8190&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;address-family ipv4&lt;/P&gt;&lt;P&gt;&amp;nbsp; redistribute connected route-map SIPCOM&lt;/P&gt;&lt;P&gt;&amp;nbsp; redistribute static&lt;/P&gt;&lt;P&gt;&amp;nbsp; neighbor xx.xxx.xxx.xxx activate&lt;/P&gt;&lt;P&gt;&amp;nbsp; neighbor xx.xxx.xxx.xxx next-hop-self&lt;/P&gt;&lt;P&gt;&amp;nbsp; neighbor xxx.xxx.x.xx activate&lt;/P&gt;&lt;P&gt;&amp;nbsp; neighbor xxx.xxx.x.xx weight 100&lt;/P&gt;&lt;P&gt;&amp;nbsp; neighbor xxx.xxx.xx.xx activate&lt;/P&gt;&lt;P&gt;&amp;nbsp; neighbor xxx.xxx.xx.xx weight 200&lt;/P&gt;&lt;P&gt;&amp;nbsp; no auto-summary&lt;/P&gt;&lt;P&gt;&amp;nbsp; no synchronization&lt;/P&gt;&lt;P&gt;&amp;nbsp; network xx.xxx.xxx.0 mask 255.255.248.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; network xx.xxx.xxx.0 mask 255.255.255.0&lt;/P&gt;&lt;P&gt;exit-address-family&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip forward-protocol nd&lt;/P&gt;&lt;P&gt;ip route x.x.x.x 0.0.0.0 xxx.xxx.xx.xx 10&lt;/P&gt;&lt;P&gt;ip route xx.x.x.x 255.255.0.0 xx.xxx.224.254&lt;/P&gt;&lt;P&gt;ip route xx.x.xx.176 255.255.255.255 195.219.0.13&lt;/P&gt;&lt;P&gt;ip route xx.xxx.224.0 255.255.248.0 FastEthernet0/0&lt;/P&gt;&lt;P&gt;ip route xx.xxx.224.160 255.255.255.224 xx.xxx224.8&lt;/P&gt;&lt;P&gt;ip route xx.xxx.225.0 255.255.255.0 xx.xxx.224.54&lt;/P&gt;&lt;P&gt;ip route xx.xxx.226.16 255.255.255.240 xx.xxx.224.151&lt;/P&gt;&lt;P&gt;ip route xx.xxx.226.128 255.255.255.240 xx.xxx.224.8&lt;/P&gt;&lt;P&gt;ip route xx.xxx.226.228 255.255.255.252 xx.xxx.224.80&lt;/P&gt;&lt;P&gt;ip route xx.xxx.226.248 255.255.255.252 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.226.252 255.255.255.252 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.227.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.228.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.229.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.229.0 255.255.255.224 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.229.240 255.255.255.248 172.16.64.2&lt;/P&gt;&lt;P&gt;ip route xx.xxx.230.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.230.254 255.255.255.255 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.231.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xx.xxx.191.208 255.255.255.248 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xxx.xx6.163.112 255.255.255.255 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xxx.xx6.163.113 255.255.255.255 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xxx.xx.8.0 255.255.255.0 xx.xxx.224.254&lt;/P&gt;&lt;P&gt;ip route xxx.xx.9.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xxx.xx.20.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xxx.xx.0.0 255.255.0.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xxx.xx8.0.5 255.255.255.255 xx.xxx.224.254&lt;/P&gt;&lt;P&gt;ip route xxx.xx8.64.0 255.255.255.0 xxx.xx.xx.2&lt;/P&gt;&lt;P&gt;ip route xxx.xx8.70.0 255.255.255.0 xx.xxx.224.126&lt;/P&gt;&lt;P&gt;ip route xxx.xx.0.0 255.255.0.0 Null0&lt;/P&gt;&lt;P&gt;no ip http server&lt;/P&gt;&lt;P&gt;no ip http secure-server&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip flow-cache timeout active 1&lt;/P&gt;&lt;P&gt;ip flow-export source GigabitEthernet0/3&lt;/P&gt;&lt;P&gt;ip flow-export version 9&lt;/P&gt;&lt;P&gt;ip flow-export destination xxx.xx.x.75 9996&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;no ip nat service skinny tcp port 2000&lt;/P&gt;&lt;P&gt;no ip nat service sip udp port 5060&lt;/P&gt;&lt;P&gt;ip nat inside source list 106 interface GigabitEthernet0/3 overload&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp 172.16.9.20 22 xx.xxx.224.30 22 extendable&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp xxx.xx.x.20 443 xx.xxx.224.30 443 extendable&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp xxx.xx.x.22 22 xx.xxx.224.31 22 extendable&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp xxx.xx.x.22 443 xx.xxx.224.31 443 extendable&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp xxx.xx.x.24 22 xx.xxx.224.32 22 extendable&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp xxx.xx.x.24 443 xx.xxx.224.32 443 extendable&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip access-list standard EIGRP&lt;/P&gt;&lt;P&gt;permit xx.xxx.224.128 0.0.0.127&lt;/P&gt;&lt;P&gt;ip access-list standard SIPCOM&lt;/P&gt;&lt;P&gt;permit xx.xxx.224.0 0.0.7.255&lt;/P&gt;&lt;P&gt;permit xx.xxx.224.0 0.0.0.255&lt;/P&gt;&lt;P&gt;ip access-list standard SIPCOM/21&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.224.0 0.0.0.255&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.225.0 0.0.0.255&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.226.0 0.0.0.255&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.227.0 0.0.0.255&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.228.0 0.0.0.255&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.229.0 0.0.0.255&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.230.0 0.0.0.255&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; xx.xxx.231.0 0.0.0.255&lt;/P&gt;&lt;P&gt;permit xx.xxx.224.0 0.0.0.7&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip access-list extended SIPCOM_VOICERECORD_IN&lt;/P&gt;&lt;P&gt;permit ip host xx.xx.xx.24 host xx.xxx.224.30&lt;/P&gt;&lt;P&gt;permit ip xxx.xxx.x.0 0.0.0.255 host xx.xxx.224.30&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.30&lt;/P&gt;&lt;P&gt;permit ip host xx.xx.xx.24 host xx.xxx.224.31&lt;/P&gt;&lt;P&gt;permit ip xxx.xxx.x.0 0.0.0.255 host xx.xxx.224.31&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.31&lt;/P&gt;&lt;P&gt;permit ip host xx.xx.xx.24 host xx.xxx.224.32&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.32&lt;/P&gt;&lt;P&gt;permit ip host xxx.xxx.xx.101 xx.xxx.226.0 0.0.0.255&lt;/P&gt;&lt;P&gt;permit ip host xxx.xxx.xx.101 any&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip host xxx.xxx.xx.250 any&lt;/P&gt;&lt;P&gt;permit ip host xxx.xxx.xxx.44 any&lt;/P&gt;&lt;P&gt;permit ip host x.xx.xxx.218 any&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip host xxx.xxx.xxx.118 any&lt;/P&gt;&lt;P&gt;permit ip host xxx.xxx.xx.54 any&lt;/P&gt;&lt;P&gt;permit udp any host xx.xxx.224.12 range 50000 59998&lt;/P&gt;&lt;P&gt;permit udp any host xx.xxx.224.17 range 50000 59998&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.xx.215 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.xxx.18 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.xxx.139 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xxx.x.xxx.60 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip host xx.xxx.xxx.222 host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;permit tcp host xxx.xx.xx.146 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.xx.194 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.xxx.116 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit ip host x.x.x.x host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;permit udp any host xx.xxx.224.15 eq tftp&lt;/P&gt;&lt;P&gt;permit udp any host xx.xxx.224.16 eq tftp&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.12 eq 2000&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.15 eq 2000&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.13 eq 2000&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.18 eq 2000&lt;/P&gt;&lt;P&gt;permit udp any host xx.xxx.224.13 eq tftp&lt;/P&gt;&lt;P&gt;permit udp any host xx.xxx.224.18 eq tftp&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.x.x host xx.xxx.224.5 eq 3389&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.x.xxx host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.xxx.xxx host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.xxx.162 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xxx.xxx.x.108 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xxx.xxx.x.13 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.x.82 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.x.76 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xxx.x.xx.185 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xxx.xxx.x.166 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.x.x.33 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.x.242 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 any eq 443&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 any eq www&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 any eq 2208&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 any eq 2206&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 any eq 2220&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 any eq 22&lt;/P&gt;&lt;P&gt;permit ip host x.x.x.7 any&lt;/P&gt;&lt;P&gt;permit ip host x.x.x.189 any&lt;/P&gt;&lt;P&gt;permit ip host x.x.x.41 any&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.x.7&lt;/P&gt;&lt;P&gt;permit ip any xx.xxx.x.160 0.0.0.31&lt;/P&gt;&lt;P&gt;permit tcp host xx.x.x.36 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.227 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.65 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.166 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.124 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.193 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.138 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.98 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.171 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.114 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.153 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.116 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.32 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.59 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.18 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.195 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.28 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.44 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit ip host x.x.x.114 host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.114 host xx.xxx.224.5 eq ftp&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.114 host xx.xxx.224.5 eq ftp-data&lt;/P&gt;&lt;P&gt;permit udp host xx.xxx.224.40 host xx.xxx.224.5 eq 20&lt;/P&gt;&lt;P&gt;permit tcp host xx.xxx.224.40 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit udp host xx.xxx.224.40 host xx.xxx.224.5 eq 21&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.179 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.243 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.15.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.15.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.7.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.7.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.7.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.13&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.14&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.17&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.18&lt;/P&gt;&lt;P&gt;permit tcp x.x.x.0 0.0.1.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.151 host xx.xxx.224.10 eq 22&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.151 host xx.xxx.224.11 eq 22&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.151 host xx.xxx.224.15 eq 22&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.151 host xx.xxx.224.16 eq 22&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.12&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.10 eq www&lt;/P&gt;&lt;P&gt;permit tcp 195.245.230.0 0.0.1.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.10 eq 2208&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.10 eq 443&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.11 eq www&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.11 eq 2208&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.11 eq 443&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.15 eq www&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.15 eq 443&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.16 eq www&lt;/P&gt;&lt;P&gt;permit tcp any host xx.xxx.224.16 eq 443&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.10&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.11&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.15&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.16&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any xx.xxx.x.128 0.0.0.127&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any xx.xxx.x.0 0.0.0.255&lt;/P&gt;&lt;P&gt;permit ip any xx.xxx.x.228 0.0.0.3&lt;/P&gt;&lt;P&gt;deny&amp;nbsp;&amp;nbsp; ip any xx.xxx.x.0 0.0.0.255&lt;/P&gt;&lt;P&gt;permit ip any any&lt;/P&gt;&lt;P&gt;permit tcp host x.x.x.111 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip sla responder&lt;/P&gt;&lt;P&gt;ip sla 10&lt;/P&gt;&lt;P&gt;udp-jitter x.x.x.61 17000&lt;/P&gt;&lt;P&gt;frequency 30&lt;/P&gt;&lt;P&gt;ip sla schedule 10 life 300 start-time after 00:05:00 recurring&lt;/P&gt;&lt;P&gt;ip sla 100&lt;/P&gt;&lt;P&gt;udp-jitter xx.xxx.x.6 50002 source-ip xx.xxx.226.5 source-port 50004&lt;/P&gt;&lt;P&gt;tos 184&lt;/P&gt;&lt;P&gt;tag Tunnel0_Test&lt;/P&gt;&lt;P&gt;frequency 20&lt;/P&gt;&lt;P&gt;ip sla schedule 100 life forever start-time now&lt;/P&gt;&lt;P&gt;ip sla 101&lt;/P&gt;&lt;P&gt;udp-jitter xx.xxx.224.126 50002 source-ip xx.xxx.224.2 source-port 50004&lt;/P&gt;&lt;P&gt;tag Tunnel0_Test&lt;/P&gt;&lt;P&gt;frequency 20&lt;/P&gt;&lt;P&gt;ip sla schedule 101 life forever start-time now&lt;/P&gt;&lt;P&gt;logging alarm informational&lt;/P&gt;&lt;P&gt;access-list 30 permit x.x.0.0 0.0.255.255&lt;/P&gt;&lt;P&gt;access-list 30 permit x.x.x.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 34 permit x.x.x.28&lt;/P&gt;&lt;P&gt;access-list 34 permit xx.xxx.224.42&lt;/P&gt;&lt;P&gt;access-list 34 permit xx.xxx.224.40&lt;/P&gt;&lt;P&gt;access-list 34 permit xxx.xx.x.79&lt;/P&gt;&lt;P&gt;access-list 34 permit xxx.xx.x.75&lt;/P&gt;&lt;P&gt;access-list 34 permit x.x.x.0 0.0.255.255&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.101 any&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip host x.x.x.250 any&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.218 any&lt;/P&gt;&lt;P&gt;access-list 101 permit udp any host xx.xxx.224.12 range 50000 59998&lt;/P&gt;&lt;P&gt;access-list 101 permit udp any host xx.xxx.224.17 range 50000 59998&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.44 any&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any xx.xxx.x.160 0.0.0.31&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip host x.x.x.x host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.x host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.x host xx.xxx.224.80&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.x host xx.xxx.224.80&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; tcp any host xx.xxx.224.80 eq 22&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; tcp any host xx.xxx.224.80 eq www&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; tcp any host xx.xxx.224.81 eq www&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; tcp any host xx.xxx.224.81 eq 22&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; tcp any host xx.xxx.224.81 eq telnet&lt;/P&gt;&lt;P&gt;access-list 101 permit udp any host xx.xxx.224.15 eq tftp&lt;/P&gt;&lt;P&gt;access-list 101 permit udp any host xx.xxx.224.16 eq tftp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.12 eq 2000&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.15 eq 2000&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.13 eq 2000&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.18 eq 2000&lt;/P&gt;&lt;P&gt;access-list 101 permit udp any host xx.xxx.224.13 eq tftp&lt;/P&gt;&lt;P&gt;access-list 101 permit udp any host xx.xxx.224.18 eq tftp&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; tcp any host xx.xxx.224.80 eq telnet&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any host xx.xxx.224.8&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.162 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any host xx.xxx.224.9&lt;/P&gt;&lt;P&gt;access-list 101 permit udp any any eq ntp&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.44 any&lt;/P&gt;&lt;P&gt;access-list 101 permit icmp host x.x.x.28 any&lt;/P&gt;&lt;P&gt;access-list 101 permit icmp host x.x.x.18 any&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any host xx.xxx.224.40&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.18 any&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.18 host xx.xxx.224.10 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.18 host xx.xxx.224.10 eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.18 host xx.xxx.224.10 eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.24 any&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.x.0 0.0.0.255 any&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.x.0 0.0.0.255 host xx.xxx.224.36&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.10 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.10 eq 843&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.10 eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.10 eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.11 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.11 eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.11 eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.15 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.15 eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.16 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.16 eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.28 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.3 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.3 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.3 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.114 host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.114 host xx.xxx.224.5 eq ftp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.114 host xx.xxx.224.5 eq ftp-data&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 any eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 any eq 2206&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 any eq 2220&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.179 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.13 any eq 1099&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.104 any eq 1099&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.13 any eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.104 any eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.13 any eq 36001&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.13 any eq 36002&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.104 any eq 36001&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.104 any eq 36002&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.104 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.13 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.104 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.104 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.13 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.114 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.13 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.189 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.7 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.41 any eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.189 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.7 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.41 any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.189 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.7 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.41 any eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.189 any eq 1099&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 1099&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.7 any eq 1099&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.41 any eq 1099&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.189 any eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.7 any eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.41 any eq 2208&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.189 any eq 36001&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 36001&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.7 any eq 36001&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.41 any eq 36001&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.189 any eq 36002&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.2 any eq 36002&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.7 any eq 36002&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.41 any eq 36002&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.151 host xx.xxx.224.15 eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.151 host xx.xxx.224.16&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.151 host xx.xxx.224.11&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.151 host xx.xxx.224.10 eq 22&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.x host xx.xxx.224.36&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.0.0 0.0.255.255 any&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.206 host xx.xxx.224.2&lt;/P&gt;&lt;P&gt;access-list 101 permit ip xx.xxx.224.0 0.0.31.255 xx.xxx.228.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.28 any&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any xx.xxx.226.228 0.0.0.3&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any xx.xxx.226.128 0.0.0.15&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any xx.xxx.226.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.194 host xx.xxx.224.5 eq 3389&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp any host xx.xxx.224.5 eq 443&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.x host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;access-list 101 permit udp host x.x.x.x host xx.xxx.224.5 eq domain&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.242 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.36 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.65 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.124 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.195 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.138 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.98 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.171 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.153 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.116 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.193 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.32 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.18 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.243 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.28 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.44 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.108 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.82 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.76 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.59 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.134 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.33 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.x.0 0.0.7.255 host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.210 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.185 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp host x.x.x.227 host xx.xxx.224.5 eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.15.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.15.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.7.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.7.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.7.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 permit tcp x.x.x.0 0.0.1.255 host xx.xxx.224.5 eq smtp&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.7&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.5&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.20&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.xxx.224.27&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any xx.xxx.224.128 0.0.0.127&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any xx.xxx.228.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.24 host xx.xxx.224.32&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.24 host xx.xxx.224.31&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host x.x.x.24 host xx.xxx.224.30&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.x.0 0.0.0.255 host xx.xxx.224.30&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.x.0 0.0.0.255 host xx.xxx.224.31&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.x.0 0.0.0.255 host xx.xxx.224.32&lt;/P&gt;&lt;P&gt;access-list 101 permit ip x.x.x.0 0.0.0.255 host xx.xxx.224.33&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip any host xx.x.x.x&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any any&lt;/P&gt;&lt;P&gt;access-list 102 permit ip xx.xx.xx.0 0.0.0.255 any&lt;/P&gt;&lt;P&gt;access-list 106 permit ip host xxx.xx.x.xx any&lt;/P&gt;&lt;P&gt;access-list 125 permit tcp xx.xxx.xxx.0 0.0.0.127 any eq smtp&lt;/P&gt;&lt;P&gt;access-list 125 permit ip host xx.xxx.xxx.x any&lt;/P&gt;&lt;P&gt;access-list 126 permit ip host xx.xxx.xxx.xxx host x.x.x.x&lt;/P&gt;&lt;P&gt;access-list 144 deny&amp;nbsp;&amp;nbsp; tcp host xx.xxx.xxx.x any eq 445&lt;/P&gt;&lt;P&gt;access-list 144 deny&amp;nbsp;&amp;nbsp; tcp host xx.xxx.xxx.x any eq 136&lt;/P&gt;&lt;P&gt;access-list 144 deny&amp;nbsp;&amp;nbsp; tcp host xx.xxx.xxx.x any eq 137&lt;/P&gt;&lt;P&gt;access-list 144 deny&amp;nbsp;&amp;nbsp; ip host xx.xxx.xxx.x xx.0.0.0 0.255.255.255&lt;/P&gt;&lt;P&gt;access-list 144 deny&amp;nbsp;&amp;nbsp; tcp host xx.xxx.xxx.x any eq 135&lt;/P&gt;&lt;P&gt;access-list 144 permit tcp host xx.xxx.xxx.x any established&lt;/P&gt;&lt;P&gt;access-list 144 permit ip any any&lt;/P&gt;&lt;P&gt;snmp-server community c4rt3r RW 30&lt;/P&gt;&lt;P&gt;snmp-server community voiss RO 34&lt;/P&gt;&lt;P&gt;snmp-server community SIPcomMonitor RO 34&lt;/P&gt;&lt;P&gt;snmp-server location Telehouse North Rack18&lt;/P&gt;&lt;P&gt;snmp-server contact Support - 02033285000&lt;/P&gt;&lt;P&gt;snmp-server chassis-id THN-7201-A&lt;/P&gt;&lt;P&gt;snmp-server enable traps snmp authentication linkdown linkup coldstart warmstart&lt;/P&gt;&lt;P&gt;snmp-server enable traps vrrp&lt;/P&gt;&lt;P&gt;snmp-server enable traps ds1&lt;/P&gt;&lt;P&gt;snmp-server enable traps tty&lt;/P&gt;&lt;P&gt;snmp-server enable traps eigrp&lt;/P&gt;&lt;P&gt;snmp-server enable traps xgcp&lt;/P&gt;&lt;P&gt;snmp-server enable traps ethernet cfm cc mep-up mep-down cross-connect loop config&lt;/P&gt;&lt;P&gt;snmp-server enable traps ethernet cfm crosscheck mep-missing mep-unknown service-up&lt;/P&gt;&lt;P&gt;snmp-server enable traps flash insertion removal&lt;/P&gt;&lt;P&gt;snmp-server enable traps srp&lt;/P&gt;&lt;P&gt;snmp-server enable traps ds3&lt;/P&gt;&lt;P&gt;snmp-server enable traps envmon&lt;/P&gt;&lt;P&gt;snmp-server enable traps isdn call-information&lt;/P&gt;&lt;P&gt;snmp-server enable traps isdn layer2&lt;/P&gt;&lt;P&gt;snmp-server enable traps isdn chan-not-avail&lt;/P&gt;&lt;P&gt;snmp-server enable traps isdn ietf&lt;/P&gt;&lt;P&gt;snmp-server enable traps ima&lt;/P&gt;&lt;P&gt;snmp-server enable traps channel&lt;/P&gt;&lt;P&gt;snmp-server enable traps ip local pool&lt;/P&gt;&lt;P&gt;snmp-server enable traps aaa_server&lt;/P&gt;&lt;P&gt;snmp-server enable traps atm subif&lt;/P&gt;&lt;P&gt;snmp-server enable traps bgp&lt;/P&gt;&lt;P&gt;snmp-server enable traps bstun&lt;/P&gt;&lt;P&gt;snmp-server enable traps bulkstat collection transfer&lt;/P&gt;&lt;P&gt;snmp-server enable traps cef resource-failure peer-state-change peer-fib-state-change inconsistency&lt;/P&gt;&lt;P&gt;snmp-server enable traps memory bufferpeak&lt;/P&gt;&lt;P&gt;snmp-server enable traps cnpd&lt;/P&gt;&lt;P&gt;snmp-server enable traps config-copy&lt;/P&gt;&lt;P&gt;snmp-server enable traps config&lt;/P&gt;&lt;P&gt;snmp-server enable traps config-ctid&lt;/P&gt;&lt;P&gt;snmp-server enable traps dial&lt;/P&gt;&lt;P&gt;snmp-server enable traps dlsw&lt;/P&gt;&lt;P&gt;snmp-server enable traps dsp card-status&lt;/P&gt;&lt;P&gt;snmp-server enable traps dsp oper-state&lt;/P&gt;&lt;P&gt;snmp-server enable traps entity&lt;/P&gt;&lt;P&gt;snmp-server enable traps fru-ctrl&lt;/P&gt;&lt;P&gt;snmp-server enable traps resource-policy&lt;/P&gt;&lt;P&gt;snmp-server enable traps frame-relay multilink bundle-mismatch&lt;/P&gt;&lt;P&gt;snmp-server enable traps frame-relay&lt;/P&gt;&lt;P&gt;snmp-server enable traps frame-relay subif&lt;/P&gt;&lt;P&gt;snmp-server enable traps hsrp&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipmobile&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipmulticast&lt;/P&gt;&lt;P&gt;snmp-server enable traps mpls ldp&lt;/P&gt;&lt;P&gt;snmp-server enable traps mpls traffic-eng&lt;/P&gt;&lt;P&gt;snmp-server enable traps mpls fast-reroute protected&lt;/P&gt;&lt;P&gt;snmp-server enable traps msdp&lt;/P&gt;&lt;P&gt;snmp-server enable traps mvpn&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf state-change&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf errors&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf retransmit&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf lsa&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf cisco-specific state-change nssa-trans-change&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf cisco-specific state-change shamlink interface-old&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf cisco-specific state-change shamlink neighbor&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf cisco-specific errors&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf cisco-specific retransmit&lt;/P&gt;&lt;P&gt;snmp-server enable traps ospf cisco-specific lsa&lt;/P&gt;&lt;P&gt;snmp-server enable traps pim neighbor-change rp-mapping-change invalid-pim-message&lt;/P&gt;&lt;P&gt;snmp-server enable traps pppoe&lt;/P&gt;&lt;P&gt;snmp-server enable traps cpu threshold&lt;/P&gt;&lt;P&gt;snmp-server enable traps rsvp&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsla&lt;/P&gt;&lt;P&gt;snmp-server enable traps stun&lt;/P&gt;&lt;P&gt;snmp-server enable traps syslog&lt;/P&gt;&lt;P&gt;snmp-server enable traps l2tun session&lt;/P&gt;&lt;P&gt;snmp-server enable traps l2tun pseudowire status&lt;/P&gt;&lt;P&gt;snmp-server enable traps pw vc&lt;/P&gt;&lt;P&gt;snmp-server enable traps event-manager&lt;/P&gt;&lt;P&gt;snmp-server enable traps director server-up server-down&lt;/P&gt;&lt;P&gt;snmp-server enable traps firewall serverstatus&lt;/P&gt;&lt;P&gt;snmp-server enable traps rf&lt;/P&gt;&lt;P&gt;snmp-server enable traps isakmp policy add&lt;/P&gt;&lt;P&gt;snmp-server enable traps isakmp policy delete&lt;/P&gt;&lt;P&gt;snmp-server enable traps isakmp tunnel start&lt;/P&gt;&lt;P&gt;snmp-server enable traps isakmp tunnel stop&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsec cryptomap add&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsec cryptomap delete&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsec cryptomap attach&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsec cryptomap detach&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsec tunnel start&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsec tunnel stop&lt;/P&gt;&lt;P&gt;snmp-server enable traps ipsec too-many-sas&lt;/P&gt;&lt;P&gt;snmp-server enable traps alarms informational&lt;/P&gt;&lt;P&gt;snmp-server enable traps ccme&lt;/P&gt;&lt;P&gt;snmp-server enable traps srst&lt;/P&gt;&lt;P&gt;snmp-server enable traps mpls vpn&lt;/P&gt;&lt;P&gt;snmp-server enable traps voice&lt;/P&gt;&lt;P&gt;snmp-server enable traps dnis&lt;/P&gt;&lt;P&gt;snmp-server host xxx.xx.x.xx version 2c SIPcomMonitor&lt;/P&gt;&lt;P&gt;snmp-server host xxx.xx.x.xx version 2c SIPcomMonitor&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route-map TATA permit 10&lt;/P&gt;&lt;P&gt;match ip address SIPCOM/21&lt;/P&gt;&lt;P&gt;set as-path prepend 47631 47631 47631&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route-map IPEX permit 10&lt;/P&gt;&lt;P&gt;match ip address 126&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route-map TITA permit 10&lt;/P&gt;&lt;P&gt;match ip address SIPCOM/21&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route-map VR-Outbound_SMTP permit 10&lt;/P&gt;&lt;P&gt;match ip address 125&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route-map EIGRP-TUNNEL permit 10&lt;/P&gt;&lt;P&gt;match ip address EIGRP&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;control-plane&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;mgcp fax t38 ecm&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;dial-peer cor custom&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;line con 0&lt;/P&gt;&lt;P&gt;stopbits 1&lt;/P&gt;&lt;P&gt;line aux 0&lt;/P&gt;&lt;P&gt;stopbits 1&lt;/P&gt;&lt;P&gt;line vty 0 4&lt;/P&gt;&lt;P&gt;exec-timeout 30 0&lt;/P&gt;&lt;P&gt;password 7 xxxxxxxxxxxxxxxxxxxx&lt;/P&gt;&lt;P&gt;login local&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ntp logging&lt;/P&gt;&lt;P&gt;ntp master&lt;/P&gt;&lt;P&gt;ntp server xxx.xx.xxx.xx&lt;/P&gt;&lt;P&gt;ntp server xx.xxx.xxx.xxx prefer&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 12:31:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-configure-bwth-restriction-on-7200/m-p/1825330#M937338</guid>
      <dc:creator>davemac2626</dc:creator>
      <dc:date>2020-02-21T12:31:25Z</dc:date>
    </item>
    <item>
      <title>Hello</title>
      <link>https://community.cisco.com/t5/network-security/how-to-configure-bwth-restriction-on-7200/m-p/1825331#M937339</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;You might accomplish this using an EEM applet, like this:&lt;/P&gt;

&lt;PRE&gt;
event manager applet SHUT_IF_BW_ABOVE_100
 event tag 1.0 timer watchdog time 5
 action 1.0 info type interface-names regexp "Fa|Gi|Tu"
 action 1.1 foreach _iface "$_info_interface_names"
 action 1.1.1  cli command "show interfaces $_iface | i output rate"
 action 1.1.2  set bw "0"
 action 1.1.3  set result "none"
 action 1.1.4  regexp "5 minute output rate ([0-9]+)" "$_cli_result" result bw
 action 1.1.5.01  if $bw gt "100000000"
 action 1.1.5.02   puts "Interface $_iface is above 100Mbps ($bw)"
 action 1.1.5.03   cli command "enable"
 action 1.1.5.04   cli command "config t"
 action 1.1.5.05   cli command "interface $_iface"
 action 1.1.5.06   cli command "shutdown"
 action 1.1.5.07   cli command "end"
 action 1.1.5.08  else
 action 1.1.5.09   puts "Interface $_iface is below 100Mbps ($bw)"
 action 1.1.5.10 end
 action 1.2 end
 action 1.3   exit&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The above script will retrieve a list of all interfaces (matching Fa or Gi or Tu in the interface name) every 5 seconds and get the current output rate from the show interfaces command. If this value is above 100Mbps then the interface is shutdown. Every 5 seconds an output is for all interfaces is given which shows the bandwidth utilization. The interfaces are not "un-shut" once the bandwidth returns to normal. You can modify this according to your needs, I'm sure you get the idea.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2015 11:21:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-configure-bwth-restriction-on-7200/m-p/1825331#M937339</guid>
      <dc:creator>Martin Hruby</dc:creator>
      <dc:date>2015-08-17T11:21:47Z</dc:date>
    </item>
  </channel>
</rss>

