VyOS: Static Routing Sedehana: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
Created page with " center|400px|thumb Router1: /ip address add address=10.1.1.2 interface=ether1 # ether1 kemungkinan dapat DHCP dari gateway Internet add address=172.16...."
 
Onnowpurbo (talk | contribs)
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:
[[File:SR1.png|center|400px|thumb]]
[[File:SR1.png|center|400px|thumb]]


Router1:


/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
add gateway=10.1.1.1
add dst-address=192.168.2.0/24 gateway=172.16.1.2


Router2:
==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


/ip address
sebelum me-RUN setiap VM VyOS satu per satu.
add address=172.16.1.2/30 interface=ether1
add address=192.168.2.1/24 interface=ether2


/ip route
==Konfigurasi==
add gateway=172.16.1.1


Test
R1:


Router1:
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'


  ping 192.168.2.1
  show
commit
exit


Router2:
Router2:


  ping 192.168.1.1
  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==


==Tambahan Kalau Membutuhkan NAT==
show interfaces
show configuration
 
Test


Router1:
Router1:


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


Router2:


ping 192.168.1.1


==Setting Client==
==Setting Client==
Line 46: Line 67:
LAN 1 Client:
LAN 1 Client:


  ip 192.168.1.2
  ip 192.168.1.100/24 192.168.1.1
gw 192.168.1.1




LAN 2 Client:
LAN 2 Client:


  ip 192.168.2.2
  ip 192.168.2.100/24 192.168.1.1
gw 192.168.2.1
 


==Referensi==
==Referensi==
Line 65: Line 85:
* [[TCP/IP: Advanced Routing]]
* [[TCP/IP: Advanced Routing]]
* [[Quagga]]
* [[Quagga]]
* [[VyOS]]
* [[Mikrotik]]
* [[Mikrotik]]
* [[Cisco]]
* [[Cisco]]
* [[Juniper]]
* [[Juniper]]
* [[BIRD: Routing]]
* [[BIRD1]]
* [[BIRD2]]
* [[IPv6]]
 
 
* [[TCP/IP: Advanced Routing]]
* [[IPv6: Advanced Routing]]
* [[IPv6: Quagga]]
* [[IPv6: VyOS]]
* [[IPv6: Mikrotik]]
* [[IPv6: Cisco]]
* [[IPv6: Juniper]]
* [[IPv6: BIRD1]]
* [[IPv6: BIRD2]]
* [[IPv6]]
* [[IPv6]]

Latest revision as of 03:40, 20 January 2019



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