epc.sfr.yang.vswitch.conf 3.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
MME : 
{

    REALM                          = "eur";
    # Define the limits of the system in terms of served eNB and served UE.
    # When the limits will be reached, overload procedure will take place.
    MAXENB                         = 10;
    MAXUE                          = 100;
    RELATIVE_CAPACITY              = 10;
    # Display statistics about whole system (expressed in seconds)
    MME_STATISTIC_TIMER            = 10;
    EMERGENCY_ATTACH_SUPPORTED     = "no";
    UNAUTHENTICATED_IMSI_SUPPORTED = "no";
    
    INTERTASK_INTERFACE :
    {
        # max queue size per task
        ITTI_QUEUE_SIZE            = 2000000;
    };

    S6A :
    {
        S6A_CONF                   = "../objs/UTILS/CONF/s6a.conf";
    };

    # ------- SCTP definitions
    SCTP :
    {
        # Number of streams to use in input/output
        SCTP_INSTREAMS = 32;
        SCTP_OUTSTREAMS = 32;
Lionel Gauthier's avatar
Lionel Gauthier committed
32
    };
33 34 35 36 37 38

    # ------- S1AP definitions
    S1AP : 
    {
        # outcome drop timer value (seconds)
        S1AP_OUTCOME_TIMER = 10;
Lionel Gauthier's avatar
Lionel Gauthier committed
39
    };
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

    # ------- MME served GUMMEI
    GUMMEI :
    {
        # MME code DEFAULT = 0
        # size = 8 bits
        # maximum of 256 values, comma separated
        MME_CODE = [ 30 , 56 , 1 , 8 ];

        # MME GROUP ID DEFAULT = 0
        # size = 16 bits
        # maximum of 65535 values, comma separated
        MME_GID = [ 3 , 4 , 5 , 30 , 8 , 9 , 50021 ];

        # TA (mcc.mnc:tracking area code) DEFAULT = 208.34:0
        # max values = 999.999:65535
        # maximum of 32 values, comma separated
        PLMN = ( 
58 59 60
             {MCC="208" ; MNC="38";  TAC = "1"; },
             {MCC="209" ; MNC="130"; TAC = "4"; },
             {MCC="208" ; MNC="35";  TAC = "8"; }
Lionel Gauthier's avatar
Lionel Gauthier committed
61 62
        );
    };
63 64 65 66
    
    NETWORK_INTERFACES : 
    {
        MME_INTERFACE_NAME_FOR_S1_MME         = "cpmme0";
67
        MME_IPV4_ADDRESS_FOR_S1_MME           = "192.168.30.117/24";
68 69 70

        MME_INTERFACE_NAME_FOR_S11_MME        = "s11mme";
        MME_IPV4_ADDRESS_FOR_S11_MME          = "192.168.33.117/24";
71 72 73 74 75

        # Can be a real physical interface or a openvswitch bridge name
        # depending on what you want to do (MME, SPGW on an other host or on the same host)
        # This property is parsed only by a bash script, not the mme binary.
        MME_BRIDGE                            = "eth2"
Lionel Gauthier's avatar
Lionel Gauthier committed
76
    };
77 78 79 80 81 82 83 84 85 86
};

S-GW : 
{
    NETWORK_INTERFACES : 
    {
        SGW_INTERFACE_NAME_FOR_S11              = "s11sgw";
        SGW_IPV4_ADDRESS_FOR_S11                = "192.168.33.17/24";

        SGW_INTERFACE_NAME_FOR_S1U_S12_S4_UP    = "upsgw0";
87
        SGW_IPV4_ADDRESS_FOR_S1U_S12_S4_UP      = "192.168.31.117/24";
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

        SGW_INTERFACE_NAME_FOR_S5_S8_UP         = "upsgw1";
        SGW_IPV4_ADDRESS_FOR_S5_S8_UP           = "192.168.5.2/24";
    };
};

P-GW = 
{
    NETWORK_INTERFACES : 
    {
        PGW_INTERFACE_NAME_FOR_S5_S8          = "uppgw0";
        PGW_IPV4_ADDRESS_FOR_S5_S8            = "192.168.5.1/24";

        PGW_INTERFACE_NAME_FOR_SGI            = "eth2";
        PGW_IPV4_ADDR_FOR_SGI                 = "192.168.13.17/24";
    };
    
    IP_ADDRESS_POOL :
    {
        IPV4_LIST = (
                      "192.168.87.32",
Lionel Gauthier's avatar
Lionel Gauthier committed
109 110
                      "192.168.88.0<--->192.168.88.255",
                      "192.168.90.0<--->192.168.90.255"
111 112 113
                    );
        IPV6_LIST = (
                      "2014:01:26::32",
Lionel Gauthier's avatar
ipv6  
Lionel Gauthier committed
114
                      "2014:02:26::0/120"
115 116 117
                    );
    };
};
Lionel Gauthier's avatar
Lionel Gauthier committed
118