Difference between revisions of "IPv6: Mikrotik: 2 Router di cascade ke cloud"

From OnnoWiki
Jump to navigation Jump to search
 
(8 intermediate revisions by the same user not shown)
Line 25: Line 25:
 
  # WAN IPv6 automatics
 
  # WAN IPv6 automatics
 
  /ipv6 dhcp-client
 
  /ipv6 dhcp-client
  add add-default-route=yes interface=ether1 request=prefix
+
  add add-default-route=yes interface=ether1 request=prefix pool-name=IPv6-pool
 
  # WAN IPv6 static
 
  # WAN IPv6 static
 
  # /ipv6 address add address=2001:db8:0:1::1/64 interface=ether1 advertise=yes
 
  # /ipv6 address add address=2001:db8:0:1::1/64 interface=ether1 advertise=yes
Line 31: Line 31:
 
  # LAN setup
 
  # LAN setup
 
  /ipv6 address add address=2002:1234:5678::1/64 interface=bridge1 advertise=yes  
 
  /ipv6 address add address=2002:1234:5678::1/64 interface=bridge1 advertise=yes  
 +
# /ipv6 address add address=2002:1234:5678::1/48 interface=bridge1 advertise=no
 +
 +
/ipv6 pool add name=IPv6-for-client prefix-length=56 prefix=2002:1234:5678::/48
 +
/ipv6 dhcp-server add name=server1 interface=bridge1 address-pool=IPv6-for-client
 +
/ipv6 nd prefix add prefix=::/64 interface=bridge1 on-link=yes autonomous=no
 +
/ipv6 nd add interface=bridge1 managed-address-configuration=yes other-configuration=yes advertise-dns=yes ra-interval=20s-60s
  
# ND
 
/ipv6 nd add interface=bridge1 ra-interval=20s-60s
 
  
 +
# Tambahkan Routing Statik ke Mikrotik2
 +
/ipv6 route add dst-address=2002:1234:5678:2::/64 gateway=2002:1234:5678::2
  
 
==Router 2==
 
==Router 2==
Line 57: Line 63:
 
  # WAN IPv6 automatics
 
  # WAN IPv6 automatics
 
  /ipv6 dhcp-client
 
  /ipv6 dhcp-client
  add add-default-route=yes interface=ether1 request=prefix
+
  add add-default-route=yes interface=ether1 request=prefix pool-name=IPv6-pool
 +
 
 
  # WAN IPv6 static
 
  # WAN IPv6 static
  # /ipv6 address add address=2001:db8:0:1::1/64 interface=ether1 advertise=yes
+
  # /ipv6 address add address=2002:1234:5678:2::1/54 interface=ether1 advertise=no
 +
/ipv6 address add address=2002:1234:5678::2/64 interface=ether1 advertise=yes
  
 
  # LAN setup
 
  # LAN setup
  /ipv6 address add address=2002:1234:5678::1/64 interface=bridge1 advertise=yes  
+
  /ipv6 address add address=2002:1234:5678:2::1/64 interface=bridge1 advertise=yes  
  
 
  # ND
 
  # ND
 
  /ipv6 nd add interface=bridge1 ra-interval=20s-60s
 
  /ipv6 nd add interface=bridge1 ra-interval=20s-60s
 
 
 
 
 
  
 
==YOUTUBE==
 
==YOUTUBE==

Latest revision as of 20:16, 22 July 2021

Simulasi 2 Router Mikrotik di Cascade ke cloud

Screenshot from 2020-04-06 06-11-55.png


Router 1

# LAN Bridge
/interface bridge
add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ether6
add bridge=bridge1 interface=ether7
add bridge=bridge1 interface=ether8
..
..
# Disable RA di semua interface
/ipv6 nd set [ find default=yes ] disabled=yes
# WAN IPv6 automatics
/ipv6 dhcp-client
add add-default-route=yes interface=ether1 request=prefix pool-name=IPv6-pool
# WAN IPv6 static
# /ipv6 address add address=2001:db8:0:1::1/64 interface=ether1 advertise=yes
# LAN setup
/ipv6 address add address=2002:1234:5678::1/64 interface=bridge1 advertise=yes 
# /ipv6 address add address=2002:1234:5678::1/48 interface=bridge1 advertise=no 
/ipv6 pool add name=IPv6-for-client prefix-length=56 prefix=2002:1234:5678::/48
/ipv6 dhcp-server add name=server1 interface=bridge1 address-pool=IPv6-for-client
/ipv6 nd prefix add prefix=::/64 interface=bridge1 on-link=yes autonomous=no
/ipv6 nd add interface=bridge1 managed-address-configuration=yes other-configuration=yes advertise-dns=yes ra-interval=20s-60s


# Tambahkan Routing Statik ke Mikrotik2
/ipv6 route add dst-address=2002:1234:5678:2::/64 gateway=2002:1234:5678::2

Router 2

# LAN Bridge
/interface bridge
add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ether6
add bridge=bridge1 interface=ether7
add bridge=bridge1 interface=ether8
..
..
# Disable RA di semua interface
/ipv6 nd set [ find default=yes ] disabled=yes
# WAN IPv6 automatics
/ipv6 dhcp-client
add add-default-route=yes interface=ether1 request=prefix pool-name=IPv6-pool
# WAN IPv6 static
# /ipv6 address add address=2002:1234:5678:2::1/54 interface=ether1 advertise=no
/ipv6 address add address=2002:1234:5678::2/64 interface=ether1 advertise=yes
# LAN setup
/ipv6 address add address=2002:1234:5678:2::1/64 interface=bridge1 advertise=yes 
# ND
/ipv6 nd add interface=bridge1 ra-interval=20s-60s

YOUTUBE

Pranala Menarik