<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Cisco Talk</title>
	<atom:link href="http://ciscotalk.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ciscotalk.wordpress.com</link>
	<description>Enjoy simple explanations of common Cisco related topics</description>
	<lastBuildDate>Fri, 09 Dec 2011 22:36:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ciscotalk.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Cisco Talk</title>
		<link>http://ciscotalk.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ciscotalk.wordpress.com/osd.xml" title="Cisco Talk" />
	<atom:link rel='hub' href='http://ciscotalk.wordpress.com/?pushpress=hub'/>
		<item>
		<title>The difference between Identity NAT and NAT Exemption</title>
		<link>http://ciscotalk.wordpress.com/2011/12/06/the-difference-between-identity-nat-and-nat-exemption/</link>
		<comments>http://ciscotalk.wordpress.com/2011/12/06/the-difference-between-identity-nat-and-nat-exemption/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 20:04:16 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[CCNP Security]]></category>
		<category><![CDATA[Cisco ASA 8.2]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=69</guid>
		<description><![CDATA[According to the Cisco ASA: All-in-One Firewall, IPS, and VPN Adaptive Security Appliance book, &#8220;The main difference between identity NAT and NAT exemption is that with identity NAT, the traffic must be sourced from the address specified with the nat 0 statement, whereas with NAT exemption, traffic can be initiated by the hosts on either [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=69&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>According to the Cisco ASA: All-in-One Firewall, IPS, and VPN Adaptive Security Appliance book, &#8220;The main difference between identity NAT and NAT exemption is that with identity NAT, the traffic must be sourced from the address specified with the nat 0 statement, whereas with NAT exemption, traffic can be initiated by the hosts on either side of the security appliance. NAT exemption is a preferred method to bypass traffic when it is flowing over a VPN tunnel.&#8221;</p>
<p>So, what does this mean <em>really</em>?<br />
<span id="more-69"></span><br />
<strong>Identity NAT</strong><br />
You would use Identity NAT when you want to traffic from your inside interface to flow through to your outside interface without changing the address. An example scenario would be a private MPLS cloud with separate clients. Each client has a unique address space so NATing is not necessary. Using Identity NAT is the solution because it provides us with the privacy of only allowing inside hosts to initiate communication with outside hosts.</p>
<p>Configuration<br />
Identity NAT is simple to configure. All you have to do is use the NAT ID of 0 in your NAT statements.</p>
<p><pre class="brush: plain;">nat (inside) 0 10.10.0.0 255.255.0.0</pre><br />
This statement bypasses NAT for traffic matching the IP addresses of 10.10.0.0/16 from the inside interface.</p>
<p><pre class="brush: plain;">nat (inside) 0 0.0.0.0 0.0.0.0</pre><br />
This statement bypasses NAT for all traffic from the inside interface.</p>
<p><pre class="brush: plain;">nat (inside) 0 10.10.1.0 255.255.255.0
nat (inside) 0 192.168.2.0 255.255.255.0
nat (inside) 0 172.16.30.0 255.255.255.0</pre><br />
This statement bypasses NAT for the 10.10.1.0/24, 192.168.2.0/24 and 172.16.30.0/24 networks. You can have multiple nat 0 statements.</p>
<p><strong>NAT Exemption</strong><br />
NAT Exemption is most commonly used for VPN traffic. With NAT Exemption, traffic specified in the access-list will be able to initiate new connections with your protected hosts. For this reason, you shouldn&#8217;t use NAT Exemption in place of identity NAT. You would put your hosts at risk.</p>
<p>Configuration<br />
NAT Exemption utilizes ACLs to match traffic. Much like Identity NAT, the configuration process is fairly straight forward.</p>
<p><pre class="brush: plain;">access-list NONAT permit ip 10.130.10.0 255.255.255.0 10.130.254.0 255.255.255.0
nat (inside) 0 access-list NONAT</pre><br />
These statements create a NAT Exemption policy on the inside interface for traffic between 10.130.10.0/24 and 10.130.254.0/24. This means that hosts on either network can initiate connections. Using Identity NAT, only the hosts on the inside would be able to create connections. Be cautious with NAT Exemption because you could accidentally open a security hole with the wrong statements.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=69&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/12/06/the-difference-between-identity-nat-and-nat-exemption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>Delivering Voicemail to Email as Attachments with Cisco Unity Connection 8.5</title>
		<link>http://ciscotalk.wordpress.com/2011/11/22/delivering-voicemail-to-email-as-attachments-with-cisco-unity-connection-8-5/</link>
		<comments>http://ciscotalk.wordpress.com/2011/11/22/delivering-voicemail-to-email-as-attachments-with-cisco-unity-connection-8-5/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 21:08:58 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=62</guid>
		<description><![CDATA[As a Network Engineer, I usually have multiple people trying to get a hold of me at the same time. It&#8217;s difficult to manage all the methods of communication these days. There is voice mail, email, instant message, phone calls, cell phone calls and someone physically being at your desk. When I get the opportunity [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=62&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As a Network Engineer, I usually have multiple people trying to get a hold of me at the same time. It&#8217;s difficult to manage all the methods of communication these days. There is voice mail, email, instant message, phone calls, cell phone calls and someone physically being at your desk. When I get the opportunity to unify any of these methods, I&#8217;ll jump at the chance!<br />
<span id="more-62"></span><br />
When I was working at PSJA, we had a Cisco UCM deployment along with Cisco Unity Messaging. I had always wanted to integrate Unity with Exchange because I&#8217;d rather check one mail box instead of two. Not only that, but sometimes people leave messages with their call back number at the end of a message and say it faster than lightning (admit it, you know this happens too much!). I&#8217;d have to waste time repeating the message over and over until I can write down the number. At my new job, I was tasked to integrate Cisco Unity Connection 8.5 with our email system.</p>
<p>Luckily, Cisco makes it easy to configure Unity Connection to send voice mails as attachments.</p>
<p>1. Login to Unity Connection Administration and navigate to <strong>System Settings &gt; SMTP Configuration &gt; Smart Host</strong></p>
<p>2. Type the IP address of your email server (In my case, I pointed this to my Hub Transport server in Exchange 2010). You may also use the FQDN if you have setup DNS inside of Unity Connection. Be sure to add the IP address of your Unity Connection server to relay off your email server.</p>
<p><img src="http://i.imgur.com/6d0yy.png" alt="Smart Host Information" /> </p>
<p>3. Navigate to your Users at <strong>Users &gt; Users</strong>. Search for a user you want to relay messages for and open the user by clicking on it in the results pane.</p>
<p>4. Once you are editing a user at the <strong>Edit User Basics</strong> screen, click on <strong>Edit &gt; Message Actions</strong></p>
<p><img src="http://i.imgur.com/ZYwjr.png" alt="Message Actions" /></p>
<p>5. This is where you select an Action and a relay address. Simply choose <strong>Relay the Message</strong> to forward all voice mails to the email specified under <strong>Relay Address</strong>. This will skip the Unity Connection Data Store meaning that voice mails will no longer be stored in Unity and will be forwarded to the email specified. You will not see a MWI. You can also choose <strong>Accept and Relay</strong> to receive the message on your desk phone (this will use the MWI) and also receive a copy in your email. </p>
<p><img src="http://i.imgur.com/NiWnp.png" alt="Select an action" /></p>
<p>6. Save your changes and test.</p>
<p><img src="http://i.imgur.com/v7Ra1.png" alt="Results" /></p>
<p>The voice mails come attached to your email as a WAV file and Outlook 2010 has a built in preview plug in so you can listen to the messages without opening any other program. Personally, I would only use the <strong>Relay the Message</strong> option for message actions. The reasoning is that with <strong>Accept and Relay the Message</strong> option, your users will still have to clear new messages from the phone using a traditional method. Once your users are comfortable receiving voice mails through email, they won&#8217;t miss that annoying red light! </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=62&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/11/22/delivering-voicemail-to-email-as-attachments-with-cisco-unity-connection-8-5/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/6d0yy.png" medium="image">
			<media:title type="html">Smart Host Information</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/ZYwjr.png" medium="image">
			<media:title type="html">Message Actions</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/NiWnp.png" medium="image">
			<media:title type="html">Select an action</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/v7Ra1.png" medium="image">
			<media:title type="html">Results</media:title>
		</media:content>
	</item>
		<item>
		<title>Default Configuration of a Cisco ASA 5510 running 8.2(5)</title>
		<link>http://ciscotalk.wordpress.com/2011/11/15/default-configuration-of-a-cisco-asa-5510-running-8-25/</link>
		<comments>http://ciscotalk.wordpress.com/2011/11/15/default-configuration-of-a-cisco-asa-5510-running-8-25/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 15:47:32 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=57</guid>
		<description><![CDATA[I&#8217;ve sometimes looked for this when I am dealing with a ASA that is already configured. It is useful to see what the default configuration is on an ASA. The default password is no password. When prompted for a password, hit enter for access.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=57&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve sometimes looked for this when I am dealing with a ASA that is already configured. It is useful to see what the default configuration is on an ASA. The default password is no password. When prompted for a password, hit enter for access.</p>
<p><pre class="brush: plain;">
ciscoasa# show run
: Saved
:
ASA Version 8.2(5)
!
hostname ciscoasa
enable password 8Ry2YjIyt7RRXU24 encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
names
!
interface Ethernet0/0
 shutdown
 no nameif
 no security-level
 no ip address
!
interface Ethernet0/1
 shutdown
 no nameif
 no security-level
 no ip address
!
interface Ethernet0/2
 shutdown
 no nameif
 no security-level
 no ip address
!
interface Ethernet0/3
 shutdown
 no nameif
 no security-level
 no ip address
!
interface Management0/0
 nameif management
 security-level 100
 ip address 192.168.1.1 255.255.255.0
 management-only
!
ftp mode passive
pager lines 24
logging asdm informational
mtu management 1500
icmp unreachable rate-limit 1 burst-size 1
no asdm history enable
arp timeout 14400
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
timeout tcp-proxy-reassembly 0:01:00
timeout floating-conn 0:00:00
dynamic-access-policy-record DfltAccessPolicy
http server enable
http 192.168.1.0 255.255.255.0 management
no snmp-server location
no snmp-server contact
snmp-server enable traps snmp authentication linkup linkdown coldstart
crypto ipsec security-association lifetime seconds 28800
crypto ipsec security-association lifetime kilobytes 4608000
telnet timeout 5
ssh timeout 5
console timeout 0
dhcpd address 192.168.1.2-192.168.1.254 management
dhcpd enable management
!
threat-detection basic-threat
threat-detection statistics access-list
no threat-detection statistics tcp-intercept
webvpn
!
class-map inspection_default
 match default-inspection-traffic
!
!
policy-map type inspect dns preset_dns_map
 parameters
  message-length maximum client auto
  message-length maximum 512
policy-map global_policy
 class inspection_default
  inspect dns preset_dns_map
  inspect ftp
  inspect h323 h225
  inspect h323 ras
  inspect rsh
  inspect rtsp
  inspect esmtp
  inspect sqlnet
  inspect skinny
  inspect sunrpc
  inspect xdmcp
  inspect sip
  inspect netbios
  inspect tftp
  inspect ip-options
!
service-policy global_policy global
prompt hostname context
Cryptochecksum:804031d1aeddcd0b07051e5ac29dec2e
: end
ciscoasa#
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=57&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/11/15/default-configuration-of-a-cisco-asa-5510-running-8-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>Card type Preprovisioning</title>
		<link>http://ciscotalk.wordpress.com/2011/11/03/card-type-preprovisioning/</link>
		<comments>http://ciscotalk.wordpress.com/2011/11/03/card-type-preprovisioning/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 21:51:49 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=24</guid>
		<description><![CDATA[When installing a VWIC2-2MFT-T1/E1 card, you must provision what the card will do before configuring it. With this particular card, you could provision it as a T1, E1 or PRI depending on the clients requirements. The card command is used to accomplish this. Prior to provisioning, a show run outputs the following: It&#8217;s easy to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=24&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When installing a VWIC2-2MFT-T1/E1 card, you must provision what the card will do before configuring it. With this particular card, you could provision it as a T1, E1 or PRI depending on the clients requirements. The card command is used to accomplish this. </p>
<p>Prior to provisioning, a show run outputs the following:<br />
<pre class="brush: plain;">
boot-start-marker
boot-end-marker
!
! card type command needed for slot/vwic-slot 0/0
! card type command needed for slot/vwic-slot 0/1
! card type command needed for slot/vwic-slot 0/2
logging buffered 51200 warnings
!
</pre></p>
<p>It&#8217;s easy to see there is a problem. In addition to the errors in the configuration, no controllers or serial interfaces are seen. In our scenario, we needed to configure this card as a T1 so we issued the following command:<br />
<pre class="brush: plain;">
router(config)# card type T1 0 0
router(config)# card type T1 0 1
router(config)# card type T1 0 2
</pre></p>
<p>The numbers at the end of the command specify your slot and subslot. After issuing these commands, we can see that the T1 controllers are now present in the running configuration:<br />
<pre class="brush: plain;">
controller T1 0/0/0
 cablelength long 0db
!
controller T1 0/0/1
 cablelength long 0db
!
controller T1 0/1/0
 cablelength long 0db
!
controller T1 0/1/1
 cablelength long 0db
!
controller T1 0/2/0
 cablelength long 0db
!
controller T1 0/2/1
 cablelength long 0db
</pre></p>
<p>Now that the controllers are created and we look at the running configuration, we still can&#8217;t see any serial interfaces. This is because being a multiflex card, we have to create the appropriate channel-group or pri-group. We are termianting a T1 so we will issue the following command under the controller:<br />
<pre class="brush: plain;">
router(config-controller)# channel-group 0 timeslots 1-24
</pre><br />
After this command is issued, a new serial interface is created that is available for configuration. You have successfully configured the VWIC2-2MFT-T1/E1!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=24&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/11/03/card-type-preprovisioning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>IOS Upgrade on a Cisco 3560</title>
		<link>http://ciscotalk.wordpress.com/2011/11/02/ios-upgrade-on-a-cisco-3560/</link>
		<comments>http://ciscotalk.wordpress.com/2011/11/02/ios-upgrade-on-a-cisco-3560/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 15:02:59 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=42</guid>
		<description><![CDATA[When I finished with the Cisco Networking Academy, I learned that upgrading an IOS was as simple as copying the new IOS .bin file to the flash drive of the device you are upgrading. At my first job working with actual Cisco devices, I was tasked with upgrading a 3560. The problem was that the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=42&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When I finished with the Cisco Networking Academy, I learned that upgrading an IOS was as simple as copying the new IOS .bin file to the flash drive of the device you are upgrading. At my first job working with actual Cisco devices, I was tasked with upgrading a 3560. The problem was that the IOS downloaded from Cisco was a .tar&#8211;not .bin like I had seen before. This is when I learned that there are two main methods to upgrading your IOS devices.</p>
<p>When you download an IOS from Cisco, some version include extra files in the package such as an SDM interface. Instead of packaging everything individually, Cisco creates a tar file with all the files. Alternatively, if you don&#8217;t need all the extras, Cisco can provide a single .bin as well or you can extract the .bin from inside the .tar.</p>
<p>If you decide to use the tar file, upgrading the IOS is simple. From priviledged mode, simply enter the follow commands:<br />
<pre class="brush: plain;">Switch# archive download-sw /overwrite /reload tftp://10.10.1.27/c3560-ipservicesk9-mz.122-55.SE3.tar</pre></p>
<p>Let&#8217;s break down this command. First, we are using the archive command. Since we are using a .tar file (an archive) we need to decompress the file to the local flash memory. Second command is download-sw. This is just to indicate that we are going to download software instead of upload it (there is also a upload-sw command). Next, we tell IOS to overwrite the existing image. You may or may not have enough room in flash to hold multiple images. Finally, we specify the location of the new image. In this case, I have it on a TFTP server on 10.10.1.27. Cisco makes it easy and allows you to download the file, uncompress it, and reload the switch with one command.</p>
<p>Once this command is run, IOS downloads the file, deletes your existing IOS, extracts the files in the .tar on to flash and reloads the system. When the system finishes starting up, your IOS upgrade is complete! You can verify this with a show version.</p>
<p>Last night, I had to upgrade the IOS on the 3560 but I only have a .bin file. In this case, it was similar to upgrading an IOS on a router. All you have to do is simply copy the .bin file to the flash directory and set the boot variable.<br />
<pre class="brush: plain;">
Switch# copy tftp://10.10.1.27/c3560-ipservicesk9-mz.122-55.SE3.bin flash:c3560-ipservicesk9-mz.122-55.SE3.bin
Switch# 
Switch# boot system flash:c3560-ipservicesk9-mz.122-52.SE.bin
Switch# 
Switch# copy running-config startup-config
Building configuration...
[OK]
Switch# 
Switch# show boot
BOOT path-list      : flash:c3560-ipservicesk9-mz.122-52.SE.bin
Config file         : flash:/config.text
Private Config file : flash:/private-config.text
Enable Break        : no
Manual Boot         : no
HELPER path-list    :
Auto upgrade        : yes
Auto upgrade path   :
Timeout for Config
          Download:    0 seconds
Config Download
       via DHCP:       disabled (next boot: disabled)
Switch# 
Switch# reload
</pre></p>
<p>We first copied the IOS to the local flash and then we configured IOS to use the new IOS. We saved our changes and verified them with a show boot command. After a reload, the switch will use the new IOS.</p>
<p>TIP: Always backup your current IOS. Using the copy command, copy it from the flash to your tftp in case you need to rollback. In addition, once the system has started, you are able to delete the .bin file from the flash without problems. This is useful when you have an existing image that is taking up most of the room on your flash and you are copying a new one that requires more space than you have available.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=42&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/11/02/ios-upgrade-on-a-cisco-3560/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabling ssh on a Cisco ASA</title>
		<link>http://ciscotalk.wordpress.com/2011/08/31/enabling-ssh-on-a-cisco-asa/</link>
		<comments>http://ciscotalk.wordpress.com/2011/08/31/enabling-ssh-on-a-cisco-asa/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 20:20:57 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=35</guid>
		<description><![CDATA[Enabling SSH on a Cisco ASA is not as easy as it might seem. On first look, you would think using just the &#8220;ssh &#60;network&#62; &#60;subnet&#62; &#60;interface&#62;&#8221; would do the trick but there are 2 more commands that are needed. In my specific scenario, I needed SSH access to a Cisco ASA from the 10.10.1.0/24 subnet. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=35&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Enabling SSH on a Cisco ASA is not as easy as it might seem. On first look, you would think using just the &#8220;ssh &lt;network&gt; &lt;subnet&gt; &lt;interface&gt;&#8221; would do the trick but there are 2 more commands that are needed.</p>
<p>In my specific scenario, I needed SSH access to a Cisco ASA from the 10.10.1.0/24 subnet. First thing I did was create a local user name and password and enable ssh:</p>
<p><pre class="brush: plain;">
username jmartinez password Cisco123!
ssh 10.10.1.0 255.255.255.0 outside
</pre></p>
<p>Trying to connect, PuTTY tells me &#8220;Server unexpectedly closed network connection&#8221;. Something is missing! I enabled ssh debugging with the command &#8220;debug ssh&#8221; and received the following debug when I tried to connect:<br />
<pre class="brush: plain;">
ASA# Device ssh opened successfully.
SSH0: SSH client: IP = '10.10.1.27'  interface # = 1
SSH: unable to retrieve default host public key.  Please create a defauth RSA key pair before using SSH
SSH0: Session disconnected by SSH server - error 0x00 &quot;Internal error&quot;
ASA#
</pre><br />
A useful debug log?! It&#8217;s obvious from above that I don&#8217;t have an RSA keys in order to encrypt traffic. So I issue the following command to generate a key:</p>
<p><pre class="brush: plain;">
ASA(config)# crypto key generate rsa
INFO: The name for the keys will be: &amp;lt;Default-RSA-Key&amp;gt;
Keypair generation process begin. Please wait...
ASA(config)#
</pre></p>
<p>Excellent! Now when I try to reconnect, I get a connection with the following debugging lines:</p>
<p><pre class="brush: plain;">
Device ssh opened successfully.
SSH0: SSH client: IP = '10.10.1.27'  interface # = 1
SSH: host key initialised
SSH: license supports 3DES: 2
SSH: license supports DES: 2
SSH0: starting SSH control process
SSH0: Exchanging versions - SSH-1.99-Cisco-1.25
SSH0: send SSH message: outdata is NULL
server version string:SSH-1.99-Cisco-1.25SSH0: receive SSH message: 83 (83)
SSH0: client version is - SSH-2.0-PuTTY_Release_0.60
client version string:SSH-2.0-PuTTY_Release_0.60SSH0: begin server key generation
SSH0: complete server key generation, elapsed time = 3030 ms
SSH2 0: SSH2_MSG_KEXINIT sent
SSH2 0: SSH2_MSG_KEXINIT received
SSH2: kex: client-&amp;gt;server aes256-cbc hmac-sha1 none
SSH2: kex: server-&amp;gt;client aes256-cbc hmac-sha1 none
SSH2 0: expecting SSH2_MSG_KEXDH_INIT
SSH2 0: SSH2_MSG_KEXDH_INIT received
SSH2 0: signature length 143
SSH2: kex_derive_keys complete
SSH2 0: newkeys: mode 1
SSH2 0: SSH2_MSG_NEWKEYS sent
SSH2 0: waiting for SSH2_MSG_NEWKEYS
SSH2 0: newkeys: mode 0
SSH2 0: SSH2_MSG_NEWKEYS received
</pre><br />
When I type in an existing username / password that is on the ASA already, I get access denied. Debugging shows:</p>
<p><pre class="brush: plain;">
SSH(jmartinez): user authen method is 'no AAA', aaa server group ID = 0
SSH2 0: authentication failed for jmartinez
</pre></p>
<p>It looks like we don&#8217;t have an AAA method setup. I want to use the local user database. Let&#8217;s configure that:</p>
<p><pre class="brush: plain;">
ASA(config)# aaa authentication ssh console LOCAL
</pre></p>
<p>Now when I connect, I am able to login successfully. Here is the debug log for a successful connection:</p>
<p><pre class="brush: plain;">
SSH(jmartinez): user authen method is 'use AAA', aaa server group ID = 1
SSH2 0: authentication successful for jmartinez
SSH2 0: channel open request
SSH2 0: pty-req request
SSH2 0: requested tty: xterm, height 24, width 80
SSH2 0: shell request
SSH2 0: shell message received
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=35&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/08/31/enabling-ssh-on-a-cisco-asa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>Transfer to Voicemail</title>
		<link>http://ciscotalk.wordpress.com/2011/08/15/transfer-to-voicemail/</link>
		<comments>http://ciscotalk.wordpress.com/2011/08/15/transfer-to-voicemail/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 02:26:29 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=30</guid>
		<description><![CDATA[One common function of phone systems is having the ability to transfer calls to someone&#8217;s voicemail box. By default, there isn&#8217;t a feature that&#8217;s part of a CUCM and Unity integration that allows you to transfer a call to voicemail. You have to transfer the call to their extension and the call would ring until [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=30&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One common function of phone systems is having the ability to transfer calls to someone&#8217;s voicemail box. By default, there isn&#8217;t a feature that&#8217;s part of a CUCM and Unity integration that allows you to transfer a call to voicemail. You have to transfer the call to their extension and the call would ring until one of your Call Forward settings sends the call to their voicemail box. Alternatively, you could place the call on hold and navigate your voicemail system until you reach the destination box and transfer the call.</p>
<p>Both of these examples introduce unwanted delay and may frustrate the caller. By introducing this Transfer to Voicemail feature, you can allow for the quick transfer of calls.</p>
<p>You can setup Transfer to Voicemail function using the following steps:</p>
<ol>
<li>Create a new Voice Mail Profile by going to Voice Mail &gt; Voice Mail Profile and clicking Add New in Cisco Unified CM Administration.</li>
<li>Assign the new Voice Mail Profile something descriptive such as &#8220;TransferToVM&#8221;, assign your existing VM Pilot to Voice Mail Pilot and assign it a mask of XXXX (assuming a four digit dialplan, use sufficient wildcard characters to cover yours). Click Save.</li>
<li>Create a CTI route point by going to Device &gt; CTI Route Point and give it Device Name that you gave your Voice Mail Profile that you created in step 2. This isn&#8217;t necessary but helps you tie the  the profile and the route point together. Assign it an appropriate CSS, Partition and Location attributes. Click Save.</li>
<li>Once you save the route point, you are able to assign an extension to it. If you use 4 digit dialing, use the Directory Number of *XXXX (similar to step 2, use sufficient wildcard characters to cover your dialplan). Under the DN Properties of *XXXX, assign the Voice Mail Profile that you created in the previous step and check the Voice Mail check box under Forward All. Click Save and reset the CTI RP.</li>
</ol>
<div>Following these steps, you should be able to dial *+DN and directly reach that extensions voice mail box.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=30&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/08/15/transfer-to-voicemail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>DSP Simplified</title>
		<link>http://ciscotalk.wordpress.com/2011/02/14/dsp-simplified/</link>
		<comments>http://ciscotalk.wordpress.com/2011/02/14/dsp-simplified/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 04:18:04 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[DSP]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=7</guid>
		<description><![CDATA[DSPs, or Digital Signal Processors, are specialized chips designed to process a digital signal. DSPs are used in Cisco routers to perform transcoding, conferencing and MTP. In the Cisco voice world, they are used extensively and understanding how they work and how many you need is important. Cisco sells DSPs in modules called PVDM or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=7&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>DSPs, or Digital Signal Processors, are specialized chips designed to process a digital signal. DSPs are used in Cisco routers to perform transcoding, conferencing and MTP. In the Cisco voice world, they are used extensively and understanding how they work and how many you need is important.<span id="more-7"></span></p>
<p>Cisco sells DSPs in modules called PVDM or Packet Voice Digital Signal Processor Module. Up until recently Cisco only sold PVDM&#8217;s and PVDM2&#8242;s in the following sizes: PVDM-256K-4, PVDM-256K-8, PVDM-256K-12, PVDM-256K-16, PVDM-256K-20, PVDM2-8, PVDM2-16, PVDM2-32, PVDM2-64. In order to have a higher density of DSP&#8217;s per gateway, Cisco recently released the PVDM3 which are available in the following sizes: PVDM3-16, PVDM3-32, PVDM3-64, PVDM3-128, PVDM3-256. The number after the dash signifies how many DSP channels the PVDM can handle. A single DSP chip can handle 16 G.711 channels. If you use a higher complexity codec (such as in transcoding) the amount of channels a DSP can handle reduces since there is a more horsepower is required to transcode complex codecs. A PVDM2-16 is really a single DSP. A PVDM2-32 is really two DSP chips.</p>
<p>PVDM&#8217;s can be installed directly on the gateway motherboard (if supported) or on specialized cards such as NM-HDV2, NM-HDV2-1T1/E1, and NM-HDV2-2T1/E1.</p>
<p>When using Cisco voice gateways, you normally have a voice cards connecting to the PSTN such as VIC2-2FXO, VIC2-2FXS, VWIC-2MFT-T1.  Each call that traverse these cards to the PSTN needs a DSP channel because you are transcoding your voice ip packets to a signal that the PSTN understands. These cards need DSP&#8217;s in order to function in a Cisco gateway. If you install a card such as at the VWIC-2MFT-T1 and try to create a pri-group you will see the following error:</p>
<p><pre class="brush: plain;">

Router(config-controller)#pri-group timeslots 1-24
% Not enough DSP resources available to configure pri-group on controller T1 0/0/0
% The remaining dsp resources are enough for 0 time slots.
% For current codec complexity, 2 extra dsp(s) are required to create this voiceport.

</pre></p>
<p>In other cases, such as the FXO or FXS cards, you won&#8217;t even be able to see them in your configuration even though your router shows them in inventory.</p>
<p>FXO and FXS cards are usually installed on carrier cards such as the NM-1V or the NM-2V. These network modules contain enough DSP resources to support the card. You don&#8217;t need to buy any additional DSPs and this can be verified using the DSP calculator (see additional information). Sometimes, they can be installed directory on to the router such as in the case of a Cisco 17XX.</p>
<p>Planning the number of DSPs you need is simple. First and foremost, you need to decide which voice cards you are installing in your gateway. If you are using a VWIC-2MFT-T1 and terminating a single PRI, you need 24 DSP channels or a PVDM2-32 or PVDM3-32. This will allow the termination of the line and allow for 8 dsp channels left over for other uses such as transcoding.</p>
<p>Calculating the amount of DSP&#8217;s needed for your gateway can also be done using the Cisco DSP Calculator (see additional information). The calculator can also help you calculate how many DSP&#8217;s you need for transcoding and conferencing.</p>
<p>If anyone has any questions, I&#8217;ll try to answer them to the best of my ability!</p>
<p>Additional information:<br />
<a href="http://www.cisco.com/en/US/customer/products/hw/routers/ps259/products_tech_note09186a00800e73f6.shtml" target="_blank">Voice Hardware Compatibility Matrix (Cisco 17/26/28/36/37/38xx, VG200, Catalyst 4500/4000, Catalyst 6xxx)</a><br />
<a href="http://www.cisco.com/en/US/prod/collateral/routers/ps5854/product_data_sheet0900aecd8016e845_ps5855_Products_Data_Sheet.html" target="_blank">High-Density Packet Voice Digital Signal Processor Module for Cisco Unified Communications Solutions</a><br />
<a href="http://www.cisco.com/cgi-bin/Support/DSP/cisco_prodsel.pl" target="_blank">DSP Calculator (Old)</a><br />
<a href="http://www.cisco.com/web/applicat/dsprecal/dsp_calc.html" target="_blank">DSP Calculator (New; CCO Required)</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=7&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2011/02/14/dsp-simplified/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>Start Securing Your SNMP</title>
		<link>http://ciscotalk.wordpress.com/2008/04/28/start-securing-your-snmp/</link>
		<comments>http://ciscotalk.wordpress.com/2008/04/28/start-securing-your-snmp/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 21:41:33 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=5</guid>
		<description><![CDATA[A lot of companies use SNMP to monitor their devices. If your devices and software support it, it&#8217;s best to use SNMPv3 because of it&#8217;s authentication and encryption capabilities. With traditional SNMP, your community string is transmitted in plain text. This would allow an attacker to sniff your traffic, retrive your string and be able [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=5&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A lot of companies use SNMP to monitor their devices. If your devices and software support it, it&#8217;s best to use SNMPv3 because of it&#8217;s authentication and encryption capabilities. With traditional SNMP, your community string is transmitted in plain text. This would allow an attacker to sniff your traffic, retrive your string and be able to query your devices for information.</p>
<p>Configuring SNMPv3 is a snap! I recommend using a password generator to generate your SNMPv3 usernames and passwords. The website I use is <a href="http://www.testyourpassword.com/">http://www.testyourpassword.com/</a>. I then use <a href="http://www.passwordmeter.com/">http://www.passwordmeter.com/</a> to check the strengh because it provides you with a report of complexity. I would alter the password until you receive 100% score with all expectional in the additions section and 0 deductions. Although it&#8217;s a good idea to generate a complex username and password for each device, your network management software may not allow you to configure creditionals for each one in which case, you&#8217;ll have to make do with only one.</p>
<p>Now, the first thing to do is remove snmp from your current config. I can&#8217;t show you how to do this because its specific to each device because of configuration diferences. It doesn&#8217;t do any good to configure SNMPv3 and leave SNMPv1 or SNMPv2c running also.</p>
<p>Once you have disabled SNMPv1 and SNMPv2c, you must create a SNMPV3 group. You can do this with the following command:</p>
<p>    <strong> Router(config)# snmp-server group AUTHPRIV v3 priv</strong></p>
<p>AUTHPRIV is the name of the group and can be anything you want to use. By stating &#8220;priv&#8221; we are telling the router we want to authentication AND encryption. There are other modes but this article will not go into them.</p>
<p>Once you have created the group, we need to create users. To do this, type:</p>
<p>     <strong>Router(config)# snmp-server user SNMPV3 AUTHPRIV v3 auth md5 &lt;username&gt; priv des56 &lt;password&gt;</strong></p>
<p>This command makes a user named &#8220;SNMPV3&#8243; in the group &#8220;AUTHPRIV&#8221; using md5 for authentication and uses DES 56-BIT encryption for the packets.</p>
<p>That&#8217;s it!</p>
<p>This article breifly discuess SNMPv3 and its capabilities. If you NEED to use SNMPv1 or SNMPv2c, I recommend not using SNMP RW strings, using different complex strings (if possible, No Private or Public strings), and using ACL&#8217;s to prevent unauthorized access.</p>
<p>The configuration show is a basic configuration. There are many more options that can be used. For more information see: <a href="http://www.cisco.com/en/US/docs/ios/12_2/configfun/configuration/guide/fcf014.html#wp1001086">http://www.cisco.com/en/US/docs/ios/12_2/configfun/configuration/guide/fcf014.html#wp1001086</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ciscotalk.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ciscotalk.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=5&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2008/04/28/start-securing-your-snmp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
		<item>
		<title>Interface Macros</title>
		<link>http://ciscotalk.wordpress.com/2008/04/25/interface-macros/</link>
		<comments>http://ciscotalk.wordpress.com/2008/04/25/interface-macros/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 03:08:47 +0000</pubDate>
		<dc:creator>Jose Martinez</dc:creator>
				<category><![CDATA[Switch Configuration]]></category>
		<category><![CDATA[define]]></category>
		<category><![CDATA[range]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://ciscotalk.wordpress.com/?p=4</guid>
		<description><![CDATA[A great way to logically organize your ports is define interface macros. For example, assume that you use ports 30-48 for your servers. These servers should have their switch ports configured alike. You could define a macro to group these logically. When you do this, you are allowed to call the interface range command with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=4&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A great way to logically organize your ports is define interface macros. For example, assume that you use ports 30-48 for your servers. These servers should have their switch ports configured alike. You could define a macro to group these logically. When you do this, you are allowed to call the interface range command with a name.</p>
<p>Here&#8217;s how it works:</p>
<p>define interface-range <em>macro-name type</em> <em>module/number </em>[, <em>type module/number ...</em>] [<em>type module/first-number - last-number</em>]  [...]</p>
<p>Although this command looks daunting at first, it&#8217;s not.</p>
<p>In our case, we would simply use:</p>
<p><strong>     switch(config)# define interface-range SERVERS FastEthernet0/30 &#8211; 48</strong></p>
<p>Although this example only has one range, you could add a comma at the end and note another range. We are now allowed to use the name SERVERS as an interface range. This shown below.</p>
<p><strong>     switch(config)# interface range macro SERVERS</strong></p>
<p><strong>     switch(config-if-range)#</strong></p>
<p>As you can see, when configuring a large number of ports, this command can be very useful. I personally think it&#8217;s a good way to label ports. In the future you could see these definitions in your configuration.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ciscotalk.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ciscotalk.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotalk.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotalk.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotalk.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotalk.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ciscotalk.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ciscotalk.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ciscotalk.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ciscotalk.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotalk.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotalk.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotalk.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotalk.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotalk.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotalk.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotalk.wordpress.com&amp;blog=3573868&amp;post=4&amp;subd=ciscotalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ciscotalk.wordpress.com/2008/04/25/interface-macros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8764c36e53c6926e4dfba07c594f21c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ifoam</media:title>
		</media:content>
	</item>
	</channel>
</rss>
