dog_trainer
dog_trainer is the central server component of dog, a centralized firewall management system.
- Runtime Dependencies
- Build Dependencies
- CA/Certificate Creation
- Initial Configuration
- Build Deploy
- Run
- Logs
- Other
- linux 4.x+ (Ubuntu 16.04 tested)
- diffutils
- coreutils
- rabbitmq-server 3.7+
- rethinkdb 2.3.6+
- git
- erlang 22+
If you already have a CA and per-server certs, you can reuse them, or buy new ones (costly). You can create your own self-signed certs with your own Certificat Authority.
Examples Ansible scripts are provided to get you started. Examples use Credstash to securely store the CA files (https://github.com/fugue/credstash)
Create the CA and store it in a secure location, use it in a deletable location like a tmpfs or an encrypted filesystem and then delete after use.
-
example:
scripts/ansible/dog_create_ca_cert.yml
One TLS cert must be created for each dog_trainer and dog_agent server
-
example:
scripts/ansible/setup_dog_cert.yml
sudo apt install rethinkdb=2.3.6~0xenial
For high availability, setup replication: https://rethinkdb.com/docs/sharding-and-replication/
RethinkDB's web console doesn't require authentication, but you can use oauth2_proxy (https://github.com/oauth2-proxy/oauth2-proxy) for that purpose.
#edit src/rethink_db_setup.erl
$ ./rebar3 shell
1> rethink_db_setup:setup_rethinkdb($ENV_NAME).
2> dog_ipset:set_hash(dog_ipset:create_hash(dog_ipset:create_ipsets())).
sudo apt install rabbitmq-server=3.7.17-1
cp config/rabbitmq/rabbitmq.conf /etc/rabbitmq/
#edit rabbitmq to reflect location of certs and
#you should replace PRIVATE_IP with an IP that is not accessible via the pubilc internet.
cp config/rabbitmq/enabled_plugins /etc/rabbitmq/
restart rabbitmq-server
#edit setup_rabbitmq.sh, define variables.
script/setup_rabbitmq.sh
It's useful to create service names for the dog_trainer clients to connect to.
You may want to create one for each type of connection:
- rabbitmq clients: To force rabbitmq connections over private networks in EC2, create this service name as a A Record with the private IP of your server as it's value.
- dog_park (gui) clients
You can deploy multiple rabbitmq servers across regions, using the federation plugin to replcate client queues and exchanges. You can then connect your agents to these distributed rabbitmqs via their local private IPs, avoiding having to have agents connect to a rabbitmq in another region across the public internet. https://www.rabbitmq.com/federation.html
Create directories:
./install.sh
If credentials stored in credstash, run to fill templates:
cd dog_trainer/template_setup
$ ../rebar3 shell
1> template_setup:main().
otherwise copy config/templates/*.dtl to config/ and manually update credentials.
$ rebar as $ENV tar
copy tar to system, extract to /opt/dog_trainer
Setup systemd service:
cp config/dog_trainer.service /lib/systemd/system/dog_trainer.service
$ systemctl enable dog_trainer
$ systemctl start dog_trainer
/var/log/dog_trainer/