# Configure APN via AT commands

Here we will discuss how to:

* Configure APN

To configure APN via AT command, you simple insert the  of the FPLMN on your SIM, we can use the following AT command:

{% hint style="info" %}
AT+CGDCONT= 1,"IP","\<insert apn here>"
{% endhint %}

Here are some examples

```
// APN for TATA SIMs/ SIM-profiles
AT+CGDCONT= 1,"IP","move.dataxs.mobi"
OK

// APN for Monogoto SIMs/ SIM-profiles
AT+CGDCONT= 1,"IP","data.mono"
OK

// APN for Telna SIMs/ SIM-profiles for Europe region
AT+CGDCONT= 1,"IP","rh"
OK
```
