Jaringan Komputer:Tugas 2: Difference between revisions

No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:
==Device==
==Device==
*[https://www.tokopedia.com/vnetstore/mikrotik-routerboard-crs309-1g-8s-in Routerboard CRS309-1G-8S+IN] atau [https://mikrotik.com/product/crs309_1g_8s_in link berikut] (1)
*[https://www.tokopedia.com/vnetstore/mikrotik-routerboard-crs309-1g-8s-in Routerboard CRS309-1G-8S+IN] atau [https://mikrotik.com/product/crs309_1g_8s_in link berikut] (1)
*[https://www.tokopedia.com/akfa-/switch-tp-link-tl-sg1210p-gigabit-desktop-10port-10-port-gigabit TP-Link TL-SG1210P] atau [https://www.tp-link.com/us/business-networking/poe-switch/tl-sg1210p/ link berikut] (5)
*[https://www.tokopedia.com/akfa-/switch-tp-link-tl-sg1210p-gigabit-desktop-10port-10-port-gigabit TP-Link TL-SG1210P] atau [https://www.tp-link.com/us/business-networking/poe-switch/tl-sg1210p/ link berikut] (6)
*[https://www.tokopedia.com/gudangnetwork/belden-rj45-connector-cat-5-konektor-rj-45-cat5-ap700007-original Connector RJ45] (2)
*[https://www.tokopedia.com/gudangnetwork/belden-rj45-connector-cat-5-konektor-rj-45-cat5-ap700007-original Connector RJ45] (2)
*[https://www.tokopedia.com/ceol/kabel-utp-cat-6-belden-kabel-data-cat-6-belden?extParam=ivf%3Dfalse&src=topads Kabel UTP] (2)
*[https://www.tokopedia.com/ceol/kabel-utp-cat-6-belden-kabel-data-cat-6-belden Kabel UTP] (2)


==Spek Komputer (39)==
==Spek Komputer (39)==
Line 28: Line 28:


==Konfigurasi Router==
==Konfigurasi Router==
<syntaxhighlight lang="bash" line="1">
 
*Masuk ke konfigurasi global
 
<syntaxhighlight lang="bash">
Router>enable
Router>enable
Router#configure terminal
Router#configure terminal
</syntaxhighlight>
*Memberikan IP Address pada interface <code>fa0/0</code>
<syntaxhighlight lang="bash">
Router(config)#interface fa0/0
Router(config)#interface fa0/0
Router(config-if)#ip address 10.10.11.1 255.255.255.0
Router(config-if)#ip address 10.10.11.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config-if)#exit
</syntaxhighlight>
*Memberikan IP Address pada interface <code>fa1/0</code>
<syntaxhighlight lang="bash">
Router(config)#interface fa1/0
Router(config)#interface fa1/0
Router(config-if)#ip address 10.10.12.1 255.255.255.0
Router(config-if)#ip address 10.10.12.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config-if)#exit
</syntaxhighlight>
*Memberikan IP Address pada interface <code>fa2/0</code>
<syntaxhighlight lang="bash">
Router(config)#interface fa2/0
Router(config)#interface fa2/0
Router(config-if)#ip address 10.10.13.1 255.255.255.0
Router(config-if)#ip address 10.10.13.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config-if)#exit
</syntaxhighlight>
*Memberikan IP Address pada interface <code>fa3/0</code>
<syntaxhighlight lang="bash">
Router(config)#interface fa3/0
Router(config)#interface fa3/0
Router(config-if)#ip address 10.10.14.1 255.255.255.0
Router(config-if)#ip address 10.10.14.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config-if)#exit
</syntaxhighlight>
*Memberikan IP Address pada interface <code>fa4/0</code>
<syntaxhighlight lang="bash">
Router(config)#interface fa4/0
Router(config)#interface fa4/0
Router(config-if)#ip address 10.10.15.1 255.255.255.0
Router(config-if)#ip address 10.10.15.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config-if)#exit
</syntaxhighlight>
*Memberikan IP Address pada interface <code>fa5/0</code>
<syntaxhighlight lang="bash">
Router(config)#interface fa5/0
Router(config)#interface fa5/0
Router(config-if)#ip address 10.10.10.1 255.255.255.0
Router(config-if)#ip address 10.10.10.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config-if)#exit
</syntaxhighlight>
*Konfigurasi DHCP di IP <code>10.10.12.0</code>
<syntaxhighlight lang="bash">
Router(config)#ip dhcp pool network1010121
Router(config)#ip dhcp pool network1010121
Router(dhcp-config)#network 10.10.12.0 255.255.255.0
Router(dhcp-config)#network 10.10.12.0 255.255.255.0
Router(dhcp-config)#default-router 10.10.12.1
Router(dhcp-config)#default-router 10.10.12.1
Router(dhcp-config)#exit
Router(dhcp-config)#exit
</syntaxhighlight>
*Konfigurasi DHCP di IP <code>10.10.13.0</code>
<syntaxhighlight lang="bash">
Router(config)#ip dhcp pool network1010131
Router(config)#ip dhcp pool network1010131
Router(dhcp-config)#network 10.10.13.0 255.255.255.0
Router(dhcp-config)#network 10.10.13.0 255.255.255.0
Router(dhcp-config)#default-router 10.10.13.1
Router(dhcp-config)#default-router 10.10.13.1
Router(dhcp-config)#exit
Router(dhcp-config)#exit
</syntaxhighlight>
*Konfigurasi DHCP di IP <code>10.10.14.0</code>
<syntaxhighlight lang="bash">
Router(config)#ip dhcp pool network1010141
Router(config)#ip dhcp pool network1010141
Router(dhcp-config)#network 10.10.14.0 255.255.255.0
Router(dhcp-config)#network 10.10.14.0 255.255.255.0
Router(dhcp-config)#default-router 10.10.14.1
Router(dhcp-config)#default-router 10.10.14.1
Router(dhcp-config)#exit
Router(dhcp-config)#exit
</syntaxhighlight>
*Konfigurasi DHCP di IP <code>10.10.15.0</code>
<syntaxhighlight lang="bash">
Router(config)#ip dhcp pool network1010151
Router(config)#ip dhcp pool network1010151
Router(dhcp-config)#network 10.10.15.0 255.255.255.0
Router(dhcp-config)#network 10.10.15.0 255.255.255.0
Router(dhcp-config)#default-router 10.10.15.1
Router(dhcp-config)#default-router 10.10.15.1
Router(dhcp-config)#exit
Router(dhcp-config)#exit
</syntaxhighlight>
*Konfigurasi DHCP di IP <code>10.10.11.0</code>
<syntaxhighlight lang="bash">
Router(config)#ip dhcp pool network1010101
Router(config)#ip dhcp pool network1010101
Router(dhcp-config)#network 10.10.10.0 255.255.255.0
Router(dhcp-config)#network 10.10.10.0 255.255.255.0
Router(dhcp-config)#default-router 10.10.10.1
Router(dhcp-config)#default-router 10.10.10.1
Router(dhcp-config)#exit
Router(dhcp-config)#exit
Router(config)#ip dhcp pool network1010111
</syntaxhighlight>
 
*Konfigurasi DHCP di IP <code>10.10.11.0</code>
 
<syntaxhighlight lang="bash">Router(config)#ip dhcp pool network1010111
Router(dhcp-config)#network 10.10.11.0 255.255.255.0
Router(dhcp-config)#network 10.10.11.0 255.255.255.0
Router(dhcp-config)#default-router 10.10.11.1
Router(dhcp-config)#default-router 10.10.11.1
Router(dhcp-config)#exit
Router(dhcp-config)#exit
</syntaxhighlight>
</syntaxhighlight>
[[Category:Materi]]
[[Category:Matkul]]
[[Category:Jaringan Komputer]]