

The RUT955 is a robust industrial router manufactured by Teltonika, designed for secure and reliable wireless communication in IoT applications. It supports multiple connectivity options, including LTE, Ethernet, and Wi-Fi, making it a versatile solution for remote monitoring, control, and data transmission in industrial, commercial, and residential environments.
This router is particularly well-suited for applications such as:








| Parameter | Specification |
|---|---|
| Manufacturer | Teltonika |
| Part ID | RUT955 |
| Cellular Connectivity | LTE Cat 4 (up to 150 Mbps download, 50 Mbps upload) |
| Wi-Fi | IEEE 802.11b/g/n, 2.4 GHz |
| Ethernet Ports | 4 x 10/100 Mbps (1 WAN, 3 LAN) |
| Serial Ports | 1 x RS232, 1 x RS485 |
| GNSS Support | GPS, GLONASS, BeiDou |
| Input Voltage Range | 9 V to 30 V DC |
| Power Consumption | < 7 W (typical) |
| Operating Temperature Range | -40°C to +75°C |
| Dimensions | 110 mm x 100 mm x 50 mm |
| Certifications | CE, RoHS, E-Mark, FCC, PTCRB |
The RUT955 features multiple interfaces for connectivity and control. Below is a summary of its key ports and their functions:
| Pin/Port | Description |
|---|---|
| Power Input | 2-pin terminal block for DC power input (9 V to 30 V) |
| Digital I/O | 4 configurable digital inputs/outputs for monitoring or control |
| USB Port | 1 x USB 2.0 for external device connection |
| Port | Description |
|---|---|
| Ethernet WAN | 1 x 10/100 Mbps Ethernet port for WAN connection |
| Ethernet LAN | 3 x 10/100 Mbps Ethernet ports for LAN devices |
| RS232 | Serial communication port for legacy devices |
| RS485 | Serial communication port for industrial devices |
| SIM Slots | 2 x Mini-SIM slots for dual SIM functionality |
| Connector | Description |
|---|---|
| LTE Main/Backup | 2 x SMA connectors for LTE antennas |
| Wi-Fi | 1 x RP-SMA connector for Wi-Fi antenna |
| GNSS | 1 x SMA connector for GPS/GNSS antenna |
Powering the Device:
Connecting to the Internet:
Configuring the Router:
admin, password: admin01).Connecting Devices:
The RUT955 can be used to send data from an Arduino UNO to a remote server via LTE. Below is an example of Arduino code to send sensor data over a serial connection to the RUT955:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial mySerial(10, 11); // RX = pin 10, TX = pin 11
void setup() {
// Initialize serial communication with Arduino and RUT955
Serial.begin(9600); // Arduino Serial Monitor
mySerial.begin(9600); // Communication with RUT955
// Print a message to indicate setup is complete
Serial.println("Arduino is ready to send data to RUT955.");
}
void loop() {
// Example: Send a temperature reading to RUT955
float temperature = 25.5; // Replace with actual sensor reading
mySerial.print("Temperature: ");
mySerial.println(temperature);
// Wait for 1 second before sending the next reading
delay(1000);
}
Note: Ensure the RS232 or RS485 interface on the RUT955 is properly configured to receive data from the Arduino.
No Internet Connection:
Unable to Access Web Interface:
Weak Signal Strength:
Device Not Powering On:
Q: Can the RUT955 operate with dual SIM cards?
Q: Is the RUT955 compatible with 5 GHz Wi-Fi?
Q: How can I reset the router to factory settings?
Q: Can I use the RUT955 in outdoor environments?