Skip to content

Instantly share code, notes, and snippets.

@LevonBecker
LevonBecker / base_iptables_rules.sh
Created August 19, 2015 22:26
base_iptables_rules
# Default Chain Rules
-P INPUT DROP
-P OUTPUT ACCEPT
-P FORWARD ACCEPT
# Allow Loopback
-A INPUT -i lo -j ACCEPT
# Allow All Established and Related Conntections
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
@LevonBecker
LevonBecker / jenkins_lab
Created July 7, 2015 16:58
Jenkins Lab Cloud Formation
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Jenkins Lab",
"Parameters": {
"DEVVPCCIDR": {
"Description": "CIDR Block for Developer VPC",
"Type": "String",
"Default": "10.1.0.0/16",
"AllowedValues": [
"10.1.0.0/16"
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.0</real>
<key>Green Component</key>
<real>0.0</real>