Skip to content

Instantly share code, notes, and snippets.

@hambster
hambster / pc6248-dhcp-relay
Created December 2, 2016 14:30 — forked from skarllot/pc6248-dhcp-relay
Powerconnect 6248 DHCP relay thru VLAN
!Current Configuration:
!System Description "Powerconnect 6248, 3.2.0.7, VxWorks 6.5"
!System Software Version 3.2.0.7
!Cut-through mode is configured as disabled
!
configure
vlan database
vlan 10,20,30,40
vlan routing 10 1
vlan routing 20 2
@hambster
hambster / udpProxy.go
Created November 5, 2015 02:28 — forked from mike-zhang/udpProxy.go
Implementation of a UDP proxy in Golang
// Implementation of a UDP proxy
package main
import (
"flag"
"fmt"
"log"
"net"
"os"