Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ Supporting frameworks like NVIDIA Isaac ROS, Hugging Face, PyTorch, and ROS 2/1,
<tr>
<th rowSpan="3">Mechanical</th>
<td>Dimensions (W x D x H)</td>
<td>115mm x 115mm x 38mm</td>
<td>110mm x 110mm x 38mm</td>
</tr>
<tr>
<td>Weight</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
description: reServer Industrial Hardware Interface Usage
title: reServer Industrial Hardware Interface Usage
keywords:
- reServer
- reServer
image: https://files.seeedstudio.com/wiki/wiki-platform/S-tempor.png
slug: /reserver_industrial_hardware_interface_usage
last_update:
date: 09/22/2023
author: Lakshantha
sku: 114110247
createdAt: '2023-06-08'
updatedAt: '2026-03-03'
url: https://wiki.seeedstudio.com/reserver_industrial_hardware_interface_usage/
Expand Down Expand Up @@ -83,34 +84,49 @@ There are 2 LEDs (green and yellow) on each Ethernet port which indicates the fo
</TabItem>
</Tabs>


### Binding Physical Network IP to eth Numbers

**The interfaces eth0 to eth3 are designated for PoE, with eth3 specifically referred to as PoE4.**
**The interfaces LAN1 to LAN4 are designated for PoE.**

If you need to configure different IP addresses for each PoE interface, follow these instructions:

:::warning
The interface names (e.g. `enP1p1s0`) may vary depending on your system. Before proceeding, run the following command to check the actual interface names on your device. The commands below are for reference only — replace the interface name with the one shown on your system.

If you need to configure different IP addresses for each POE interface, follow these instructions:
```bash
ifconfig
```
:::

**Step 1**: Connect the PoE device to the reServer Industrial. Create a new connection for the target interface. For example, to configure the interface `enP1p1s0` and name it `POE1`:

```bash
sudo nmcli connection add type ethernet ifname enP1p1s0 con-name POE1
```

**Step 1**: Connect the POE to the reServer Industrial device. For example, to configure eth3, set the name of eth3 to POE3.
**Step 2**: Configure the IP address. The IP address can be customized according to actual usage.

```bash
sudo nmcli connection add type ethernet ifname eth4 con-name POE3
sudo nmcli connection modify POE1 ipv4.addresses 192.168.6.6/24
```

**Step 2**: Configure the IP address of POE3 to **192.168.6.6**. The IP address can be customized according to actual usage.
**Step 3**: Set the IPv4 method to manual (static IP).

```bash
sudo nmcli connection modify POE3 ipv4.addresses 192.168.6.6/24
sudo nmcli connection modify POE1 ipv4.method manual
```

**Step3**: To set POE3's IPv4 address to manual configuration.
**Step 4**: Bring up the connection.

```bash
sudo nmcli connection modify POE3 ipv4.method manual
sudo nmcli connection up POE1
```

**Step4**: Start the connection
**Step 5**: Verify the configuration.

```bash
sudo nmcli connection up POE3
ifconfig
```

## SATA Connectors
Expand Down
Loading