<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.3020" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>From the following link:&nbsp; <A 
href="http://www.cisco.com/univercd/cc/td/doc/product/software/ios123/123cgcr/vvfax_c/int_c/dpeer_c/dp_confg.htm#wp1066868">Dial 
Peers and Configuration</A>: it shows that if you want to eliminate a strink 
beginning with a,b, or c you have to use [^a^b^c] and that by using [^abc] you 
are only eliminating the a.</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>There has to be an answer somewhere! STU PACKET save us! 
;)</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
  <DIV>
  <HR>
  </DIV>
  <DIV><A name=wp1067204></A>
  <P class=pBu1_Bullet1><FONT size=2>•<IMG height=2 
  src="http://www.cisco.com/univercd/illus/images/blank.gif" width=19 
  border=0>Circumflex symbol (^)—When used within brackets, allows you to 
  eliminate a digit from consideration for dial peer matching purposes. For 
  example, a destination pattern including [^7] would not match any string 
  beginning with 7. </FONT></P><A name=wp1067205></A>
  <P class=pB2_Body2><FONT size=2>Multiple digits can also be called out within 
  brackets to eliminate more than one initial digit from dial peer matching. For 
  example, a destination pattern including [^4^6^8] would not match any digit 
  string beginning with 4, 6, or 8. </FONT></P>
  <BLOCKQUOTE>
    <DIV class=Note3><FONT size=2>
    <HR>
    <IMG src="http://www.cisco.com/univercd/illus/images/note.gif"><B>Note 
    </B><IMG height=2 src="http://www.cisco.com/univercd/illus/images/blank.gif" 
    width=6 border=0>A destination pattern including [^752] would allow matching 
    only for digit strings beginning with 5 or 2, but would not match any digit 
    strings beginning with 7. This destination pattern entry essentially behaves 
    the same way as if you had simply included [52] in the destination pattern. 
    </FONT></DIV><FONT size=2>
    <HR class=Note3>
    </FONT></BLOCKQUOTE><A name=wp1067207></A>
  <P class=pB2_Body2><FONT size=2>To eliminate a multiple digit string from dial 
  peer matching consideration, you must represent each digit in the string as a 
  succession of individual exceptions. For example, if you wanted to eliminate 
  matching any digit string beginning with 537 from consideration for dial peer 
  matching, you must ensure that your destination pattern includes [^5][^3][^7]. 
  </FONT></P><A name=wp1067208></A>
  <P class=pB1_Body1><FONT size=2>The same destination pattern can be shared 
  across multiple dial peers to form hunt groups. 
  <HR>
  </FONT></P></DIV></BLOCKQUOTE>
<DIV>--------------------------------------------------------------------------------<BR>Lelio 
Fulgenzi, B.A.<BR>Senior Analyst (CCS) * University of Guelph * Guelph, Ontario 
N1G 2W1<BR>(519) 824-4120 x56354 (519) 767-1060 FAX 
(JNHN)<BR>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
<BR>...there's no such thing as a bad timbit...<BR></DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=Nunnally@Harding.edu href="mailto:Nunnally@Harding.edu">John 
  Nunnally</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A title=cisco-voip@puck.nether.net 
  href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Tuesday, February 06, 2007 10:07 
  AM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [cisco-voip] Destination 
  Pattern Question</DIV>
  <DIV><BR></DIV>Assuming these are supposed to obey regular expression rules, 
  the meaning of<BR>the ^ is based on where it is used.&nbsp; If it is the FIRST 
  character inside a<BR>set of square brackets, it represents a "negated 
  class".&nbsp; So the [^....]<BR>construct is a specialized expression which 
  means "match any character not<BR>included in this class of characters".&nbsp; 
  [567] is a character class that<BR>matches any one of 5, 6 or 7.&nbsp; [^567] 
  is a negated class that match any<BR>character except 5, 6, or 
  7.<BR><BR>[^5^6^7] would match any character except 5, 6, 7, or a carat (^). 
  The first<BR>carat negates the class.&nbsp; The other two carats are 
  characters in the class<BR>and are redundant.<BR><BR>A ^ symbol anywhere 
  except in the [^...] construct is an "anchor" that<BR>represents the beginning 
  of a line of text.<BR><BR>Following this discussion, I'm not sure I've seen 
  any examples that<BR>contradict these rules either in CM or IOS.<BR><BR>John 
  N.<BR><BR>&gt; -----Original Message-----<BR>&gt; From: <A 
  href="mailto:cisco-voip-bounces@puck.nether.net">cisco-voip-bounces@puck.nether.net</A> 
  [mailto:cisco-voip-<BR>&gt; <A 
  href="mailto:bounces@puck.nether.net">bounces@puck.nether.net</A>] On Behalf 
  Of Ted Nugent<BR>&gt; Sent: Tuesday, February 06, 2007 8:23 AM<BR>&gt; To: 
  Patrick Diener; <A 
  href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</A><BR>&gt; 
  Subject: Re: [cisco-voip] Destination Pattern Question<BR>&gt; <BR>&gt; 
  Thanks, thats what i get for going against my gut and<BR>&gt; following an old 
  link on cco.<BR>&gt; <BR>&gt; <BR>&gt; --- Patrick Diener &lt;<A 
  href="mailto:patrick.diener@gmail.com">patrick.diener@gmail.com</A>&gt; 
  wrote:<BR>&gt; <BR>&gt; &gt; hmmm a lot of confusion about just one character 
  ;-)<BR>&gt; &gt;<BR>&gt; &gt; just to clarify<BR>&gt; &gt;<BR>&gt; &gt; ^ on 
  CM AND IOS when used in either a route pattern<BR>&gt; &gt; or<BR>&gt; &gt; 
  destination-pattern specifys an EXCLUSION or<BR>&gt; &gt; EXCLUSION RANGE so 
  [^2]<BR>&gt; &gt; == everything except 2 AND [^2347] == everything<BR>&gt; 
  &gt; except 2, 3, 4 or 7<BR>&gt; &gt;<BR>&gt; &gt; ^ on IOS when used in 
  translation-rules or voice<BR>&gt; &gt; translation-rules<BR>&gt; &gt; means 
  that the following digit will only match if<BR>&gt; &gt; found at the 
  start<BR>&gt; &gt; of a string so rule /^1/ /2/ will replace the digit<BR>&gt; 
  &gt; 1 with the digit 2<BR>&gt; &gt; if 1 is found at the start of a string 
  (e.g. 12345<BR>&gt; &gt; -&gt; 22345)<BR>&gt; &gt;<BR>&gt; &gt; 
  Regards<BR>&gt; &gt; Patrick<BR>&gt; &gt;<BR>&gt; &gt; On 2/6/07, Ted Nugent 
  &lt;<A href="mailto:tednugent69@yahoo.com">tednugent69@yahoo.com</A>&gt; 
  wrote:<BR>&gt; &gt; &gt; CM ^ = excludes, [^2] means everything except 
  2<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; IOS ^ = begins with, [^2] means 
  everything<BR>&gt; &gt; beginning<BR>&gt; &gt; &gt; with 2<BR>&gt; &gt; 
  &gt;<BR>&gt; &gt; &gt;<BR>&gt; &gt;<BR>&gt; <A 
  href="http://www.cisco.com/en/US/partner/products/sw/iosswrel/ps5013/products_fe">http://www.cisco.com/en/US/partner/products/sw/iosswrel/ps5013/products_fe</A><BR>&gt; 
  ature_guide09186a0080080e59.html#1050291<BR>&gt; &gt; &gt;<BR>&gt; &gt; 
  &gt;<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; --- Lelio Fulgenzi 
  &lt;<A href="mailto:lelio@uoguelph.ca">lelio@uoguelph.ca</A>&gt; 
  wrote:<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; &gt; I think that pattern means 
  different things in<BR>&gt; &gt; &gt; &gt; CallManager route patterns than it 
  does IOS<BR>&gt; &gt; &gt; &gt; dial-peers.<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 
  ----- Original Message -----<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; From: Patrick 
  Mowry<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; To: <A 
  href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</A><BR>&gt; 
  &gt; &gt; &gt;&nbsp;&nbsp; Sent: Monday, February 05, 2007 6:13 PM<BR>&gt; 
  &gt; &gt; &gt;&nbsp;&nbsp; Subject: Re: [cisco-voip] Destination 
  Pattern<BR>&gt; &gt; &gt; &gt; Question<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; 
  &gt; &gt;<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; Here is a quick confirmation from 
  IOS ver<BR>&gt; &gt; &gt; &gt; 12.4(11)T.&nbsp; Looks like [^2]<BR>&gt; &gt; 
  &gt; &gt;&nbsp;&nbsp; means anything but 2 and [^23] means anything<BR>&gt; 
  &gt; but<BR>&gt; &gt; &gt; &gt; 2 or 3.<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; 
  &gt; &gt;&nbsp;&nbsp; Weird.<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; 
  &gt;<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; dial-peer voice 
  100 voip<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp; destination-pattern 
  2...<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp; session target 
  ipv4:192.168.150.10<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp; codec 
  g711ulaw<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; !<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; 2611_CCME#sh dialplan number 2999<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; Macro Exp.: 2999<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; VoiceOverIpPeer100<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; peer type = 
  voice, system default peer<BR>&gt; &gt; =<BR>&gt; &gt; &gt; &gt; FALSE, 
  information type<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; = voice,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; description = 
  `',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tag = 100, 
  destination-pattern =<BR>&gt; &gt; `2...',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  answer-address = `', preference=0,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID 
  Restriction = None<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID Network 
  Number = `'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID Second 
  Number sent<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID Override 
  RDNIS = disabled,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source 
  carrier-id = `', target<BR>&gt; &gt; carrier-id<BR>&gt; &gt; &gt; &gt; = 
  `',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source 
  trunk-group-label = `',&nbsp; target<BR>&gt; &gt; &gt; &gt; trunk-group-label 
  = `',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; numbering 
  Type = `unknown'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; group = 100, 
  Admin state is up,<BR>&gt; &gt; Operation<BR>&gt; &gt; &gt; &gt; state is 
  up,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; incoming 
  called-number = `',<BR>&gt; &gt; &gt; &gt; connections/maximum = 
  0/unlimited,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DTMF Relay = 
  disabled,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; modem 
  transport = system,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; URI 
  classes:<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  Incoming (Called) =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  Incoming (Calling) =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  Destination =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; huntstop = 
  disabled,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; in bound 
  application associated:<BR>&gt; &gt; 'DEFAULT'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; out bound 
  application associated: ''<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dnis-map 
  =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; permission 
  :both<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; incoming COR 
  list:maximum capability<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; outgoing COR 
  list:minimum requirement<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Translation 
  profile (Incoming):<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Translation 
  profile (Outgoing):<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; incoming call 
  blocking:<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  translation-profile = `'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  disconnect-cause = `no-service'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; advertise 
  0x40 capacity_update_timer<BR>&gt; &gt; 25<BR>&gt; &gt; &gt; &gt; addrFamily 
  4<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; oldAddrFamily 4<BR>&gt; &gt; &gt; 
  &gt;<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 2611_CCME#sh dialplan number 
  3999<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; Macro Exp.: 3999<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; No match, result=-1<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; 2611_CCME#conf t<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; Enter 
  configuration commands, one per line.<BR>&gt; &gt; End<BR>&gt; &gt; &gt; &gt; 
  with CNTL/Z.<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 2611_CCME(config)#dial-peer 
  voice 100 voip<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 
  2611_CCME(config-dial-peer)#dest<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 
  2611_CCME(config-dial-peer)#destination-p<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; 
  2611_CCME(config-dial-peer)#destination-pattern<BR>&gt; &gt; &gt; &gt; 
  [^2]...<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 
  2611_CCME(config-dial-peer)#^Z<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 2611_CCME#sh 
  dialplan number 3999<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; Macro Exp.: 
  3999<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 
  VoiceOverIpPeer100<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; peer type = 
  voice, system default peer<BR>&gt; &gt; =<BR>&gt; &gt; &gt; &gt; FALSE, 
  information type<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; = voice,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; description = 
  `',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tag = 100, 
  destination-pattern =<BR>&gt; &gt; &gt; &gt; `[^2]...',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  answer-address = `', preference=0,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID 
  Restriction = None<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID Network 
  Number = `'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID Second 
  Number sent<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CLID Override 
  RDNIS = disabled,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source 
  carrier-id = `', target<BR>&gt; &gt; carrier-id<BR>&gt; &gt; &gt; &gt; = 
  `',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source 
  trunk-group-label = `',&nbsp; target<BR>&gt; &gt; &gt; &gt; trunk-group-label 
  = `',<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; numbering 
  Type = `unknown'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; group = 100, 
  Admin state is up,<BR>&gt; &gt; Operation<BR>&gt; &gt; &gt; &gt; state is 
  up,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; incoming 
  called-number = `',<BR>&gt; &gt; &gt; &gt; connections/maximum = 
  0/unlimited,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DTMF Relay = 
  disabled,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; modem 
  transport = system,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; URI 
  classes:<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  Incoming (Called) =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  Incoming (Calling) =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  Destination =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; huntstop = 
  disabled,<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; in bound 
  application associated:<BR>&gt; &gt; 'DEFAULT'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; out bound 
  application associated: ''<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dnis-map 
  =<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; permission 
  :both<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; incoming COR 
  list:maximum capability<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; outgoing COR 
  list:minimum requirement<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Translation 
  profile (Incoming):<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Translation 
  profile (Outgoing):<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; incoming call 
  blocking:<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  translation-profile = `'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  disconnect-cause = `no-service'<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; advertise 
  0x40 capacity_update_timer<BR>&gt; &gt; 25<BR>&gt; &gt; &gt; &gt; addrFamily 
  4<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; oldAddrFamily 4<BR>&gt; &gt; &gt; 
  &gt;<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 2611_CCME#sh dialplan number 
  2999<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; Macro Exp.: 2999<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; No match, result=-1<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; 2611_CCME#conf t<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; Enter 
  configuration commands, one per line.<BR>&gt; &gt; End<BR>&gt; &gt; &gt; &gt; 
  with CNTL/Z.<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 2611_CCME(config)#dial-peer 
  voice 100 voip<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; 
  2611_CCME(config-dial-peer)#destination-pattern<BR>&gt; &gt; &gt; &gt; 
  [^23]^Z.<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; 2611_CCME#sh dialplan number 
  2999<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; Macro Exp.: 2999<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; No match, result=-1<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; 2611_CCME#sh dialplan number 3999<BR>&gt; &gt; &gt; 
  &gt;&nbsp;&nbsp; Macro Exp.: 3999<BR>&gt; &gt; &gt; &gt;&nbsp;&nbsp; No match, 
  result=-1<BR>&gt; &gt; &gt; &gt;<BR>&gt; &gt;<BR>&gt; === message truncated 
  ===<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; 
  __________________________________________________________________________<BR>&gt; 
  __________<BR>&gt; We won't tell. Get more on shows you hate to love<BR>&gt; 
  (and love to hate): Yahoo! TV's Guilty Pleasures list.<BR>&gt; <A 
  href="http://tv.yahoo.com/collections/265">http://tv.yahoo.com/collections/265</A><BR>&gt; 
  _______________________________________________<BR>&gt; cisco-voip mailing 
  list<BR>&gt; <A 
  href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</A><BR>&gt; 
  <A 
  href="https://puck.nether.net/mailman/listinfo/cisco-voip">https://puck.nether.net/mailman/listinfo/cisco-voip</A><BR><BR>_______________________________________________<BR>cisco-voip 
  mailing list<BR><A 
  href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</A><BR><A 
  href="https://puck.nether.net/mailman/listinfo/cisco-voip">https://puck.nether.net/mailman/listinfo/cisco-voip</A><BR></BLOCKQUOTE></BODY></HTML>