Debian 8 Jessie setup to share ipv6 to other machines
Shadow Hawkins on Sunday, 16 June 2013 02:16:17
my system is setup as
-------
Tunnel Id : T20951
PoP Name : gblon02 (uk.goscomb [AS39326])
Your Location : Bradford, gb
SixXS IPv6 : 2a01:348:6:1ee::1/64
Your IPv6 : 2a01:348:6:1ee::2/64
SixXS IPv4 : 77.75.104.126
Tunnel Type : Dynamic (ayiya)
root@jupiter:/home/xpd259# ifconfig
eth0 Link encap:Ethernet HWaddr 98:4b:e1:08:a5:2f
inet addr:192.168.0.100 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::9a4b:e1ff:fe08:a52f/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:79473851 errors:0 dropped:0 overruns:0 frame:0
TX packets:87153895 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:29690910826 (27.6 GiB) TX bytes:59957130182 (55.8 GiB)
Interrupt:18
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:63742 errors:0 dropped:0 overruns:0 frame:0
TX packets:63742 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:15227427 (14.5 MiB) TX bytes:15227427 (14.5 MiB)
sixxs Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet6 addr: fe80::48:6:1ee:2/64 Scope:Link
inet6 addr: 2a01:348:6:1ee::2/64 Scope:Global
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1280 Metric:1
RX packets:6458 errors:0 dropped:0 overruns:0 frame:0
TX packets:10287 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:500
RX bytes:658503 (643.0 KiB) TX bytes:984956 (961.8 KiB)
and I can ping from this machine, other machines on the network get an ipv6 address but just hang
/etc/radvd.conf
interface eth0 {
AdvSendAdvert on ;
# Advertise at least every 30 seconds
MaxRtrAdvInterval 30;
# in order to force non RFC 6106 compliant clients to get a dns address
AdvOtherConfigFlag on ;
prefix 2a01:348:6:1ee::/64 {
AdvOnLink on;
AdvAutonomous on;
};
RDNSS 2001:7b8:3:4f:202:b3ff:fe46:bec 2001:b18:0:1000:2e0:81ff:fe61:ae0d{
};
};
from other machines on the network i get
ping6 2001:200:dff:fff1:216:3eff:feb1:44d7
PING 2001:200:dff:fff1:216:3eff:feb1:44d7(2001:200:dff:fff1:216:3eff:feb1:44d7) 56 data bytes
any help would be fantastic
Debian 8 Jessie setup to share ipv6 to other machines
Shadow Hawkins on Sunday, 16 June 2013 14:22:56
Hello Richard,
2a01:348:6:1ee::/64 is the prefix of your tunnel. You can not use this prefix in your local subnet.
In radvd.conf you should use the prefix of your subnet (look at https://www.sixxs.net/home/).
This is an other prefix!
For the first try another radvd.conf
interface eth0 {
AdvSendAdvert on;
prefix <your Subnet Prefix>
{
};
};
eth0 is the LAN interface of the gateway/router machine. It must have an IP configured on it from the subnet you're advertising.
Its typical to use the ::1 address of your subnet.
There is only a link-local-adress on eth0.
Richard William Thomas wrote:
my system is setup as
-------
Tunnel Id : T20951
PoP Name : gblon02 (uk.goscomb [AS39326])
Your Location : Bradford, gb
SixXS IPv6 : 2a01:348:6:1ee::1/64
Your IPv6 : 2a01:348:6:1ee::2/64
SixXS IPv4 : 77.75.104.126
Tunnel Type : Dynamic (ayiya)
root@jupiter:/home/xpd259# ifconfig
eth0 Link encap:Ethernet HWaddr 98:4b:e1:08:a5:2f
inet addr:192.168.0.100 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::9a4b:e1ff:fe08:a52f/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:79473851 errors:0 dropped:0 overruns:0 frame:0
TX packets:87153895 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:29690910826 (27.6 GiB) TX bytes:59957130182 (55.8 GiB)
Interrupt:18
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:63742 errors:0 dropped:0 overruns:0 frame:0
TX packets:63742 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:15227427 (14.5 MiB) TX bytes:15227427 (14.5 MiB)
sixxs Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet6 addr: fe80::48:6:1ee:2/64 Scope:Link
inet6 addr: 2a01:348:6:1ee::2/64 Scope:Global
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1280 Metric:1
RX packets:6458 errors:0 dropped:0 overruns:0 frame:0
TX packets:10287 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:500
RX bytes:658503 (643.0 KiB) TX bytes:984956 (961.8 KiB)
and I can ping from this machine, other machines on the network get an ipv6 address but just hang
/etc/radvd.conf
interface eth0 {
AdvSendAdvert on ;
# Advertise at least every 30 seconds
MaxRtrAdvInterval 30;
# in order to force non RFC 6106 compliant clients to get a dns address
AdvOtherConfigFlag on ;
prefix 2a01:348:6:1ee::/64 {
AdvOnLink on;
AdvAutonomous on;
};
RDNSS 2001:7b8:3:4f:202:b3ff:fe46:bec 2001:b18:0:1000:2e0:81ff:fe61:ae0d{
};
};
from other machines on the network i get
ping6 2001:200:dff:fff1:216:3eff:feb1:44d7
PING 2001:200:dff:fff1:216:3eff:feb1:44d7(2001:200:dff:fff1:216:3eff:feb1:44d7) 56 data bytes
any help would be fantastic
Posting is only allowed when you are logged in. |