Ir al contenido principal

APN y Frecuencia de Telefonicas Dominicanas


Aquí está la información que necesitas para saber qué celular o modem es compatible con la compañía telefónica que usas en República Dominicana, también la configuración que necesitas para el internet. Normalmente se configura todo automatico, pero si dispositivo es "unlocked" o brandless probablemente necesites configurarlo.

Esto es para saber la frecuencia que usa cada telefonica. Con esta info sabras que dispositivo comprar. Si saben de alguno que cambio, dejenlo en los comentarios.
CompañíaTipo de RedEDGE3G4G LTE
Claro DominicanaGSM850MHz, 1900MHz850MHz1700MHz, 2100MHz (Banda 4 AWS)
Orange DominicanaGSM900MHz, 1800MHz, 1900MHz900MHz1800MHz (Banda 3)
TricomCDMA800MHz, 850MHz, 1900MHz800MHz1900MHz (Banda 2)
Viva DominicanaGSM1900MHz1900MHz1700MHz, 2100MHz

Configuracion de APN
CompañíaConfiguración
Claro DominicanaAPN: internet.ideasclaro.com.do
APN alternativo: ba.amx
MCC: 370
MNC: 02
Orange DominicanaAPN (3G): orangenet.com.do
APN (4G LTE): orangeinternet
MCC: 370
MNC: 01
TricomAPN: lte.tricom.net
Autenticación: PAP o CHAP
Tipo de APN: default,supl
MMC: 370
MNC: 03
Viva DominicanaAPN: edge.viva.net.do
APN (3G/4G): internet.viva.do
Proxy: 192.168.16.10 (NO usar con APN de 3G/4G)
Puerto: 9401
Usuario: viva
Clave: viva
MMC: 370
MNC: 04
 Fuente https://www.geek.com.do/como-configurar-el-apn-en-android-ios-y-windows-10-mobile/

Comentarios

Entradas más populares de este blog

Configurando Modem USB en Raspberry Pi

Setting up a USB 3G/4G modem on a Raspberry Pi is not a simple task. There are many guides available using the now defunct  sakis3g  script, but getting my modem to work required a bit more understanding.  The main problem is that most USB modems act as two devices - a USB storage device and a USB modem. When plugged in to the Raspberry PI the device is usually in USB storage mode. There is a program called  usb_modeswitch  that we can use to do the switching  The other missing part is a way to connect to the cellular network with the USB modem from the Raspberry. For this we will use the classic  ppp  and  wvdial programs. Requirements Raspberry PI computer Raspbian OS installed USB 3G Modem 5V 1A power supply for the Raspberry PI  1. Install required software Connect your Raspberry PI to the internet via LAN or Wifi Open a terminal window and enter: sudo apt-get update sudo apt-get install ppp usb-modeswitch wvd...