https://github.com/lwahlmeier/sip-ping
A simple SIP OPTIONS Ping checking for sip services.
https://github.com/lwahlmeier/sip-ping
healthcheck sip websockets
Last synced: 5 months ago
JSON representation
A simple SIP OPTIONS Ping checking for sip services.
- Host: GitHub
- URL: https://github.com/lwahlmeier/sip-ping
- Owner: lwahlmeier
- License: mit
- Created: 2019-06-04T00:26:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-12T17:22:23.000Z (over 2 years ago)
- Last Synced: 2025-04-01T04:29:38.016Z (6 months ago)
- Topics: healthcheck, sip, websockets
- Language: Go
- Size: 99.6 KB
- Stars: 11
- Watchers: 0
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sip-ping
Send a SIP OPTIONS request to a server over ws/wss or udp/tcp/tls.
## examples
### WSS:
```bash
sip-ping -addr wss://some.sip.server.com:443
```### UDP:
```bash
sip-ping -addr udp://some.sip.server.com:5060
```## install
Assuming you have [setup Go](https://golang.org/doc/install):
```bash
go get github.com/lwahlmeier/sip-ping
```## building
Uses docker for isolated/repeatable binary builds.
```bash
make build
```