Difference between revisions of "VyOS: Static Routing Sedehana"

From OnnoWiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 16: Line 16:
 
  e2 --> LAN 192.168.2.1/24
 
  e2 --> LAN 192.168.2.1/24
  
 +
 +
Setiap kali menjalankan VM VyOS di GNS3, lakukan
 +
 +
sudo chown root:useranda /dev/kvm
 +
 +
sebelum me-RUN setiap VM VyOS satu per satu.
  
 
==Konfigurasi==
 
==Konfigurasi==
Line 26: Line 32:
 
  set interfaces ethernet eth3 address '192.168.1.1/24'
 
  set interfaces ethernet eth3 address '192.168.1.1/24'
 
  set protocols static route 192.168.2.0/24 next-hop 172.16.1.2 distance '1'
 
  set protocols static route 192.168.2.0/24 next-hop 172.16.1.2 distance '1'
 +
 +
show
 
  commit
 
  commit
 
  exit
 
  exit
Line 35: Line 43:
 
  set interfaces ethernet eth2 address '192.168.2.1/24'
 
  set interfaces ethernet eth2 address '192.168.2.1/24'
 
  set protocols static route 192.168.1.0/24 next-hop 172.16.1.1 distance '1'
 
  set protocols static route 192.168.1.0/24 next-hop 172.16.1.1 distance '1'
 +
 +
show
 
  commit
 
  commit
 
  exit
 
  exit
 
  
 
==Cek==
 
==Cek==
Line 80: Line 89:
 
* [[Cisco]]
 
* [[Cisco]]
 
* [[Juniper]]
 
* [[Juniper]]
* [[BIRD: Routing]]
+
* [[BIRD1]]
 +
* [[BIRD2]]
 
* [[IPv6]]
 
* [[IPv6]]
  
Line 87: Line 97:
 
* [[IPv6: Advanced Routing]]
 
* [[IPv6: Advanced Routing]]
 
* [[IPv6: Quagga]]
 
* [[IPv6: Quagga]]
 +
* [[IPv6: VyOS]]
 
* [[IPv6: Mikrotik]]
 
* [[IPv6: Mikrotik]]
 
* [[IPv6: Cisco]]
 
* [[IPv6: Cisco]]
 
* [[IPv6: Juniper]]
 
* [[IPv6: Juniper]]
* [[IPv6: BIRD: Routing]]
+
* [[IPv6: BIRD1]]
 +
* [[IPv6: BIRD2]]
 
* [[IPv6]]
 
* [[IPv6]]

Latest revision as of 10:40, 20 January 2019

SR1.png



Topologi

R1
e1 --> CLOUD nat0
e2 --> R2 e1
e3 --> LAN 192.168.1.1/24
R2
e1 --> R1 e2
e2 --> LAN 192.168.2.1/24


Setiap kali menjalankan VM VyOS di GNS3, lakukan

sudo chown root:useranda /dev/kvm

sebelum me-RUN setiap VM VyOS satu per satu.

Konfigurasi

R1:

configure
set interfaces ethernet eth1 address '192.168.122.100/24'
set interfaces ethernet eth2 address '172.16.1.1/30'
set interfaces ethernet eth3 address '192.168.1.1/24'
set protocols static route 192.168.2.0/24 next-hop 172.16.1.2 distance '1'
show
commit
exit

Router2:

configure
set interfaces ethernet eth1 address '172.16.1.2/30'
set interfaces ethernet eth2 address '192.168.2.1/24'
set protocols static route 192.168.1.0/24 next-hop 172.16.1.1 distance '1'
show
commit
exit

Cek

show interfaces
show configuration

Test

Router1:

ping 192.168.2.1

Router2:

ping 192.168.1.1

Setting Client

LAN 1 Client:

ip 192.168.1.100/24 192.168.1.1


LAN 2 Client:

ip 192.168.2.100/24 192.168.1.1


Referensi


Pranala Menarik