Selasa, 16 Juni 2009

TUGAS 4

Selesaikan konfigurasi DHCP NAT yang akan diberikan dalam bentuk modul pada pertemuan selanjutnya. Salinlah jawaban saudara pada komentar dibawah ini dengan menyebutkan nomor dan nama masing-masing. Tugas paling lambat sudah diposting pada tanggal 8 Juli 2009.

13 komentar:

  1. Nasrullah
    Nrp: 7108040506
    D4 ELKA Lj
    =======================================
    konfigurasi Activity 7.4.2:
    Challenge DHCP and NAT
    =======================================

    pengaturan Router ISP

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1



    Pengaturan Router R1

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    //Pengaturan DHCP//

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#



    Pengaturan Router R2

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    //Pengaturan NAT//

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    BalasHapus
  2. HENRI HARYADI
    7108 040 511
    1 D4 LJ ELKA
    ================================================
    Konfigurasi DHCP NAT
    ================================================

    *Konfigurasi Router R1

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    //Konfigurasi DHCP//

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#


    *Konfigurasi Router R2

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    //Konfigurasi NAT//

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit


    *Konfigurasi Router ISP

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1

    BalasHapus
  3. M. Iqbal Nugraha
    <7108040517>

    Kofigurasi DHCP dan NAT
    ada disini

    BalasHapus
  4. Maulida fajri
    Nrp: 7108040504
    D4 ELKA LJ

    =====================
    Konfigurasi DHCP NAT
    =====================


    ======================
    Router R1
    ======================
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    ============================
    KOnfigurasi untuk DHCP
    ============================
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#


    =========================
    Router R2
    =========================

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    ==============================
    Konfigurasi NAT
    ==============================

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    ================================
    Router ISP
    ================================

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1

    BalasHapus
  5. Router ISP
    ======================

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1


    Pengaturan Router R1

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    //Pengaturan DHCP//

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#

    Pengaturan Router R2

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2

    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    //Pengaturan NAT//

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    BalasHapus
  6. zoel fachri
    7104.040.507
    1 ELKA D4 LJ

    ****************************************
    konfigurasi DHCP and NAT
    ***************************************

    ==================
    Setting Router ISP
    ==================
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1


    =================
    Setting Router R1
    =================
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    //Setting DHCP//

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#


    =================
    Setting Router R2
    =================
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    //Setting NAT//

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    BalasHapus
  7. ARy Sulistyo Utomo
    Nrp: 7108040516
    D4 ELKA LJ

    *********************
    Konfigurasi DHCP NAT
    ********************

    Pada Router R2
    ___________________

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    *******************************
    Konfigurasi NAT
    *******************************

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    Pada Router R1
    ________________
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit
    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    ****************************
    KOnfigurasi untuk DHCP
    ****************************
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#


    *********************************
    Router ISP
    *********************************

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1

    BalasHapus
  8. Dimas Adi H.
    1 D4 LJ - ELKA || 7108.040.510
    =====================================

    Konfigurasi DHCP dan NAT

    Setting Router ISP :

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1


    Setting Router R1:

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    Setting DHCP :

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#


    Setting Router R2 :

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2

    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    Setting NAT :

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    BalasHapus
  9. ==(ZYENDY AHIDUL BARIZ)==
    ======(7108 040 509)=====
    D4LJ ELEKTRONIKA PENS SBY




    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Setting Router ISP
    ==================
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.224
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1


    =================
    Setting Router R0
    =================
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R0
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 192.16.0.1 255.255.255.224
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 192.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 192.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    //Setting DHCP//

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 192.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 192.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 192.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 192.16.10.1
    R1(dhcp-config)#dns-server 192.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 192.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 192.16.11.1
    R1(dhcp-config)#dns-server 192.16.20.254
    R1(dhcp-config)#


    =================
    Setting Router R1
    =================
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 192.16.0.2 255.255.255.224
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.224
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 192.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 192.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    //Setting NAT//

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 192.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 192.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 192.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.224
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    BalasHapus
  10. WIJI PINILIH
    1 EA-D4LJ
    7108040514

    =======================================
    konfigurasi Activity 7.4.2:
    Challenge DHCP and NAT
    =======================================

    Pengaturan Router ISP

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1



    Pengaturan Router R1

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    //Pengaturan DHCP//

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#



    Pengaturan Router R2

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    //Pengaturan NAT//

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    BalasHapus
  11. Bagus Hendra Prasetyo
    D4 LJ ELKA
    7108.040.503

    Tugas 5

    BalasHapus
  12. Muhamad Yusuf.
    1 D4 LJ - ELKA
    7108.040.513
    =====================================

    Konfigurasi DHCP dan NAT

    Setting Router ISP :

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1


    Setting Router R1:

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit

    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    Setting DHCP :

    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#


    Setting Router R2 :

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2

    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    Setting NAT :

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    BalasHapus
  13. By Wahyu Hidayat / 7108040515 / 1 ELKA D4LJ

    =====================
    Konfigurasi DHCP NAT
    =====================

    Pada Router R2
    ___________________

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R2
    R2(config)#interface serial 0/0/0
    R2(config-if)#ip address 172.16.0.2 255.255.255.252
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip address 209.165.201.1 255.255.255.252
    R2(config-if)#interface fastethernet 0/0
    R2(config-if)#ip address 172.16.20.1 255.255.255.0
    R2(config-if)#exit
    R2(config)#ip route 0.0.0.0 0.0.0.0 209.165.201.2


    R2(config)#router rip
    R2(config-router)#network 172.16.0.0
    R2(config-router)#default-information originate
    R2(config-router)#version 2
    R2(config-router)#exit

    ===============
    Konfigurasi NAT
    ===============

    R2(config)#ip access-list standard NAT_ACL
    R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255
    R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255
    R2(config-std-nacl)#exit
    R2(config)#ip nat inside source static 172.16.20.254 209.165.201.30
    R2(config)#ip nat pool NAT_POOL 209.165.201.128 209.165.201.130 netmask 255.255.255.252
    R2(config)#ip nat inside source list NAT_ACL pool NAT_POOL overload
    R2(config)#interface fastethernet 0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/0
    R2(config-if)#ip nat inside
    R2(config-if)#interface serial 0/0/1
    R2(config-if)#ip nat outside
    R2(config-if)#exit

    Pada Router R1
    ________________
    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.
    Router(config)#hostname R1
    R1(config)#interface serial 0/0/0
    R1(config-if)#ip address 172.16.0.1 255.255.255.252
    R1(config-if)#interface fastethernet 0/0
    R1(config-if)#ip address 172.16.10.1 255.255.255.0
    R1(config-if)#interface fastethernet 0/1
    R1(config-if)#ip address 172.16.11.1 255.255.255.0
    R1(config-if)#exit
    R1(config)#router rip
    R1(config-router)#network 172.16.0.0
    R1(config-router)#version 2
    R1(config-router)#exit

    ======================
    KOnfigurasi untuk DHCP
    ======================
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp excluded-address 172.16.10.1 172.16.10.3
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp excluded-address 172.16.11.1 172.16.11.3
    R1(config)#interface fastethernet 0/0
    R1(config-if)#ip dhcp pool R1_LAN10
    R1(dhcp-config)#network 172.16.10.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.10.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#exit
    R1(config)#interface fastethernet 0/1
    R1(config-if)#ip dhcp pool R1_LAN11
    R1(dhcp-config)#network 172.16.11.0 255.255.255.0
    R1(dhcp-config)#default-router 172.16.11.1
    R1(dhcp-config)#dns-server 172.16.20.254
    R1(dhcp-config)#


    ===========
    Router ISP
    ===========

    Router>enable
    Router#config
    Configuring from terminal, memory, or network [terminal]?
    Enter configuration commands, one per line. End with CNTL/Z.

    Router(config)#hostname ISP
    ISP(config)#interface serial 0/0/1
    ISP(config-if)#ip address 209.165.201.2 255.255.255.252
    ISP(config-if)#ip route 209.165.201.0 255.255.255.252 209.165.201.1

    BalasHapus