CCIE Collaboration Lab

Let say I came into a little extra cash and I wantto build a good CCIE Collaboration Lab for people that are studying for the exam to use.  I would like ot ask you the following questions:
1. What equipment and licenses should I purchase?  My budget is 12-20,000  But I need to keep costs as low as possible.  Lower costs = more stuff for your to play with.
2. Would you use such a service?
3. How long of a session should a user be alotted per visist? 4 6 8 10 hours?
4. What would you be willing to pay for a session?
Any other suggestions?
---Michael

Exam hardware/software list:
https://learningnetwork.cisco.com/docs/DOC-5292
I cannot answer the other questions as I got mine several years ago so obviously would not be intersted :-)
HTH,
Chris

Similar Messages

  • Equipment needed for a proper CCIE Collaboration Lab

    Currently at home I have a 1760 router, a 3550 switch a 5505 firewall, a Fortinet 60B, two Dell poweredge servers with ESXi, a DD-WRT router with QoS capabilities, and a dozen or so Cisco 7912 phones.
    I'm going to be picking up a 2821 router and a POE 3560 switch in the next few days.  I have access to loads of WIC cards, PVDM2's and a CUE-NM module.  I also have all of the software (CallManager 9.1, Unity, UCCX, Presence, and MeetingPlace 8.6).  Cisco doesnt offer a temporary license for UCCX or MeetingPlace.  So I dont know if I'll be able to install it.  Anybody have any idea's for that?
    What else should I put on my wish list to buy?  I dont have tons of money.  So the newer routers and switches are out of the question.  I know they expect you to have a 2900 router, a 3900 router, and a newer 4400-x switch.  But realistically, what would you be able to do on those that you couldnt on a 2800 and 3560?
    I do think I'll need to break down and buy a pair of video phones.  I dont think there is a way around that.

    Hi,
    take a look at this:
    https://learningnetwork.cisco.com/docs/DOC-20807 (requires login).
    I don't know yet (I guess nobody does) why they changed the hw from 28xx to 29xx, PVDM2 to PVDM3.
    About the switches, I guess if you've got a 3560, that would do, I can't imagine why would anyone need a newer version, unless there's something really, really specific.
    UCCX license comes on the installation media (a temporary one, valid for a month, but come on, talk to your Cisco contact to generate one for you).
    G.

  • Review of CCIE Storage Lab preparation materials

    I did a review of the ieMentor CCIE Storage Workbook and Walkthrough books for CCIE Storage lab study.  You can read my review here
    The short of it is I found the materials to be very good.  If anyone has any specific questions about them feel free to contact me.
    Brian

    Nice lab Brian ..and an interesting looking topology

  • Build a Cisco CCNA/CCNP/CCIE Virtual Lab with ArchLinux and CSR-1000V

    Hi All,
       I'm working on the CCIE certification, thought I would share with you my scripts for building a virtual LAB. I'm using ArchLinux and the latest CSR-1000V (ISO) as of June 20th. Cisco should allow you to download this ISO for free. You'll be limited to 100kb/sec out of the box, but you can also get a free 60-day eval license that will unlock 50MB/sec.
    These scripts assume you have QEMU installed of course, bridge-tools, etc.
    Probably want to enable KSM first
    echo 1 >/sys/kernel/mm/ksm/run
    This script makes one virtual disk per virtual router. I suppose you could boot one router, let it go through the install, then power it off. Then use that disk as the parent for many others (qemu backing_file). However, the CSR-1000V seems to generate various UUID's for itself during this process and I wasn't sure how this might affect the trial license.
    Boot'em up:
    # How many vrouters you want
    ROUTERS="1 2 3"
    # Location of your ISO
    ISO="/mnt/nfs/downloads/csr1000v-universalk9.03.15.00.S.155-2.S-std.iso"
    # Path virtual hard drive storage
    VDISKS="/srv/qemu"
    # Build Virtual Disks (might only want to do this once)
    for x in $ROUTERS; do
    sudo qemu-img create -f raw $VDISKS/r$x.raw 8G
    done
    for x in $ROUTERS; do
    sudo nice qemu-system-x86_64 -name r$x -daemonize -enable-kvm \
    -nodefconfig -nodefaults -no-shutdown -rtc base=utc \
    -S -cpu host -m 4096 -smp 1,sockets=4,cores=1,threads=1 -balloon virtio \
    -drive if=virtio,media=disk,cache=none,format=raw,file=$VDISKS/r$x.raw \
    -drive if=ide,index=1,media=cdrom,file=$ISO \
    -net nic,vlan=1,macaddr=68:09:68:09:68:5$x,model=virtio \
    -net tap,vlan=1,script=no \
    -net nic,vlan=2,macaddr=68:09:68:09:69:5$x,model=virtio \
    -net tap,vlan=2,script=no \
    -serial telnet:127.0.0.1:720$x,server,nowait \
    -monitor telnet:127.0.0.1:710$x,server,nowait,nodelay \
    -nographic
    echo Booting Router $x
    done
    Note that VM's boot in CPU suspended state. That's because the CSR-1000V ISO installer doesn't correctly auto-detect serial-console mode, so you have to manually select it (but only on first boot, subsequent boots seem to get it right).
    So, get xterm's going and in each one, telnet to the virtual serial port: 7201, 7202, 7203, and so on for each router.
    Boot them each with this command
    echo "cont" | nc 127.0.0.1 7101
    echo "cont" | nc 127.0.0.1 7102
    and so on
    Now just tie together the interfaces however you want. For the connectivity in the picture, use the following:
    # Build lab ethernet segments
    for x in 1 2 3; do
    brctl addbr lab$x
    ip link set up dev lab$x
    done
    # Bring up tap devices - allocated by QEMU but not up'd
    for x in 0 1 2 3 4 5; do
    ip link set up dev tap$x
    done
    # Virtually plug in our ethernet cables to correct switch ports
    brctl addif lab1 tap0
    brctl addif lab1 tap2
    brctl addif lab2 tap3
    brctl addif lab2 tap5
    brctl addif lab3 tap1
    brctl addif lab3 tap4
    Sample configurations for each router:
    Router 1:
    en
    conf t
    hostname r1
    no ip domain-lookup
    cdp run
    int gi1
    ip address 192.168.101.1 255.255.255.0
    cdp enable
    no shut
    int gi2
    ip address 192.168.103.1 255.255.255.0
    cdp enable
    no shut
    router eigrp 6809
    network 192.168.101.0
    network 192.168.103.0
    redistribute connected
    end
    Router 2
    en
    conf t
    hostname r2
    no ip domain-lookup
    cdp run
    int gi1
    ip address 192.168.101.2 255.255.255.0
    cdp enable
    no shut
    int gi2
    ip address 192.168.102.2 255.255.255.0
    cdp enable
    no shut
    router eigrp 6809
    network 192.168.101.0
    network 192.168.102.0
    redistribute connected
    end
    wr
    Router 3
    en
    conf t
    hostname r3
    no ip domain-lookpu
    cdp run
    int gi1
    ip address 192.168.103.3 255.255.255.0
    cdp enable
    no shut
    int gi2
    ip address 192.168.102.3 255.255.255.0
    cdp enable
    no shut
    router eigrp 6809
    network 192.168.102.0
    network 192.168.103.0
    redistribute connected
    end
    wr
    Last edited by gshearer (2015-06-20 16:47:36)

    Very Interesting, but i think it fits better in the wiki then on forum.
    Care to create a wiki page ?

  • CCIE Collaboration - Integrating UCCX 9 with CUCM 9

    Hello guys,
    I just saw that video integrating UCCX 9 with CUCM 9 .hope you will like it..
    http://voicebootcamp.com/index.php/free-video-labs/video/latest/uccx9
    enjoy..

    No, it's not.  You are reading it correctly.  None of the UCCX 9x versions support CUCM 7x.
    The last UCCX version to support CUCM 7x was 8.0(2)SU4.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • SWAP CCIE STORAGE LAB IN Brusselles

    Hi
    i have lab scheduled on 22nd of Oct, if any body interested to swap it, drop me email pls. [email protected]
    thanks

    Very Interesting, but i think it fits better in the wiki then on forum.
    Care to create a wiki page ?

  • Trouble with my T1's and E1's in the lab - please help.... :-)

    I'm working through my CCIE Voice/Collaboration training materials and am just about finished with the physical construction of the lab.  At this time I'm just going to install a new T1 card into my BR1 router and I'm trying to get my T1 to HQ (HQ router) and my E1 to BR2 (Branch2 router) up and running.  I am enclosing the "show run", "show isdn status" and "show e1/t1 controller" outputs.  I am using a 2801 for my HQ router, a 2851 for my PSTN/IP-WAN router, and a 2811 for my BR2 router.
    I am using a T1 cable RJ-48C/RJ-48C.  I'm embarassed to say it - but I don't have a cable tester at the time.  I lended my backup out to a friend and my primary one is not working.  I'm also not 100% sure that I'm using the correct cable.  I have VWIC2-2MFT-T1/E1 cards in my routers and I have a 2851 (PSTN router) setup to give connectivity via the T1's to HQ and BR1 and E1 connectivity to BR2.  I have taken the liberty of attaching my configs, as mentioned I don't think I have cable issues because this is the case with all my cables.
    Main issue, in the "show isdn stat" the layer 1 status is "deactivated" and when I do a shut/no shut the status goes to "shutdown" and doesn't come back up despite my efforts to enable the interface.  The only way to fix it is to reboot the router.  I've got to be missing something - I just want to get my T1's and E1 up for my CCIE Lab.  I'm building my lab based on the CCIE Voice specification and have the ability to get it modified eventually to fit the CCIE Collaboration lab.
    ***PLEASE go easy on me - I'm sure there is a fundamental configuration item or concept I'm not thinking about so I'm preparing to look like a fool - but that's okay....it's part of learning.  :-)  ***
    Any help would be so much appreciated.  All configs are pasted below.......
    ==========================================================
    =================START OF BR2 CONFIG=======================
    BR2_RTR#show controllers e1
    E1 0/0/0 is down.
      Applique type is Channelized E1 - balanced
      Transmitter is sending remote alarm.
      Receiver has loss of signal.
      alarm-trigger is not set
      Version info Firmware: 20100222, FPGA: 13, spm_count = 0
      Framing is CRC4, Line Code is HDB3, Clock Source is Line.
      Data in current interval (895 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 895 Unavail Secs
      Total Data (last 24 hours)
         0 Line Code Violations, 0 Path Code Violations,
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 86400 Unavail Secs
    BR2_RTR#show isdn stat
    Global ISDN Switchtype = primary-net5
    ISDN Serial0/0/0:15 interface
            dsl 0, interface ISDN Switchtype = primary-net5
        Layer 1 Status:
            DEACTIVATED
        Layer 2 Status:
            TEI = 0, Ces = 1, SAPI = 0, State = TEI_ASSIGNED
        Layer 3 Status:
            0 Active Layer 3 Call(s)
        Active dsl 0 CCBs = 0
        The Free Channel Mask:  0x00000000
        Number of L2 Discards = 0, L2 Session ID = 0
        Total Allocated ISDN CCBs = 0
    BR2_RTR#show inventory
    NAME: "2811 chassis", DESCR: "2811 chassis"
    PID: CISCO2811         , VID: V06 , SN: FTX1328A0D3
    NAME: "VWIC2-1MFT-T1/E1 - 1-Port RJ-48 Multiflex Trunk - T1/E1 on Slot 0 SubSlot 0", DESCR: "VWIC2-1MFT-T1/E1 - 1-Port RJ-48 Multiflex Trunk - T1/E1"
    PID: VWIC2-1MFT-T1/E1  , VID: V01 , SN: FOC11271UAU
    NAME: "WAN Interface Card - Serial 2T on Slot 0 SubSlot 1", DESCR: "WAN Interface Card - Serial 2T"
    PID: WIC-2T            , VID: V01, SN: 35759031
    NAME: "PVDMII DSP SIMM with three DSPs on Slot 0 SubSlot 5", DESCR: "PVDMII DSP SIMM with three DSPs"
    PID: PVDM2-48          , VID: V01 , SN: FOC12221GJE
    NAME: "AIM Service Engine 0", DESCR: "AIM Service Engine"
    PID: AIM-CUE           , VID: V03 , SN: FOC11505K9D
    NAME: "16 Port 10BaseT/100BaseTX EtherSwitch on Slot 1", DESCR: "16 Port 10BaseT/100BaseTX EtherSwitch"
    PID: NM-16ESW=         , VID: 1.0, SN: FOC09245Q0H
    NAME: "Power daughter card for 16 port EtherSwitch NM on Slot 1 SubSlot 0", DESCR: "Power daughter card for 16 port EtherSwitch NM"
    PID:                     , VID: 1.0, SN: FOC09243VGH
    NAME: "Gigabit(1000BaseT) module for EtherSwitch NM on Slot 1 SubSlot 1", DESCR: "Gigabit(1000BaseT) module for EtherSwitch NM"
    PID:                     , VID: 1.0, SN: FOC092034R1
    BR2_RTR#
    BR2_RTR#
    BR2_RTR#
    BR2_RTR#
    BR2_RTR#
    BR2_RTR#show run
    Building configuration...
    Current configuration : 9148 bytes
    ! No configuration change since last restart
    version 15.1
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname BR2_RTR
    boot-start-marker
    boot-end-marker
    card type e1 0 0
    enable secret 5 $1$kYuC$TYARPnIw8mjqiVM3CqM15.
    no aaa new-model
    clock timezone CET 1 0
    clock summer-time CET recurring 1 Sun Apr 1:00 last Sun Oct 1:00
    network-clock-participate wic 0
    dot11 syslog
    ip source-route
    ip cef
    ip dhcp excluded-address 192.168.30.1 192.168.30.49
    ip dhcp excluded-address 192.168.30.70 192.168.30.254
    ip dhcp pool PHONES
    network 192.168.30.0 255.255.255.0
    default-router 192.168.30.1
    option 150 ip 3.3.3.3
    no ip domain lookup
    no ipv6 cef
    multilink bundle-name authenticated
    isdn switch-type primary-net5
    voice service voip
    allow-connections sip to sip
    sip
      bind control source-interface Loopback0
      bind media source-interface Loopback0
      registrar server expires max 600 min 60
    voice class codec 1
    codec preference 1 g711ulaw
    codec preference 2 g729r8
    voice class h323 1
      h225 timeout tcp establish 3
    voice register global
    mode cme
    source-address 3.3.3.3 port 5060
    max-dn 20
    max-pool 10
    load 7960-7940 P0S3-08-6-00
    authenticate register
    tftp-path flash:
    create profile sync 1684632613172238
    voice register dn  1
    number 3005
    name BR2_Phone3
    voice register dn  2
    number 3006
    name BR2_Phone4
    voice register template  1
    no conference enable
    voice register dialplan 1
    type 7940-7960-others
    pattern 1 3...
    pattern 2 999
    voice register pool  1
    id mac 0008.E31B.7CD4
    type 7960
    number 1 dn 1
    template 1
    dtmf-relay sip-notify
    username 3005 password cisco
    description 3214-3005
    codec g711ulaw
    voice translation-rule 1
    rule 1 /^\(3...$\)/ /3214\1/
    voice translation-rule 2
    rule 1 /^32143/ /3/
    rule 2 /^\+3432143/ /3/
    voice translation-rule 3000
    rule 1 /^3000/ /1002/
    voice translation-profile 3000
    translate called 3000
    voice translation-profile 4digitDNIS
    translate called 2
    voice translation-profile 8digitANI
    translate calling 1
    voice-card 0
    crypto pki token default removal timeout 0
    license udi pid CISCO2811 sn FTX1328A0D3
    redundancy
    controller E1 0/0/0
    pri-group timeslots 1-3,16
    interface Loopback0
    ip address 3.3.3.3 255.255.255.255
    h323-gateway voip bind srcaddr 3.3.3.3
    interface FastEthernet0/0
    no ip address
    shutdown
    duplex auto
    speed auto
    interface Service-Engine0/0
    no ip address
    interface FastEthernet0/1
    no ip address
    duplex auto
    speed auto
    interface FastEthernet0/1.21
    description BR2-PHONES(RTR on a stick)
    encapsulation dot1Q 21
    ip address 192.168.30.1 255.255.255.0
    interface FastEthernet0/1.22
    description BR2-DATA(RTR on a stick)
    encapsulation dot1Q 22
    ip address 192.168.31.1 255.255.255.0
    interface Serial0/0/0:15
    no ip address
    encapsulation hdlc
    isdn switch-type primary-net5
    isdn incoming-voice voice
    isdn bchan-number-order ascending
    isdn outgoing display-ie
    no cdp enable
    interface Serial0/1/0
    no ip address
    shutdown
    clock rate 2000000
    interface Serial0/1/1
    description BR2-RTR_IP-WAN
    no ip address
    encapsulation frame-relay IETF
    no fair-queue
    frame-relay lmi-type ansi
    interface Serial0/1/1.1 point-to-point
    ip address 10.1.1.2 255.255.255.128
    frame-relay interface-dlci 301
    interface FastEthernet1/0
    description BR2-PHONE1
    switchport mode trunk
    switchport voice vlan 40
    no ip address
    spanning-tree portfast
    interface FastEthernet1/1
    description BR2-PHONE2
    switchport mode trunk
    switchport voice vlan 40
    no ip address
    spanning-tree portfast
    interface FastEthernet1/2
    no ip address
    interface FastEthernet1/3
    no ip address
    interface FastEthernet1/4
    no ip address
    interface FastEthernet1/5
    no ip address
    interface FastEthernet1/6
    no ip address
    interface FastEthernet1/7
    no ip address
    interface FastEthernet1/8
    no ip address
    interface FastEthernet1/9
    no ip address
    interface FastEthernet1/10
    no ip address
    interface FastEthernet1/11
    no ip address
    interface FastEthernet1/12
    no ip address
    interface FastEthernet1/13
    no ip address
    interface FastEthernet1/14
    no ip address
    interface FastEthernet1/15
    no ip address
    interface GigabitEthernet1/0
    no ip address
    interface Vlan1
    no ip address
    interface Vlan30
    description PHONES-VLAN-FOR-LAYER3-SWITCHING
    no ip address
    shutdown
    interface Vlan31
    description DATA-VLAN-FOR-LAYER3-SWITCHING
    no ip address
    shutdown
    router ospf 1
    network 3.3.3.3 0.0.0.0 area 0
    network 10.1.1.0 0.0.0.255 area 0
    network 192.168.30.0 0.0.0.255 area 0
    network 192.168.31.0 0.0.0.255 area 0
    network 192.168.0.0 0.0.255.255 area 0
    ip forward-protocol nd
    ip http server
    no ip http secure-server
    ip http path flash:/GUI
    ip route 192.168.100.0 255.255.255.0 10.1.1.1
    tftp-server flash:Desktops/320x212x12/CampusNight.png
    tftp-server flash:Desktops/320x212x12/CiscoFountain.png
    tftp-server flash:Desktops/320x212x12/MorroRock.png
    tftp-server flash:Desktops/320x212x12/NantucketFlowers.png
    tftp-server flash:Desktops/320x212x12/TN-CampusNight.png
    tftp-server flash:Desktops/320x212x12/TN-CiscoFountain.png
    tftp-server flash:Desktops/320x212x12/TN-Fountain.png
    tftp-server flash:Desktops/320x212x12/TN-MorroRock.png
    tftp-server flash:Desktops/320x212x12/TN-NantucketFlowers.png
    tftp-server flash:Desktops/320x212x12/Fountain.png
    tftp-server flash:Desktops/320x212x12/CiscoLogo.png
    tftp-server flash:Desktops/320x212x12/TN-CiscoLogo.png
    tftp-server flash:Desktops/320x212x12/List.xml
    tftp-server flash:Desktops/320x216x16/List.xml
    tftp-server flash:Desktops/320x212x16/List.xml
    tftp-server flash:ringtones/Analog1.raw
    tftp-server flash:ringtones/Analog2.raw
    tftp-server flash:ringtones/AreYouThere.raw
    tftp-server flash:ringtones/AreYouThereF.raw
    tftp-server flash:ringtones/Bass.raw
    tftp-server flash:ringtones/CallBack.raw
    tftp-server flash:ringtones/Chime.raw
    tftp-server flash:ringtones/Classic1.raw
    tftp-server flash:ringtones/Classic2.raw
    tftp-server flash:ringtones/ClockShop.raw
    tftp-server flash:ringtones/DistinctiveRingList.xml
    tftp-server flash:ringtones/Drums1.raw
    tftp-server flash:ringtones/Drums2.raw
    tftp-server flash:ringtones/FilmScore.raw
    tftp-server flash:ringtones/HarpSynth.raw
    tftp-server flash:ringtones/Jamaica.raw
    tftp-server flash:ringtones/KotoEffect.raw
    tftp-server flash:ringtones/MusicBox.raw
    tftp-server flash:ringtones/Piano1.raw
    tftp-server flash:ringtones/Piano2.raw
    tftp-server flash:ringtones/Pop.raw
    tftp-server flash:ringtones/Pulse1.raw
    tftp-server flash:ringtones/Ring1.raw
    tftp-server flash:ringtones/Ring2.raw
    tftp-server flash:ringtones/Ring3.raw
    tftp-server flash:ringtones/Ring4.raw
    tftp-server flash:ringtones/Ring5.raw
    tftp-server flash:ringtones/Ring6.raw
    tftp-server flash:ringtones/Ring7.raw
    tftp-server flash:ringtones/RingList.xml
    tftp-server flash:ringtones/Sax1.raw
    tftp-server flash:ringtones/Sax2.raw
    tftp-server flash:ringtones/Vibe.raw
    tftp-server flash:PHONE/7940-7960/P0S3-08-6-00.loads alias P0S3-08-6-00.loads
    tftp-server flash:PHONE/7940-7960/P0S3-08-6-00.sb2 alias P0S3-08-6-00.sb2
    tftp-server flash:PHONE/7940-7960/P0S3-08-6-00.bin alias P0S3-08-6-00.bin
    tftp-server flash:PHONE/7940-7960/P0S3-08-6-00.sbn alias P0S3-08-6-00.sbn
    control-plane
    voice-port 0/0/0:15
    translation-profile outgoing 4digitDNIS
    mgcp profile default
    dial-peer voice 999 pots
    translation-profile outgoing 8digitANI
    destination-pattern 999
    port 0/0/0:15
    forward-digits 3
    dial-peer voice 1 voip
    incoming called-number .
    dial-peer voice 901134 pots
    destination-pattern 901134T
    port 0/0/0:15
    dial-peer voice 3000 voip
    translation-profile outgoing 3000
    destination-pattern 3000
    session target ipv4:192.168.15.23
    voice-class codec 1
    voice-class h323 1
    telephony-service
    no auto-reg-ephone
    max-ephones 10
    max-dn 20
    ip source-address 3.3.3.3 port 2000
    network-locale ES
    time-format 24
    date-format dd-mm-yy
    max-conferences 8 gain -6
    web admin system name admin password cisco
    dn-webedit
    transfer-system full-consult
    create cnf-files version-stamp 7960 Jan 23 2014 05:43:52
    ephone-template  1
    softkeys connected  Hold Select Trnsfer Endcall HLog Park
    ephone-dn  1
    number 3001
    name BR2_Phone1
    ephone-dn  2
    number 3002
    name BR2_Phone2
    ephone  1
    device-security-mode none
    description 3214-3001
    mac-address 0008.A3FD.3A32
    ephone-template 1
    max-calls-per-button 5
    busy-trigger-per-button 3
    type 7960
    button  1:1
    ephone  2
    device-security-mode none
    description 3214-3002
    mac-address 0017.E0C6.E232
    ephone-template 1
    max-calls-per-button 5
    busy-trigger-per-button 3
    type 7961
    button  1:2
    banner motd ^CBR2 ROUTER CUCME/CUE^C
    line con 0
    password cisco
    logging synchronous
    login
    line aux 0
    line 194
    no activation-character
    no exec
    transport preferred none
    transport input all
    transport output lat pad telnet rlogin lapb-ta mop udptn v120 ssh
    line vty 0 4
    password cisco
    login
    transport input all
    line vty 5 15
    password cisco
    login
    transport input all
    scheduler allocate 20000 1000
    ntp server 172.30.1.2
    end
    ===========END OF BR2 CONFIG=================
    ===========START OF HQ CONFIG================
    HQ-RTR#show inventory
    NAME: "chassis", DESCR: "2801 chassis"
    PID: CISCO2801         , VID: V02 , SN: FTX1016Y07Z
    NAME: "motherboard", DESCR: "C2801 Motherboard with 2 Fast Ethernet"
    PID: CISCO2801         , VID: V02 , SN: FOC10140N6M
    NAME: "WIC/VIC 2", DESCR: "Two port T1 voice interface daughtercard"
    PID: VWIC-2MFT-T1=     , VID: 1.0, SN: 32867042
    NAME: "WIC/VIC/HWIC 3", DESCR: "WAN Interface Card - Serial 2T"
    PID: WIC-2T=           , VID: 1.0, SN: 32195023
    NAME: "PVDM 0", DESCR: "PVDMII DSP SIMM with three DSPs"
    PID: PVDM2-48          , VID: V01 , SN: FOC132935YB
    HQ-RTR#
    HQ-RTR#show controllers t1
    T1 0/2/0 is down.
      Applique type is Channelized T1
      Cablelength is long gain36 0db
      Transmitter is sending remote alarm.
      Receiver has loss of signal.
      alarm-trigger is not set
      Soaking time: 3, Clearance time: 10
      AIS State:Clear  LOS State:Clear  LOF State:Clear
      Version info Firmware: 20090113, FPGA: 20, spm_count = 0
      Framing is ESF, Line Code is B8ZS, Clock Source is Line.
      CRC Threshold is 320. Reported from firmware  is 320.
      Data in current interval (709 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 709 Unavail Secs
      Total Data (last 24 hours)
         0 Line Code Violations, 0 Path Code Violations,
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 86400 Unavail Secs
    T1 0/2/1 is down.
      Applique type is Channelized T1
      Cablelength is long gain36 0db
      Transmitter is sending remote alarm.
      Receiver has loss of signal.
      alarm-trigger is not set
      Soaking time: 3, Clearance time: 10
      AIS State:Clear  LOS State:Clear  LOF State:Clear
      Version info Firmware: 20090113, FPGA: 20, spm_count = 0
      Framing is ESF, Line Code is B8ZS, Clock Source is Line.
      CRC Threshold is 320. Reported from firmware  is 320.
      Data in current interval (709 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 709 Unavail Secs
      Total Data (last 24 hours)
         0 Line Code Violations, 0 Path Code Violations,
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 86400 Unavail Secs
    HQ-RTR#show isdn stat
    Global ISDN Switchtype = primary-ni
    ISDN Serial0/2/0:23 interface
            dsl 0, interface ISDN Switchtype = primary-ni
        Layer 1 Status:
            DEACTIVATED
        Layer 2 Status:
            TEI = 0, Ces = 1, SAPI = 0, State = TEI_ASSIGNED
        Layer 3 Status:
            0 Active Layer 3 Call(s)
        Active dsl 0 CCBs = 0
        The Free Channel Mask:  0x00000000
        Number of L2 Discards = 0, L2 Session ID = 0
        Total Allocated ISDN CCBs = 0
    HQ-RTR#
    HQ-RTR#show run
    Building configuration...
    Current configuration : 6734 bytes
    ! Last configuration change at 02:32:03 UTC Tue Feb 4 2014
    version 15.1
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname HQ-RTR
    boot-start-marker
    boot-end-marker
    logging buffered 512000 informational
    enable secret 5 $1$K8GP$JbYRetpgnaxvy2wnjrPDW/
    no aaa new-model
    network-clock-participate wic 2
    dot11 syslog
    ip source-route
    ip dhcp excluded-address 192.168.11.1 192.168.11.10
    ip dhcp excluded-address 192.168.12.1 192.168.12.10
    ip dhcp excluded-address 192.168.13.1 192.168.13.10
    ip dhcp excluded-address 192.168.14.1 192.168.14.10
    ip dhcp excluded-address 192.168.16.1 192.168.16.10
    ip dhcp excluded-address 192.168.17.1 192.168.17.10
    ip dhcp pool HQ-BR1-Pool
    import all
    network 192.168.11.0 255.255.255.0
    option 150 ip 10.10.210.10
    default-router 192.168.11.1
    domain-name proctorlabs.com
    dns-server 8.8.4.4 8.8.8.8
    lease 8
    ip dhcp pool BR2-Pool
    import all
    network 192.168.12.0 255.255.255.0
    option 150 ip 10.10.202.1
    default-router 192.168.12.1
    domain-name proctorlabs.com
    dns-server 8.8.4.4 8.8.8.8
    lease 8
    ip dhcp pool PSTN-Pool
    import all
    network 192.168.13.0 255.255.255.0
    option 150 ip 10.10.100.2
    default-router 192.168.13.1
    domain-name proctorlabs.com
    dns-server 8.8.4.4 8.8.8.8
    lease 8
    ip dhcp pool Laptop-Pool
    import all
    network 192.168.14.0 255.255.255.0
    default-router 192.168.14.1
    domain-name proctorlabs.com
    dns-server 8.8.4.4 8.8.8.8
    lease 8
    ip dhcp pool WIRELESS-HOME
    import all
    network 192.168.16.0 255.255.255.0
    default-router 192.168.16.1
    dns-server 8.8.8.8 4.2.2.2
    domain-name proctorlabs.com
    lease 8
    ip cef
    no ip domain lookup
    ip domain name proctorlabs.com
    no ipv6 cef
    multilink bundle-name authenticated
    isdn switch-type primary-ni
    voice service voip
    sip
      bind control source-interface Loopback0
      bind media source-interface Loopback0
    voice class codec 1
    codec preference 1 g711ulaw
    codec preference 2 g729r8
    voice-card 0
    crypto pki token default removal timeout 0
    license udi pid CISCO2801 sn FTX1016Y07Z
    archive
    log config
      hidekeys
    controller T1 0/2/0
    pri-group timeslots 1-3,24
    controller T1 0/2/1
    interface Loopback0
    ip address 1.1.1.1 255.255.255.255
    interface FastEthernet0/0
    description (Outside Public Interface)
    ip address dhcp
    ip access-group FW-IN in
    no ip unreachables
    ip mtu 1300
    ip nat outside
    ip virtual-reassembly in
    duplex auto
    speed auto
    no cdp enable
    interface FastEthernet0/1
    no ip address
    duplex auto
    speed auto
    interface FastEthernet0/1.11
    description (Inside Private Interface)
    encapsulation dot1Q 11
    ip address 192.168.11.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.12
    description (Inside Private Interface)
    encapsulation dot1Q 12
    ip address 192.168.12.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.13
    description (Inside Private Interface)
    encapsulation dot1Q 13
    ip address 192.168.13.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.14
    description (Inside Private Interface)
    encapsulation dot1Q 14
    ip address 192.168.14.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.15
    description LAB-SERVERS
    encapsulation dot1Q 15
    ip address 192.168.15.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.16
    description WIRELESS-HOME
    encapsulation dot1Q 16
    ip address 192.168.16.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.17
    description LAB-HQ-PHONES
    encapsulation dot1Q 17
    ip address 192.168.17.1 255.255.255.0
    ip helper-address 192.168.15.22
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.18
    description LAB-HQ-DATA
    encapsulation dot1Q 18
    ip address 192.168.18.1 255.255.255.0
    ip helper-address 192.168.15.22
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.501
    description PSTN-RTR_MGMT-NETWORK
    encapsulation dot1Q 501
    ip address 172.30.1.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface Serial0/2/0:23
    no ip address
    encapsulation hdlc
    isdn switch-type primary-ni
    isdn incoming-voice voice
    isdn outgoing display-ie
    no cdp enable
    interface Serial0/3/0
    description HQ-RTR_IP-WAN
    no ip address
    encapsulation frame-relay IETF
    no fair-queue
    frame-relay lmi-type ansi
    interface Serial0/3/0.1 point-to-point
    ip address 10.1.1.1 255.255.255.128
    ip ospf mtu-ignore
    snmp trap link-status
    frame-relay interface-dlci 103
    interface Serial0/3/0.2 point-to-point
    ip address 10.1.1.129 255.255.255.128
    ip ospf mtu-ignore
    snmp trap link-status
    frame-relay interface-dlci 102
    interface Serial0/3/1
    no ip address
    shutdown
    clock rate 2000000
    router ospf 1
    network 1.1.1.1 0.0.0.0 area 0
    network 10.1.1.0 0.0.0.255 area 0
    network 172.30.1.0 0.0.0.3 area 0
    network 192.168.0.0 0.0.255.255 area 0
    ip forward-protocol nd
    no ip http server
    no ip http secure-server
    ip nat inside source list 101 interface FastEthernet0/0 overload
    ip route 0.0.0.0 0.0.0.0 10.0.0.1 254
    ip route 192.168.100.0 255.255.255.0 172.30.1.2
    ip route 0.0.0.0 0.0.0.0 dhcp
    access-list 101 deny   ip 192.168.0.0 0.0.255.255 10.10.0.0 0.0.255.255
    access-list 101 permit ip 192.168.0.0 0.0.255.255 any
    access-list 102 permit udp any any eq bootps
    access-list 102 permit udp any any eq bootpc
    access-list 102 permit udp any eq bootpc any
    access-list 102 permit udp any eq bootps any
    disable-eadi
    control-plane
    voice-port 0/2/0:23
    mgcp fax t38 ecm
    mgcp profile default
    dial-peer voice 91212 pots
    description PSTN-CALLS-TO-NYC-AREA-CODE
    destination-pattern 91212T
    port 0/2/0:23
    forward-digits all
    dial-peer voice 1 pots
    description INCOMING-DIAL-PEER_PSTN
    incoming called-number .
    direct-inward-dial
    port 0/2/0:23
    dial-peer voice 1000 voip
    destination-pattern 2123941...
    session protocol sipv2
    session target ipv4:192.168.15.23
    incoming called-number .
    voice-class codec 1
    dtmf-relay rtp-nte
    no vad
    dial-peer voice 1001 voip
    preference 1
    destination-pattern 2123941...
    session protocol sipv2
    session target ipv4:192.168.15.22
    incoming called-number .
    voice-class codec 1
    dtmf-relay rtp-nte
    no vad
    sip-ua
    retry invite 2
    timers trying 300
    line con 0
    password cisco
    logging synchronous
    login
    line aux 0
    line vty 0 4
    exec-timeout 30 0
    privilege level 15
    password cisco
    logging synchronous
    login
    transport input telnet ssh
    line vty 5 15
    exec-timeout 30 0
    privilege level 15
    password cisco
    logging synchronous
    login
    transport input telnet ssh
    scheduler allocate 20000 1000
    end
    HQ-RTR#
    =============END OF HQ CONFIG=============
    =======START OF PSTN-IP-WAN_RTR CONFIG=========
    PSTN_IP-WAN_RTR#show inventory
    NAME: "2851 chassis", DESCR: "2851 chassis"
    PID: CISCO2851         , VID: V01 , SN: FTX0922A1E7
    NAME: "VWIC2-2MFT-T1/E1 - 2-Port RJ-48 Multiflex Trunk - T1/E1 on Slot 0 SubSlot 0", DESCR: "VWIC2-2MFT-T1/E1 - 2-Port RJ-48 Multiflex Trunk - T1/E1"
    PID: VWIC2-2MFT-T1/E1  , VID: V01 , SN: FOC11063UF9
    NAME: "WAN Interface Card - Serial 2T on Slot 0 SubSlot 1", DESCR: "WAN Interface Card - Serial 2T"
    PID: WIC-2T      , VID: V01, SN: 35845606
    NAME: "Two port T1 voice interface daughtercard on Slot 0 SubSlot 2", DESCR: "Two port T1 voice interface daughtercard"
    PID: VWIC-2MFT-T1=     , VID: 1.0, SN: 29803060
    NAME: "WAN Interface Card - Serial 2T on Slot 0 SubSlot 3", DESCR: "WAN Interface Card - Serial 2T"
    PID: WIC-2T=           , VID: 1.0, SN: 23188546
    NAME: "PVDMII DSP SIMM with Two DSPs on Slot 0 SubSlot 4", DESCR: "PVDMII DSP SIMM with Two DSPs"
    PID: PVDM2-32          , VID: V01 , SN: FOC12045356
    PSTN_IP-WAN_RTR#show controllers t1
    T1 0/2/0 is down.
      Applique type is Channelized T1
      Cablelength is long gain36 0db
      Description: HQ_T1
      Transmitter is sending remote alarm.
      Receiver has loss of signal.
      alarm-trigger is not set
      Soaking time: 3, Clearance time: 10
      AIS State:Clear  LOS State:Clear  LOF State:Clear
      Version info Firmware: 20071129, FPGA: 20, spm_count = 0
      Framing is ESF, Line Code is B8ZS, Clock Source is Internal.
      CRC Threshold is 320. Reported from firmware  is 320.
      Data in current interval (852 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 852 Unavail Secs
      Total Data (last 24 hours)
         0 Line Code Violations, 0 Path Code Violations,
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 86400 Unavail Secs
    T1 0/2/1 is down.
      Applique type is Channelized T1
      Cablelength is long gain36 0db
      Description: BR1_T1
      Transmitter is sending remote alarm.
      Receiver has loss of signal.
      alarm-trigger is not set
      Soaking time: 3, Clearance time: 10
      AIS State:Clear  LOS State:Clear  LOF State:Clear
      Version info Firmware: 20071129, FPGA: 20, spm_count = 0
      Framing is ESF, Line Code is B8ZS, Clock Source is Internal.
      CRC Threshold is 320. Reported from firmware  is 320.
      Data in current interval (854 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 854 Unavail Secs
      Total Data (last 24 hours)
         0 Line Code Violations, 0 Path Code Violations,
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 86400 Unavail Secs
    PSTN_IP-WAN_RTR#show controllers e1
    E1 0/0/0 is down.
      Applique type is Channelized E1 - balanced
      Cablelength is Unknown
      Description: BR2_E1
      Transmitter is sending remote alarm.
      Receiver has loss of signal.
      alarm-trigger is not set
      Version info Firmware: 20071011, FPGA: 13, spm_count = 0
      Framing is CRC4, Line Code is HDB3, Clock Source is Internal.
      Data in current interval (862 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 862 Unavail Secs
      Total Data (last 24 hours)
         0 Line Code Violations, 0 Path Code Violations,
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 86400 Unavail Secs
    E1 0/0/1 is down.
      Applique type is Channelized E1 - balanced
      Cablelength is Unknown
      Transmitter is sending remote alarm.
      Receiver has loss of signal.
      alarm-trigger is not set
      Version info Firmware: 20071011, FPGA: 13, spm_count = 0
      Framing is CRC4, Line Code is HDB3, Clock Source is Internal.
      Data in current interval (864 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 864 Unavail Secs
      Total Data (last 24 hours)
         0 Line Code Violations, 0 Path Code Violations,
         0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 86400 Unavail Secs
    PSTN_IP-WAN_RTR#
    PSTN_IP-WAN_RTR#
    PSTN_IP-WAN_RTR#show isdn status
    Global ISDN Switchtype = primary-net5
    ISDN Serial0/0/0:15 interface
            ******* Network side configuration *******
            dsl 0, interface ISDN Switchtype = primary-net5
        Layer 1 Status:
            DEACTIVATED
        Layer 2 Status:
            TEI = 0, Ces = 1, SAPI = 0, State = TEI_ASSIGNED
        Layer 3 Status:
            0 Active Layer 3 Call(s)
        Active dsl 0 CCBs = 0
        The Free Channel Mask:  0x00000000
        Number of L2 Discards = 0, L2 Session ID = 0
    ISDN Serial0/0/1:15 interface
            ******* Network side configuration *******
            dsl 1, interface ISDN Switchtype = primary-net5
        Layer 1 Status:
            DEACTIVATED
        Layer 2 Status:
            TEI = 0, Ces = 1, SAPI = 0, State = TEI_ASSIGNED
        Layer 3 Status:
            0 Active Layer 3 Call(s)
        Active dsl 1 CCBs = 0
        The Free Channel Mask:  0x00000000
        Number of L2 Discards = 0, L2 Session ID = 0
    ISDN Serial0/2/0:23 interface
            ******* Network side configuration *******
            dsl 2, interface ISDN Switchtype = primary-ni
        Layer 1 Status:
            DEACTIVATED
        Layer 2 Status:
            TEI = 0, Ces = 1, SAPI = 0, State = TEI_ASSIGNED
        Layer 3 Status:
            0 Active Layer 3 Call(s)
        Active dsl 2 CCBs = 0
        The Free Channel Mask:  0x00000000
        Number of L2 Discards = 0, L2 Session ID = 0
    ISDN Serial0/2/1:23 interface
            ******* Network side configuration *******
            dsl 3, interface ISDN Switchtype = primary-ni
        Layer 1 Status:
            DEACTIVATED
        Layer 2 Status:
            TEI = 0, Ces = 1, SAPI = 0, State = TEI_ASSIGNED
        Layer 3 Status:
            0 Active Layer 3 Call(s)
        Active dsl 3 CCBs = 0
        The Free Channel Mask:  0x00000000
        Number of L2 Discards = 0, L2 Session ID = 0
        Total Allocated ISDN CCBs = 0
    PSTN_IP-WAN_RTR#
    PSTN_IP-WAN_RTR#show run
    Building configuration...
    Current configuration : 6518 bytes
    ! Last configuration change at 23:02:02 CST Tue Feb 4 2014
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname PSTN_IP-WAN_RTR
    boot-start-marker
    boot-end-marker
    card type e1 0 0
    logging message-counter syslog
    enable secret 5 $1$rLlG$MPPST59p5rs0FfXu8OXp1.
    no aaa new-model
    clock timezone CST -6
    clock summer-time CDT recurring
    network-clock-participate wic 0
    network-clock-participate wic 2
    dot11 syslog
    ip source-route
    ip cef
    ip dhcp excluded-address 192.168.100.1 192.168.100.10
    ip dhcp pool PSTN-PHONE
       network 192.168.100.0 255.255.255.0
       default-router 192.168.100.1
       option 150 ip 192.168.100.1
    no ip domain lookup
    no ipv6 cef
    multilink bundle-name authenticated
    frame-relay switching
    isdn switch-type primary-net5
    voice translation-rule 1
    rule 1 /^011\(.*\)/ /\1/
    rule 2 /^1\(.*\)/ /&/
    rule 3 /^00\(.*\)/ /\1/
    rule 4 /^617\(.*\)/ /1&/
    rule 5 /^212\(.*\)/ /1&/
    voice translation-rule 2
    rule 1 /^617/ /1&/
    rule 2 /^212/ /1&/
    voice translation-rule 3
    rule 1 /^212/ /1&/
    rule 2 /^34/ /&/
    voice translation-rule 4
    rule 1 /^617/ /1&/
    rule 2 /^34/ /&/
    voice translation-profile BR1-OUT
    translate calling 3
    voice translation-profile BR2-OUT
    translate calling 2
    voice translation-profile HQ-OUT
    translate calling 4
    voice translation-profile PSTN-IN
    translate called 1
    voice-card 0
    crypto pki token default removal timeout 0
    archive
    log config
      hidekeys
    controller E1 0/0/0
    clock source internal
    pri-group timeslots 1-3,16
    description BR2_E1
    controller E1 0/0/1
    clock source internal
    pri-group timeslots 1-3,16
    controller T1 0/2/0
    clock source internal
    pri-group timeslots 1-3,24
    description HQ_T1
    controller T1 0/2/1
    clock source internal
    pri-group timeslots 1-3,24
    description BR1_T1
    interface GigabitEthernet0/0
    no ip address
    duplex auto
    speed auto
    interface GigabitEthernet0/0.13
    description PSTN-PHONE_LAN
    encapsulation dot1Q 13
    ip address 192.168.100.1 255.255.255.0
    interface GigabitEthernet0/1
    description MGMT-CONNECTION-via-WIFI
    ip address 172.30.1.2 255.255.255.0
    duplex auto
    speed auto
    interface Serial0/0/0:15
    description BR2-PSTN-CONNECTION
    no ip address
    encapsulation hdlc
    isdn switch-type primary-net5
    isdn protocol-emulate network
    isdn incoming-voice voice
    no cdp enable
    interface Serial0/0/1:15
    description BR2-PSTN-CONNECTION
    no ip address
    encapsulation hdlc
    isdn switch-type primary-net5
    isdn protocol-emulate network
    isdn incoming-voice voice
    no cdp enable
    interface Serial0/1/0
    description FR_to_BR2-RTR
    no ip address
    encapsulation frame-relay IETF
    clock rate 64000
    frame-relay lmi-type ansi
    frame-relay intf-type dce
    frame-relay route 301 interface Serial0/3/0 103
    interface Serial0/1/1
    no ip address
    shutdown
    clock rate 2000000
    interface Serial0/2/0:23
    description HQ-PSTN-CONNECTION
    no ip address
    encapsulation hdlc
    isdn switch-type primary-ni
    isdn protocol-emulate network
    isdn incoming-voice voice
    no cdp enable
    interface Serial0/2/1:23
    no ip address
    encapsulation hdlc
    isdn switch-type primary-ni
    isdn protocol-emulate network
    isdn incoming-voice voice
    no cdp enable
    interface Serial0/3/0
    description FR_to_HQ-RTR_point-to-point-BR1andBR2
    no ip address
    encapsulation frame-relay IETF
    clock rate 64000
    frame-relay lmi-type ansi
    frame-relay intf-type dce
    frame-relay route 102 interface Serial0/3/1 201
    frame-relay route 103 interface Serial0/1/0 301
    interface Serial0/3/1
    description FR_to_BR1-RTR-to-HQ-RTR
    no ip address
    encapsulation frame-relay IETF
    frame-relay lmi-type ansi
    frame-relay intf-type dce
    frame-relay route 201 interface Serial0/3/0 102
    ip forward-protocol nd
    ip route 1.1.1.1 255.255.255.255 172.30.1.1
    ip route 2.2.2.2 255.255.255.255 172.30.1.1
    ip route 3.3.3.3 255.255.255.255 172.30.1.1
    ip route 10.1.1.0 255.255.255.0 172.30.1.1
    ip route 192.168.14.0 255.255.255.0 172.30.1.1
    ip route 192.168.15.0 255.255.255.0 172.30.1.1
    ip route 192.168.16.0 255.255.255.0 172.30.1.1
    ip route 192.168.17.0 255.255.255.0 172.30.1.1
    ip route 192.168.20.0 255.255.255.0 172.30.1.1
    ip route 192.168.21.0 255.255.255.0 172.30.1.1
    ip route 192.168.30.0 255.255.255.0 172.30.1.1
    ip route 192.168.31.0 255.255.255.0 172.30.1.1
    no ip http server
    no ip http secure-server
    tftp-server flash:P0030801SR02.bin
    tftp-server flash:P0030801SR02.loads
    tftp-server flash:P0030801SR02.sb2
    tftp-server flash:P0030801SR02.sbn
    tftp-server P0030801SR02.txt
    control-plane
    voice-port 0/0/0:15
    voice-port 0/2/0:23
    voice-port 0/0/1:15
    voice-port 0/2/1:23
    ccm-manager fax protocol cisco
    mgcp fax t38 ecm
    dial-peer voice 1 pots
    incoming called-number .
    direct-inward-dial
    dial-peer voice 10 pots
    description HQ-NATIONAL-CALLS-DIAL-PEER
    destination-pattern 2123941...
    port 0/2/0:23
    forward-digits all
    dial-peer voice 20 pots
    description BR1-NATIONAL-CALLS-DIAL-PEER
    destination-pattern 6178632...
    port 0/2/1:23
    forward-digits all
    dial-peer voice 30 pots
    description BR2-NATIONAL-CALLS-DIAL-PEER
    destination-pattern 32143...
    port 0/0/0:15
    forward-digits all
    dial-peer voice 31 pots
    description BR2-INTL-CALLS-DIAL-PEER
    destination-pattern 3432143...
    port 0/0/0:15
    forward-digits all
    telephony-service
    em logout 0:0 0:0 0:0
    max-ephones 2
    max-dn 10
    ip source-address 192.168.100.1 port 2000
    load 7960-7940 P00303020214
    keepalive 10
    max-conferences 4 gain -6
    transfer-system full-consult
    create cnf-files version-stamp Jan 01 2002 00:00:00
    ephone-dn  1
    number 12123945001
    label +8087812321
    description NYC
    name NYC-PSTN
    ephone-dn  2
    number 16178635001
    label 911+999
    description BOSTON
    name BOSTON-PSTN
    ephone-dn  3
    number 32145001
    label 18005551234
    description SPAIN
    name SPAIN-PSTN
    ephone-dn  4
    number 3432145002
    description SPAIN
    name SPAIN-PSTN-INTL
    ephone-dn  5
    number 5005
    label 7812321
    description 7812321
    ephone-dn  6
    number 5006
    label x5005
    description OFFICE PHONE
    ephone  1
    device-security-mode none
    mac-address 0008.A3FD.39FF
    type 7960
    button  1:1 2:2 3:3 4:4
    button  5:5
    banner motd ^CC PSTN-IP-WAN ROUTER ^C
    line con 0
    password cisco
    logging synchronous
    login
    line aux 0
    line vty 0 4
    password cisco
    login
    transport input all
    line vty 5 15
    password cisco
    login
    transport input all
    scheduler allocate 20000 1000
    ntp master
    end
    PSTN_IP-WAN_RTR#

    I have went ahead and re-enabled the voice-ports just because I left that out of my original output.  See below.....
    Do you think I ordered 3 factory made T1 cables from BlackBox and ALL of them came back to me bad?  Or perhaps they might not have made them as cross over cables......hmm...any other suggestions?
    BR2_RTR(config)#voice-port 0/0/0:15
    BR2_RTR(config-voiceport)#no shut
    BR2_RTR(config-voiceport)#do sh voice port summ
    BR2_RTR(config-voiceport)#do sh voice port summ
                                               IN       OUT
    PORT            CH   SIG-TYPE   ADMIN OPER STATUS   STATUS   EC
    =============== == ============ ===== ==== ======== ======== ==
    0/0/0:15        01  isdn-voice  up    down none     none     y
    0/0/0:15        02  isdn-voice  up    down none     none     y
    0/0/0:15        03  isdn-voice  up    down none     none     y
    50/0/1          1      efxs     up    dorm on-hook  idle     y
    50/0/2          1      efxs     up    dorm on-hook  idle     y
    PWR FAILOVER PORT        PSTN FAILOVER PORT
    =================        ==================
    HQ-RTR(config)#voice-port 0/2/0:23
    HQ-RTR(config-voiceport)#no shut
    HQ-RTR(config-voiceport)#
    HQ-RTR(config-voiceport)#
    HQ-RTR(config-voiceport)#do sh voice port summ
                                               IN       OUT
    PORT            CH   SIG-TYPE   ADMIN OPER STATUS   STATUS   EC
    =============== == ============ ===== ==== ======== ======== ==
    0/2/0:23        01  isdn-voice  up    down none     none     y
    0/2/0:23        02  isdn-voice  up    down none     none     y
    0/2/0:23        03  isdn-voice  up    down none     none     y
    PWR FAILOVER PORT        PSTN FAILOVER PORT
    =================        ==================
    PSTN_IP-WAN_RTR#conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    PSTN_IP-WAN_RTR(config)#voice-p
    PSTN_IP-WAN_RTR(config)#voice-port 0/0/0:15
    PSTN_IP-WAN_RTR(config-voiceport)#no shut
    PSTN_IP-WAN_RTR(config-voiceport)#exit
    PSTN_IP-WAN_RTR(config)#voice-por
    PSTN_IP-WAN_RTR(config)#voice-port 0/2/0:23
    PSTN_IP-WAN_RTR(config-voiceport)#no shut
    PSTN_IP-WAN_RTR(config-voiceport)#exit
    PSTN_IP-WAN_RTR(config)#voice-por
    PSTN_IP-WAN_RTR(config)#voice-port 0/0/1:15
    PSTN_IP-WAN_RTR(config-voiceport)#no shut
    PSTN_IP-WAN_RTR(config-voiceport)#exit
    PSTN_IP-WAN_RTR(config)#voice-port 0/2/1:23
    PSTN_IP-WAN_RTR(config-voiceport)#no shut
    PSTN_IP-WAN_RTR(config-voiceport)#exit
    PSTN_IP-WAN_RTR(config)#
    PSTN_IP-WAN_RTR(config)#
    PSTN_IP-WAN_RTR(config)#
    PSTN_IP-WAN_RTR(config)#do sh voice port summ
                                               IN       OUT
    PORT            CH   SIG-TYPE   ADMIN OPER STATUS   STATUS   EC
    =============== == ============ ===== ==== ======== ======== ==
    0/0/0:15        01  isdn-voice  up    dorm none     none     y
    0/0/0:15        02  isdn-voice  up    dorm none     none     y
    0/0/0:15        03  isdn-voice  up    dorm none     none     y
    0/2/0:23        01  isdn-voice  up    dorm none     none     y
    0/2/0:23        02  isdn-voice  up    dorm none     none     y
    0/2/0:23        03  isdn-voice  up    dorm none     none     y
    0/0/1:15        01  isdn-voice  up    dorm none     none     y
    0/0/1:15        02  isdn-voice  up    dorm none     none     y
    0/0/1:15        03  isdn-voice  up    dorm none     none     y
    0/2/1:23        01  isdn-voice  up    dorm none     none     y
    0/2/1:23        02  isdn-voice  up    dorm none     none     y
    0/2/1:23        03  isdn-voice  up    dorm none     none     y
    50/0/1          1      efxs     up    dorm on-hook  idle     y
    50/0/2          1      efxs     up    dorm on-hook  idle     y
    50/0/3          1      efxs     up    dorm on-hook  idle     y
    50/0/4          1      efxs     up    dorm on-hook  idle     y
    50/0/5          1      efxs     up    dorm on-hook  idle     y
    50/0/6          1      efxs     up    up   on-hook  idle     y
    PWR FAILOVER PORT        PSTN FAILOVER PORT
    =================        ==================
    PSTN_IP-WAN_RTR(config)#

  • Certification query CCNA RS

    Dear Team,
    I want to give CCNA exam in routing -swithing but as per cisco site its not very clear that which exam need to be pass to get the certification for go ahead to CCNP
    Please help as exams code i have mentioned below.
    200-120= CCNAX-cost=$295
    or
    100-101=ICND1-cost=$150
    200-101=ICND2-cost=$150
    hari       

    CCNA voice only requires CCENT:
    Prerequisites
    Any valid Cisco CCENT, CCNA Routing and Switching or any Cisco CCIEcertification can act as a prerequisite.
    There is no prereq for the CCIE voice but that exam will be retired on February 13, 2014.
    Announcement
    CCIE Voice will be retiring on February 13, 2014 and the new CCIE Collaboration will become the standard for telecom, unified communications, and video professionals.
    The replacement is called CCIE collaboration. There is no prereq for that either. The written is valid for 3 years but you need to take the lab within 18 months.
    Step One: CCIE Collaboration Written Exam
    You must pass the two-hour, written qualification exam covering those technologies and applications that comprise a Cisco Enterprise Collaboration solution before you are eligible to schedule the lab exam.
    Step Two: CCIE Collaboration Lab Exam
    The eight-hour lab exam tests your ability to get the collaboration solution operating in a timed test situation. You must make an initial attempt of the CCIE lab exam within 18-months of passing the CCIE written exam. If you do not pass the lab exam within three years of passing the written exam, you must retake the written exam before being allowed to attempt the lab exam again.
    So written is valid for 3 years but the first attempt must be within 18 months. When you are CCIE certified you need to recertify every 2 years by taking any expert level exam.
    Daniel Dib
    CCIE #37149
    Please rate helpful posts.

  • Problem with Gatekeeper license in lab

    Hi,
    I'm dealing with my CCIE VOICE lab prepearing for exame.
    I have 2811 router with ios version 12.4(24)T4.
    Since i didn't find the gatekeeper functions enabled i tried to get a demo license from cisco.
    1 The license site support now only 29xx and 39xx series for gatekeeper 'cause 28xx in out of sale
    2 i tried anyway to get a license and looks like it worked. I got a license file.
    3 Installed the license file in the flash, rebooted and checked for activation. The gatekeeper command still miss.
    During license installation i got this:
    ACCEPT? [yes/no]: yes
    Installing...Feature:gatekeeper...Successful:Not Supported  * ( does this mean that my router doesn't support the gatekeeper function ? or is related to the thing reported in point 1 ? )
    1/1 licenses were successfully installed
    0/1 licenses were existing licenses
    0/1 licenses were failed to install
    The show license command is blank, but the show license details reports this:
    HQ-ROUTER#sh license detail
    Index: 1  Feature: gatekeeper                        Version: 1.0
    License Type: Evaluation
    License State: Active, Not in Use, EULA accepted
       Evaluation total period: 8  weeks 4  days
       Evaluation period left: 8  weeks 4  days
    License Priority: Low
    Store Index: 0
    Store Name: Primary License Storage
    So there is a license, active but not in use. Don't know how make it In Use.
    I tried this:
    HQ-ROUTER#sh license status
    License Type Supported
    permanent  Non-expiring node locked license
    Does it mean that my router does not support demo\evaluation license?
    Could be this because is an
    2800 Software (C2800NM-ADVIPSERVICESK9-M), Version 12.4(24)T4 ?
    I really appreciate feedback about this issue and possible solution. 
    Thanks, regards
    Michele

    Gatekeeper licenses are enforced from IOS 12.4(20)T or later and requires you to install the license post upgrade (the eval license gives you 60 days in which to register). Additionally, a 2800 or 3800 series router requires a 'C' image from Table 1 in the below link:
    http://www.cisco.com/c/en/us/products/collateral/unified-communications/unified-border-element/order_guide_c07_462222.html

  • CCIE Wireless Prep

    Hi Experts,
    I am planning to start preparation for CCIE Wireless Exam+Lab . I need your help and kindly guide me from where i should start this.
    Lots of Books are not easy to read than to learn from Videos ,so please can you guide me from your experience , the best strategy in achieving CCIE Wireless Cert.
    Looking forward to your help and suggestions.
    And please forgive me if its not the correct forum to post this.
    Cheers.
    Have a Nice Day!
    Regards,
    waqas

    Hi Waqas,
    Though this is not the right forum I can give you some input for you. Here is the CCIE Wireless study forum if you want to get input from who is actively doing this.
    https://learningnetwork.cisco.com/groups/ccie-wireless-study-group?view=discussions
    From training material perspective, I think only IPExpert is actively developing content now a days. You can refer them for that.
    https://www.ipexpert.com/Cisco/CCIE/Wireless/Lab-Preparation-Workbook
    I have gone through this journey 1 year back &  my blog notes till Aug 2013 (www.mrncciew.com) should also help you. Here is how I have done it
    http://mrncciew.com/2013/08/27/how-to-become-a-ccie-wireless/
    Good luck for your studies & drop a line if you need any advice
    HTH
    Rasika
    **** Pls rate all useful responses ****

  • Lab schedule

    trying to book CCIE storage lab in the last couple of weeks but no luck. it always says no seat is available. has anyone seen the same thing? I heard the the schedule system allows you to book for the next 6 months. I thought there aren't that many candidates for this track...

    I am also trying to book the lab exam, but no luck even I put the date as 04/13/2008. I opened a case in the on-line support center, asking why it is so difficult to schedule the lab exam.
    The reply is "at this time there are no slots available for the Storage Lab exam. You will need to continue to monitor the online scheduling tool for slots that become available due to cancellations"
    Does anyone know how many slots per month for storage lab? CCIE storage is not hot comparing with the others, don't know why the lab space is so limited.

  • Ideal setup for a home security lab?

    Hi!!
    I am focussing on getting a home lab setup for practising cisco Security. Can some one suggest me some network devices that i can buy.. I am getting the following
    2 Cisco 1741 Routers
    1 2950 Switch
    2 Cisco 501 PIX
    Do you think I can setup a good with the following equipments?
    Thanks
    Shyam

    Hello,
    The following is listed for the the CCIE Security lab:
    http://www.cisco.com/web/learning/le3/ccie/security/lab_equipment.html
    * Cisco 2600 Series Routers
    * Cisco 3600 Series Routers
    * Cisco 3700 Series Routers
    * Cisco Catalyst 3550 Series Switches
    * Cisco PIX 500 Series Security Appliances
    * Cisco VPN 3000 Series Concentrators
    * Cisco IPS Series 4200 intrusion prevention system sensors
    * Cisco Secure Access Control Server for Windows
    * Certificate Authority Support
    * Cisco ASA 5500 Series Adaptive Security Appliances*
    I would 'aim' for that. Also go in the link and see the relevant code levels you should be working with.
    --Jason

  • Issue with client configuration for CuciLync 9.2.5

    Hi,
    we are currently preparing the client configuration for CuciLync 9.2.5.
    When CuciLync starts we don't want to see the CuciLync window in the foreground.
    Therefore we use the 'hubvisible' setting.
    %APPDATA% \Cisco\Unified Communications\Jabber\CSF\Config\jabberLocalConfig.xml
    <userConfig name="hubvisible" value="FALSE"/>
    In addition we use this setting in the file
    ProgramFiles%\Cisco Systems\CUCILync\jabber-config-defaults.xml
    At first it looks like that the setting works fine.
    But CuciLync always resets 'hubvisible' to 'true'.
    Any idea what needs to be done to ensure that the setting is not overwritten ?
    Thanks in advance for your feedback
    Best Regards
    Carsten Lucy

    that might help
    http://mysite.voicebootcamp.com/index.php/free-video-labs/video/uc-collaboration-ccie-collaboration-chapter-4-1-voice-gatew

  • SSM required for Data Mobility Manager?

    Everything I am reading is saying that to do DMM, I need a SSM. Yet when I review the CCIE Storage lab equipment list there is no SSM module listed, yet the lab blueprint says "Implement DMM". Is there a way to implement DMM without a SSM?

    Stephen, no worries, but it seems that since the Storage lab uses a 9222i and MSM's, that is how they do SME, DME, Santap etc.
    In fact, I have searched but have not found a comparison document of intelligent features supported by MSM, 9222i, and SSM. I am a bit confused over what you can or can't do with one vs. the other as far as intelligent features are concerned.

  • CIsco 2811 Gatekeeper command

                       Hi,
       I am working on my CCIE voice lab at home, but I am not able to enter the Gatekeeper command in my cisco 2811 routers. I am running IOS 12.4(15)
    Thank you for the help in advance.

    Hi Curtis,
    Had a similar issue in my lab , I did want the license. Instead i downgraded the IOS and without the demo license.
    The below IOS does not require gatekeeper license:
    "flash:c2800nm-ipvoice_ivs-mz.124-4.T7.bin"
    Cisco IOS Software, 2800 Software  (C2800NM-IPVOICE_IVS-M), Version 12.4(4)T7, RELEASE SOFTWARE (fc1)
    Technical  Support: http://www.cisco.com/techsupport
    Copyright  (c) 1986-2006 by Cisco Systems, Inc.
    Compiled Tue 28-Nov-06 18:37 by  kellythw
    ROM: System Bootstrap, Version 12.4(13r)T, RELEASE SOFTWARE  (fc1)
    HQ uptime is 2 weeks, 4 days, 12 hours, 27 minutes
    System  returned to ROM by reload at 07:28:44 PST Fri Jan 24 2014
    System restarted at  07:29:49 PST Fri Jan 24 2014
    System image file is  "flash:c2800nm-ipvoice_ivs-mz.124-4.T7.bin"
    Kidnly rate the post accordinly.
    Regards,
    Kevin

Maybe you are looking for