Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpillora/upnpctl
A small UPnP client
https://github.com/jpillora/upnpctl
Last synced: 3 months ago
JSON representation
A small UPnP client
- Host: GitHub
- URL: https://github.com/jpillora/upnpctl
- Owner: jpillora
- License: mit
- Created: 2015-03-31T16:01:58.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-01T03:21:34.000Z (almost 10 years ago)
- Last Synced: 2024-06-20T01:50:44.088Z (7 months ago)
- Language: Go
- Size: 152 KB
- Stars: 11
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# upnpctl
A small UPnP client
:warning: Beta
### Install
**Binaries**
See [latest release](https://github.com/jpillora/upnpctl/releases/latest)
**Source**
``` sh
$ go get -v github.com/jpillora/upnpctl
```### Examples
Forward the router's port 3000 to this machine's port 3000
```
upnpctl add 3000
```Forward the router's port 4000 to this machine's port 5000
```
upnpctl add 4000:5000
```### Usage
```
$ upnpctl --help
``````
Usage: upnpctl [options]
Version: 0.0.0-srcCommands:
* list: discovers all available UPnP devices
* add: adds a set of port mappings to a device
* rem: removes a set of port mappings from a deviceOptions:
-v, verbose logs
-vv, very verbose logsRead more: https://github.com/jpillora/upnpctl
```
#### MIT License
Copyright © 2015 Jaime Pillora <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.