<?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/"
	>

<channel>
	<title>Aaron&#039;s Worthless Words &#187; access</title>
	<atom:link href="http://aconaway.com/tag/access/feed/" rel="self" type="application/rss+xml" />
	<link>http://aconaway.com</link>
	<description>It&#039;s possible that someone somewhere needs to see this.</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:36:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Some Exercises with IPv6 ACLs</title>
		<link>http://aconaway.com/2011/04/15/some-exercises-with-ipv6-acls/</link>
		<comments>http://aconaway.com/2011/04/15/some-exercises-with-ipv6-acls/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 19:42:06 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[access-list]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[matches]]></category>
		<category><![CDATA[sequence]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[traffic-filter]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1538</guid>
		<description><![CDATA[ACLs in IPv6 aren't that different from what you're used to dealing with in the IPv4 world.  You create a list of denies and permits for use with some other structure like filtering, PBR, and all sorts of other stuff.]]></description>
			<content:encoded><![CDATA[<p>ACLs in IPv6 aren&#8217;t that different from what you&#8217;re used to dealing with in the IPv4 world.  You create a list of denies and permits for use with some other structure like filtering, PBR, and all sorts of other stuff.  Let&#8217;s take a look at building an ACL and filtering traffic with it.</p>
<p>For those playing at home, here&#8217;s the setup I used to generate the configs and get the output.  Execute some click action for the whole thing.</p>
<p style="text-align: center;"><a href="http://aconaway.com/wp-content/uploads/2011/04/screenshot.png"><img class="size-thumbnail wp-image-1549 aligncenter" title="IPv6 ACLs" src="http://aconaway.com/wp-content/uploads/2011/04/screenshot-150x93.png" alt="" width="150" height="93" /></a></p>
<p>The first thing you need to know is that all IPv6 ACLs are extended and named.  There&#8217;s no concept of numbering and using standard list types that include the destination only.  This is a good thing in my opinion, and I&#8217;ve been doing that in my IPv4 ACLs for many years now.  This allows (forces?) you to use descriptive names and very specific entries.  Sometimes my entries are too specific, but that&#8217;s usually because people don&#8217;t include all the requirements.  I digress.</p>
<p>Creating an IPv6 ACL is so similar to the way you do it IPV4 that I don&#8217;t even want to mention it.  I&#8217;ll just give an example that we&#8217;ll use in a second.  As usual, we&#8217;re using IOS on Cisco devices.</p>
<blockquote>
<pre>ipv6 access-list TRANSIT-ACL
 permit tcp host 2001:DB8:0:1::2 host 2001:DB8::1 eq telnet
 deny ipv6 any any log</pre>
</blockquote>
<p>No numbers or ACL types means the config is a lot simpler and cleaner.  You can see that TRANSIT-ACL is allowing telnet from 2001:db8:0:1::2 to 2001:db8::1 and denying everything else.  Of course, it&#8217;s also logging the denies to  syslog so we know what&#8217;s going on.  This shouldn&#8217;t be foreign to you at all.  Note:  This is a lab, and we&#8217;re just allowing telnet as a demonstration.  You should always yell at people who try to use telnet and show them how to use SSH.  Just sayin&#8217;.</p>
<p>On a tangent, I just realized that I actually typed <em>deny any any log</em> in the last line, and the router took it to mean all IPv6.  Cool.</p>
<p>At some point, you&#8217;ll want to see what kind of matches you&#8217;re getting on the ACL.  You can do a <em>show ipv6 access-list</em> or just a <em>show access-list</em> to see them.  Of course, if you have any IPv4 ACLs configured, those will be included in the latter, bu the output of each is the same in relation to IPv6.</p>
<blockquote>
<pre>R2#show access-lists
IPv6 access list TRANSIT-ACL
    permit tcp host 2001:DB8:0:1::2 host 2001:DB8::1 eq telnet (24 matches) sequence 10
    deny ipv6 any any log (19 matches) sequence 20</pre>
</blockquote>
<p>Here you can see the entries of each ACL and see that this ACL has already been applied somewhere since it has hits.  The obvious difference between the output here and that from an IPv4 ACL is the sequence number.  In the IPv4 world, the sequence will come before the function (10 permit tcp &#8230;).  Here, it comes afterwards.  I&#8217;m not yet sure if this is better or not.  I&#8217;ll reserve judgement when I get some more experience with it.</p>
<p>If you&#8217;ve done ACLs a lot, you can probably tell that this ACL was meant for filtering traffic on an interface.  Let&#8217;s apply it to F0/1 to do such.</p>
<blockquote>
<pre>interface FastEthernet0/1
 no ip address
 ipv6 address 2001:DB8:0:1::1/64
 ipv6 traffic-filter TRANSIT-ACL in</pre>
</blockquote>
<p>Make note that we use the <em>traffic-filter</em> directive on the interface along with the ACL name and the direction.  Simple stuff.</p>
<p>There is a problem here, though.  If you remember your extensive IPv6 training, you know that we no longer have the concept of ARP to map layer-3 addresses to layer-2 addresses.  To find layer-2 neighbors, IPv6 devices use neighbor discovery (ND), which itself uses ICMPv6, to look for connected devices.  Since ICMPv6 is a layer-3 protocol like IP, when you apply this ACL as indicated, you&#8217;ll not find any new neighbors on F0/1.  If a new router has a route to 2001:db8:0:1::1, there&#8217;s no way to discover the layer-2 address, and I&#8217;ll let you guess how that works out.  Not very well.  The fix is just to allow ICMPv6 into the interface; the details of that will run away very quickly, so I&#8217;ll save it for later.</p>
<p>When one device sends ND packets, it uses it&#8217;s link local address as the source and the multicast address of FF01::1 (the all routers group) as the destination.  You can see that in the log from before we fixed our neighbor problem.</p>
<blockquote>
<pre>*Mar  1 01:10:07.735: %IPV6-6-ACCESSLOGDP: list TRANSIT-ACL/20 denied icmpv6 FE80::C002:15FF:FE58:0 -&gt; FF02::1 (134/0), 2 packets
R2#
*Mar  1 01:15:07.739: %IPV6-6-ACCESSLOGDP: list TRANSIT-ACL/20 denied icmpv6 FE80::C002:15FF:FE58:0 -&gt; FF02::1 (134/0), 2 packets
R2#
*Mar  1 01:21:07.735: %IPV6-6-ACCESSLOGDP: list TRANSIT-ACL/20 denied icmpv6 FE80::C002:15FF:FE58:0 -&gt; FF02::1 (134/0), 1 packet</pre>
</blockquote>
<p>This look pretty standard, but  you can see that the message content includes the ACL name followed by the sequence number.  Now you can see exactly which entry is denying the traffic instead of having to go through the whole 8482482-line ACL to see what happened.  I&#8217;m digging that a lot.</p>
<p>Make sure you check out <a href="http://packetlife.net/blog/2010/jun/30/ipv6-access-lists-acl-ios/">Packetlife&#8217;s post on IPv6 ACLs</a> as well.  As always, there&#8217;s good stuff going on there.</p>
<p>Send any <del>Cadbury Creme Eggs</del> questions to me.</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2011/04/15/some-exercises-with-ipv6-acls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIUC Notes &#8211; More Phone Features</title>
		<link>http://aconaway.com/2010/10/02/iiuc-notes-more-phone-features/</link>
		<comments>http://aconaway.com/2010/10/02/iiuc-notes-more-phone-features/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 17:58:49 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[voice]]></category>
		<category><![CDATA[640-460]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[after-hours]]></category>
		<category><![CDATA[blocking]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[ccna]]></category>
		<category><![CDATA[cert]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[iiuc]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[paging]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1101</guid>
		<description><![CDATA[Today we discuss paging, after-hours call blocking, call accounting, and music on hold.]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Here are some more notes from my IIUC studies. &nbsp;As always, corrections requested.</p>
<div><strong>Paging</strong></div>
<ul>
<li>Broadcasts messages to a group for a one-way communication</li>
<li>Paging groups are used to limit which phones get the broadcast</li>
<li>Paging can be unicast or multicast
<ul>
<li>Unicast groups limited to 10 members</li>
<li>Multicast requires mcast support on the network</li>
</ul>
</li>
<li>Paging configurations can be unicast, multicast, or multiple-group</li>
</ul>
<blockquote>
<p>! &nbsp;Unicast Paging<br />
		! &nbsp;When 1044 is dialed, ephone 1 is paged<br />
		R1(config)#ephone-dn 44<br />
		R1(config-ephone-dn)#number 1044<br />
		R1(config-ephone-dn)#paging<br />
		R1(config-ephone-dn)#exit<br />
		R1(config)#ephone 1<br />
		R1(config-ephone)#paging-dn 44</p>
<p>! &nbsp;Multicast Paging<br />
		! &nbsp;When 1045 is dialed, ephone 2 is paged<br />
		R1(config)#ephone-dn 45<br />
		R1(config-ephone-dn)#number 1045<br />
		R1(config-ephone-dn)#paging ip 239.1.1.100 port 2000<br />
		R1(config-ephone-dn)#exit<br />
		R1(config)#ephone 2<br />
		R2(config)#paging-dn 45</p>
<p>! &nbsp;Multiple Group Paging<br />
		! &nbsp;When 1046 is dialed, both ephones 1 and 2 are dialed<br />
		R1(config)#ephone-dn 46<br />
		R1(config-ephone-dn)#number 1046<br />
		R1(config-ephone-dn)#paging group 44, 45</p>
</blockquote>
<ul>
<li>There is a limit of 10 DNs in the paging group.</li>
</ul>
<p><strong>After-hours Call Blocking</strong></p>
<ul>
<li>Allows you to configure time ranges and patterns that cannot be called during those ranges</li>
<li>Three steps
<ol>
<li>Defines days and/or hours that are considered after-hours</li>
<li>Specify patterns to be blocked</li>
<li>Create exemptions</li>
</ol>
</li>
</ul>
<blockquote>
<p>R1(config)#telephony-service<br />
		R1(config-telephony)#after-hours day mon 18:00 07:00 &lt;- afterhours = 6pm to 7am<br />
		R1(config-telephony)#after-hours day tue 18:00 07:00<br />
		R1(config-telephony)#after-hours day wed 18:00 07:00<br />
		R1(config-telephony)#after-hours day thu 18:00 07:00<br />
		R1(config-telephony)#after-hours day fri 18:00 07:00<br />
		&#8230;<br />
		R1(config-telephony)#after-hours date Dec 25 00:00 00:00 &lt;- Christmas is after hours<br />
		&#8230;<br />
		R1(config-telephony)#after-hours block pattern 1 91900&#8230;&#8230;. 7-24 &lt;- Pattern index 1 blocks 900 numbers 7day/24hours<br />
		R1(config-telephony)#after-hours block pattern 2 91&#8230;&#8230;&#8230;. &lt;- Pattern index 2 block all long distance after hours<br />
		&#8230;<br />
		R1(config-telephony)#login timeout 15 clear 18:00 &lt;- Allows logins for entering a PIN for after-hours exemption; times out in 15 minutes and clears at 18:00<br />
		R1(config-telephony)#exit<br />
		R1(config)#ephone 1<br />
		R1(config-ephone)#after-hours exempt &lt;- the boss&#39;s phone can call anywhere except the 7-24 patterns<br />
		R1(confg-ephone)#ephone 2<br />
		R1(config-ephone)#ping 1234 &lt;- Your phone can log in with this PIN for after-hours access</p>
</blockquote>
<ul>
<li>Phones have to be restarted or reset for the Login key to be enabled.</li>
</ul>
<p><strong>Call Accounting</strong></p>
<ul>
<li>It&#39;s important to see who is calling international numbers every day at lunch.</li>
<li>Call Detail Records (CDRs) record who called what number when for how long plus more stuff.</li>
<li>CME logs CDRs to the logging buffer, syslog, or both.</li>
<li>Logging buffers clear when a router loses power, but it may be better than nothing. &nbsp;&lt;- Don&#39;t do this ever! &nbsp;Get a syslog server!</li>
</ul>
<blockquote>
<p>R1(config)#logging buffer 512000 &lt;- Set the logging buffer size to 512000 bytes<br />
		R1(config)#dial-control-mib retain-timer 120 &lt;- Roll records out in 120 minutes<br />
		R1(config)#dial-control-mib max-size 100 &lt;- Only keep last 100 records</p>
</blockquote>
<ul>
<li>Sending to syslog allows you to keep more records</li>
</ul>
<blockquote>
<p>R1(config)#gw-accounting syslog<br />
		R1(config)#logging 192.168.0.2 &lt;- Log to this server</p>
</blockquote>
<ul>
<li>Account codes are used for billing.
<ul>
<li>Each department or unit can enter a code that appears in the CDR for use later.</li>
</ul>
</li>
<li>Users press the Acct key when the call is ringing or connected to enter their code.</li>
</ul>
<p><strong>Music on Hold</strong></p>
<ul>
<li>Do I have to explain what MoH is?</li>
<li>WAV or AU file in flash</li>
<li>Files must be G.711 or G.729
<ul>
<li>G.711 is recommended since it is of higher quality</li>
</ul>
</li>
<li>Can be delivered via unicast or multicast</li>
</ul>
<blockquote>
<p>R1(config-telephony)#moh piratedmusic.au &lt;- Plays a local audio file as MoH<br />
		R1(config-telephony)#multicast moh 239.1.1.15 port 2001 &lt;- multicast the MoH</p>
</blockquote>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/10/02/iiuc-notes-more-phone-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIUC Notes &#8211; Phone Features</title>
		<link>http://aconaway.com/2010/09/30/iiuc-notes-phone-features/</link>
		<comments>http://aconaway.com/2010/09/30/iiuc-notes-phone-features/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 02:22:54 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[voice]]></category>
		<category><![CDATA[640-460]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[ccna]]></category>
		<category><![CDATA[cert]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[forward]]></category>
		<category><![CDATA[iiuc]]></category>
		<category><![CDATA[intercom]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[ntp]]></category>
		<category><![CDATA[park]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[transfer]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1093</guid>
		<description><![CDATA[There sure are a lot of phone features in CME.  Here are a few of them.]]></description>
			<content:encoded><![CDATA[<p>Here are some more notes from my IIUC studies. &nbsp;As always, corrections requested.</p>
<p><strong>Local Directory</strong></p>
<ul>
<li>Allows users to look up names</li>
<li>Allows names to show up when dialing or receiving a call</li>
<li>Most phones have a directory button; some have a menu options for the directory</li>
</ul>
<blockquote>
<p>R1(config)#ephone-dn 1<br />
		R1(config-ephone-dn)#name Roger Smith</p>
</blockquote>
<ul>
<li>Directory entries can be added manually</li>
</ul>
<blockquote>
<p>R1(config-telephony)#directory entry 1 1700 Corporate Fax<br />
		R1(config-telephony)#directory entry 2 1701 HR Fax</p>
</blockquote>
<ul>
<li>By default, sorting is done alphabetically by first name.</li>
<li>Sorting can be changed</li>
</ul>
<blockquote>
<p>R1(config-telephony)#directory last-name-first</p>
</blockquote>
<p><strong>Call Forwarding</strong></p>
<ul>
<li>Can be done by the user or through CLI</li>
<li>User presses CFwdAll button, enters a number, and #; pressing CFwdAll again cancels forwarding.</li>
<li>CLI forwarding is more flexible</li>
</ul>
<blockquote>
<p>R1(config-ephone-dn)#call-forward busy 1800<br />
		R1(config-ephone-dn)#call-forward noan 1800 timeout 25 &lt;- if no answer after 25 seconds<br />
		R1(config-ephone-dn)#call-forward max-length 0 &lt;- disabled forwarding<br />
		R1(config-ephone-dn)#call-forward max-length 4 &lt;- restricts forwarded number to a length of 4 digits</p>
</blockquote>
<ul>
<li>H.450.3: A voice gateway redirects the forward to another gateway instead of using the phone as a proxy
<ul>
<li>Direct path from originator to destination</li>
<li>Frees up network resources by keeping path direct</li>
<li>Keeps latency and jitter down by avoiding long looping paths and a hairpin turn at the phone</li>
</ul>
</li>
<li>Forwarding patterns can help restrict where calls can be forwarded</li>
</ul>
<blockquote>
<p>R1(config-telephony)#call-forward pattern 1&#8230; &lt;- allows forwarding to a 4-digit number starting with 1</p>
</blockquote>
<p><strong>Call Transfer</strong></p>
<ul>
<li>H.450.2: A voice gateway redirects transfers to another gateway instead of using the phone as a proxy.
<ul>
<li>The user doing the transfer is dropped from the conversation after transfer is complete.</li>
</ul>
</li>
<li>Generically, there are two types of forwarding.
<ul>
<li>Blind: sends the caller to the number blindly</li>
<li>Consult: &nbsp;allows you to talk to the endpoint before transferring the call</li>
</ul>
</li>
<li>CME has three types of forwarding.
<ul>
<li>full-blind: &nbsp;blind transfers using H.450.2 or SIP REFER</li>
<li>full-consult: &nbsp;consult transfers using H.450.2 or SIP REFER if second line is available; if not, fall back to full-blind</li>
<li>local-consult: &nbsp;Cisco-proprietary method for full-consult</li>
</ul>
</li>
</ul>
<blockquote>
<p>R1(config-telephony)#transfer-system full-consult<br />
		- or -<br />
		R1(config-ephone-dn)#transfer-mode consult</p>
</blockquote>
<ul>
<li>Transfer patterns work similarly to forwarding patterns</li>
</ul>
<blockquote>
<p>R1(config-telephony)#transfer-patter 1&#8230;</p>
</blockquote>
<p><strong>Call Park</strong></p>
<ul>
<li>Call parking allows a user to retrieve a call from any phone by &quot;parking&quot; the call to an extension.</li>
<li>The call can be picked up from any phone able to dial that extension.</li>
<li>Park numbers can be assigned randomly or manually.</li>
</ul>
<blockquote>
<p>R1(config-ephone-dn)#park-slot &lt;- makes this DN a park slot</p>
</blockquote>
<ul>
<li>Call parking has several options.
<ul>
<li>reserved-for <em>dn</em>: &nbsp;Only that DN can use this park-slot</li>
<li>timeout <em>seconds</em>: &nbsp;Ring the phone phone that parked the call after that many seconds to remind them of the park</li>
<li>limit <em>count</em>: &nbsp;After that many timeout intervals, drop the call. &nbsp;Not good for customers.</li>
<li>notify <em>dn [ only ]</em>: &nbsp;Notify that DN when a timeout is reached</li>
<li>recall: &nbsp;Sends the call back to the original phone when the timeout is reached</li>
<li>transfer <em>dn</em>: &nbsp;Sends the call to this DN when the timeout is reached</li>
<li>alternate <em>dn</em>: &nbsp;If the DN in the transfer command is not available, go here</li>
<li>retry <em>seconds</em>: &nbsp;Try to transfer again after this many seconds</li>
</ul>
</li>
<li>The phone must be reset for call parking to take effect.</li>
</ul>
<p><strong>Call Pickup</strong></p>
<ul>
<li>Allows users to pick up other ringing phones</li>
<li>Best to use pickup groups so the sales guys don&#39;t pick up support calls by accident</li>
</ul>
<blockquote>
<p>R1(config-ephone-dn)#pickup-group 5000</p>
</blockquote>
<ul>
<li>There are three methods to pickup a call.
<ul>
<li>Directed pickup: &nbsp;A user picks up a ringing phone by pressing PickUp followed by the target DN.</li>
<li>Local group pickup: &nbsp;A user picks up a ringing phone in his pickup group by pressing GPickUp then *.</li>
<li>Other group pickup: &nbsp;A user picks up a ringing phone in another pickup group by pressing GPickUp then the other group number.</li>
</ul>
</li>
</ul>
<p><strong>Intercom</strong></p>
<p><a href="http://www.youtube.com/watch?v=3P2dbwrT_fQ">http://www.youtube.com/watch?v=3P2dbwrT_fQ</a></p>
<ul>
<li>Technically is a speed dial and auto-answer combination</li>
<li>Intercom button is pressed, which dials a DN bound to another phone; that phone automatically answers on mute.</li>
<li>The DNs involved usually (?) can&#39;t be dialed.
<ul>
<li>e.g., A101</li>
</ul>
</li>
</ul>
<blockquote>
<p>R1(config)#ephone-dn 99<br />
		R1(config-ephone-dn)#number A99<br />
		R1(config-ephone-dn)#intercom A98 label &quot;Boss&quot;<br />
		R1(config-ephone-dn)#exit<br />
		R1(config)#ephone-dn 98<br />
		R1(config-ephone-dn)#number A98<br />
		R1(config-ephone-dn)#intercom A99 label &quot;Lackey&quot;<br />
		R1(config-ephone-dn)#exit<br />
		R1(config)#ephone 54<br />
		R1(config-ephone)#button 5:99<br />
		R1(config-ephone)#restart<br />
		R1(config)#ephone 73<br />
		R1(config-ephone)#button 5:98<br />
		R1(config-ephone)#restart</p>
</blockquote>
<ul>
<li>Other options
<ul>
<li>barge-in: &nbsp;Places existing calls on hold on the other end and barges n</li>
<li>no-auto-answer: &nbsp;Rings instead of auto answers</li>
<li>no-mute: &nbsp;Doesn&#39;t mute when auto answering. &nbsp;Can you say spying?</li>
</ul>
</li>
</ul>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/09/30/iiuc-notes-phone-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIUC Notes &#8211; Getting Phones on the LAN</title>
		<link>http://aconaway.com/2010/09/29/iiuc-notes-getting-phones-on-the-lan/</link>
		<comments>http://aconaway.com/2010/09/29/iiuc-notes-getting-phones-on-the-lan/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 01:49:06 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[voice]]></category>
		<category><![CDATA[640-460]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[ccna]]></category>
		<category><![CDATA[cert]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[dtp]]></category>
		<category><![CDATA[ethernet]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[iiuc]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[ntp]]></category>
		<category><![CDATA[over]]></category>
		<category><![CDATA[poe]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[switchport]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[trunk]]></category>

		<guid isPermaLink="false">http://aconaway.com/?p=1078</guid>
		<description><![CDATA[Today we cover some things we have to do to get the phones up and running on the LAN.]]></description>
			<content:encoded><![CDATA[<p>More study notes.&nbsp; Correct if wrong, though I hope I get some of it right since I already since I&#39;m an R&amp;S guy. &nbsp;:$</p>
<p><strong>Switchport Configuration<br />
	</strong></p>
<ul>
<li><strong>switchport mode access</strong>:&nbsp; This config makes the port an access port that carries the primary and voice VLAN traffic</li>
<li><strong>switchport mode trunk</strong>:&nbsp; This config akes the port a trunk unconditionally, but it will still send DTP messages</li>
<li><strong>switchport nonegotiate</strong>:&nbsp; This config keeps the port from sending DTP messages.</li>
<li><strong>switchport mode dynamic auto</strong>:&nbsp; If the port receives DTP messages, it will become a trunk.&nbsp; If not, it will be an access port.</li>
<li><strong>switchport mode dynamic desirable</strong>:&nbsp; The port actively sends DTP messages trying to become a trunk.&nbsp; This is the default configuration on a Cisco switch.</li>
</ul>
<p><strong>Cisco IP Phone Boot Process</strong></p>
<ol>
<li>Phone connects to an Ethernet switch and gets power if needed</li>
<li>Switch tells the phone the correct voice VLAN through CDP</li>
<li>Phone sends DHCP request for its voice VLAN</li>
<li>DHCP offer includes the TFTP server from which to download the config</li>
<li>Phone downloads the config from the TFTP server</li>
<li>Phone contacts the call processing server as dictated in the config file</li>
</ol>
<p><strong>DHCP Settings on a Cisco Router or L3 Switch</strong></p>
<blockquote>
<p>R1(config)#ip dhcp pool MYPOOL<br />
		R1(dhcp-config)#network 192.168.0.0 255.255.255.0<br />
		R1(dhcp-config)#default-router 192.168.0.1<br />
		R1(dhcp-config)#dns-server 192.168.0.10<br />
		R1(dhcp-config)#option 150 ip 192.168.0.20&nbsp; &lt;&#8211; Tells the phone to download the config from this TFTP server<br />
		R1(dhcp-config)#exit<br />
		R1(config)#ip dhcp excluded-address 192.168.0.1 192.168.0.100&nbsp; &lt;&#8211; Don&#39;t use these IPs when handing out DHCP</p>
</blockquote>
<p><strong>NTP</strong></p>
<p>Why should you use NTP for a CME setup?</p>
<ul>
<li>Phones display correct time</li>
<li>Voicemails have the correct time</li>
<li>CDRs are timestamped accurately</li>
<li>Router logs are timestamped accurately</li>
<li>Time-based access worked predictably</li>
</ul>
<blockquote>
<p>R1(config)#ntp server 1.1.1.1<br />
		R1(config)#clock timezone MYTZ -5&nbsp; &lt;&#8211; Sets the timezone to a zone called MYTZ that&#39;s 5 hours behind UTC</p>
</blockquote>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2010/09/29/iiuc-notes-getting-phones-on-the-lan/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Cisco Network Hierarchical Model</title>
		<link>http://aconaway.com/2008/02/06/the-cisco-network-hierarchical-model/</link>
		<comments>http://aconaway.com/2008/02/06/the-cisco-network-hierarchical-model/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 18:10:01 +0000</pubDate>
		<dc:creator>Aaron Conaway</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[distribution]]></category>

		<guid isPermaLink="false">http://aconaway.com/2008/02/06/the-cisco-network-hierarchical-model/</guid>
		<description><![CDATA[I got my CCNP certification library the other day to finally get myself another cert, so I&#8217;ve been doing some reading of late. The thing I hate about certs is that, even if you have all the experience in the world, there&#8217;s always a whole mess of academic stuff that no one really knows or cares about. One of those things is the Cisco Network Hierarchical Model. This model is purely academic and comes with the caveat that you may or may not want to need to use this model in your situation. In other words, here&#8217;s what we recommend, but do what you want to make your network run properly. This model tells us to configure our network in three layers &#8212; the access, distribution, and core layers. The access layer is where hosts are connected to the network. This includes your closet switches for your users and any other switches where your servers connect up. This layer is OSI layer-2 only and includes physical segments and VLANs. When I think of this layer, I immediately think of a Catalyst 2950 or 3550. The distribution layer aggregates the access layers into a central layer-3 device (a router or L3 [...]]]></description>
			<content:encoded><![CDATA[<p>I got my CCNP certification library the other day to finally get myself another cert, so I&#8217;ve been doing some reading of late.  The thing I hate about certs is that, even if you have all the experience in the world, there&#8217;s always a whole mess of academic stuff that no one really knows or cares about.  One of those things is the Cisco Network Hierarchical Model.  This model is purely academic and comes with the caveat that you may or may not want to need to use this model in your situation.  In other words, here&#8217;s what we recommend, but do what you want to make your network run properly.</p>
<p>This model tells us to configure our network in three layers &#8212; the access, distribution, and core layers.</p>
<ul>
<li>The access layer is where hosts are connected to the network.  This includes your closet switches for your users and any other switches where your servers connect up.  This layer is OSI layer-2 only and includes physical segments and VLANs.  When I think of this layer, I immediately think of a Catalyst 2950 or 3550.</li>
<li>The distribution layer aggregates the access layers into a central layer-3 device (a router or L3 switch) for distribution between access devices or up to the core.  This is where you lock down access with ACLs.  When I think of the distribution layer, I think of a 3750 or 4500.</li>
<li>The core layer combines your distribution layers at layers 3 and 4 and simply ships data from distribution layer to distribution layer.  There&#8217;s no access control so that everything is as speedy as possibly.  I think of 6500s or 7600 at this layer.</li>
</ul>
<p>Did you notice that this seems to be LAN-based?  You&#8217;re not imagining things.  This model is for deploying a campus network where every host is in the same building or very close, so Ethernet dominates connectivity.  You could apply other technologies, such as OC3s or DS0s on the core, I imagine, but there&#8217;s no mention of WANs at all in the model description.</p>
<p>Speaking of WANs, where&#8217;s my Internet access?  Where&#8217;s my HTTP server farm?  Where&#8217;s my firewall?  Where&#8217;s my management system?  Those questions are left answered in this model.  This is where the caveat comes into play.  You have to be able to place those devices in the network in the most efficient and effective place.  Your Internet access will probably be in the core.  The server farms, by definition, are just hosts, so you would create another access layer for those.  Since you need to firewall those servers off, you&#8217;ll put their access layer under their own distribution layer with the firewall at the top for access control.  Management is just another access layer, but the distribution layer where that lives isn&#8217;t quite as clear.</p>
<p>Like I said, it&#8217;s an academic model, so there&#8217;s no definitive answers for anything, but it has a lot of information in there that you may or may not have considered.</p>
<div class="wp-about-author-containter-around" style="background-color:#ffffff;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/14352aa939196349e4b9f2a272ca5112?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://aconaway.com/author/jac/' title='Aaron Conaway'>Aaron Conaway</a></h3><p>I like to lean my head to the left, hit it with the palm of my right hand, and document what knowledge falls out.</p><p><a href='http://aconaway.com' title='Aaron Conaway'>Website</a> - <a href='http://aconaway.com/author/jac/' title='More posts by Aaron Conaway'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://aconaway.com/2008/02/06/the-cisco-network-hierarchical-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

