You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Or you may have already a tun0 interface (it was my case). You can check with "ifconfig". If you see a tun0 interface, then you need to change every "tun0" into "tun1" or "tun2" in this repo (C code + shell scripts)
root@RegalMusty-VM:
/udptunnel-by-astroza# ls/udptunnel-by-astroza# makeLICENSE README.md include server.c tun.c
Makefile client.c scripts socket.c util.c
root@RegalMusty-VM:
gcc -Wall -I./include -c socket.c
gcc -Wall -I./include -c tun.c
gcc -Wall -I./include -c util.c
gcc -Wall -I./include -c client.c
gcc -Wall -I./include -c server.c
gcc socket.o tun.o util.o client.o -o client
gcc socket.o tun.o util.o server.o -o server
root@RegalMusty-VM:
/udptunnel-by-astroza# ls/udptunnel-by-astroza# ./server 53 my-passwordLICENSE client include server.c socket.o util.c
Makefile client.c scripts server.o tun.c util.o
README.md client.o server socket.c tun.o
root@RegalMusty-VM:
perror: Device or resource busy
root@RegalMusty-VM:~/udptunnel-by-astroza#
how to fix it?
The text was updated successfully, but these errors were encountered: