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

From OnnoWiki
Jump to navigation Jump to search
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
  
 
  # 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
  
 
  # ND
 
  # ND

Revision as of 19:28, 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 
# ND
/ipv6 nd add interface=bridge1 ra-interval=20s-60s


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=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 
# ND
/ipv6 nd add interface=bridge1 ra-interval=20s-60s

YOUTUBE

Pranala Menarik