blob: a807c969b18ee9524a6c72f01142c50ca6cdaa1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
ROOT=$(dirname $0)/..
PATH=$PATH:$ROOT/cmd/tunnel
tunnel add name T 2000,listen auth aes 3000
tunnel add name X 3000,listen -aes -auth 4000
tunnel set tunnel.T.secret secret
tunnel set tunnel.X.secret secret
nc -l 4000 &
echo "Hello, World!" | nc -N localhost 2000
tunnel clear
tunnel del T
tunnel del X
|