23 lines
662 B
Bash
Executable File
23 lines
662 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This is a simple shell script that uses netcat to set up a proxy to the
|
|
# metadata server on port 80 and to a google ip on port 8080. This is meant
|
|
# to be passed in by a script to an instance via user data, so that
|
|
# automatic testing of network connectivity can be performed.
|
|
|
|
# Example usage:
|
|
# euca-run-instances -t m1.tiny -f proxy.sh ami-tty
|
|
|
|
mkfifo backpipe1
|
|
mkfifo backpipe2
|
|
|
|
# NOTE(vish): proxy metadata on port 80
|
|
while true; do
|
|
nc -l -p 80 0<backpipe1 | nc 169.254.169.254 80 1>backpipe1
|
|
done &
|
|
|
|
# NOTE(vish): proxy google on port 8080
|
|
while true; do
|
|
nc -l -p 8080 0<backpipe2 | nc 74.125.19.99 80 1>backpipe2
|
|
done &
|