Difference between revisions of "VyOS: Static Routing Sedehana"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(4 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 21: | Line 27: | ||
R1: | 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: | 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 | Test | ||
Line 48: | Line 62: | ||
ping 192.168.1.1 | ping 192.168.1.1 | ||
− | |||
==Setting Client== | ==Setting Client== | ||
Line 72: | Line 85: | ||
* [[TCP/IP: Advanced Routing]] | * [[TCP/IP: Advanced Routing]] | ||
* [[Quagga]] | * [[Quagga]] | ||
+ | * [[VyOS]] | ||
* [[Mikrotik]] | * [[Mikrotik]] | ||
* [[Cisco]] | * [[Cisco]] | ||
* [[Juniper]] | * [[Juniper]] | ||
− | * [[ | + | * [[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 10: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