Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: document enabling/disabling services #304

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,24 @@ neolink ptz --config=config.toml CameraName zoom 2.5

With 1.0 being normal and 2.5 being 2.5x zoom

### Enabling services (http, https, rtmp, rtsp and onvif)

rmelotte marked this conversation as resolved.
Show resolved Hide resolved
**For newer cameras that have services on the camera hardware. These can be enabled with the `services` command.**

This is not related to the `rtsp` mode of neolink which is a separate feature.

For example, to enable the http port:
```bash
neolink services --config=/etc/neolink.toml CameraName http on
```

To disable it:
```bash
neolink services --config=/etc/neolink.toml CameraName http off
```

Note that this might not work on older camera models.

## License

Neolink is free software, released under the GNU Affero General Public License
Expand Down