Explain FieldPOC setup config
This commit is contained in:
parent
73c2aff0af
commit
498a429c8d
@ -1,11 +1,21 @@
|
|||||||
# Configure FieldPOC
|
# Configure FieldPOC
|
||||||
|
|
||||||
|
To enable FieldPOC on the system just add this config.
|
||||||
|
|
||||||
```
|
```
|
||||||
services.fieldpoc = {
|
services.fieldpoc = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ommIp = "10.42.132.2";
|
ommIp = "10.42.132.2";
|
||||||
ommUser = "omm";
|
ommUser = "omm";
|
||||||
ommPasswordPath = pkgs.writeText "ommpassword" "rfpL43wlan";
|
ommPasswordPath = "/var/src/secrets/fieldpoc/ommpassword";
|
||||||
sipsecretPath = pkgs.writeText "sipsecret" "c1e0aba8e0fc3ed3";
|
sipsecretPath = "/var/src/secrets/fieldpoc/sipsecret";
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- `ommIp` is the IP address of your OMM.
|
||||||
|
- `ommUser` is the user account that FieldPOC uses to access the OMM. You usually want to set this to `omm`.
|
||||||
|
- `ommPasswordPath` is the path to a file containing the password for the OMM user. This password is configured when [setting up the OMM](omm.md#login-credentials).
|
||||||
|
|
||||||
|
- `sipsecretPath` is a path to a file containing a 16 characters hex string. FieldPOC is generating internal SIP accounts for each DECT user. So nobody can hijack these accounts, this secret is used as a seed for generating passwords for these accounts.
|
||||||
|
|
||||||
|
When enabling the FieldPOC module a correctly configured Yate service is added to your system.
|
||||||
|
Loading…
Reference in New Issue
Block a user