BIRD: Static Routing Sederhana: Difference between revisions

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


ping 172.16.1.2
  ping 192.168.2.1
  ping 192.168.2.1


R2:
R2:


ping 172.16.1.1
  ping 192.168.1.1
  ping 192.168.1.1


==Tambahan Kalau Membutuhkan NAT==
==Tambahan Kalau Membutuhkan NAT==

Revision as of 04:35, 15 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

Jalankan BIRD di GNS3 di PC

sudo chown root:onno /dev/kvm


Konfigurasi Shell

R1:

sudo ifconfig eth1 192.168.122.100 netmask 255.255.255.0
sudo ifconfig eth2 172.16.1.1 netmask 255.255.255.252
sudo ifconfig eth3 192.168.1.1 netmask 255.255.255.0

R2:

sudo ifconfig eth1 172.16.1.2 netmask 255.255.255.252
sudo ifconfig eth2 192.168.2.1 netmask 255.255.255.0

Test

R1:

ping 172.16.1.2
ping 192.168.2.1

R2:

ping 172.16.1.1
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

Referensi


Pranala Menarik