

The TrendNet TI-BG5091 is an industrial-grade network switch designed to deliver high-speed data transfer and Power over Ethernet (PoE++) capabilities. With 9 Gigabit PoE++ ports and 1 10G SFP+ slot, this switch is ideal for powering and connecting devices such as IP cameras, wireless access points, and VoIP phones in demanding environments. Its rugged design ensures reliable operation in extreme conditions, making it suitable for industrial, commercial, and outdoor applications.








| Specification | Details |
|---|---|
| Manufacturer | TrendNet |
| Model | TI-BG5091 |
| Ports | 9 x Gigabit PoE++ (802.3bt), 1 x 10G SFP+ |
| PoE Standards | IEEE 802.3af/at/bt |
| PoE Power Budget | 240W |
| Switching Capacity | 40Gbps |
| Operating Temperature | -40°C to 75°C (-40°F to 167°F) |
| Input Voltage | 48-56V DC |
| Mounting Options | DIN-Rail or Wall-Mount |
| Dimensions | 160 x 120 x 50 mm (6.3 x 4.7 x 2 in) |
| Weight | 1.2 kg (2.65 lbs) |
| Certifications | CE, FCC, UL |
| Pin | Description |
|---|---|
| V+ | Positive DC input (48-56V) |
| V- | Negative DC input (Ground) |
| FG | Frame Ground |
| Port | Description |
|---|---|
| 1-9 | Gigabit Ethernet ports with PoE++ support (up to 90W per port, IEEE 802.3bt). |
| Port | Description |
|---|---|
| 10 | 10G SFP+ slot for high-speed fiber uplink. |
Powering the Switch:
Connecting Devices:
Mounting:
Configuring the Network:
If you are using the TI-BG5091 to connect an Arduino UNO with an Ethernet shield, follow these steps:
#include <SPI.h>
#include <Ethernet.h>
// MAC address and IP address for the Arduino Ethernet Shield
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 1, 177); // Set a static IP address for the Arduino
// Initialize the Ethernet client
EthernetClient client;
void setup() {
// Start the Ethernet connection
if (Ethernet.begin(mac) == 0) {
// If DHCP fails, use the static IP address
Ethernet.begin(mac, ip);
}
Serial.begin(9600);
Serial.println("Ethernet initialized.");
}
void loop() {
// Example: Connect to a server and send data
if (client.connect("example.com", 80)) {
client.println("GET / HTTP/1.1");
client.println("Host: example.com");
client.println("Connection: close");
client.println();
}
delay(1000);
}
No Power to Connected Devices:
No Network Connectivity:
Overheating:
Q: Can I use this switch in outdoor environments?
Q: What is the maximum distance for PoE++ connections?
Q: Can I use third-party SFP+ modules?
This concludes the documentation for the TrendNet TI-BG5091 9 Port DIN POE++ Switch with 10gb SFP+.