zoukankan      html  css  js  c++  java
  • PDP context

    PDP context[edit]

    The packet data protocol (PDP; e.g., IP, X.25, FrameRelay) context is a data structure present on both the serving GPRS support node (SGSN) and the gateway GPRS support node (GGSN) which contains the subscriber's session information when the subscriber has an active session. When a mobile wants to use GPRS, it must first attach and then activate a PDP context. This allocates a PDP context data structure in the SGSN that the subscriber is currently visiting and the GGSN serving the subscriber's access point. The data recorded includes

    • Subscriber's IP address
    • Subscriber's IMSI
    • Subscriber's Tunnel Endpoint ID (TEID) at the GGSN
    • Subscriber's Tunnel Endpoint ID (TEID) at the SGSN

    The Tunnel Endpoint ID (TEID) is a number allocated by the GSN which identifies the tunnelled data related to a particular PDP context.

        There are two kinds of PDP contexts:

        1、Primary PDP Context

        Has a unique IP address associated with it

        2、Secondary PDP Context

        Shares an IP address with another PDP context (与其他的PDP context共享IP地址)

        Is created based on an existing PDP context (to share the IP address) (由已有的PDP context来创建)

        Secondary PDP contexts may have different Quality Of Service settings (第二个PDP context可能含有不同的QoS,比如在IMS会话建立时,与被叫节点协商QoS的时候,被叫反馈SDP Answer,然后主叫进行Secondary PDP context准备资源。)

        A total of 11 PDP contexts (with any combination of Primary and Secondary) can co-exist.

    (最多可以有11个PDP contexts 共存)

    即PDP上下文,保存用户面进行隧道转发的所有信息,包括RNC/GGSN的用户面IP地址、隧道标识和QoS等。

    1)MS通过PDP context的激活、修改、去激活信令流程实现会话管理。
        PDP context 激活流程用于建立用户面的分组传输路由;PDP context修改流程修改激活的PDP context的QoS(Quality of Service)和TFT(Traffic Flow Template),在发生RAU(Routing Area Update)时,也用于修改SGSN到GGSN之间的隧道路由;PDP context去激活则用于拆除激活的PDP。
    2)激活一个PDP上下文意味着发起一个分组数据业务呼叫。PDP上下文激活包括MS发起的激活及二次激活、网络发起的PDP上下文激活。
    3)当HLR向SGSN插入用户数据且PDP上下文处于激活状态,SGSN可以发起PDP上下文修改流程;RAB重建,发生QoS改变,SGSN可以发起PDP上下文修改流程;SGSN之间的路由区更新,如果PDP上下文处于激活状态,SGSN可以发起PDP上下文修改过程。
    4)PDP上下文去激活流程包括MS发起的、SGSN发起的和GGSN发起的PDP上下文去激活流程。

    通俗讲就是,UE发起PS域业务时,向网络侧发起请求,在此之前若没有进行过PS附着,必须先要进行PS附着,这样才能发起PS域业务,相当于CS业务中,必须要先建立RRC连接一样。激活一个PDP上下文意味着发起一个分组数据业务呼叫。
    PDP上下文激活包括UE发起的激活及二次激活、网络发起的PDP上下文激活。
    结束PS业务挂机,或长时间没有流量达到系统设置时间门限时,进行PDP去激活,UE回到空闲状态。
    从核心网角度说,收到了PDP上下文激活,核心网会对其分配相应资源,业务就开始进行了。

  • 相关阅读:
    electron webview加载远程preload方法
    vue 2.0使用笔记
    关于node的setTimeout的延时最大限制
    javascript的未知尺寸图片保持比例水平垂直居中函数
    node的“宏任务(macro-task)”和“微任务(micro-task)”机制
    windows git gui右键sublime/vs code打开当前文件编辑
    一个JavaScript组件都需要哪些基础api
    点击label时click事件被触发两次的坑
    javascript iframe相关操作
    javascript 写了个字符串组合的情况
  • 原文地址:https://www.cnblogs.com/ricks/p/9811320.html
Copyright © 2011-2022 走看看