# Daemon configuration
The daemon is configurable by config.txt.
The config file must be in the same directory from where you run the binary.
### Configuration Values
`port`: The port where the server listens. Must be a valid port.
`userdatabase`: The file where userdata is stored in format: user;password
`filedirectory`: The file directory where the received files will be store. (Folder must exist!!!)
`activateCovertChannel`: Set to true to activate covert channel. Won't initialize sniffers and senders if set to false
`innerInterface`: The interface of your inner network
`outerInterface`: The interface of your outer network
`filter`: pcap filter string to set the filter for the covert channel
### Example for config.txt
```
port=1234
userdatabase=userStorage.txt
filedirectory=./files/
activateCovertChannel=true
innerInterface=eth0
outerInterface=eth1
filter=host 8.8.8.8 and port 443
```