Skip to content

Instantly share code, notes, and snippets.

#include <click/config.h>
#include <click/args.hh>
#include "DummyAnswer.hh"
#include "DummyProto.hh"
CLICK_DECLS
DummyAnswer::DummyAnswer() { };
DummyAnswer::~DummyAnswer() { };
@lapnd
lapnd / gist:86461d83c13b29529aeb1184b2337736
Created May 11, 2016 06:50
Bash Random MAC Address Generator
function generate_mac () {
hexchars="0123456789abcdef"
echo "24:df:86$(
for i in {1..6}; do
echo -n ${hexchars:$(( $RANDOM % 16 )):1}
done | sed -e 's/\(..\)/:\1/g'
)"
}
struct mpscq_node_t {
mpscq_node_t* volatile next;
void* state;
};
struct mpscq_t {
mpscq_node_t* volatile head;
mpscq_node_t* tail;
};
@lapnd
lapnd / install-docker.sh
Created October 11, 2016 03:07 — forked from matthewhartstonge/install-docker.sh
Ubuntu 14.04LTS Docker Installation Script
#!/usr/bin/env bash
#===============================================================================
# Ubuntu 14.04LTS Docker Installation Script
#===============================================================================
# Maintainer: Matt Hartstonge <[email protected]>
# Description:
# Checks that your kernel version is up to scratch, otherwise prints errors.
# If Kernel is all good, will go ahead and do an automated install.
#
#-------------------------------------------------------------------------------
@lapnd
lapnd / README.md
Created November 7, 2016 05:04 — forked from smoser/README.md
ubuntu-auto-install: install a ubuntu image with kvm

Ubuntu Auto Install

This allows user to do automated installation of ubuntu. Provided here a a few different files/scripts for making this easier.

I've used this to verify that d-i kernel and initramfs from -proposed work as shown in bug 1511497.

The provided 'preseed' below can be used as a fully automated installation of ubuntu. Boot with qemu like:

note python web server is useful for this (python -m SimpleHTTPServer 9999)

Create private networks with libvirt

I assume that you have a running debian wheezy host with libvirt and qemu/kvm installed. You need two guest VMs for this. The first guest will get the IP 192.168.100.2 and the second will get 192.168.100.100. All following commands must be run with sudo or under root.

Internal Network

We create a new network named internal with libvirt and use it with the IP

@lapnd
lapnd / hello.click
Created November 21, 2016 15:28 — forked from alan-mushi/hello.click
Click modular router: example of non element compilation file
InfiniteSource(LIMIT 1)
-> UserElem()
-> Discard;
@lapnd
lapnd / ubuntu-cloud-virtualbox.sh
Created December 27, 2016 08:07 — forked from smoser/ubuntu-cloud-virtualbox.sh
example of using Ubuntu cloud images with virtualbox
## Install necessary packages
$ sudo apt-get install virtualbox-ose qemu-utils genisoimage cloud-utils
## get kvm unloaded so virtualbox can load
$ sudo modprobe -r kvm_amd kvm_intel
$ sudo service virtualbox stop
$ sudo service virtualbox start
## URL to most recent cloud image of 12.04
$ img_url="http://cloud-images.ubuntu.com/server/releases/12.04/release"
@lapnd
lapnd / ubuntu-1404-preseed
Created February 14, 2017 05:02 — forked from scottslowe/ubuntu-1404-preseed
This is a preseed file, written for Ubuntu Server 14.04.2, that provides a fully automated installation (assuming the presence of a PXE boot infrastructure and a local HTTP server to provide the installation files).
# Ubuntu Server automated installation
# by Scott Lowe ([email protected])
d-i debian-installer/locale string en_US
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string us
d-i netcfg/choose_interface select eth0
d-i netcfg/get_hostname string hostname
d-i netcfg/get_domain string domain.com
d-i netcfg/wireless_wep string
@lapnd
lapnd / popup.c
Created April 19, 2017 07:49 — forked from alan-mushi/popup.c
Simple pop-up using ncurses form and menu library (not CDK) in C. This is a bit more oriented towards easy integration rather than a stand-alone example.
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include "popup.h"
static WINDOW *win_body;
static WINDOW *win_form;
static WINDOW *win_menu;