I am very new to the Mikrotik world, I have all the above mentioned services working properly over IPv4, however I recently activated IPv6 on the router but not all things seem to be working, I get a 20/20 on ipv6-test.com but when I try to access the router using it's IPv6 address and SSH for example it does not want to connect. Same with SSL or through WINBOX.
I followed this guide to get my IPv6 running:
Code: Select all
/ipv6 firewall address-list
add address=fe80::/16 list=allowed
add address=ff02::/16 comment=multicast list=allowed
/ipv6 firewall filter
add action=accept chain=input comment="allow established and related" \
connection-state=established,related
add action=accept chain=input comment="accept ICMPv6" protocol=icmpv6
add action=accept chain=input comment="defconf: accept UDP traceroute" port=\
33434-33534 protocol=udp
add action=accept chain=input comment=\
"accept DHCPv6-Client prefix delegation." dst-port=546 protocol=udp \
src-address=fe80::/16
add action=accept chain=input comment="allow allowed addresses" \
src-address-list=allowed
add action=drop chain=input comment="drop anything else"
add action=accept chain=forward comment="Accept outbound via Aussie" \
connection-state="" out-interface=ether5-wan
add action=accept chain=forward comment="Allow established and related" \
connection-state=established,related
add action=drop chain=forward comment="Drop other forwards"
/ipv6 dhcp-client
add add-default-route=yes interface=ether5-wan pool-name=abb \
pool-prefix-length=56 request=address,prefix use-peer-dns=no
/ipv6 address
add address=::1 eui-64=yes from-pool=abb interface=bridge1
add action=accept chain=input comment="accept SSH" protocol=tcp dst-port=XXX22
However I still cannot get it tot work. Can someone help me. Thanks.