Submitted by sgrayban on Sat, 06/16/2012 - 06:08
The line you are using in debian is wrong for squeeze now.
up ifconfig eth0 inet6 add 2001:470:1f00:3480::3/255.255.255.240
I'm not sure why you are even adding the IPv4 netmask when that isn't used.
It should be...
up ifconfig eth0 inet6 add 2001:470:1f00:3480::3
or
up ifconfig eth0 inet6 add 2001:470:1f00:3480::3/64
Status:
Closed (fixed)
Comments
Submitted by JamieCameron on Sat, 06/16/2012 - 06:42 Comment #1
Yes, the IPv4 netmask certainly shouldn't be in there.
Are you adding this interface as part of a Virtualmin domain creation, or using Webmin's Network Configuration module?
Submitted by sgrayban on Sat, 06/16/2012 - 06:59 Comment #2
I was using the "Change IP Address" section
Submitted by JamieCameron on Sat, 06/16/2012 - 07:19 Comment #3
If you run
grep netmask /etc/webmin/virtual-server/config
, what does it output?Submitted by sgrayban on Sat, 06/16/2012 - 07:21 Comment #4
netmask6=
Submitted by JamieCameron on Sat, 06/16/2012 - 07:25 Comment #5
Ok, I see the bug that causes this now - it will be fixed in the next Virtualmin release (3.93).
Submitted by sgrayban on Sun, 06/17/2012 - 12:25 Comment #6
Is there a fix I can do for now ?
Submitted by JamieCameron on Sun, 06/17/2012 - 22:02 Comment #7
Sure ... just edit
/usr/libexec/webmin/virtual-server/feature-virt6.pl
and change line 30 from :'netmask' => $d->{'netmask'} ||
to :
'netmask' => $d->{'netmask6'} ||
Then run
/etc/webmin/restart
Submitted by Issues on Sun, 07/01/2012 - 22:18 Comment #8
Automatically closed -- issue fixed for 2 weeks with no activity.