Skip to content

Instantly share code, notes, and snippets.

View montao's full-sized avatar
💭
🛸 🐄

Niklas Rosencrantz montao

💭
🛸 🐄
View GitHub Profile
@montao
montao / iptables-cheatsheet.md
Created November 17, 2019 09:47 — forked from mcastelino/iptables-cheatsheet.md
iptables-cheatsheet

The netfilter hooks in the kernel and where they hook in the packet flow

The figure below calls out

  • The netfilter hooks
  • The order of table traversal
@montao
montao / .golang-example-gitlab-ci.yml
Created January 15, 2019 08:11 — forked from jcloutz/.golang-example-gitlab-ci.yml
Example Gitlab CI setup for Go using the official golang docker image
image: golang:1.7
stages:
- build
- test
before_script:
- go get github.com/tools/godep
- cp -r /builds/user /go/src/github.com/user/
- cd /go/src/github.com/user/repo