blob: 58b1180a415937d3610b92a19a09734f860a6a96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
ROOT=$(dirname $0)/..
PATH=$ROOT/cmd/tunnel:$PATH
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
|