-
Notifications
You must be signed in to change notification settings - Fork 114
/
sirtunnel.py
executable file
·47 lines (38 loc) · 1.12 KB
/
sirtunnel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python3
import sys
import json
import time
from urllib import request
if __name__ == '__main__':
host = sys.argv[1]
port = sys.argv[2]
tunnel_id = host + '-' + port
caddy_add_route_request = {
"@id": tunnel_id,
"match": [{
"host": [host],
}],
"handle": [{
"handler": "reverse_proxy",
"upstreams":[{
"dial": ':' + port
}]
}]
}
body = json.dumps(caddy_add_route_request).encode('utf-8')
headers = {
'Content-Type': 'application/json'
}
create_url = 'http://127.0.0.1:2019/config/apps/http/servers/sirtunnel/routes'
req = request.Request(method='POST', url=create_url, headers=headers)
request.urlopen(req, body)
print("Tunnel created successfully")
while True:
try:
time.sleep(1)
except KeyboardInterrupt:
print("Cleaning up tunnel")
delete_url = 'http://127.0.0.1:2019/id/' + tunnel_id
req = request.Request(method='DELETE', url=delete_url)
request.urlopen(req)
break