1#!/bin/bash
2# The test networks for sbws use IP addresses in the 127.10/16 space and OS X
3# only seems to give lo0 127.0.0.1/32. This adds 127.10.0.1-20 to lo0.
4for ((i=1;i<20;i++))
5do
6    sudo ifconfig lo0 alias 127.10.0.$i up
7done
8
9