NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
xgonc
Dec 03, 2019Tutor
GS728TPv2 POE - enable/disable POE for a port using SNMP
Hi DaneA Having a similar issue as the original poster of this thread here. I need access to the MIB file to enable disable POE admin mode for a specific port on an GS728TPv2. Essentially I ...
- Dec 05, 2019
The firmware on the link is v6.0.1.4, not v6.1.1.4. Assuming it's a typo...
My bad. :( I admit, it's a typographical error of mine.
For anyone is looking for the same solution, here is a bash script that turns on and off a POE port:
#!/bin/bash PORT=$1 if [ $2 == "0" ]; then STATE=2 else STATE=1 fi snmpset -t 10 -v 2c -c public 192.168.1.178 1.3.6.1.2.1.105.1.1.1.3.1.$PORT i $STATE exit $?
Thank you for sharing this. This will help a lot of community members. :)
Since your concern has been addressed/resolved, I encourage you to mark the appropriate reply as the “Accepted Solution” so others can be confident in benefiting from the solution. The NETGEAR Community looks forward to hearing from you and being a helpful resource in the future!
Regards,DaneA
NETGEAR Community Team
xgonc
Dec 05, 2019Tutor
Thanks for the reply DaneA
The firmware on the link is v6.0.1.4, not v6.1.1.4. Assuming it's a typo...
For anyone is looking for the same solution, here is a bash script that turns on and off a POE port:
#!/bin/bash PORT=$1 if [ $2 == "0" ]; then STATE=2 else STATE=1 fi snmpset -t 10 -v 2c -c public 192.168.1.178 1.3.6.1.2.1.105.1.1.1.3.1.$PORT i $STATE exit $?
DaneA
Dec 05, 2019NETGEAR Employee Retired
The firmware on the link is v6.0.1.4, not v6.1.1.4. Assuming it's a typo...
My bad. :( I admit, it's a typographical error of mine.
For anyone is looking for the same solution, here is a bash script that turns on and off a POE port:
#!/bin/bash PORT=$1 if [ $2 == "0" ]; then STATE=2 else STATE=1 fi snmpset -t 10 -v 2c -c public 192.168.1.178 1.3.6.1.2.1.105.1.1.1.3.1.$PORT i $STATE exit $?
Thank you for sharing this. This will help a lot of community members. :)
Since your concern has been addressed/resolved, I encourage you to mark the appropriate reply as the “Accepted Solution” so others can be confident in benefiting from the solution. The NETGEAR Community looks forward to hearing from you and being a helpful resource in the future!
Regards,
DaneA
NETGEAR Community Team
Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!