# Quectel BG95-S5 Satellite NTN Network

The Quectel BG95-S5 series supports IoT-NTN (satellite), LTE Cat M1/Cat NB2, and EGPRS, offering ultra-low power consumption. It complies with 3GPP Release 17 standards, ensuring optimal performance for advanced IoT applications

![](https://3922449203-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M0mPxGpottOEfcucXOR%2Fuploads%2FzXmkfCZqsZw2xQQV7jYy%2FBG95-S5.png?alt=media\&token=4a4f7368-756c-4282-81fc-c97cd3fc9a3d)

### Prerequisites

* Monogoto SIM
* [BG95-S5](https://www.quectel.com/product/bg95-s5-satellite-communication-module/)
* [UMTS & LTE EVB Kit](https://www.quectel.com/product/umts-lte-evb-kit)

### Quick Navigation

* [Set up EVB Kit (if applicable)](#set-up-umts-and-lte-evb-kit)
* [Connect BG95 to Monogoto](#connect-the-bg95-m3-to-monogoto)
* [Sending a PING](#test-the-connection-by-sending-a-ping)
* [Useful Links](#useful-links)

## Set up EVB Kit (if applicable)

![Quectel EVB kit with BG95-M3 modem](https://3922449203-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M0mPxGpottOEfcucXOR%2Fuploads%2FRLkmrI2iRIDbqcEvMprV%2FQuectel%20EVB.jpg?alt=media\&token=ee6da3ec-3dc8-40de-96ae-7d75b47c1b34)

#### Set up the EVB Kit

* Connect the **Quectel BG95-S5 modem** to the EVB kit.&#x20;
* **Connect the LTE antenna** and <mark style="color:green;">**GPS antenna**</mark>
* Insert the **Monogoto SIM**

#### **Connect your PC to the EVB Kit**

Use the USB to UART converter cable to connect your computer to the **COM1 MAIN** port of the EVB Kit

{% hint style="info" %}
When using Windows, install the driver using the disk or USB stick provided by Quectel.
{% endhint %}

Connect to the EVB kit using a **terminal program**. You can use PuTTY for Windows, or screen, minicom, or miniterm for Mac or Linux.

**Power the EVB Kit** using the USB to micro USB cable and switch the **POWER** button to **ON**. The **POWER LED** will turn on <mark style="color:red;">**RED**</mark>.&#x20;

Press and hold the **PWRKEY** button for 1 second, the **STATUS** light will light up on <mark style="color:green;">**GREEN**</mark>, the **NET\_STA** LED will start blinking <mark style="color:blue;">**BLUE**</mark>.

Once the modem has started, it will report:

```
RDY
APP RDY
```

Enter `AT`, if the connection with the BG95 modem has been established, the board will answer with `OK`.

## Connect the BG95 to Monogoto

{% hint style="info" %}
Keep the **AT Commands manual** next to you for more details about the commands. [**Click here**](https://files.gitbook.com/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M0mPxGpottOEfcucXOR%2Fuploads%2FLLImiasYlmYZUHjxOdMA%2FQuectel_BG95-S5_AT_Commands_Manual_V1.0.pdf?alt=media\&token=b9d0c858-4a7e-4f06-9509-2af39fc6359d) to download the latest version.
{% endhint %}

#### **Reset the modem** to its default configuration:

Reset non-volatile memory:

```
AT+QPRTPARA=1 
```

Restore factory settings:

```
AT+QPRTPARA=3
```

Reboot module:

```bash
AT+CFUN=1,1
```

**Set the error reporting to** **verbose**, resulting in more descriptive error messages (optional):

```bash
AT+CMEE=2
```

Check the **status of the SIM card**. The correct response should be: `+CPIN: READY`

```
AT+CPIN?
```

{% hint style="warning" %}
If you receive an error, the SIM may not be inserted properly or the SIM is protected with a PIN. By default, Monogoto SIMs are not PIN protected.
{% endhint %}

### Query device information

Request the **product type, hardware** and **firmware** **version**:

<pre class="language-bash"><code class="lang-bash"><strong>AT+QGMR
</strong></code></pre>

Example response:  AT+QGMR BG95S5LAR08A01\_A0.203.A0.203

Request the **IMSI** (International Mobile Subscriber Identity):

```
AT+CIMI
```

Request the **ICCID** (Integrated Circuit Card ID), which is the identification number of the SIM card

```bash
AT+CCID
```

### Network Configuration

It is possible to let the modem select the network automatically.

#### **Automatic Network Selection**

To set the modem to **automatic network selection** enter the command:

```bash
AT+COPS=0
```

#### Configure Radio Access Technology (RAT)

Configure the modem to only use NB-IoT NTN not LTE Cat-M1:

```
AT+QCFG="iotopmode",3
AT+QCFG="nwscanmode",3 
```

**Set the APN to** `data.mono`:

```json
AT+CGDCONT="IP","data.mono" or AT+CGDCONT=1,"IP","data.mono"
```

**Lock the modem to a specific region/band**

```
AT+QCFG="band",0xf,0x100002000000000f0e189f,0x10004200000000090e189f,0x1,1
```

{% hint style="info" %}
Although the modem may support many different NTN bands,&#x20;

**0x1** = 23  Canada&#x20;

**0x2** = 255 L band Global (Taiwan, Australia, New Zealand, Japan)&#x20;

**0x4** = 256  S band Europe
{% endhint %}

#### Query Network information

To information about the technology used, the network provider and cellular band, enter:

```
AT+QNWINFO
```

Example response: `+QNWINFO:"NTN NBIoT","90198","NTN NBIoT BAND 23",229155`

#### **Reports the information of serving cells**

```bash
AT+QENG="servingcell"
```

Example response:&#x20;

+QENG: "servingcell","LIMSRV","NTN NBIoT","FDD",901,98,2DCEAE,30,7699,23,0,0,7EE,-120,-13,-115,85,

**Check the radio signal strength and signal quality:**

```bash
AT+CSQ
```

{% hint style="info" %}
`+CSQ` returns 2 values separated by a comma. The first value represents the **signal strength** and provides a value between 0 and 31; higher numbers indicate better signal strength. The second value represents the **signal quality** indicated by a value between 0 and 7. If `AT+CSQ` returns `99,99`, the signal is undetectable or unknown.
{% endhint %}

**Check the current network registration status**

```
AT+CEREG?
```

response:

```
+CEREG: 2,5,"7EE","2DCEAE",E 
```

#### Validate if your device received an **IP address**:

```bash
AT+CGPADDR
```

Expected response: `+CGPADDR: 1,XX.XXX.XX.XXX`

{% hint style="success" %}
Do you see an IP address? **Congratulations! You’ve successfully connected the Quectel modem to Monogoto 🎉**
{% endhint %}

## Test the connection by sending a UDP payload&#x20;

A UDP payload test when the modem has an active data connection with a Satellite.

**Set and Active UDP Socket**

```
AT+QIACT=1
```

&#x20;response:

```
OK
```

**Send UDP Payload** to the IP address `34.192.142.126`:

```
AT+QIOPEN=1,0,"UDP","34.192.142.126",12345
```

&#x20;response:

```
OK
+QIOPEN: 0,0
```

**Send UDP Socket**

<pre><code>AT+QISEND=0,12
> <a data-footnote-ref href="#user-content-fn-1">HELLO WORLD</a>
</code></pre>

&#x20;response:

```
SEND OK
+QIURC: "recv",0
```

**info UDP Socket**

```
AT+QIRD=0
```

&#x20;response:

<pre><code>+QIRD: 12
<a data-footnote-ref href="#user-content-fn-1">HELLO WORLD</a>
OK
</code></pre>

\
**Close the UDP socket**

```
AT+QIDEACT=1
```

## Test the connection by sending a PING

A PING test can be performed to test if the modem has an active data connection with a mobile network.

{% hint style="warning" %}
When cellular modems are idle for a long period of time, cell towers might drop the data connection to save resources. Sending regular PINGs is a good method for testing the data connection, as well as for keeping the connection alive because the operator registers your device as being actively used.
{% endhint %}

**Send 3 PINGs** to IP address `8.8.8.8`:

```
AT+QPING=1,"8.8.8.8",3
```

Example response:

```
+QPING: 0,"8.8.8.8",32,543,255
+QPING: 0,"8.8.8.8",32,396,255
+QPING: 0,"8.8.8.8",32,262,255
```

## Useful Links

* [Quectel BG95-S5 product page](https://www.quectel.com/product/bg95-s5-satellite-communication-module/)
* [UMTS & LTE EVB User Guide](https://www.quectel.com/product/umts-lte-evb-kit/)
* [Quectel BG95-S5 Documentation](https://files.gitbook.com/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M0mPxGpottOEfcucXOR%2Fuploads%2F348qw5CKBeMXJKd7sl4e%2FQuectel_BG95-S5.zip?alt=media\&token=89148cb1-d2cd-402f-924f-de16cb485ab6)

[^1]:


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.monogoto.io/ntn-satellite-networks/ntn-certified-devices/ntn-certified-modules/quectel-bg95-s5-satellite-ntn-network.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
