Changes between Version 2 and Version 3 of GENILTE/LTEDeploymentRutgers


Ignore:
Timestamp:
09/19/17 12:45:47 (7 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENILTE/LTEDeploymentRutgers

    v2 v3  
    6666fille in /opt/ in the following manner:
    6767 * Change GTP address to the current outbound address, which is the IP of the EPC
     68
     69   __Before:__
    6870  {{{
    69    Before:
    7071   gtp_addr: "127.0.1.100",
    7172  }}}
    72   [[BR]]
     73   __After:__
    7374  {{{
    74    After:
    7575   gtp_addr: "10.3.0.250",
    76    }}}
     76  }}}
     77
     78 * Next, give the MME a name to be identi
     79ed by and also a "short" name
     80
     81    __Before:__
     82  {{{
     83   network_name: "Amarisoft Network",
     84   network_short_name: "Amarisoft",
     85  }}}
     86   __After:__
     87  {{{
     88   network_name: "GENI LTE Network",
     89   network_short_name: "GENI",
     90  }}}
     91
     92 * The "pdn-list" structure needs to be modified. These modifications include the access point name, the IP start-end ranges for both IPV4 and the UE specific fields, and the addition of a mtu-ipv4 field that is not present in the default configuration file. Please refer to the bold text,they show the necessary adjustments.
     93
     94   __"pdn_list" before:__
     95  {{{
     96pdn_list: [
     97   pdn_type: "ipv4",
     98   access_point_name: "test123",
     99   first_ip_addr: "192.168.3.2",
     100   last_ip_addr: "192.168.3.254",
     101   ip_addr_shift: 2, /* difference between allocated IP addresses is 4 */
     102   dns_addr: "8.8.8.8", /* Google DNS address */
     103   /* IPv6 sample config
     104   pdn_type: "ipv4v6",
     105   first_ipv6_prefix: "2001:468:3000:1::",
     106   last_ipv6_prefix: "2001:468:3000:ffff::",
     107   dns_addr: ["8.8.8.8", "2001:4860:4860::8888"], // Google IPv6 DNS address
     108   */
     109   erabs: [
     110   3
     111   qci: 9,
     112   priority_level: 15,
     113   pre_emption_capability: "shall_not_trigger_pre_emption",
     114   pre_emption_vulnerability: "not_pre_emptable",
     115   ,
     116   ],
     117   ,
     118   /* Some UE requires a specific PDN for data access */
     119   pdn_type: "ipv4",
     120   access_point_name: "internet",
     121   first_ip_addr: "192.168.4.2",
     122   last_ip_addr: "192.168.4.254",
     123   ip_addr_shift: 2,
     124   dns_addr: "8.8.8.8", /* Google DNS address */
     125   erabs: [
     126   qci: 9,
     127   priority_level: 15,
     128   pre_emption_capability: "shall_not_trigger_pre_emption",
     129   pre_emption_vulnerability: "not_pre_emptable",
     130   ,
     131   ],
     132   ,
     133   ],:
     134  }}}
     135   __"pdn_list after:__
     136  {{{
     137   pdn_list: [
     138   pdn_type: "ipv4",
     139   access_point_name: "orbitA",
     140   first_ip_addr: "192.168.3.20",
     141   last_ip_addr: "192.168.3.200",
     142   ip_addr_shift: 2, /* difference between allocated IP addresses is 4 */
     143   dns_addr: "8.8.8.8", /* Google DNS address */
     144   mtu_ipv4: 1436,
     145   /* IPv6 sample config
     146   pdn_type: "ipv4v6",
     147   first_ipv6_prefix: "2001:468:3000:1::",
     148   last_ipv6_prefix: "2001:468:3000:ffff::",
     149   dns_addr: ["8.8.8.8", "2001:4860:4860::8888"], // Google IPv6 DNS address
     150   */
     151   erabs: [
     152   qci: 9,
     153   priority_level: 15,
     154   pre_emption_capability: "shall_not_trigger_pre_emption",
     155   pre_emption_vulnerability: "not_pre_emptable",
     156   ,
     157   ],
     158   ,
     159   /* Some UE requires a specific PDN for data access */
     160   pdn_type: "ipv4",
     161   access_point_name: "internet",
     162   first_ip_addr: "192.168.4.20",
     163   last_ip_addr: "192.168.4.200",
     164   ip_addr_shift: 2,
     165   dns_addr: "8.8.8.8", /* Google DNS address */
     166   mtu_ipv4: 1436,
     167   erabs: [
     168   qci: 9,
     169   priority_level: 15,
     170   pre_emption_capability: "shall_not_trigger_pre_emption",
     171   pre_emption_vulnerability: "not_pre_emptable",
     172   ,
     173   ],
     174   ,
     175   ],:
     176  }}}
     177
     178
     179
     180
     181
     182
     183   __Before:__
     184  {{{
     185   xx
     186  }}}
     187   __After:__
     188  {{{
     189   yy
     190  }}}