Sunday, June 22, 2014

Part_2 : Lab1.Basic Configuration. Telephony System integrated Mobile Jabber.

Topology






































Step 1: Check the versions
Router IOS Version:
ROM: System Bootstrap, Version 15.0(1r)XA3, RELEASE SOFTWARE (fc1)

CME version:
PSTN#sh telephony-service
CONFIG (Version=8.6)
=====================
Version 8.6

Step 2: Basic config:

  1. Clock 
  2. T1/E1 card type
  3. HDCP
  4. Vlan Plan : Vlan 90 server: for CUE;  Vlan 100 voice vlan for IPPhone; Vlan 200 data for AP 
  5. IP address: AP : 192.168.3.131;  GW(TFTP): 192.168.3.132; Service-Engine: 192.168.90.1,  Vlan 90 :192.168.90.254; Vlan 100 192.168.100.254 255.255.255.0; Vlan 200: 192.168.200.254
  6. NAT 
  7. Routing : RIPv2 + default route
  8. Note: Japper only in SIP, IPPhone config in SCCP 
Clock : 
clock timezone SYD 10 0
network-clock-participate wic 3    # T1/E1 wic port is 0/3 must participate in clock network 

T1/E1 card type

sh diag
        HWIC Slot 3:
        VWIC2-1MFT-T1/E1 - 1-Port RJ-48 Multiflex Trunk - T1/E1
        Hardware Revision        : 0.0
        Top Assy. Part Number    : 800-22628-05
        Board Revision           : E0
        Deviation Number         : 0
        Fab Version              : 04
        PCB Serial Number        : FOC15326WP9
        RMA Test History         : 00
        RMA Number               : 0-0-0-0
        RMA History              : 00
        Product (FRU) Number     : VWIC2-1MFT-T1/E1

card type e1 0 3

DHCP 
ip dhcp pool voip 
  network 192.168.100.0 255.255.255.0
  default-router 192.168.100.254
  option 150 ip 192.168.3.132       #tftp, should be the same as telephone service 

ip dhcp pool data
  network 192.168.200.0 255.255.255.0
  default-router 192.168.200.254
  dns-server 8.8.8.8

#no dhcp pool for Vlan 90 of CUE, only one ip for CUE  and no other device will in Vlan 90

Vlan 
interface Vlan90
ip add 192.168.90.254 255.255.255.0

interface Vlan100
ip add 192.168.100.254 255.255.255.0


interface Vlan200
ip add 192.168.200.254 255.255.255.0

NAT
access-list 101 deny ip any 172.168.0.0 0.0.255.255   #HQ subnets, internal networks no need NAT
access-list 101 deny ip any 192.168.0.0 0.0.255.255   #branch subnets, internal networks no need NAT
access-list 101 permit ip any any #except internal subnets, NAT translates subnet 

ip nat inside source list 101 interface GigabitEthernet 0/0 overload

interface Vlan90
ip nat inside
interface Vlan100
ip nat inside
interface Vlan200
ip nat inside

Routing : RIP+ default route
router rip
 network 192.168.3.0
 network 192.168.90.0
 network 192.168.100.0
 network 192.168.200.0
ip route 0.0.0.0 0.0.0.0 192.168.3.1 


Install Jabber in smartphone 







No comments:

Post a Comment