mirror of
https://github.com/Telecominfraproject/wlan-docs.git
synced 2025-11-07 14:17:46 +00:00
36 lines
892 B
Markdown
36 lines
892 B
Markdown
---
|
|
description: OpenWiFi 2.1
|
|
---
|
|
|
|
# Port Speed
|
|
|
|
Configuring port speed and operation is most commonly done with PoE access switches however the same configurations are possible for all OpenWiFi device types.
|
|
|
|
By default all ports attempt 1,000 Mb/s full duplex operation.
|
|
|
|
```
|
|
"ethernet": [
|
|
{
|
|
"select-ports": [
|
|
"WAN1"
|
|
],
|
|
"speed": 100,
|
|
"duplex": "half"
|
|
},
|
|
{
|
|
"select-ports": [
|
|
"WAN2"
|
|
],
|
|
"speed": 1000,
|
|
"duplex": "full"
|
|
},
|
|
{
|
|
"select-ports": [
|
|
"WAN3"
|
|
],
|
|
"speed": 100,
|
|
"duplex": "half"
|
|
}
|
|
],
|
|
```
|