diff --git a/.gitignore b/.gitignore index 54a98ed..d310218 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,6 @@ Cargo.lock /target #Cargo.lock + +# Built packages +/tars \ No newline at end of file diff --git a/Makefile b/Makefile index 36e9dba..11cfcfa 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,22 @@ GIT_HASH ?= $(shell git log --format="%h" -n 1) # Release binary for x64 target/x86_64-unknown-linux-musl/release/protomask: $(SRC) cross build --target x86_64-unknown-linux-musl --release -# sudo setcap cap_net_admin=eip $@ # Release binary for aarch64 target/aarch64-unknown-linux-musl/release/protomask: $(SRC) cross build --target aarch64-unknown-linux-musl --release -# sudo setcap cap_net_admin=eip $@ +# All tars +tars: tars/protomask-$(GIT_HASH)-x86_64.tar.gz tars/protomask-$(GIT_HASH)-aarch64.tar.gz + +# TAR file for x64 +tars/protomask-$(GIT_HASH)-x86_64-linux-musl.tar.gz: target/x86_64-unknown-linux-musl/release/protomask protomask.toml + mkdir -p tars + cp protomask.toml target/x86_64-unknown-linux-musl/release/ + tar -czf $@ -C target/x86_64-unknown-linux-musl/release/ protomask protomask.toml + +# TAR file for aarch64 +tars/protomask-$(GIT_HASH)-aarch64-linux-musl.tar.gz: target/aarch64-unknown-linux-musl/release/protomask protomask.toml + mkdir -p tars + cp protomask.toml target/aarch64-unknown-linux-musl/release/ + tar -czf $@ -C target/aarch64-unknown-linux-musl/release/ protomask protomask.toml \ No newline at end of file diff --git a/README.md b/README.md index d4c692e..a96458d 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ Protomask uses a [TOML](https://toml.io) configuration file. Here is a functiona ```toml # The NAT64 prefix to route to protomask Nat64Prefix = "64:ff9b::/96" +# Setting this will enable prometheus metrics +Prometheus = "[::]:8080" # Optional, defaults to disabled [Pool] # All prefixes in the pool @@ -38,20 +40,16 @@ Static = [{ v4 = "192.0.2.2", v6 = "2001:db8:1::2" }] Protomask can be installed using various methods: +### Using pre-built binaries + +Head over to the [releases](https://github.com/ewpratten/protomask/releases) page and download the latest release for your platform. This will contain a binary and example config file to get you started. + ### Using Cargo ```bash cargo install protomask ``` -### From source - -```bash -git clone https://github.com/ewpratten/protomask -cd protomask -cargo install --path . -``` - ## Usage ```text diff --git a/protomask.toml b/protomask.toml index 9d637bc..3fffc0f 100644 --- a/protomask.toml +++ b/protomask.toml @@ -1,7 +1,7 @@ -# Protomask example configuraiton file - # The NAT64 prefix to route to protomask Nat64Prefix = "64:ff9b::/96" +# Setting this will enable prometheus metrics +Prometheus = "[::]:8080" # Optional, defaults to disabled [Pool] # All prefixes in the pool