MikroTik

Config 6to4 in Mikrotik RouterOS 6

How to config 6to4 in Mikrotik RouterOS 6

  1. check anycast gateway — ping 192.88.99.1
  2. /interface 6to4 add name=6to4 disabled=no local-address=YOUR_EXTERNAL_IPV4 remote-address=192.88.99.1 mtu=1280
  3. Your IP to 16 Bit — XXXX:XXXX
    Make address 2002:XXXX:XXXX::/48
  4. /ipv6 address add address=2002:XXXX:XXXX::1/16 advertise=no comment=6to4public disabled=no eui-64=no interface=6to4
  5. /ipv6 route add disabled=no distance=1 dst-address=2000::/3 gateway=6to4
  6. /ipv6 address add address=2002:XXXX:XXXX:1::1/64 advertise=yes comment=6to4subnet disabled=no eui-64=no interface=bridge-local
  7. /ipv6 nd prefix default set autonomous=yes (without that my pc and phone don’t get ipv6 address)
  8. add dns to DHCP 2001:4860:4860::8888, 2001:4860:4860::8844
  9. config IPv6 Firewall
  10. DONE
admin

Recent Posts

How to back up and restore the ESXi host configuration

Original https://kb.vmware.com/s/article/2042141 Backing up ESXi host configuration data To synchronize the configuration changed with persistent…

4 месяца ago

vCenter Converter Standalone download

vCenter Converter Standalone 6.6.0 download (далее…)

5 месяцев ago

VMware remote console (VMRC) 12 download

VMware remote console (VMRC) 12.0.5 download Last version: VMware Remote Console 12.0.5  28 NOV 2023…

12 месяцев ago

Mysql calculate row size for all tables

SELECT col_sizes.TABLE_SCHEMA, col_sizes.TABLE_NAME, SUM(col_sizes.col_size) AS EST_MAX_ROW_SIZE FROM ( SELECT cols.TABLE_SCHEMA, cols.TABLE_NAME, cols.COLUMN_NAME, CASE cols.DATA_TYPE WHEN…

1 год ago

Mysql change date format in database

UPDATE DB SET column = DATE(STR_TO_DATE(column, '%Y-%d-%m')) WHERE DATE(STR_TO_DATE(column, '%d-%m-%Y')) <> '0000-00-00'

1 год ago

esxi debian lvm extend partition

echo 1 > /sys/class/block/sda/device/rescan #maybe run under root> sudo fdisk /dev/sda2 > d > 2…

1 год ago