Guest User

Untitled

a guest
Nov 8th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. ## UAS JARINGAN KOMPUTER 2018
  2.  
  3. 1. Lakukan Konfigurasi dasar pada Branch dan S1 dengan ketentuan sebagai berikut: (5)
  4.  
  5. a. Nama perangkat sesuai dengan Topology
  6. ```
  7. S1 (config)# hostname S1
  8. ```
  9. b. Encrypted privileged exec password: ciscoenpa55
  10. ```
  11. S1 (config)# enable secret ciscoenpa55
  12. ```
  13. c. Console access password:ciscoconpa55
  14. ```
  15. S1 (config)# line console 0
  16. S1 (config-line)# password ciscoconpa55
  17. S1 (config-line)# login
  18. ```
  19. d. Telnet access password:ciscotelpa55
  20. ```
  21. S1 (config)# line vty 0 15
  22. S1 (config-line)# password ciscotelpa55
  23. S1 (config-line)# login
  24. ```
  25. e. Generate password encription
  26. ```
  27. S1 (config) service password-encryption
  28. ```
  29. f. Konfigurasi MOTD Banner: #Unauthorized Access Only#
  30. ```
  31. S1 (config)# banner motd '#Unauthorized Access Only#'
  32. ```
  33.  
  34. 2. Konfigurasi IP address dengan ketentuan berikut: (15)
  35.  
  36. a. IP address yang diberikan : 172.16.128.0/17
  37.  
  38. b. Lakukan subnetting berdasarkan IP yang diberikan. Urutkan berdasarkan jumlah host. Tidak diperkenankan menggunakan IP address di luar range IP address yang diberikan. Buat seefisien mungkin. Tuliskan hasil subnetting yang didapatkan di halaman kerja packet tracer.
  39.  
  40. ```
  41. VLAN 20: 560 Host : /22 : – 172.16.128.0 - 255.255.252.0
  42. VLAN 10: 100 host : /25 : - 172.16.132.0
  43. VLAN 45: 100 host : /25: - 172.16.132.128
  44. VLAN 30: 32 host : /26: - 172.16.133.0
  45. VLAN 47: 30 host : /27: - 172.16.133.64
  46. VLAN 88: 14 host : /28: - 172.16.133.96
  47. ```
  48.  
  49. 3. Implementasi port security dan ssh di S3 (10)
  50.  
  51. a. Pada Fa0/11, izinkan 2 MAC address untuk secara otomatis ditambahkan ketika device terdeteksi. Ketika terjadi violation port tidak di disable, tetapi mengirimkan syslog
  52.  
  53. b. Konfigurasi SSH
  54. * Domain: cisco.com
  55. * User: Admin. Password: ssh!
  56. * Cryto key length: 1024
  57. * SSH version 2, dibatasi untuk 2 authentication attempts dan 60 second timeout
  58.  
  59. 4. Implementasi VLAN dan Trunking (15)
  60.  
  61. a. Konfigurasi VLAN denga ketentuan:
  62. * VLAN 10 : Sales (F0/11-15)
  63. ```
  64. S1(config)#vlan 10
  65. S1(config-vlan)#name Sales
  66. S1(config)#interface range F0/11-15
  67. S1(config-if-range)#switchport mode access
  68. S1(config-if-range)#switchport access vlan 10
  69. ```
  70. * VLAN 20 : Production (F0/16-20)
  71. * VLAN 30 : Marketing (F0/5-10)
  72. * VLAN 45 : Accounting (Sesuai dengan port yang terhubung ke host)
  73. * VLAN 47 : Engineering (Sesuai dengan port yang terhubung ke host)
  74. * VLAN 88 : Management
  75. * VLAN 99 : Native
  76.  
  77. b. Konfigurasi port pada Switch dan Router yang berfungsi sebagai Trunk Port
  78. ```
  79. S1(config)#interface range G0/1-2
  80. S1(config-if-range)#switchport mode trunk
  81. S1(config-if-range)#switchport trunk native vlan 99
  82. ```
Add Comment
Please, Sign In to add comment