Page 1 of 1

IPv6

Posted: Sun Jul 03, 2016 6:33 pm
by codemasterxv
Hello,

Hi guys I am so curious How to add ipv6 to vestacp to specific domains.

How many IP's we can add?

How to add /64 block of IPv6 to vestacp.

Thank you.

Re: IPv6

Posted: Mon Jul 04, 2016 7:01 am
by tjebbeke
You can add as many IP addresses as you want. (IP V4) IPV6 is currently not supported, but the Vesta team is working on it.

Re: IPv6

Posted: Mon Jul 04, 2016 1:38 pm
by skurudo
IPv6 is planned in upcoming releases... not supported yet ;-(

Re: IPv6

Posted: Mon Sep 05, 2016 10:34 pm
by Nou4r
skurudo wrote:IPv6 is planned in upcoming releases... not supported yet ;-(
Is there still any way to enable it in nginx?

Re: IPv6

Posted: Tue Sep 06, 2016 7:20 am
by skurudo
Nou4r wrote:Is there still any way to enable it in nginx?
Of course, but manually

Code: Select all

listen ipv4.ip:80;
listen ipv6.ip:80;

Re: IPv6

Posted: Tue Sep 13, 2016 5:50 pm
by deanhills
@Skurudo

Where would I add the commands:

Code: Select all

listen ipv4.ip:80;
listen ipv6.ip:80;
Also, once I've added the above, will I then be able to add my IPv6 IP to VestaCP? I've been trying to do that but VestaCP says that the format of the IPv6 is wrong. What format does it want?

Re: IPv6

Posted: Tue Sep 13, 2016 6:21 pm
by tjebbeke
deanhills wrote:@Skurudo

Where would I add the commands:

Code: Select all

listen ipv4.ip:80;
listen ipv6.ip:80;
Also, once I've added the above, will I then be able to add my IPv6 IP to VestaCP? I've been trying to do that but VestaCP says that the format of the IPv6 is wrong. What format does it want?
Currently, it isn't possible to add your IPV6 address to vestaCP also not when you add this code.

I guess you need to add this in a config file in /etc/nginx. You need to change ipv4.ip to your IPV4 address and ipv6.ip to your IPV6 address.

Re: IPv6

Posted: Tue Sep 13, 2016 11:11 pm
by dpeca
deanhills wrote:@Skurudo

Where would I add the commands:

Code: Select all

listen ipv4.ip:80;
listen ipv6.ip:80;
Also, once I've added the above, will I then be able to add my IPv6 IP to VestaCP? I've been trying to do that but VestaCP says that the format of the IPv6 is wrong. What format does it want?
maybe /home/SOMEUSER/conf/web/nginx.conf

Re: IPv6

Posted: Wed Sep 14, 2016 12:07 pm
by skurudo
tjebbeke, of course you need configure this by yourself first and then add manually in user nginx and

dpeca , you're right )