Hello,
I am a beginner with ROS and I face a problem with IPv6 packages that does not pass the router.
I am sure that there is something trivial missing form the configuration, just I can not see.
The IPv6 works perfectly from the router out to the Internet. can ping trace route works etc.
Within the LAN it works OK
Code:
[admin@MikroTik] > ipv6 route print detail
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, o - ospf, b - bgp, U - unreachable
0 A S dst-address=::/0 gateway=sit1 gateway-status=sit1 reachable distance=1 scope=30 target-scope=10
1 A S dst-address=2000::/3 gateway=sit1 gateway-status=sit1 reachable check-gateway=ping distance=1 scope=30 target-scope=10
2 ADC dst-address=2001:470:27:5b6::/64 gateway=sit1 gateway-status=sit1 reachable distance=0 scope=10
Code:
[admin@MikroTik] > ipv6 firewall filter print
Flags: X - disabled, I - invalid, D - dynamic
0 chain=input action=accept protocol=icmpv6
1 chain=input action=accept
2 chain=forward action=accept
Ping out works in does not
Code:
[admin@MikroTik] > ipv6 firewall mangle print
Flags: X - disabled, I - invalid, D - dynamic
[admin@MikroTik] > ping 2001:470:27:5b6::1
HOST SIZE TTL TIME STATUS
2001:470:27:5b6::1 56 64 10ms echo reply
2001:470:27:5b6::1 56 64 7ms echo reply
sent=2 received=2 packet-loss=0% min-rtt=7ms avg-rtt=8ms max-rtt=10ms
[admin@MikroTik] > ping 2001:470:27:5b6::100
HOST SIZE TTL TIME STATUS
2001:470:27:5b6::2 104 64 270ms hop limit exceeded
2001:470:27:5b6::2 104 64 291ms hop limit exceeded
sent=2 received=0 packet-loss=100%
While LAN works perfect but towards the router
Code:
[zoli@redhat ~]$ ifconfig eth1
eth1 Link encap:Ethernet HWaddr 00:0B:CD:27:FC:12
inet addr:192.168.10.5 Bcast:192.168.10.255 Mask:255.255.255.0
inet6 addr: 2001:470:27:5b6::400/64 Scope:Global
inet6 addr: 2001:470:27:5b6:20b:cdff:fe27:fc12/64 Scope:Global
inet6 addr: fe80::20b:cdff:fe27:fc12/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:5985846 errors:0 dropped:0 overruns:0 frame:0
TX packets:5894329 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2052418166 (1.9 GiB) TX bytes:3702223330 (3.4 GiB)
[zoli@redhat ~]$ ping6 -c 2 2001:470:27:5b6::400
PING 2001:470:27:5b6::400(2001:470:27:5b6::400) 56 data bytes
64 bytes from 2001:470:27:5b6::400: icmp_seq=1 ttl=64 time=0.048 ms
64 bytes from 2001:470:27:5b6::400: icmp_seq=2 ttl=64 time=0.053 ms
— 2001:470:27:5b6::400 ping statistics —
2 packets transmitted, 2 received, 0% packet loss, time 999ms
rtt min/avg/max/mdev = 0.048/0.050/0.053/0.007 ms
[zoli@redhat ~]$ ping6 -c 2 2001:470:27:5b6::100
PING 2001:470:27:5b6::100(2001:470:27:5b6::100) 56 data bytes
64 bytes from 2001:470:27:5b6:
icmp_seq=1 ttl=64 time=0.316 ms
64 bytes from 2001:470:27:5b6:
icmp_seq=2 ttl=64 time=0.340 ms
— 2001:470:27:5b6::100 ping statistics —
2 packets transmitted, 2 received, 0% packet loss, time 1000ms
rtt min/avg/max/mdev = 0.316/0.328/0.340/0.012 ms
[zoli@redhat ~]$ ping6 -c 2 2001:470:27:5b6::2
PING 2001:470:27:5b6::2(2001:470:27:5b6::2) 56 data bytes
From 2001:470:27:5b6::400 icmp_seq=1 Destination unreachable: Address unreachable
From 2001:470:27:5b6::400 icmp_seq=2 Destination unreachable: Address unreachable
— 2001:470:27:5b6::2 ping statistics —
2 packets transmitted, 0 received, +2 errors, 100% packet loss, time 3000ms
Any help would be appreciated.
Thank you in advance.
Regards,
Z