https://github.com/pertsevds/icmp_ping
https://github.com/pertsevds/icmp_ping
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pertsevds/icmp_ping
- Owner: pertsevds
- License: apache-2.0
- Created: 2022-03-10T12:13:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-11T21:56:38.000Z (about 3 years ago)
- Last Synced: 2025-01-26T04:42:55.797Z (5 months ago)
- Language: Elixir
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ICMPPing
**TODO: Add description**
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `icmp_ping` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:icmp_ping, "~> 0.1.0"}
]
end
```In Linux execute following lines of code to allow userlevel ping for current user group:
$ echo "net.ipv4.ping_group_range = `id -g` `id -g`" | sudo tee -a /etc/sysctl.conf
$ sudo sysctl -p
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at .## Copyright and License
Copyright (c) 2022, Pertsev Dmitriy.
This library is released under the Apache License, Version 2.0. See the [LICENSE](./LICENSE) file
for further details.This project contains some parts from 3rd party works as follow:
- NetAddress by Lambda, Inc., and Isaac Yonemoto: [ityonemo/net_address](https://github.com/ityonemo/net_address).