udp2raw/README.md

15 lines
320 B
Markdown
Raw Normal View History

2017-07-26 10:53:40 +00:00
# udp2raw-tunnel
udp2raw tunnel (udp to tcp with fake tcp header)
2017-07-14 14:01:34 +00:00
#usage
client:
-A INPUT -s 44.55.66.77/32 -p tcp -m tcp --sport 9999 -j DROP
2017-07-14 14:01:53 +00:00
2017-07-14 14:01:34 +00:00
./raw -l 127.0.0.1:6666 -r44.55.66.77:9999 -c --source-ip 192.168.1.100
server:
-A INPUT -p tcp -m tcp --dport 9999 -j DROP
2017-07-14 14:01:53 +00:00
2017-07-14 14:01:34 +00:00
./raw -l44.55.66.77:9999 -r 127.0.0.1:5555 -s