Difference between revisions of "Mikrotik: Static Routing Sedehana - dengan Cloud Internet"

From OnnoWiki
Jump to navigation Jump to search
Line 19: Line 19:
  
 
  /ip dhcp-client add interface=ether1 disabled=no
 
  /ip dhcp-client add interface=ether1 disabled=no
  /ip dhcp-client enable
+
  /ip dhcp-client enable 0
 +
 
 
  /ip address
 
  /ip address
 
  add address=172.16.1.1/30 interface=ether2
 
  add address=172.16.1.1/30 interface=ether2
 
  add address=192.168.1.1/24 interface=ether3
 
  add address=192.168.1.1/24 interface=ether3
 
 
  /ip route  
 
  /ip route  
 
  add dst-address=192.168.2.0/24 gateway=172.16.1.2
 
  add dst-address=192.168.2.0/24 gateway=172.16.1.2
 
 
  /ip firewall nat add chain=srcnat out-interface=ether1 action=masquerade
 
  /ip firewall nat add chain=srcnat out-interface=ether1 action=masquerade
 
  /ip firewall nat print
 
  /ip firewall nat print

Revision as of 03:27, 30 March 2020

SR1.png


Topologi

R1
e0 --> NAT
e1 --> R2 e0
e2 --> LAN 192.168.1.1/24
R2
e0 --> R1 e1
e1 --> LAN 192.168.2.1/24

Konfigurasi

Router1:

/ip dhcp-client add interface=ether1 disabled=no
/ip dhcp-client enable 0
/ip address
add address=172.16.1.1/30 interface=ether2
add address=192.168.1.1/24 interface=ether3
/ip route 
add dst-address=192.168.2.0/24 gateway=172.16.1.2
/ip firewall nat add chain=srcnat out-interface=ether1 action=masquerade
/ip firewall nat print


Router2:

/ip address
add address=172.16.1.2/30 interface=ether1
add address=192.168.2.1/24 interface=ether2
/ip route 
add gateway=172.16.1.1

Test

Router1:

ping 192.168.2.1

Router2:

ping 192.168.1.1

Setting Client

LAN 1 Client:

ip 192.168.1.2
gw 192.168.1.1

di VPCS

ip 192.168.1.2/24 192.168.1.1

LAN 2 Client:

ip 192.168.2.2
gw 192.168.2.1

di VPCS

ip 192.168.2.2/24 192.168.2.1

Referensi


Pranala Menarik