BIRD: Static Routing Sederhana
Revision as of 11:19, 15 January 2019 by Onnowpurbo (talk | contribs)
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 192.168.2.1
R2:
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