Displaying 2 results from an estimated 2 matches for "6tun".
Did you mean:
v6tun
2008 Sep 04
2
Compiling v6tun from KAME
...won't let me put in an IPv6 address for address binding).
So I was pointed to the KAME (which does not provide any FC/RHEL
support. The person who sent me there provided a makefile that he said
works on Linux, but did not work for me:
Makefile from KAME:
install_dir = /usr/local/v6/bin
v6tun: v6tun.o
cc -o $@ $>
install: v6tun
-rm -f $(install_dir)/v6tun
install -c -o root -g wheel -m 04710 v6tun $(install_dir)
clean:
-rm -f *.o v6tun
Makefile from contact:
v6tun: v6tun.o
gcc v6tun.c v6tun.h -o v6tun
install: v6tun
-rm -f $(install_dir)/v6tun
i...
2008 Sep 02
0
vtun -- no IPv6 support?
...interface that does NOT
have IPv4 defined (only v6), start the service, and do a 'netstat
-nat|grep 5000', I see it bound to 0.0.0.0:5000, not to the IPv6 0::/128
equiv address.
What gives? IPv6 support or not?
Meanwhile I found the kame vtun:
http://orange.kame.net/dev/cvsweb.cgi/v6tun/?cvsroot=apps
And was given the following 'changes' to compile it on linux. Do I need
this???
v6tun: v6tun.o
gcc v6tun.c v6tun.h -o v6tun
install: v6tun
-rm -f $(install_dir)/v6tun
install -c -o root -g wheel -m 04710 v6tun $(install_dir)
clean: 6tun: v6tun.o...