Skip to content

Instantly share code, notes, and snippets.

@vmihailenco
vmihailenco / proxy.go
Created November 20, 2011 15:22
Simple TCP proxy in Golang
package main
import (
"bytes"
"encoding/hex"
"flag"
"fmt"
"io"
"log"
"net"
@RobWC
RobWC / vpls.cfg
Created October 26, 2012 19:49
Junos VPLS config
interfaces {
ge-0/0/0 {
unit 0 {
family ethernet-switching {
port-mode access;
vlan {
members Vlan100;
}
}
}