Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
openvpn /
Delete
Unzip
Name
Size
Permission
Date
Action
examples
[ DIR ]
drwxr-xr-x
2016-11-18 12:18
AUTHORS
28
B
-rw-r--r--
2015-05-18 20:48
COPYING.gz
3.18
KB
-rw-r--r--
2019-05-08 15:50
COPYRIGHT.GPL.gz
6.67
KB
-rw-r--r--
2019-05-08 15:50
NEWS.Debian.gz
1.33
KB
-rw-r--r--
2019-04-24 20:45
PORTS
3.76
KB
-rw-r--r--
2015-05-18 20:48
README
2.02
KB
-rw-r--r--
2015-12-21 13:56
README.Debian.gz
3.43
KB
-rw-r--r--
2019-04-24 20:45
README.IPv6
1.99
KB
-rw-r--r--
2019-05-08 15:50
README.auth-pam
2.54
KB
-rw-r--r--
2019-05-08 15:50
README.down-root
866
B
-rw-r--r--
2019-05-08 15:50
README.polarssl
789
B
-rw-r--r--
2019-05-08 15:50
changelog.Debian.gz
2.14
KB
-rw-r--r--
2019-05-08 15:50
copyright
1.98
KB
-rw-r--r--
2019-04-24 20:45
management-notes.txt.gz
10.31
KB
-rw-r--r--
2019-05-08 15:50
Save
Rename
Since 2.3.0, OpenVPN officially supports IPv6, and all widely used patches floating around for older versions have been integrated. IPv6 payload support -------------------- This is for "IPv6 inside OpenVPN", with server-pushed IPv6 configuration on the client, and support for IPv6 configuration on the tun/tap interface from within the openvpn config. The code in 2.3.0 supersedes the IPv6 payload patches from Gert Doering, formerly located at http://www.greenie.net/ipv6/openvpn.html The following options have been added to handle IPv6 configuration, analogous to their IPv4 counterparts (--server <-> --server-ipv6, etc.) - server-ipv6 - ifconfig-ipv6 - ifconfig-ipv6-pool - ifconfig-ipv6-push - route-ipv6 - iroute-ipv6 see "man openvpn" for details how they are used. IPv6 transport support ---------------------- This is to enable OpenVPN peers or client/servers to talk to each other over an IPv6 network ("OpenVPN over IPv6"). The code in 2.3.0 supersedes the IPv6 transport patches from JuanJo Ciarlante, formerly located at http://github.com/jjo/openvpn-ipv6 Use the following options to select IPv6 transport: --proto udp6 --proto tcp6-client --proto tcp6-server --proto tcp6 --client / --proto tcp6 --server On systems that permit IPv4 connections on IPv6 sockets (Linux by default, FreeBSD and NetBSD if you turn off the "v6only" sysctl by running "sysctl -w net.inet6.ip6.v6only=0"), an OpenVPN server can handle IPv4 connections on the IPv6 socket as well, making it a true dual-stacked server. On other systems, as of 2.3.0, you need to run separate server instances for IPv4 and IPv6. The client side code is not really "dual-stacked" yet, as it does not automatically try both address families when connecting to a dual-stacked server. For now, you can achieve this with <connection> stanzas in your openvpn config: <connection> remote my.dual.stack.server 1194 udp6 </connection> <connection> remote my.dual.stack.server 1194 udp </connection>