Skip to content

Instantly share code, notes, and snippets.

@dvjones89
Last active January 2, 2017 18:03
Show Gist options
  • Save dvjones89/e6df9c58a33f44f1c31e4617ad43cb8f to your computer and use it in GitHub Desktop.
Save dvjones89/e6df9c58a33f44f1c31e4617ad43cb8f to your computer and use it in GitHub Desktop.
Snippets & SOPs
# Monitor TCP traffic on a specific port
sudo tcpflow -i any -C port 5044
# Allow docker containers to communicate with each other:
iptables -A FORWARD -i docker0 -j ACCEPT
# SOP Guides:
# Configuring LetsEncrypt:
https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04
# Configure Filebeat and ELK Stack (including SSL)
https://www.digitalocean.com/community/tutorials/how-to-install-elasticsearch-logstash-and-kibana-elk-stack-on-ubuntu-14-04
# Configure OpenVPN Server and clients
https://www.digitalocean.com/community/tutorials/how-to-set-up-an-openvpn-server-on-debian-8
# Explanation of Systemd Raspian 8 (jessie)
https://www.digitalocean.com/community/tutorials/how-to-use-systemctl-to-manage-systemd-services-and-units
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment