SlideShare une entreprise Scribd logo
1  sur  27
Télécharger pour lire hors ligne
LTE-EPC
LTE-EPC TRIAL EXPERIENCE
Hussien Mahmoud- PS Core/EPC Consultant
LTE-EPC Trial Experience
Introduction
This presentation is done to list the configuration parts for a simple LTE-EPC script done
with Cisco, the presentation assumes that u have a good LTE as well as Cisco Experience
Packet Core experience. For more information, Cisco Documentations are included in the
references part.
Author Information
Hussien Mahmoud
PS Core/ EPC Consultant
Packet Core Networks
Linkedin: https://eg.linkedin.com/in/hussienmahmoud
LTE Workshop
LTE-EPC Trial Experience
LTE Workshop
 LTE-EPC Trial Experience
 Introduction
 IP Plan And Context Creation
 MME Creation and related HSS, DNS configuration
 Operator Policy and Topology Plan
 SGW and PGW Creation
 APN and CDR Configuration
LTE-EPC Trial Experience
LTE-EPC Trial
Experience
Hussien Mahmoud- PS Core/EPC Consultant
LTE-EPC Trial Experience
 We are using a simple design to include all Core
Nodes MME,SGW and PGW in one Node. All
types of traffic are included in only one interface
carrying S1-AP, S1-U ,S6a ,S5/S8 and SGi
interface.
LTE-EPC Trial Experience
Introduction
LTE-EPC Trial Experience
LTE-EPC Trial Experience
Introduction
LTE-EPC Trial Experience
LTE-EPC Trial Experience
Introduction
LTE-EPC Trial Experience
IP Plan And Context Creation
Make ur IP plan and define Two types of LTE interfaces; Internal
interfaces which u r using in the network and external interfaces
which u will communicate with.
Define each interface and loop-back for each Node, In this
example I am using only one physical interface (EPC_Interface) that
carries all types of traffic, and then I am defining a loop-back for
each service. for example; MME DNS interface, u have to define
the source and Destination IPs MME "mme_dns" as a source and
DNS "idns_lo" as a destination. later in this post I will show at
which part u will configure this IP's.
LTE-EPC Trial Experience
LTE-EPC Trial Experience
IP Plan And Context Creation
##EPC-Script####################################
#Internal IP's #################################
# Physical EPC_Interface (MME,SGW,PGW) = X.X.X.X/24
# MME Loopback mme_dns = M.M.M.M
# MME Loopback mme_s1ap = Z.Z.Z.Z
# MME Loopback mme_s11 = K.K.K.K
# MME Loopback mme_s6a = L.L.L.L
# SGW Loopback sgw_s1U_s11 = N.N.N.N
# SGW Loopback sgw_s5_s8 = P.P.P.P
# PGW Loopback pgw_s5s8 = Q.Q.Q.Q
# External IP's ################################
# HSS Loopback hss_s6a = Y.Y.Y.Y
# DNS Loopback idns_lo = C.C.C.C
# EnodeB Loopback enodb_C = W.W.W.W
# EnodeB Loopback enodb_U = R.R.R.R
#IP Pool Subnet ################################
# IP Pool as a test subnet = V.V.V.V/24
LTE-EPC Trial Experience
LTE-EPC Trial Experience
IP Plan And Context Creation
After u finish ur IP plan, configure a context named EPC and place
all the interfaces under the required context as below, it is
recommended to name each interface with a meaningful acronyms.
I am also adding a simple static route for all the interfaces.
LTE-EPC Trial Experience
#########Define EPC Context for MME,SGW,PGW
config
context EPC
interface EPC_Interface
ip address X.X.X.X 255.255.255.0
exit
interface hss_s6a loopback
ip address Y.Y.Y.Y 255.255.255.255
exit
interface mme_dns loopback
ip address M.M.M.M 255.255.255.255
exit
interface mme_s1ap loopback
ip address Z.Z.Z.Z 255.255.255.255
exit
LTE-EPC Trial Experience
LTE-EPC Trial Experience
IP Plan And Context Creation
interface mme_s11 loopback
ip address K.K.K.K 255.255.255.255
exit
interface mme_s6a loopback
ip address L.L.L.L 255.255.255.255
exit
interface sgw_s1U_s11 loopback
ip address N.N.N.N 255.255.255.255
exit
interface sgw_s5_s8 loopback
ip address P.P.P.P 255.255.255.255
exit
interface pgw_s5s8 loopback
ip address Q.Q.Q.Q 255.255.255.255
exit
end
LTE-EPC Trial Experience
LTE-EPC Trial Experience
IP Plan And Context Creation
LTE-EPC Trial Experience
 Create an HSS endpoint and HSS service, u must
have a mandatory information like endpoint host
name, realm and address. for example we are
using realm
"epc.mcc999.mnc99.3gppnetwork.org" as our
realm domain (MCC 999 and MNC 99 is just an
example).
LTE-EPC Trial Experience
MME Creation and related HSS, DNS configuration
LTE-EPC Trial Experience
MME Creation and related HSS, DNS configuration
#########HSS Configuration
#Create HSS Service and diameter endpoint
#MCC 999, MNC 99 is for testing
config
context EPC
hss-peer-service hss_service
diameter hss-endpoint MME-S6A
request timeout 1
exit
diameter endpoint MME-S6A
origin realm epc.mcc999.mnc99.3gppnetwork.org
origin host mme-s6a-endpoint.epc.mcc999.mnc99.3gppnetwork.org address L.L.L.L
peer hss-s6a-endpoint.epc.mcc999.mnc99.3gppnetwork.org realm
epc.mcc999.mnc99.3gppnetwork.org address Y.Y.Y.Y
exit
end
LTE-EPC Trial Experience
################DNS Configuration
config
context EPC
dns-client DNS
bind address M.M.M.M
exit
ip name-servers C.C.C.C
end
LTE-EPC Trial Experience
LTE-EPC Trial Experience
MME Creation and related HSS, DNS configuration
Create a simple DNS Service and bind it with
the related interface, in this example I am using
only one DNS server.
#############MME Configuration
config
context EPC
egtp-service mme_egtp
interface-type interface-mme
gtpc bind ipv4-address K.K.K.K
exit
mme-service mme_service
s1-mme sctp port 25
mme-id group-id 40000 mme-code 1
plmn-id mcc 999 mnc 99
associate egtp-service mme_egtp context EPC
associate hss-peer-service hss_service context EPC
associate subscriber-map SM
bind s1-mme ipv4-address Z.Z.Z.Z
exit
exit
end LTE-EPC Trial Experience
LTE-EPC Trial Experience
MME Creation and related HSS, DNS configuration
MME has two standard interfaces S11 and
S1AP. S11 is used for communication between
MME and SGW (requires GTPv2 Protocol), and
S1AP is the interface used for communication
between MME and EnodeB (S1AP protocol).
LTE-EPC Trial Experience
 In this step , u are creating a default action for ur MME
and enodeb information (TAI group), and also behavior
regarding the SGW and PGW selection.
 APN profile is used for PGW selection and in this case
we are giving the DNS quires a higher priority. Call
Control Profile configures the Context information for
DNS selection in both SGW and PGW, As well as the
TAI database. both APN profile and Call control profile
are associated with Operator Policy, and the operator
policy is then used under the lte policy with TAI
identifications.
LTE-EPC Trial Experience
Operator Policy and Topology Plan
######################## Operator Policy and Topology
config
lte-policy
subscriber-map SM
precedence 1 match-criteria all operator-policy-name OP
exit
tai-mgmt-db tai_mgmt_db
tai-mgmt-obj tai_mgmt_table
zone-code 1234
tai mcc 999 mnc 99 tac 10
sgw-address N.N.N.N s5-s8-protocol gtp weight 1
exit
exit
exit
operator-policy name OP
associate call-control-profile CCP
apn default-apn-profile AP1
exit
LTE-EPC Trial Experience
LTE-EPC Trial Experience
Operator Policy and Topology Plan
######################## Operator Policy and Topology
call-control-profile CCP
dns-sgw context EPC
dns-pgw context EPC
gw-selection co-location
associate tai-mgmt-db tai_mgmt_db
exit
apn-profile AP1
address-resolution-mode fallback-for-dns
pgw-address Q.Q.Q.Q
accounting mode gtpp
exit
end
LTE-EPC Trial Experience
LTE-EPC Trial Experience
Operator Policy and Topology Plan
LTE-EPC Trial Experience
SGW and PGW Creation
###########SGW Configuration Part
config
context EPC
gtpu-service sgw_gtpu_ingress
source-port standard
bind ipv4-address N.N.N.N bearer-type all
exit
egtp-service sgw_egtp_ingress
interface-type interface-sgw-ingress
associate gtpu-service sgw_gtpu_ingress
gtpc bind ipv4-address N.N.N.N
exit
gtpu-service sgw_gtpu_egress
source-port standard
bind ipv4-address P.P.P.P bearer-type all
exit
LTE-EPC Trial Experience
SGW has a standard two interfaces;
Ingress interface (S11, S1U) and Egress
interface (S5/S8). Each of the two
interfaces should include two protocols
GTPv2 as a control plane and GTPUv1
as a user plane.
###########SGW Configuration Part
egtp-service sgw_egtp_egress
interface-type interface-sgw-egress
associate gtpu-service sgw_gtpu_egress
gtpc bind ipv4-address P.P.P.P
exit
sgw-service sgw_service
associate ingress egtp-service sgw_egtp_ingress
associate egress-proto gtp egress-context EPC
plmn id mcc 999 mnc 99 primary
exit
end
LTE-EPC Trial Experience
LTE-EPC Trial Experience
SGW and PGW Creation
######################## PGW Configuration Part
config
context EPC
gtpu-service pgw_gtpu
source-port standard
bind ipv4-address Q.Q.Q.Q bearer-type all
exit
egtp-service pgw_egtp
interface-type interface-pgw-ingress
associate gtpu-service pgw_gtpu
gtpc bind ipv4-address Q.Q.Q.Q
exit
LTE-EPC Trial Experience
LTE-EPC Trial Experience
SGW and PGW Creation
PGW has only one interface as ingress (S5/S8),
this interface should support also GTPv2 as a
control plane and GTPUv1 as a user plane.
pgw-service pgw_service
plmn id mcc 602 mnc 02
associate qci-qos-mapping qci_test
associate egtp-service pgw_egtp
exit
end
# QCI Mapping ################################
Config
qci-qos-mapping qci_test
qci 128 downlink user-datagram dscp-marking 0x01
exit
end
LTE-EPC Trial Experience
LTE-EPC Trial Experience
SGW and PGW Creation
######################## APN Configuration Part
config
context EPC
ip pool ltepool.0 V.V.V.V 255.255.255.0 private 0
apn lte.trial
bearer-control-mode mixed
selection-mode subscribed sent-by-ms
gtpp group pgwnode accounting-context EPC
ip context-name EPC
ip address pool name ltepool.0
exit
LTE-EPC Trial Experience
LTE-EPC Trial Experience
In this sample, I am creating a very simple APN
profile with Postpaid category, No Gx or Gy is
required as it is an illustrative.
gtpp group pgwnode
gtpp charging-agent address F.F.F.F
gtpp attribute local-record-sequence-number
gtpp dictionary XXXXXX
gtpp storage-server mode local
gtpp storage-server local file format XXXXXXX
gtpp storage-server local file rotation volume mb 2
gtpp storage-server local file rotation time-interval 300
gtpp storage-server local file name prefix pgwnode01
exit
exit
end
##################################end###############
LTE-EPC Trial Experience
LTE-EPC Trial Experience
References
LTE-EPC Trial Experience
supporting links:
 http://www.cisco.com/c/dam/en/us/td/docs/wirel
ess/asr_5000/14_0/OL-27215_MME_Admin.pdf
 http://www.cisco.com/c/dam/en/us/td/docs/wirel
ess/asr_5000/14_0/OL-27245_SGW_Admin.pdf
 http://www.cisco.com/c/dam/en/us/td/docs/wirel
ess/asr_5000/14_0/OL-27242_PGW_Admin.pdf
Thanks
Hussien Mahmoud- PS Core/EPC Consultant

Contenu connexe

Tendances

GGSN-Gateway GPRS Support Node
GGSN-Gateway GPRS Support NodeGGSN-Gateway GPRS Support Node
GGSN-Gateway GPRS Support NodeMustafa Golam
 
SON,self optimized network
SON,self optimized networkSON,self optimized network
SON,self optimized networksivakumar D
 
20121129 lte basic procedures (2)
20121129 lte basic procedures (2)20121129 lte basic procedures (2)
20121129 lte basic procedures (2)Debasish Sahoo
 
PCRF as an EPC component
PCRF as an EPC componentPCRF as an EPC component
PCRF as an EPC componentMohamed Daif
 
S1ap lte-attach-eps-bearer-setup
S1ap lte-attach-eps-bearer-setupS1ap lte-attach-eps-bearer-setup
S1ap lte-attach-eps-bearer-setupPrashant Sengar
 
LTE network: How it all comes together architecture technical poster
LTE network: How it all comes together architecture technical posterLTE network: How it all comes together architecture technical poster
LTE network: How it all comes together architecture technical posterDavid Swift
 
4 lte access transport network dimensioning issue 1.02
4 lte access transport network dimensioning issue 1.024 lte access transport network dimensioning issue 1.02
4 lte access transport network dimensioning issue 1.02saeed_sh65
 
Networks Have Layers - Understanding The OSI Model
Networks Have Layers - Understanding The OSI ModelNetworks Have Layers - Understanding The OSI Model
Networks Have Layers - Understanding The OSI ModelBrandon Checketts
 
Lte epc ieee_comsoc_rao_april_8_2010
Lte epc ieee_comsoc_rao_april_8_2010Lte epc ieee_comsoc_rao_april_8_2010
Lte epc ieee_comsoc_rao_april_8_2010Supachok Sappasri
 
Sapc upcc-pcrf- part 2 tbp
Sapc upcc-pcrf- part 2 tbpSapc upcc-pcrf- part 2 tbp
Sapc upcc-pcrf- part 2 tbpMustafa Golam
 
Lte system signaling procedures
Lte system signaling proceduresLte system signaling procedures
Lte system signaling procedurestharinduwije
 
Radio Network Design & Roll Out
Radio Network Design & Roll OutRadio Network Design & Roll Out
Radio Network Design & Roll OutRathnaKumar47
 
1.training lte ran kpi & counters rjil
1.training lte ran kpi & counters rjil1.training lte ran kpi & counters rjil
1.training lte ran kpi & counters rjilSatish Jadav
 
Ericsson interview
Ericsson interviewEricsson interview
Ericsson interviewSatish Jadav
 

Tendances (20)

GGSN-Gateway GPRS Support Node
GGSN-Gateway GPRS Support NodeGGSN-Gateway GPRS Support Node
GGSN-Gateway GPRS Support Node
 
LTE: X2 interface
LTE: X2 interfaceLTE: X2 interface
LTE: X2 interface
 
SON,self optimized network
SON,self optimized networkSON,self optimized network
SON,self optimized network
 
Attach flow & srb
Attach flow & srbAttach flow & srb
Attach flow & srb
 
20121129 lte basic procedures (2)
20121129 lte basic procedures (2)20121129 lte basic procedures (2)
20121129 lte basic procedures (2)
 
PCRF as an EPC component
PCRF as an EPC componentPCRF as an EPC component
PCRF as an EPC component
 
S1ap lte-attach-eps-bearer-setup
S1ap lte-attach-eps-bearer-setupS1ap lte-attach-eps-bearer-setup
S1ap lte-attach-eps-bearer-setup
 
LTE network: How it all comes together architecture technical poster
LTE network: How it all comes together architecture technical posterLTE network: How it all comes together architecture technical poster
LTE network: How it all comes together architecture technical poster
 
3 gpp lte-rlc (1)
3 gpp lte-rlc (1)3 gpp lte-rlc (1)
3 gpp lte-rlc (1)
 
Nokia LTE IP Planning Guide
Nokia LTE IP Planning GuideNokia LTE IP Planning Guide
Nokia LTE IP Planning Guide
 
4 lte access transport network dimensioning issue 1.02
4 lte access transport network dimensioning issue 1.024 lte access transport network dimensioning issue 1.02
4 lte access transport network dimensioning issue 1.02
 
GTP Overview
GTP OverviewGTP Overview
GTP Overview
 
Networks Have Layers - Understanding The OSI Model
Networks Have Layers - Understanding The OSI ModelNetworks Have Layers - Understanding The OSI Model
Networks Have Layers - Understanding The OSI Model
 
Lte epc ieee_comsoc_rao_april_8_2010
Lte epc ieee_comsoc_rao_april_8_2010Lte epc ieee_comsoc_rao_april_8_2010
Lte epc ieee_comsoc_rao_april_8_2010
 
Sapc upcc-pcrf- part 2 tbp
Sapc upcc-pcrf- part 2 tbpSapc upcc-pcrf- part 2 tbp
Sapc upcc-pcrf- part 2 tbp
 
Lte system signaling procedures
Lte system signaling proceduresLte system signaling procedures
Lte system signaling procedures
 
Radio Network Design & Roll Out
Radio Network Design & Roll OutRadio Network Design & Roll Out
Radio Network Design & Roll Out
 
Lte questions adv
Lte questions advLte questions adv
Lte questions adv
 
1.training lte ran kpi & counters rjil
1.training lte ran kpi & counters rjil1.training lte ran kpi & counters rjil
1.training lte ran kpi & counters rjil
 
Ericsson interview
Ericsson interviewEricsson interview
Ericsson interview
 

En vedette

What is PCRF? – Detailed PCRF architecture and functioning
What is PCRF? – Detailed PCRF architecture and functioningWhat is PCRF? – Detailed PCRF architecture and functioning
What is PCRF? – Detailed PCRF architecture and functioningMahindra Comviva
 
Diameter Presentation
Diameter PresentationDiameter Presentation
Diameter PresentationBeny Haddad
 
PCRF-Policy Charging System-Functional Analysis
PCRF-Policy Charging System-Functional AnalysisPCRF-Policy Charging System-Functional Analysis
PCRF-Policy Charging System-Functional AnalysisBiju M R
 
Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’
Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’
Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’4G-Seminar
 
Introduction to Diameter: The Evolution of Signaling
Introduction to Diameter: The Evolution of SignalingIntroduction to Diameter: The Evolution of Signaling
Introduction to Diameter: The Evolution of SignalingPT
 
E tutorial -
E tutorial -E tutorial -
E tutorial -PSPCL
 
Presentation cisco mobile internet
Presentation   cisco mobile internetPresentation   cisco mobile internet
Presentation cisco mobile internetxKinAnx
 
Realm - Phoenix Mobile Festival
Realm - Phoenix Mobile FestivalRealm - Phoenix Mobile Festival
Realm - Phoenix Mobile FestivalDJ Rausch
 
White paper: LTE Release 12
White paper: LTE Release 12White paper: LTE Release 12
White paper: LTE Release 12Ericsson Russia
 
Ember testing internals with ember cli
Ember testing internals with ember cliEmber testing internals with ember cli
Ember testing internals with ember cliCory Forsyth
 
3 g τριανταφυλλοπουλου χριστινα
3 g τριανταφυλλοπουλου χριστινα3 g τριανταφυλλοπουλου χριστινα
3 g τριανταφυλλοπουλου χριστιναNikos Ioannidis
 
Sample template to report internet dns's performance
Sample template to report internet dns's performanceSample template to report internet dns's performance
Sample template to report internet dns's performanceMustafa Golam
 
NFV enabled EPC
NFV enabled EPCNFV enabled EPC
NFV enabled EPCElber18
 
Introduction to Realm Mobile Platform
Introduction to Realm Mobile PlatformIntroduction to Realm Mobile Platform
Introduction to Realm Mobile PlatformChristian Melchior
 
39018631 lte-overview
39018631 lte-overview39018631 lte-overview
39018631 lte-overviewcefer mecid
 
Realm of the Mobile Database: an introduction to Realm
Realm of the Mobile Database: an introduction to RealmRealm of the Mobile Database: an introduction to Realm
Realm of the Mobile Database: an introduction to RealmMartin Grider
 

En vedette (20)

Introduction to Diameter Protocol - Part1
Introduction to Diameter Protocol - Part1Introduction to Diameter Protocol - Part1
Introduction to Diameter Protocol - Part1
 
What is PCRF? – Detailed PCRF architecture and functioning
What is PCRF? – Detailed PCRF architecture and functioningWhat is PCRF? – Detailed PCRF architecture and functioning
What is PCRF? – Detailed PCRF architecture and functioning
 
Diameter Presentation
Diameter PresentationDiameter Presentation
Diameter Presentation
 
PCRF-Policy Charging System-Functional Analysis
PCRF-Policy Charging System-Functional AnalysisPCRF-Policy Charging System-Functional Analysis
PCRF-Policy Charging System-Functional Analysis
 
Diameter Overview
Diameter OverviewDiameter Overview
Diameter Overview
 
Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’
Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’
Policy and Charging Control - LTE / HSPA / EPC ‘knowledge nuggets’
 
Introduction to Diameter: The Evolution of Signaling
Introduction to Diameter: The Evolution of SignalingIntroduction to Diameter: The Evolution of Signaling
Introduction to Diameter: The Evolution of Signaling
 
UMTS/LTE/EPC Call Flows for CSFB
UMTS/LTE/EPC Call Flows for CSFBUMTS/LTE/EPC Call Flows for CSFB
UMTS/LTE/EPC Call Flows for CSFB
 
E tutorial -
E tutorial -E tutorial -
E tutorial -
 
Presentation cisco mobile internet
Presentation   cisco mobile internetPresentation   cisco mobile internet
Presentation cisco mobile internet
 
Realm - Phoenix Mobile Festival
Realm - Phoenix Mobile FestivalRealm - Phoenix Mobile Festival
Realm - Phoenix Mobile Festival
 
White paper: LTE Release 12
White paper: LTE Release 12White paper: LTE Release 12
White paper: LTE Release 12
 
Ember testing internals with ember cli
Ember testing internals with ember cliEmber testing internals with ember cli
Ember testing internals with ember cli
 
3 g τριανταφυλλοπουλου χριστινα
3 g τριανταφυλλοπουλου χριστινα3 g τριανταφυλλοπουλου χριστινα
3 g τριανταφυλλοπουλου χριστινα
 
Sample template to report internet dns's performance
Sample template to report internet dns's performanceSample template to report internet dns's performance
Sample template to report internet dns's performance
 
NFV enabled EPC
NFV enabled EPCNFV enabled EPC
NFV enabled EPC
 
Introduction to Realm Mobile Platform
Introduction to Realm Mobile PlatformIntroduction to Realm Mobile Platform
Introduction to Realm Mobile Platform
 
39018631 lte-overview
39018631 lte-overview39018631 lte-overview
39018631 lte-overview
 
Realm of the Mobile Database: an introduction to Realm
Realm of the Mobile Database: an introduction to RealmRealm of the Mobile Database: an introduction to Realm
Realm of the Mobile Database: an introduction to Realm
 
LTE Workshop
LTE WorkshopLTE Workshop
LTE Workshop
 

Similaire à Lte epc trial experience

Challenges of L2 NID Based Architecture for vCPE and NFV Deployment
Challenges of L2 NID Based Architecture for vCPE and NFV Deployment Challenges of L2 NID Based Architecture for vCPE and NFV Deployment
Challenges of L2 NID Based Architecture for vCPE and NFV Deployment Bangladesh Network Operators Group
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...Mumbai B.Sc.IT Study
 
Network Test Automation - Net Ops Coding 2015
Network Test Automation - Net Ops Coding 2015Network Test Automation - Net Ops Coding 2015
Network Test Automation - Net Ops Coding 2015Hiroshi Ota
 
Ccna voice study summary 460
Ccna voice study summary 460Ccna voice study summary 460
Ccna voice study summary 460B Mach
 
acn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdfacn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdfQual4
 
Service Provider Networks and Frame Relay
Service Provider Networks and Frame RelayService Provider Networks and Frame Relay
Service Provider Networks and Frame RelayTharindu Sankalpa
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxgalerussel59292
 
Topic 5 nx os management-ver 0.2
Topic 5 nx os management-ver 0.2Topic 5 nx os management-ver 0.2
Topic 5 nx os management-ver 0.2Krunal Shah
 
Cisco router configuration tutorial
Cisco router configuration tutorialCisco router configuration tutorial
Cisco router configuration tutorialIT Tech
 
Cisco data center support
Cisco data center supportCisco data center support
Cisco data center supportKrunal Shah
 
P&G BT Global Services - LLD Final Revision Year 2008.
P&G BT Global Services - LLD Final Revision Year 2008.P&G BT Global Services - LLD Final Revision Year 2008.
P&G BT Global Services - LLD Final Revision Year 2008.Kapil Sabharwal
 
PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...
PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...
PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...PROIDEA
 
Summative Assessment – InternetworkingPractical Assessment Se.docx
Summative Assessment – InternetworkingPractical Assessment Se.docxSummative Assessment – InternetworkingPractical Assessment Se.docx
Summative Assessment – InternetworkingPractical Assessment Se.docxmattinsonjanel
 
Dimensioning of IP Backbone
Dimensioning of IP BackboneDimensioning of IP Backbone
Dimensioning of IP BackboneEM Archieve
 
Better Network Management Through Network Programmability
Better Network Management Through Network ProgrammabilityBetter Network Management Through Network Programmability
Better Network Management Through Network ProgrammabilityCisco Canada
 

Similaire à Lte epc trial experience (20)

Challenges of L2 NID Based Architecture for vCPE and NFV Deployment
Challenges of L2 NID Based Architecture for vCPE and NFV Deployment Challenges of L2 NID Based Architecture for vCPE and NFV Deployment
Challenges of L2 NID Based Architecture for vCPE and NFV Deployment
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
 
Network Test Automation - Net Ops Coding 2015
Network Test Automation - Net Ops Coding 2015Network Test Automation - Net Ops Coding 2015
Network Test Automation - Net Ops Coding 2015
 
Ccna voice study summary 460
Ccna voice study summary 460Ccna voice study summary 460
Ccna voice study summary 460
 
acn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdfacn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdf
 
Samplab19
Samplab19Samplab19
Samplab19
 
Day 11 eigrp
Day 11 eigrpDay 11 eigrp
Day 11 eigrp
 
Service Provider Networks and Frame Relay
Service Provider Networks and Frame RelayService Provider Networks and Frame Relay
Service Provider Networks and Frame Relay
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
 
Eigrp authentication
Eigrp authenticationEigrp authentication
Eigrp authentication
 
Topic 5 nx os management-ver 0.2
Topic 5 nx os management-ver 0.2Topic 5 nx os management-ver 0.2
Topic 5 nx os management-ver 0.2
 
Cisco router configuration tutorial
Cisco router configuration tutorialCisco router configuration tutorial
Cisco router configuration tutorial
 
MENOG-Segment Routing Introduction
MENOG-Segment Routing IntroductionMENOG-Segment Routing Introduction
MENOG-Segment Routing Introduction
 
Cisco data center support
Cisco data center supportCisco data center support
Cisco data center support
 
P&G BT Global Services - LLD Final Revision Year 2008.
P&G BT Global Services - LLD Final Revision Year 2008.P&G BT Global Services - LLD Final Revision Year 2008.
P&G BT Global Services - LLD Final Revision Year 2008.
 
PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...
PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...
PLNOG 13: P. Kupisiewicz, O. Pelerin: Make IOS-XE Troubleshooting Easy – Pack...
 
Summative Assessment – InternetworkingPractical Assessment Se.docx
Summative Assessment – InternetworkingPractical Assessment Se.docxSummative Assessment – InternetworkingPractical Assessment Se.docx
Summative Assessment – InternetworkingPractical Assessment Se.docx
 
Asif
AsifAsif
Asif
 
Dimensioning of IP Backbone
Dimensioning of IP BackboneDimensioning of IP Backbone
Dimensioning of IP Backbone
 
Better Network Management Through Network Programmability
Better Network Management Through Network ProgrammabilityBetter Network Management Through Network Programmability
Better Network Management Through Network Programmability
 

Dernier

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...apidays
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 

Dernier (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 

Lte epc trial experience

  • 1. LTE-EPC LTE-EPC TRIAL EXPERIENCE Hussien Mahmoud- PS Core/EPC Consultant LTE-EPC Trial Experience
  • 2. Introduction This presentation is done to list the configuration parts for a simple LTE-EPC script done with Cisco, the presentation assumes that u have a good LTE as well as Cisco Experience Packet Core experience. For more information, Cisco Documentations are included in the references part. Author Information Hussien Mahmoud PS Core/ EPC Consultant Packet Core Networks Linkedin: https://eg.linkedin.com/in/hussienmahmoud LTE Workshop LTE-EPC Trial Experience
  • 3. LTE Workshop  LTE-EPC Trial Experience  Introduction  IP Plan And Context Creation  MME Creation and related HSS, DNS configuration  Operator Policy and Topology Plan  SGW and PGW Creation  APN and CDR Configuration LTE-EPC Trial Experience
  • 5. LTE-EPC Trial Experience  We are using a simple design to include all Core Nodes MME,SGW and PGW in one Node. All types of traffic are included in only one interface carrying S1-AP, S1-U ,S6a ,S5/S8 and SGi interface. LTE-EPC Trial Experience Introduction
  • 6. LTE-EPC Trial Experience LTE-EPC Trial Experience Introduction
  • 7. LTE-EPC Trial Experience LTE-EPC Trial Experience Introduction
  • 8. LTE-EPC Trial Experience IP Plan And Context Creation Make ur IP plan and define Two types of LTE interfaces; Internal interfaces which u r using in the network and external interfaces which u will communicate with. Define each interface and loop-back for each Node, In this example I am using only one physical interface (EPC_Interface) that carries all types of traffic, and then I am defining a loop-back for each service. for example; MME DNS interface, u have to define the source and Destination IPs MME "mme_dns" as a source and DNS "idns_lo" as a destination. later in this post I will show at which part u will configure this IP's. LTE-EPC Trial Experience
  • 9. LTE-EPC Trial Experience IP Plan And Context Creation ##EPC-Script#################################### #Internal IP's ################################# # Physical EPC_Interface (MME,SGW,PGW) = X.X.X.X/24 # MME Loopback mme_dns = M.M.M.M # MME Loopback mme_s1ap = Z.Z.Z.Z # MME Loopback mme_s11 = K.K.K.K # MME Loopback mme_s6a = L.L.L.L # SGW Loopback sgw_s1U_s11 = N.N.N.N # SGW Loopback sgw_s5_s8 = P.P.P.P # PGW Loopback pgw_s5s8 = Q.Q.Q.Q # External IP's ################################ # HSS Loopback hss_s6a = Y.Y.Y.Y # DNS Loopback idns_lo = C.C.C.C # EnodeB Loopback enodb_C = W.W.W.W # EnodeB Loopback enodb_U = R.R.R.R #IP Pool Subnet ################################ # IP Pool as a test subnet = V.V.V.V/24 LTE-EPC Trial Experience
  • 10. LTE-EPC Trial Experience IP Plan And Context Creation After u finish ur IP plan, configure a context named EPC and place all the interfaces under the required context as below, it is recommended to name each interface with a meaningful acronyms. I am also adding a simple static route for all the interfaces. LTE-EPC Trial Experience
  • 11. #########Define EPC Context for MME,SGW,PGW config context EPC interface EPC_Interface ip address X.X.X.X 255.255.255.0 exit interface hss_s6a loopback ip address Y.Y.Y.Y 255.255.255.255 exit interface mme_dns loopback ip address M.M.M.M 255.255.255.255 exit interface mme_s1ap loopback ip address Z.Z.Z.Z 255.255.255.255 exit LTE-EPC Trial Experience LTE-EPC Trial Experience IP Plan And Context Creation
  • 12. interface mme_s11 loopback ip address K.K.K.K 255.255.255.255 exit interface mme_s6a loopback ip address L.L.L.L 255.255.255.255 exit interface sgw_s1U_s11 loopback ip address N.N.N.N 255.255.255.255 exit interface sgw_s5_s8 loopback ip address P.P.P.P 255.255.255.255 exit interface pgw_s5s8 loopback ip address Q.Q.Q.Q 255.255.255.255 exit end LTE-EPC Trial Experience LTE-EPC Trial Experience IP Plan And Context Creation
  • 13. LTE-EPC Trial Experience  Create an HSS endpoint and HSS service, u must have a mandatory information like endpoint host name, realm and address. for example we are using realm "epc.mcc999.mnc99.3gppnetwork.org" as our realm domain (MCC 999 and MNC 99 is just an example). LTE-EPC Trial Experience MME Creation and related HSS, DNS configuration
  • 14. LTE-EPC Trial Experience MME Creation and related HSS, DNS configuration #########HSS Configuration #Create HSS Service and diameter endpoint #MCC 999, MNC 99 is for testing config context EPC hss-peer-service hss_service diameter hss-endpoint MME-S6A request timeout 1 exit diameter endpoint MME-S6A origin realm epc.mcc999.mnc99.3gppnetwork.org origin host mme-s6a-endpoint.epc.mcc999.mnc99.3gppnetwork.org address L.L.L.L peer hss-s6a-endpoint.epc.mcc999.mnc99.3gppnetwork.org realm epc.mcc999.mnc99.3gppnetwork.org address Y.Y.Y.Y exit end LTE-EPC Trial Experience
  • 15. ################DNS Configuration config context EPC dns-client DNS bind address M.M.M.M exit ip name-servers C.C.C.C end LTE-EPC Trial Experience LTE-EPC Trial Experience MME Creation and related HSS, DNS configuration Create a simple DNS Service and bind it with the related interface, in this example I am using only one DNS server.
  • 16. #############MME Configuration config context EPC egtp-service mme_egtp interface-type interface-mme gtpc bind ipv4-address K.K.K.K exit mme-service mme_service s1-mme sctp port 25 mme-id group-id 40000 mme-code 1 plmn-id mcc 999 mnc 99 associate egtp-service mme_egtp context EPC associate hss-peer-service hss_service context EPC associate subscriber-map SM bind s1-mme ipv4-address Z.Z.Z.Z exit exit end LTE-EPC Trial Experience LTE-EPC Trial Experience MME Creation and related HSS, DNS configuration MME has two standard interfaces S11 and S1AP. S11 is used for communication between MME and SGW (requires GTPv2 Protocol), and S1AP is the interface used for communication between MME and EnodeB (S1AP protocol).
  • 17. LTE-EPC Trial Experience  In this step , u are creating a default action for ur MME and enodeb information (TAI group), and also behavior regarding the SGW and PGW selection.  APN profile is used for PGW selection and in this case we are giving the DNS quires a higher priority. Call Control Profile configures the Context information for DNS selection in both SGW and PGW, As well as the TAI database. both APN profile and Call control profile are associated with Operator Policy, and the operator policy is then used under the lte policy with TAI identifications. LTE-EPC Trial Experience Operator Policy and Topology Plan
  • 18. ######################## Operator Policy and Topology config lte-policy subscriber-map SM precedence 1 match-criteria all operator-policy-name OP exit tai-mgmt-db tai_mgmt_db tai-mgmt-obj tai_mgmt_table zone-code 1234 tai mcc 999 mnc 99 tac 10 sgw-address N.N.N.N s5-s8-protocol gtp weight 1 exit exit exit operator-policy name OP associate call-control-profile CCP apn default-apn-profile AP1 exit LTE-EPC Trial Experience LTE-EPC Trial Experience Operator Policy and Topology Plan
  • 19. ######################## Operator Policy and Topology call-control-profile CCP dns-sgw context EPC dns-pgw context EPC gw-selection co-location associate tai-mgmt-db tai_mgmt_db exit apn-profile AP1 address-resolution-mode fallback-for-dns pgw-address Q.Q.Q.Q accounting mode gtpp exit end LTE-EPC Trial Experience LTE-EPC Trial Experience Operator Policy and Topology Plan
  • 20. LTE-EPC Trial Experience SGW and PGW Creation ###########SGW Configuration Part config context EPC gtpu-service sgw_gtpu_ingress source-port standard bind ipv4-address N.N.N.N bearer-type all exit egtp-service sgw_egtp_ingress interface-type interface-sgw-ingress associate gtpu-service sgw_gtpu_ingress gtpc bind ipv4-address N.N.N.N exit gtpu-service sgw_gtpu_egress source-port standard bind ipv4-address P.P.P.P bearer-type all exit LTE-EPC Trial Experience SGW has a standard two interfaces; Ingress interface (S11, S1U) and Egress interface (S5/S8). Each of the two interfaces should include two protocols GTPv2 as a control plane and GTPUv1 as a user plane.
  • 21. ###########SGW Configuration Part egtp-service sgw_egtp_egress interface-type interface-sgw-egress associate gtpu-service sgw_gtpu_egress gtpc bind ipv4-address P.P.P.P exit sgw-service sgw_service associate ingress egtp-service sgw_egtp_ingress associate egress-proto gtp egress-context EPC plmn id mcc 999 mnc 99 primary exit end LTE-EPC Trial Experience LTE-EPC Trial Experience SGW and PGW Creation
  • 22. ######################## PGW Configuration Part config context EPC gtpu-service pgw_gtpu source-port standard bind ipv4-address Q.Q.Q.Q bearer-type all exit egtp-service pgw_egtp interface-type interface-pgw-ingress associate gtpu-service pgw_gtpu gtpc bind ipv4-address Q.Q.Q.Q exit LTE-EPC Trial Experience LTE-EPC Trial Experience SGW and PGW Creation PGW has only one interface as ingress (S5/S8), this interface should support also GTPv2 as a control plane and GTPUv1 as a user plane.
  • 23. pgw-service pgw_service plmn id mcc 602 mnc 02 associate qci-qos-mapping qci_test associate egtp-service pgw_egtp exit end # QCI Mapping ################################ Config qci-qos-mapping qci_test qci 128 downlink user-datagram dscp-marking 0x01 exit end LTE-EPC Trial Experience LTE-EPC Trial Experience SGW and PGW Creation
  • 24. ######################## APN Configuration Part config context EPC ip pool ltepool.0 V.V.V.V 255.255.255.0 private 0 apn lte.trial bearer-control-mode mixed selection-mode subscribed sent-by-ms gtpp group pgwnode accounting-context EPC ip context-name EPC ip address pool name ltepool.0 exit LTE-EPC Trial Experience LTE-EPC Trial Experience In this sample, I am creating a very simple APN profile with Postpaid category, No Gx or Gy is required as it is an illustrative.
  • 25. gtpp group pgwnode gtpp charging-agent address F.F.F.F gtpp attribute local-record-sequence-number gtpp dictionary XXXXXX gtpp storage-server mode local gtpp storage-server local file format XXXXXXX gtpp storage-server local file rotation volume mb 2 gtpp storage-server local file rotation time-interval 300 gtpp storage-server local file name prefix pgwnode01 exit exit end ##################################end############### LTE-EPC Trial Experience LTE-EPC Trial Experience
  • 26. References LTE-EPC Trial Experience supporting links:  http://www.cisco.com/c/dam/en/us/td/docs/wirel ess/asr_5000/14_0/OL-27215_MME_Admin.pdf  http://www.cisco.com/c/dam/en/us/td/docs/wirel ess/asr_5000/14_0/OL-27245_SGW_Admin.pdf  http://www.cisco.com/c/dam/en/us/td/docs/wirel ess/asr_5000/14_0/OL-27242_PGW_Admin.pdf
  • 27. Thanks Hussien Mahmoud- PS Core/EPC Consultant