dns2tcp简介
dns2tcp是一款在linux下使用C语言开发的建立dns隧道的开源工具,项目开源地址:https://github.com/alex-sector/dns2tcp
目标
用源代码编译出可在windows下运行的dns2tcp的客户端
工具
开始
安装
git
安装
Dev C++
将
Dev C++
自带的mingw64
的工具目录加入到path
环境变量中
在你喜欢的目录,右键,
git bash here
,clone
项目到本地1
git clone https://github.com/alex-sector/dns2tcp.git
进入到
dns2tcp
目录1
cd dns2tcp
执行
configure
,生成MakeFile
,等待命令执行完成之后,进入下一步1
./configure
进入到
client
目录1
cd client
make,在Dev C++自带的
mingw64
的工具中叫mingw32-make
1
mingw32-make
不出意外的话,
client
目录下应该会出现编译好的dns2tcpc.exe
文件enjoy it!!!