We have been assigned a /48 from ARIN. I believe we only need to use 1-2 sites within this larger block for now, can someone give me an example of what we should assign to the following?
NIC usually gives a 48 bit long prefix to ordinary customer (not ISP, big company or so). For one subnet use a 64 bit subnet preffix is suggested. From original 48 bit space this allows 65535 subnets per 2^64 end addresses.
I don't quite know where I should start my router IPs, and how to take advantage of 6in4 tunneling.
Should I assign mikrotik #1 (site 1): 2620::0830:1::::1
and Mikrotik #2 (site 2): 2620::0830:2::::1
OK. If you obtained f.e. 2620:0000:0830::/48 prefix, for local subnets you should use 2620:0000:0830::/64, 2620:0000:0830:1::/64, 2620:0000:0830:2::/64 and so on to 2620:0000:0830:ffff::/64. End addresses then will be f.e. 2620:0000:0830::1/64 or 2620:0000:0830::2256/64 (from the same subnet).
AFAIK (and as I tested): If you install "ipv6" package RouterOS will automatically set unique, but not global addresses which will begin with prefix fe80:: on its interfaces. These addresses are "link local" and cannot be routed outside the local subnet. Addresses described above are "global unique" and need to be set manually.
Example:
/ipv6 address
add address=2001:1508:3018::5/64 advertise=no disabled=no eui-64=no interface=ether1
add address=2001:1508:3018:2::1/64 advertise=yes disabled=no eui-64=no interface=ether2
I don't know what is
advertise=yes/no or
eui-64. I didn't found description in reference manual.
I am sure that
advertise=yes is not the same as if I start radvd (router advertising) daemon (on linux) on particular interface.
A 6in4 tunneling mechanismus is named "sit" on linux. In the meantime I didn't found it in RouterOS ;(