1

Create example config files

This commit is contained in:
Evan Pratten 2023-08-04 20:23:17 -04:00
parent 0e7a96befe
commit 7ce0c897ea
6 changed files with 58 additions and 3 deletions

View File

@ -101,13 +101,26 @@ assets = [
"/usr/local/bin/protomask-6over4", "/usr/local/bin/protomask-6over4",
"755", "755",
], ],
[
"config/protomask.json",
"/etc/protomask/protomask.json",
"644",
],
[
"config/protomask-clat.json",
"/etc/protomask/protomask-clat.json",
"644",
],
[ [
"README.md", "README.md",
"usr/share/doc/protomask/README.md", "/usr/share/doc/protomask/README.md",
"644", "644",
], ],
] ]
conf-files = [] conf-files = []
depends = [] depends = []
maintainer-scripts = "./debian/" maintainer-scripts = "./debian/"
systemd-units = { enable = false } systemd-units = [
{ unit-name = "protomask-service", enable = false },
{ unit-name = "protomask-clat-service", enable = false },
]

View File

@ -0,0 +1,7 @@
{
"via": "64:ff9b::/96",
"customer_pool": [
"192.0.2.0/24"
],
"prometheus_bind_addr": "[::1]:8999"
}

14
config/protomask.json Normal file
View File

@ -0,0 +1,14 @@
{
"prefix": "64:ff9b::/96",
"pool": [
"192.0.2.0/24"
],
"static_map": [
{
"ipv4": "192.0.2.1",
"ipv6": "2001:db8::1"
}
],
"prometheus_bind_addr": "[::1]:8999",
"reservation_timeout": 7200
}

9
debian/protomask-clat-service vendored Normal file
View File

@ -0,0 +1,9 @@
[Unit]
Description = Protomask CLAT
After = network.target
[Service]
ExecStart = /usr/local/bin/protomask-clat --config /etc/protomask/protomask-clat.json
[Install]
WantedBy=multi-user.target

View File

@ -3,7 +3,7 @@ Description = Protomask
After = network.target After = network.target
[Service] [Service]
ExecStart = /usr/local/bin/protomask --pool-file /etc/protomask/pool.txt ExecStart = /usr/local/bin/protomask --config /etc/protomask/protomask.json
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View File

@ -90,3 +90,15 @@ pub struct Config {
#[clap(long, default_value = "7200")] #[clap(long, default_value = "7200")]
pub reservation_timeout: u64, pub reservation_timeout: u64,
} }
#[derive(Debug, serde::Deserialize, Clone)]
pub struct StaticMap {
pub ipv4: Ipv4Addr,
pub ipv6: Ipv6Addr,
}
impl Into<(Ipv4Addr, Ipv6Addr)> for StaticMap {
fn into(self) -> (Ipv4Addr, Ipv6Addr) {
(self.ipv4, self.ipv6)
}
}