skip to content
..., etc.
User Tools
Log In
Site Tools
Search
Tools
Show page
Old revisions
Backlinks
Recent Changes
Media Manager
Sitemap
Log In
>
Recent Changes
Media Manager
Sitemap
Trace:
unix:stora
====== Open Port via iptables - 1 ====== To open arbitrary ports on a NetGear Stora (if you don't like UPnP), edit /etc/init.d/iptables and add a variable near the top of the file called TCP_OPEN_PORTS_EXT. <code> export TCP_OPEN_PORTS_EXT=29101 </code> Then issue a restart via "/etc/init.d/iptables restart". This is necessary if you want to setup an arbitrary daemon on the system, like transmission, maybe. This works because the iptables script includes a section that uses the variable: <code> # Accept the 3rd party ports that are set to be opened: if [ ! -z "${TCP_OPEN_PORTS_EXT}" ]; then for port in $TCP_OPEN_PORTS_EXT; do iptables -A INPUT -p tcp --dport $port -j ACCEPT || die done fi </code> ====== Open Port via iptables - 2 ====== This can also be accomplished by editing /etc/iptables/config... doh. ====== Packages for ARM ====== Apparently Drobo has the same armv5tejl architecture, [[http://www.droboports.com/app-repository/|so many pre-compiled binaries (like netcat) are available for the Stora here]].
unix/stora.txt
· Last modified: 2014/02/19 11:53 by
ben
Page Tools
Show page
Old revisions
Backlinks
Back to top