Skip to content

Commit 817e7c1

Browse files
committed
fix(docs): bad character in docs lint
Signed-off-by: Lucas Amaral <[email protected]>
1 parent c87cdba commit 817e7c1

30 files changed

+206
-204
lines changed

readmes/cwf/deploy_install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ registered with the Orchestrator.
119119

120120
To register the Carrier Wifi Gateway, go to the Orchestrator's APIdocs in your browser.
121121
**Note: It is highly encouraged to use V1 of the apidocs**
122-
(i.e. <https://controller.url.sample:9443/apidocs/v1/>).
122+
(i.e. \<https://controller.url.sample:9443/apidocs/v1/\>).
123123

124124
Now, create a Carrier Wifi Network. This is found at `/cwf` under the
125125
**Carrier Wifi Networks** section. Then register the gateway under the

readmes/dp/debug_logs.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ hide_title: true
99
Debugging Domain Proxy usually comes down to checking log content of individual pods. This document describes how to
1010
access these logs.
1111

12-
## eNB <-> AGW/enodebd
12+
## eNB \<\-\> AGW/enodebd
1313

1414
To debug the eNB side of Domain Proxy functionality, it typically comes down to inspecting the TR069 session data or
1515
looking into eNB specific data model/state machine implementation in `enodebd`.
@@ -34,7 +34,7 @@ Given the following log snippet (trimmed) from Baicells QRTB, the normal flow sh
3434
2022-04-25 15:41:17,549 DEBUG Handling TR069 message: Inform {...}
3535
2022-04-25 15:41:17,550 DEBUG (Inform msg) Received parameter: Device.DeviceInfo.HardwareVersion = ...
3636
[Inform msg output continues]
37-
2022-04-25 15:41:17,557 DEBUG State transition from <WaitInformState> to <wait_empty>
37+
2022-04-25 15:41:17,557 DEBUG State transition from \<WaitInformState\> to \<wait_empty\>
3838
2022-04-25 15:41:17,558 DEBUG Sending TR069 message: InformResponse {'MaxEnvelopes': '1'}
3939
```
4040

@@ -43,22 +43,22 @@ Given the following log snippet (trimmed) from Baicells QRTB, the normal flow sh
4343
```console
4444
2022-04-25 15:41:22,608 DEBUG 10.0.2.243 - "POST / HTTP/1.1" 200 419
4545
2022-04-25 15:41:22,612 DEBUG Handling TR069 message: DummyInput {}
46-
2022-04-25 15:41:22,612 DEBUG State transition from <WaitEmptyMessageState> to <check_fw_upgrade_download>
46+
2022-04-25 15:41:22,612 DEBUG State transition from \<WaitEmptyMessageState\> to \<check_fw_upgrade_download\>
4747
12022-04-25 15:41:22,613 DEBUG Skipping FW Download for eNB [XXXXXXXXXXXXX], missing firmware upgrade config in enodebd.yml.
48-
2022-04-25 15:41:22,613 DEBUG State transition from <CheckFirmwareUpgradeDownloadState> to <get_transient_params>
49-
2022-04-25 15:41:22,613 DEBUG State transition from <SendGetTransientParametersState> to <wait_get_transient_params>
48+
2022-04-25 15:41:22,613 DEBUG State transition from \<CheckFirmwareUpgradeDownloadState\> to \<get_transient_params\>
49+
2022-04-25 15:41:22,613 DEBUG State transition from \<SendGetTransientParametersState\> to \<wait_get_transient_params\>
5050
2022-04-25 15:41:22,613 DEBUG Sending TR069 message: GetParameterValues {...}
5151
2022-04-25 15:41:22,617 DEBUG 10.0.2.243 - "POST / HTTP/1.1" 200 912
5252
2022-04-25 15:41:22,662 DEBUG Handling TR069 message: GetParameterValuesResponse {...}
5353
2022-04-25 15:41:22,662 DEBUG Fetched Transient Params: {...}
54-
2022-04-25 15:41:22,663 DEBUG State transition from <WaitGetTransientParametersState> to <get_params>
55-
2022-04-25 15:41:22,664 DEBUG State transition from <GetParametersState> to <wait_get_params>
54+
2022-04-25 15:41:22,663 DEBUG State transition from \<WaitGetTransientParametersState\> to \<get_params\>
55+
2022-04-25 15:41:22,664 DEBUG State transition from \<GetParametersState\> to \<wait_get_params\>
5656
2022-04-25 15:41:22,664 DEBUG Sending TR069 message: GetParameterValues {...}
5757
2022-04-25 15:41:22,671 DEBUG 10.0.2.243 - "POST / HTTP/1.1" 200 3242
5858
2022-04-25 15:41:22,718 DEBUG Handling TR069 message: GetParameterValuesResponse {...}
5959
2022-04-25 15:41:22,719 DEBUG Received CPE parameter values: {...}
60-
2022-04-25 15:41:22,719 DEBUG State transition from <WaitGetParametersState> to <get_obj_params>
61-
2022-04-25 15:41:22,720 DEBUG State transition from <GetObjectParametersState> to <wait_get_obj_params>
60+
2022-04-25 15:41:22,719 DEBUG State transition from \<WaitGetParametersState\> to \<get_obj_params\>
61+
2022-04-25 15:41:22,720 DEBUG State transition from \<GetObjectParametersState\> to \<wait_get_obj_params\>
6262
2022-04-25 15:41:22,720 DEBUG Sending TR069 message: GetParameterValues {...}
6363
2022-04-25 15:41:22,723 DEBUG 10.0.2.243 - "POST / HTTP/1.1" 200 877
6464
2022-04-25 15:41:22,769 DEBUG Handling TR069 message: GetParameterValuesResponse {...}
@@ -68,15 +68,15 @@ Given the following log snippet (trimmed) from Baicells QRTB, the normal flow sh
6868
1. `SetParameterValues` message followed by `GetParameterValues` - conditional, only appears if a configuration change needs to be done on the eNB side. The actual parameters that are set in order to enable transmission based on Domain Proxy grant may differ depending on the eNB model and eNB current configuration state. Please refer to your eNB device model implementation in `lte/gateway/python/magma/enodebd/devices`.
6969

7070
```console
71-
2022-04-25 15:41:22,771 DEBUG State transition from <WaitGetObjectParametersState> to <set_params>`
71+
2022-04-25 15:41:22,771 DEBUG State transition from \<WaitGetObjectParametersState\> to \<set_params\>`
7272
2022-04-25 15:41:22,772 DEBUG Sending TR069 request to set CPE parameter values: {...}`
73-
2022-04-25 15:41:22,773 DEBUG State transition from <SetParameterValuesState> to <wait_set_params>`
73+
2022-04-25 15:41:22,773 DEBUG State transition from \<SetParameterValuesState\> to \<wait_set_params\>`
7474
2022-04-25 15:41:22,773 DEBUG Sending TR069 message: SetParameterValues {...}`
7575
2022-04-25 15:41:22,777 DEBUG 10.0.2.243 - "POST / HTTP/1.1" 200 723`
7676
2022-04-25 15:41:22,837 DEBUG Handling TR069 message: SetParameterValuesResponse {'Status': '0'}`
7777
2022-04-25 15:41:22,838 INFO Successfully configured CPE parameters!`
78-
2022-04-25 15:41:22,839 DEBUG State transition from <WaitSetParameterValuesState> to <check_get_params>`
79-
2022-04-25 15:41:22,840 DEBUG State transition from <GetParametersState> to <check_wait_get_params>`
78+
2022-04-25 15:41:22,839 DEBUG State transition from \<WaitSetParameterValuesState\> to \<check_get_params\>`
79+
2022-04-25 15:41:22,840 DEBUG State transition from \<GetParametersState\> to \<check_wait_get_params\>`
8080
2022-04-25 15:41:22,840 DEBUG Sending TR069 message: GetParameterValues {...}`
8181
2022-04-25 15:41:22,849 DEBUG 10.0.2.243 - "POST / HTTP/1.1" 200 3242`
8282
2022-04-25 15:41:22,916 DEBUG Handling TR069 message: GetParameterValuesResponse {...}`
@@ -85,13 +85,13 @@ Given the following log snippet (trimmed) from Baicells QRTB, the normal flow sh
8585
1. Update transmission configuration from Domain Proxy and close TR069 session - `notify_dp` is an `enodebd` transition state that calls the Domain Proxy `GetCBSDState` gRPC API. The `GetCBSDState` response contains data, which indicate whether eNB radio should be disabled/turned off or enabled together with transmission parameters. `GetCBSDState` response data is translated to eNB specific parameters that will be applied to eNB. Please refer to your eNB device model implementation in `lte/gateway/python/magma/enodebd/devices`.
8686

8787
```console
88-
2022-04-25 15:41:22,917 DEBUG State transition from <WaitGetParametersState> to <end_session>
89-
2022-04-25 15:41:22,917 DEBUG State transition from <BaicellsQRTBEndSessionState> to <notify_dp>
88+
2022-04-25 15:41:22,917 DEBUG State transition from \<WaitGetParametersState\> to \<end_session\>
89+
2022-04-25 15:41:22,917 DEBUG State transition from \<BaicellsQRTBEndSessionState\> to \<notify_dp\>
9090
2022-04-25 15:41:23,046 DEBUG Updating desired config based on sas grant
9191
2022-04-25 15:41:23,046 DEBUG Sending TR069 message: DummyInput {}
9292
```
9393

94-
## AGW/enodebd <-> Domain Proxy
94+
## AGW/enodebd \<-\> Domain Proxy
9595

9696
### AGW
9797

@@ -100,10 +100,10 @@ To debug AGW communication with Domain Proxy, look for `control_proxy` logs on t
100100
```console
101101
journalctl -xu magma@control_proxy -r
102102

103-
Apr 21 11:58:00 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:58:00.002Z [127.0.0.1 -> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
104-
Apr 21 11:57:55 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:57:54.991Z [127.0.0.1 -> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
105-
Apr 21 11:57:50 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:57:50.044Z [127.0.0.1 -> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
106-
Apr 21 11:57:45 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:57:45.002Z [127.0.0.1 -> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
103+
Apr 21 11:58:00 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:58:00.002Z [127.0.0.1 -\> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
104+
Apr 21 11:57:55 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:57:54.991Z [127.0.0.1 -\> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
105+
Apr 21 11:57:50 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:57:50.044Z [127.0.0.1 -\> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
106+
Apr 21 11:57:45 FreedomFi-Gateway control_proxy[1220289]: 2022-04-21T11:57:45.002Z [127.0.0.1 -\> dp_service-controller.codistaging.dp.freedomfi.com,8443] "POST /DPService/GetCBSDState
107107
```
108108

109109
`control_proxy` logs will show if gRPC calls from `enodebd` towards Domain Proxy are made. Since gRPC is binary coded, there isn't much information from tcpdump capture on this end of communication.
@@ -117,7 +117,7 @@ no transmission and the radio transmission must be disabled.
117117

118118
![DP Logs AGW](../assets/dp/dp_logs_agw_enodebd.png)
119119

120-
## Domain Proxy <-> SAS
120+
## Domain Proxy \<-\> SAS
121121

122122
Domain Proxy logs of communication with Spectrum Access System (SAS) are visible in NMS: `[Metrics]` menu, `[DP Logs]` tab
123123

@@ -147,11 +147,11 @@ domain-proxy-radio-controller-5c868696d9-s7vgg 1/1 Running 0
147147
To view logs from individual Domain Proxy pods, execute `kubectl logs` with one of the pod names listed in the [previous chapter](#listing-domain-proxy-pods-in-kubernetes).
148148

149149
- `Radio Controller` (RC) logs:
150-
- logs related to AGW/enodebd <-> Domain Proxy communication
150+
- logs related to AGW/enodebd \<-\> Domain Proxy communication
151151
- logs related to requests generated by Active Mode Controller (Domain Proxy logic, which generates appropriate SAS requests)
152152
- logs related with Database modifications, which were the result of incoming API calls (either from AGW or AMC)
153153
- `Configuration Controller` (CC) logs:
154-
- logs related to Domain Proxy <-> SAS communication
154+
- logs related to Domain Proxy \<-\> SAS communication
155155
- logs related with Database modifications, which were the result of processing SAS responses
156156
- `Active Mode Controller` (AMC) logs:
157157
- logs related to internal business logic of Domain Proxy functionality

readmes/faq/faq_magma.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ This section lists some of the commonly asked questions related to Magma operati
101101

102102
### Where can I get more information about services running in Magma?
103103

104-
- <https://github.com/magma/magma/tree/master/docs/readmes/lte>
104+
- \<https://github.com/magma/magma/tree/master/docs/readmes/lte\>
105105

106106
### How can I detach/purge a subscriber from AGW?
107107

readmes/feg/deploy_configure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ APN will only be applied for the Gx interactions, as the config for Gy is empty.
148148

149149
### FeG
150150

151-
- Here are the steps to test the FeG <-> Gx/Gy/S6a connections
151+
- Here are the steps to test the FeG \<-\> Gx/Gy/S6a connections
152152
- Exec into `session_proxy` container: `docker exec -it session_proxy bash`
153153
- Run `/var/opt/magma/bin/gx_client_cli`with the following parameters
154154
- --commands=IT
@@ -161,7 +161,7 @@ APN will only be applied for the Gx interactions, as the config for Gy is empty.
161161
- Run `/var/opt/magma/bin/gy_client_cli` with the following parameters
162162
- --commands=IT
163163
- --addr
164-
- Run `/var/opt/magma/bin/s6a_client_cli air <IMSI>`
164+
- Run `/var/opt/magma/bin/s6a_client_cli air \<IMSI\>`
165165
- Example: `/var/opt/magma/bin/s6a_cli air 001010000091111`
166166

167167
### AGW

readmes/feg/deploy_install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ is provided below (please check `magma/feg/gateway/docker/.env` for the most
8080
# limitations under the License.
8181
8282
COMPOSE_PROJECT_NAME=feg
83-
DOCKER_REGISTRY=<registry>
84-
DOCKER_USERNAME=<username>
85-
DOCKER_PASSWORD=<password>
83+
DOCKER_REGISTRY=\<registry\>
84+
DOCKER_USERNAME=\<username\>
85+
DOCKER_PASSWORD=\<password\>
8686
IMAGE_VERSION=latest
8787
GIT_HASH=master
8888
@@ -139,7 +139,7 @@ registered with the Orchestrator. At this time, NMS support for FeG
139139
registration is still in-progress.
140140

141141
To register the FeG, go to the Orchestrator's Swagger UI in your browser.
142-
(i.e. <https://controller.url.sample:9443/swagger/v1/ui/>).
142+
(i.e. \<https://controller.url.sample:9443/swagger/v1/ui/\>).
143143

144144
Now, create a Federation Network. This is found at `/feg` under the
145145
**Federation Networks** section. If you have not registered any gateways before, you

readmes/general/upgrade_intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This section walks through upgrading different components of the Magma topology.
1212

1313
Orc8r and gateways both follow a SemVer-like versioning of `MAJOR.MINOR.PATCH`, with the following constraints
1414

15-
- Gateway version must be <= Orc8r version
15+
- Gateway version must be \<= Orc8r version
1616
- Gateway can diverge at most 1 minor version from Orc8r
1717

1818
For example
@@ -22,7 +22,7 @@ For example
2222
- ✅ Gateway 1.3.3, Orc8r 1.4.0
2323
- ✅ Gateway 1.3.3, Orc8r 1.4.10
2424
- 🚨 Gateway 1.2.0, Orc8r 1.4.0 (more than 1 minor)
25-
- 🚨 Gateway 1.4.1, Orc8r 1.4.0 (gateway > Orc8r)
25+
- 🚨 Gateway 1.4.1, Orc8r 1.4.0 (gateway \> Orc8r)
2626

2727
## Orc8r-gateway upgrade flow
2828

readmes/howtos/troubleshooting/agw_unable_to_checkin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ Sample control_proxy.yml file
8888
- Next, using the pod name get the logs from the pod with below command. Check if there is any problematic log for the related pod
8989
9090
```bash
91-
kubectl -n orc8r logs -f <nginx podname>
92-
kubectl -n orc8r logs -f <bootstrapper podname>
91+
kubectl -n orc8r logs -f \<nginx podname\>
92+
kubectl -n orc8r logs -f \<bootstrapper podname\>
9393
```
9494
9595
For example: `kubectl -n orc8r get logs orc8r-bootstrapper-775b5b8f6d-89spq`
@@ -100,4 +100,4 @@ Sample control_proxy.yml file
100100
AGW$ sudo service magma@magmad restart
101101
```
102102
103-
11. If issue still persists, please file github issues or ask in our support channels <https://magmacore.org/join-the-open-source-community/>
103+
11. If issue still persists, please file github issues or ask in our support channels \<https://magmacore.org/join-the-open-source-community/\>

readmes/howtos/troubleshooting/analyze_service_crashes_in_agw.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ to an AGW service crash.
1717
**1. Identify and quantify the impact.** Verify if there is any temporary or permanent drop in metrics related to
1818
service:
1919

20-
- Number of Connected eNBs (Grafana -> Dashboards -> Networks)
20+
- Number of Connected eNBs (Grafana -\> Dashboards -\> Networks)
2121

22-
- Network of Connected UE (Grafana -> Dashboards -> Networks)
22+
- Network of Connected UE (Grafana -\> Dashboards -\> Networks)
2323

24-
- Network of Registered UE (Grafana -> Dashboards -> Networks)
24+
- Network of Registered UE (Grafana -\> Dashboards -\> Networks)
2525

26-
- Attach/ Reg attempts (Grafana -> Dashboards -> Networks)
26+
- Attach/ Reg attempts (Grafana -\> Dashboards -\> Networks)
2727

28-
- Attach Success Rate (Grafana -> Dashboards -> Networks)
28+
- Attach Success Rate (Grafana -\> Dashboards -\> Networks)
2929

30-
- S6a Authentication Success Rate (Grafana -> Dashboards -> Networks)
30+
- S6a Authentication Success Rate (Grafana -\> Dashboards -\> Networks)
3131

32-
- Service Request Success Rate (Grafana -> Dashboards -> Networks)
32+
- Service Request Success Rate (Grafana -\> Dashboards -\> Networks)
3333

34-
- Session Create Success Rate (Grafana -> Dashboards -> Networks)
34+
- Session Create Success Rate (Grafana -\> Dashboards -\> Networks)
3535

36-
- Upload/Download Throughput (Grafana -> Dashboards -> Gateway)
36+
- Upload/Download Throughput (Grafana -\> Dashboards -\> Gateway)
3737

3838
Note: Number of sites(enodeb) down, users affected, and outage duration are key indicators of service impact.
3939

@@ -60,7 +60,7 @@ service:
6060
Dec 5 22:25:59 magma systemd[1]: [email protected]: Main process exited, code=killed, status=11/SEGV
6161
```
6262

63-
- Service crashes with a segmentation fault will create coredumps in `/var/core/` folder. Verify if coredumps have been created and obtain the coredump that matches the time of the outage/crash. Depending on the type of service crash the name of the coredump will vary. More detail in <https://magma.github.io/magma/docs/lte/dev_notes#analyzing-coredumps>
63+
- Service crashes with a segmentation fault will create coredumps in `/var/core/` folder. Verify if coredumps have been created and obtain the coredump that matches the time of the outage/crash. Depending on the type of service crash the name of the coredump will vary. More detail in \<https://magma.github.io/magma/docs/lte/dev_notes#analyzing-coredumps\>
6464

6565
**5. Get the backtrace using the coredumps**. To analyze the coredumps, you need 3 requirements.
6666

@@ -80,20 +80,20 @@ an output like this:
8080
[Current thread is 1 (process 13887)]
8181
(gdb) bt
8282
#0 get_nas_specific_procedure_attach (ctxt=ctxt@entry=0x6210000d64b0) at /home/vagrant/magma/lte/gateway/c/oai/tasks/nas/nas_procedures.c:203
83-
#1 0x000055b0080c2aa8 in emm_proc_attach_request (ue_id=ue_id@entry=2819, is_mm_ctx_new=is_mm_ctx_new@entry=true, ies=<optimized out>, ies@entry=0x608000054280)
83+
#1 0x000055b0080c2aa8 in emm_proc_attach_request (ue_id=ue_id@entry=2819, is_mm_ctx_new=is_mm_ctx_new@entry=true, ies=\<optimized out\>, ies@entry=0x608000054280)
8484
at /home/vagrant/magma/lte/gateway/c/oai/tasks/nas/emm/Attach.c:318
85-
#2 0x000055b0080e5e1f in emm_recv_attach_request (ue_id=<optimized out>, originating_tai=originating_tai@entry=0x7f529e6c24d2, originating_ecgi=originating_ecgi@entry=0x7f529e6c2660,
86-
msg=msg@entry=0x7f529e6c1e10, is_initial=<optimized out>, is_mm_ctx_new=<optimized out>, emm_cause=<optimized out>, decode_status=<optimized out>)
85+
#2 0x000055b0080e5e1f in emm_recv_attach_request (ue_id=\<optimized out\>, originating_tai=originating_tai@entry=0x7f529e6c24d2, originating_ecgi=originating_ecgi@entry=0x7f529e6c2660,
86+
msg=msg@entry=0x7f529e6c1e10, is_initial=\<optimized out\>, is_mm_ctx_new=\<optimized out\>, emm_cause=\<optimized out\>, decode_status=\<optimized out\>)
8787
at /home/vagrant/magma/lte/gateway/c/oai/tasks/nas/emm/sap/emm_recv.c:384
8888
#3 0x000055b0080e27b4 in _emm_as_establish_req (msg=msg@entry=0x7f529e6c25e0, emm_cause=emm_cause@entry=0x7f529e6c257c)
8989
at /home/vagrant/magma/lte/gateway/c/oai/tasks/nas/emm/sap/emm_as.c:802
9090
#4 0x000055b0080e4460 in emm_as_send (msg=msg@entry=0x7f529e6c25d8) at /home/vagrant/magma/lte/gateway/c/oai/tasks/nas/emm/sap/emm_as.c:185
9191
#5 0x000055b0080d1720 in emm_sap_send (msg=msg@entry=0x7f529e6c25d0) at /home/vagrant/magma/lte/gateway/c/oai/tasks/nas/emm/sap/emm_sap.c:105
92-
#6 0x000055b0080b7037 in nas_proc_establish_ind (ue_id=ue_id@entry=2819, is_mm_ctx_new=<optimized out>, originating_tai=..., ecgi=..., as_cause=<optimized out>, s_tmsi=...,
92+
#6 0x000055b0080b7037 in nas_proc_establish_ind (ue_id=ue_id@entry=2819, is_mm_ctx_new=\<optimized out\>, originating_tai=..., ecgi=..., as_cause=\<optimized out\>, s_tmsi=...,
9393
s_tmsi@entry=..., msg=0x629000302036) at /home/vagrant/magma/lte/gateway/c/oai/tasks/nas/nas_proc.c:185
9494
#7 0x000055b007ebbf87 in mme_app_handle_initial_ue_message (mme_app_desc_p=mme_app_desc_p@entry=0x60800000b500, initial_pP=initial_pP@entry=0x629000302026)
9595
at /home/vagrant/magma/lte/gateway/c/oai/tasks/mme_app/mme_app_bearer.c:727
96-
#8 0x000055b007ebab98 in handle_message (loop=<optimized out>, reader=<optimized out>, arg=<optimized out>) at /home/vagrant/magma/lte/gateway/c/oai/tasks/mme_app/mme_app_main.c:182
96+
#8 0x000055b007ebab98 in handle_message (loop=\<optimized out\>, reader=\<optimized out\>, arg=\<optimized out\>) at /home/vagrant/magma/lte/gateway/c/oai/tasks/mme_app/mme_app_main.c:182
9797
```
9898

9999
**6. Obtain event that triggered the crash**. Every time a service restarts it will generate a log file (i.e. mme.log). Inside the coredump folder you will find the log (i.e. mme.log) that was generated just before the crash. In order to understand what was the event that triggered the crash, get the last event (Attach Request, Detach, timer expiring, etc.) in the log file.

0 commit comments

Comments
 (0)