RSS

Monthly Archives: December 2014

Configure Asterisk on Ubuntu


1. Edit file sip.conf with this command:
#sudo gedit /etc/asterisk/sip.conf
copy paste example script =
[3001]
type = friend
context=coba
username = 3001
secret = apasaja
host = dynamic
[3002]
type = friend
context=coba
username = 3002
secret = apasaja
host = dynamic

Above script for registering user 3001 and 3002 in Asterisk Server
2. Edit file extension.conf with this command :
#sudo gedit /etc/asterisk/extension.conf
kemudian ketikkan baris berikut di bagian akhir file:
[coba]
exten => 3001,1,Dial(SIP/3001)
exten => 3002,1,Dial(SIP/3002)

 
Leave a comment

Posted by on December 31, 2014 in Uncategorized

 

MPLS Backbone


MPLS-Backbone

Tampak gambar topology untuk MPLS Backbone terdiri PE-01, P dan PE-02

Berikut ini step-by-step configure MPLS backbone :

  1. Configure ip address dan interface loopback 0 pada masing-masing router
  2. Configure routing antar router MPLS backbone dapat static atau dynamic (IGP – Interior Gateway Protocol dapat berupa RIPv2, EIGRP atau OSPF), dalam hal ini penulis memakai OSPF routing
  3. Configure BGP routing pada PE-01 dan PE-02
  4. Configure MPLS pada semua router

Berikut capture OSPF routing pada PE-01

MPLS-Backbone-PE-01-sh-ip-rou

MPLS-Backbone-P-sh-ip-rou

MPLS-Backbone-PE-02-sh-ip-rou

Berikut configure BGP pada PE-01 dan PE-02

  • PE-01(config)#router bgp 65000
  • PE-01(config-router)#neighbor 3.3.3.3 remote-as 65000
  • PE-01(config-router)#neighbor 3.3.3.3 up lo0
  • PE-02(config)#router bgp 65000
  • PE-02(config-router)#neighbor 1.1.1.1 remote-as 65000
  • PE-02(config-router)#neighbor 1.1.1.1 up lo0

Selanjutnya configure MPLS pada semua router

  • PE-01(config)#mpls label protocol ldp
  • PE-01(config)#mpls ldp router-id loopback 0 force
  • PE-01(config)#int f0/0
  • PE-01(config-if)#mpls ip
  • P(config)#mpls label protocol ldp
  • P(config)#mpls ldp router-id loopback 0 force
  • P(config)#int f0/0
  • P(config-if)#mpls ip
  • P(config-if)#int f0/1
  • P(config-if)#mpls ip
  • PE-02(config)#mpls label protocol ldp
  • PE-02(config)#mpls ldp router-id loopback 0 force
  • PE-02(config)#int f0/0
  • PE-02(config-if)#mpls ip

MPLS-Backbone-sh-mpls-forwarding-table

 
Leave a comment

Posted by on December 22, 2014 in Cisco