ntgrrc (Netgear Remote Control) a command line (CLI) tool to manage Netgear managed plus switches 300 series.
Since Netgear does not offer a REST API, this tool uses web scraping techniques to manage configuration and show status of the switch.
This tool is still very limited in its features and more testers and contributors are very welcome.
A green tick means it was successfully tested.
Firmware | GS305EP(P) | GS308EP | GS308EPP | GS316EP(P) |
---|---|---|---|---|
V1.0.0.8 | ✅ | (likely) | ✅ | - |
v1.0.0.10 | ✅ | (likely) | ✅ | - |
V1.0.1.1 | (likely) | ✅ | (likely) | - |
V1.0.3.4 | - | - | - | experimental |
V1.0.3.7 | - | - | - | experimental |
Legend:
✅ = successfully tested
? = unknown
experimental = The support for GS316xxx models is limited to showing the port status.
This tool is build with the Go programming language and pre-build binaries for Windows, Linux, and MacOSX are available for download.
Just download the fitting binary for your operating system and put it somewhere in your PATH.
ntgrrc --help-all
Usage: ntgrrc <command> [flags]
Flags:
-h, --help Show context-sensitive help.
--help-all advanced/full help
-v, --verbose verbose log messages
-q, --quiet no log messages
-f, --output-format="md" what output format to use [md, json]
-d, --token-dir="" directory to store login tokens
Commands:
version [flags]
show version
login --address=STRING [flags]
create a session for further commands (requires admin console password)
poe status --address=STRING
show current PoE status for all ports
poe settings --address=STRING
show current PoE settings for all ports
poe set --address=STRING --port=PORT,... [flags]
set new PoE settings per each PORT number
poe cycle --address=STRING --port=PORT,...
power cycle one or more PoE ports
port settings --address=STRING
show switch port settings
port set --address=STRING --port=PORT,... [flags]
set properties for a port number
debug-report --address=STRING [flags]
show information from the switch communication, useful for supporting
development and bug fixes
Run "ntgrrc <command> --help" for more information on a command.
For better performance, login first.
The login action will store a token to a file called $TEMP/.config/ntgrrc/token-12345678
and thus subsequent actions will use it and are authenticated.
Note: if you have multiple Netgear switches, ntgrrc supports multiple parallel tokens/sessions,
because the token file's name is derived from the provided --address
device name.
ntgrrc login --address gs305ep --password secret
Once a session is created, you can fetch port settings.
The switch's port settings are printed in Markdown table format. This means, separated by | (pipe) and optional suffixes with blanks.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc port settings --address gs305ep
| Port ID | Port Name | Speed | Ingress Limit | Egress Limit | Flow Control |
|---------|-----------|-------|---------------|--------------|--------------|
| 1 | | Auto | No Limit | No Limit | Off |
| 2 | | Auto | No Limit | No Limit | On |
| 3 | | Auto | No Limit | No Limit | On |
| 4 | | Auto | No Limit | No Limit | On |
ntgrrc is able to set various parameters on switch port(s).
To change the port name (within the switch's limit of 1-16 characters), pass the name using -n
and the desired name in quotes. More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc port set -p 1 -n 'port #1' --address gs305ep
| Port ID | Port Name | Speed | Ingress Limit | Egress Limit | Flow Control |
|---------|-----------|-------|---------------|--------------|--------------|
| 1 | port #1 | Auto | No Limit | No Limit | Off |
To clear the set name, supply an empty, but quoted string. More than one port number can be provided.
ntgrrc port set -p 1 -n '' --address gs305ep
| Port ID | Port Name | Speed | Ingress Limit | Egress Limit | Flow Control |
|---------|-----------|-------|---------------|--------------|--------------|
| 1 | | Auto | No Limit | No Limit | Off |
To change the port speed, use -s
and the desired speed ('100M full', '100M half', '10M full', '10M half', 'Auto', 'Disable') in quotes. More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc port set -p 1 -s '100M half' --address gs305ep
| Port ID | Port Name | Speed | Ingress Limit | Egress Limit | Flow Control |
|---------|-----------|-----------|---------------|--------------|--------------|
| 1 | | 100M half | No Limit | No Limit | Off |
To change the in rate limit, use -i
and the desired rate limit ('1 Mbit/s', '128 Mbit/s', '16 Mbit/s', '2 Mbit/s', '256 Mbit/s', '32 Mbit/s', '4 Mbit/s', '512 Kbit/s', '512 Mbit/s', '64 Mbit/s', '8 Mbit/s', 'No Limit') in quotes. More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc port set -p 1 -i '16 Mbit/s' --address gs305ep
| Port ID | Port Name | Speed | Ingress Limit | Egress Limit | Flow Control |
|---------|-----------|-------|---------------|--------------|--------------|
| 1 | | Auto | 16 Mbit/s | No Limit | Off |
To change the out rate limit, use -o
and the desired rate limit ('1 Mbit/s', '128 Mbit/s', '16 Mbit/s', '2 Mbit/s', '256 Mbit/s', '32 Mbit/s', '4 Mbit/s', '512 Kbit/s', '512 Mbit/s', '64 Mbit/s', '8 Mbit/s', 'No Limit') in quotes. More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc port set -p 1 -o '16 Mbit/s' --address gs305ep
| Port ID | Port Name | Speed | Ingress Limit | Egress Limit | Flow Control |
|---------|-----------|-------|---------------|--------------|--------------|
| 1 | | Auto | 16 Mbit/s | 16 Mbit/s | Off |
To change the flow control setting for a port, use --flow-control
and the desired setting ('On', 'Off') in quotes. More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc port set -p 1 --flow-control 'On' --address gs305epp
ntgrrc port set -p 1 --flow-control 'On' --address test
| Port ID | Port Name | Speed | Ingress Limit | Egress Limit | Flow Control |
|---------|-----------|-------|---------------|--------------|--------------|
| 1 | | Auto | 16 Mbit/s | 16 Mbit/s | On |
Once a session is created, you can fetch POE settings and status.
The switch's PoE settings are printed in Markdown table format. This means, separated by | (pipe) and optional suffixes with blanks.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe settings --address gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|---------|----------|------------|-----------|----------|
| 1 | disabled | 802.3at | low | user | 30.0 | IEEE 802 |
| 2 | enabled | 802.3at | low | user | 30.0 | IEEE 802 |
| 3 | enabled | 802.3at | low | user | 30.0 | IEEE 802 |
| 4 | enabled | 802.3at | low | user | 30.0 | IEEE 802 |
The switch's POE status are printed in Markdown table format. This means, separated by | (pipe) and optional suffixes with blanks.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe status --address gs305ep
| Port ID | Status | PortPwr class | Voltage (V) | Current (mA) | PortPwr (W) | Temp. (°C) | Error status |
|---------|------------------|---------------|-------------|--------------|-------------|------------|--------------|
| 1 | Delivering Power | 0 | 53 | 82 | 4.40 | 30 | No Error |
| 2 | Searching | | 0 | 0 | 0.00 | 30 | No Error |
| 3 | Searching | | 0 | 0 | 0.00 | 30 | No Error |
| 4 | Searching | | 0 | 0 | 0.00 | 30 | No Error |
ntgrrc is able to set various parameters on PoE port(s).
To enable or disable port power, pass the port number using -p
and --power enable
to enable power or --power disable
to disable power. More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe set -p 3 -p 4 --power enable --address gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|---------|----------|------------|-----------|----------|
| 3 | enabled | 802.3at | low | user | 30.0 | IEEE 802 |
| 4 | enabled | 802.3at | low | user | 30.0 | IEEE 802 |
To change the port power mode, pass the port number using -p
and --mode
with the desired power mode (802.3af, legacy, pre-802.3at, 802.3at). More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe set -p 3 -p 5 --mode legacy --address gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|--------|----------|------------|-----------|----------|
| 3 | enabled | legacy | low | user | 30.0 | IEEE 802 |
| 5 | disabled | legacy | low | user | 30.0 | IEEE 802 |
To change port priority, pass the port number using -p
and --priority
with the desired priority (low, high, critical). More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe set -p 3 -p 5 --priority critical --address gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|--------|----------|------------|-----------|----------|
| 3 | enabled | legacy | critical | user | 30.0 | IEEE 802 |
| 5 | disabled | legacy | critical | user | 30.0 | IEEE 802 |
To change the power limit for a port, pass the port number using -p
and --pwr-limit
with the desired limit. More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe set -p 3 -p 5 --pwr-limit 5 --address gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|--------|----------|------------|-----------|----------|
| 3 | enabled | legacy | critical | user | 5.0 | IEEE 802 |
| 5 | disabled | legacy | critical | user | 5.0 | IEEE 802 |
To change the power limit type for a port, pass the port number using -p
and --limit-type
with the desired limit type (none, class, user). More than one port number can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe set -p 3 -p 5 --limit-type class --address gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|--------|----------|------------|-----------|----------|
| 3 | enabled | legacy | critical | class | 16.2 | IEEE 802 |
| 5 | disabled | legacy | critical | class | 30.0 | IEEE 802 |
To change the detection type for a port, pass the port number using -p
and --detect-type
with the desired detection type. More than one port can be provided.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe set -p 3 -p 5 --detect-type "4pt 802.3af + Legacy" -a gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|--------|----------|------------|-----------|----------------------|
| 3 | enabled | legacy | critical | user | 30.0 | 4pt 802.3af + Legacy |
| 5 | disabled | legacy | critical | user | 30.0 | 4pt 802.3af + Legacy |
ntgrrc is able to power cycle one or more PoE ports.
Use the --output-format=json
flag, to get JSON output instead.
ntgrrc poe cycle -p 3 -p 5 --address gs305ep
| Port ID | Port Power | Mode | Priority | Limit Type | Limit (W) | Type |
|---------|------------|---------|----------|------------|-----------|----------|
| 3 | enabled | 802.3at | low | user | 30.0 | IEEE 802 |
| 5 | enabled | 802.3at | low | user | 30.0 | IEEE 802 |