Page 1 of 1

[ solved ] Stop IPV6 on 14.0 RC3

Posted: 25. Nov 2012, 04:01
by windowsxp
Hi ,

# Disable ipv6

net.ipv6.conf.all.disable_ipv6= 1
net.ipv6.conf.default.disable_ipv6= 1
net.ipv6.conf.lo.disable_ipv6= 1

net.ipv6.conf.all.autoconf= 0
net.ipv6.conf.all.accept_ra= 0
net.ipv6.conf.all.accept_redirects= 0
net.ipv6.conf.all.dad_transmits= 0
net.ipv6.conf.all.forwarding= 0
net.ipv6.conf.all.router_solicitations= 0
net.ipv6.route.flush = 1

in /etc/sysctl.conf work fine one 13.37 but not on 14.0 ...

Why ?

IPV6 is always on after ...

ip6tables -nvL confirm that .

Re: Stop IPV6 on 14.0 RC3

Posted: 28. Nov 2012, 21:25
by GJones
Try booting with the parameter 'ipv6.disable=1'.

Re: Stop IPV6 on 14.0 RC3

Posted: 28. Nov 2012, 23:25
by windowsxp
Hi ,
i read that :

http://www.dsfc.net/logiciel-libre/linu ... ous-linux/

so after i use :

Créez le fichier /etc/modprobe.conf
Ajoutez-y la ligne alias ipv6 off

Dans le fichier /etc/modprobe.d/blacklist.conf, ajoutez la ligne blacklist

No work to !

in 13.37 sysctl.conf is all right !

Ipv6 is always on ...

Re: Stop IPV6 on 14.0 RC3

Posted: 29. Nov 2012, 00:05
by GJones
For modprobe.conf, use

Code: Select all

alias ipv6 off
alias net-pf-10 off

Re: Stop IPV6 on 14.0 RC3

Posted: 29. Nov 2012, 15:02
by windowsxp
Hi ,

it 's : OK now !

^^

Thank .