Cisco: Static Routing Sedehana: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
No edit summary
Onnowpurbo (talk | contribs)
No edit summary
Line 12: Line 12:




Router1:
R1:


  enable
  enable
Line 28: Line 28:
     no shutdown  
     no shutdown  
     exit
     exit
   ip route 192.168.2.0 255.255.255.0 10.10.10.2
   ip route 192.168.2.0 255.255.255.0 172.16.1.2
   exit
   exit
copy running-config startup-config


/ip address
add address=10.1.1.2 interface=ether1 # ether1 kemungkinan dapat DHCP dari gateway Internet
add address=172.16.1.1/30 interface=ether2
add address=192.168.1.1/24 interface=ether3


  /ip route  
  /ip route  
Line 41: Line 37:
  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


Router2:
R2:
 
enable
config terminal
    interface ethernet1/1
    ip address 172.16.1.2 255.255.255.252
    no shutdown
    exit
  interface ethernet1/2
    ip address 192.168.2.1 255.255.255.0
    no shutdown
    exit
  ip route 192.168.1.0 255.255.255.0 172.16.1.1
  ip route 0.0.0.0 0.0.0.0 172.16.1.1
  exit


  /ip address
  /ip address
Line 47: Line 57:
  add address=192.168.2.1/24 interface=ether2
  add address=192.168.2.1/24 interface=ether2


/ip route
==Test==
add gateway=172.16.1.1
 
Test


Router1:
R1:


  ping 192.168.2.1
  ping 192.168.2.1


Router2:
R2:


  ping 192.168.1.1
  ping 192.168.1.1

Revision as of 22:35, 21 December 2018


R1:

Ethernet1/1 - ke Internet
Ethernet1/2 - R2: Ethernet 1/1
Ethernet1/3 - LAN

R2:

Ethernet1/1 - R1: Ethernet1/2
Ethernet1/2 - LAN


R1:

enable
configure terminal
  interface ethernet1/1
    ip address 10.1.1.2 255.255.255.0
    no shutdown
    exit
  interface ethernet1/2
    ip address 172.16.1.1 255.255.255.252
    no shutdown
    exit
  interface ethernet1/3
    ip address 192.168.1.1 255.255.255.0
    no shutdown 
    exit
  ip route 192.168.2.0 255.255.255.0 172.16.1.2
  exit
copy running-config startup-config


/ip route 
add gateway=10.1.1.1
add dst-address=192.168.2.0/24 gateway=172.16.1.2

R2:

enable
config terminal
   interface ethernet1/1
    ip address 172.16.1.2 255.255.255.252
    no shutdown
    exit
  interface ethernet1/2
    ip address 192.168.2.1 255.255.255.0
    no shutdown 
    exit
  ip route 192.168.1.0 255.255.255.0 172.16.1.1
  ip route 0.0.0.0 0.0.0.0 172.16.1.1
  exit
/ip address
add address=172.16.1.2/30 interface=ether1
add address=192.168.2.1/24 interface=ether2

Test

R1:

ping 192.168.2.1

R2:

ping 192.168.1.1


Tambahan Kalau Membutuhkan NAT

Router1:

/ip firewall nat add chain=srcnat out-interface=ether1 action=masquareade
/ip firewall nat print


Setting Client

LAN 1 Client:

ip 192.168.1.2
gw 192.168.1.1


LAN 2 Client:

ip 192.168.2.2
gw 192.168.2.1


Pranala Menarik