IPv6: VyOS: Static Routing Sedehana

From OnnoWiki
Revision as of 10:44, 20 January 2019 by Onnowpurbo (talk | contribs) (Created page with " center|400px|thumb ==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 k...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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 '2001:192:168:122::100/64'
set interfaces ethernet eth2 address '2001:172:16:1::1/64'
set interfaces ethernet eth3 address '2001:192:168:1::1/64'
set protocols static route 2001:192:168:2::/64 next-hop 2001:172:16:1::2 distance '1'
show
commit
exit

Router2:

configure
set interfaces ethernet eth1 address '2001:172:16:1::2/64'
set interfaces ethernet eth2 address '2001:192:168:2::1/64'
set protocols static route 2001:192:168:1::/64 next-hop 2001:172:16:1::1 distance '1'
show
commit
exit

Cek

show interfaces
show configuration

Test

Router1:

ping 2001:192:168:2::1

Router2:

ping 2001:192:168:1::1

Setting Client

PC GNS3 biasanya tidak reliable untuk IPv6, lebih baik Ubuntu / Kali.

LAN 1 Client:

ip 2001:192:168:1::100/64 2001:192:168:1::1


LAN 2 Client:

ip 2001:192:168:2::100/64 2001:192:168:1::1


Referensi


Pranala Menarik