Wednesday, July 3, 2019

Router>enable
Router>#configure terminal
Router(config)#no ip domain-lookup
Router(config)#hostname Bogor
Bogor(config)#bannet motd #Maaf, yang tidak berkepentingan dilarang masuk !!! Tertanda : Satpam Jaringan. #
Bogor(config)#line console 0
Bogor(config-line)#logging synchronous
Bogor(config-line)#password cisco
Bogor(config-line)#login
Bogor(config-line)#exit
Bogor(config)#enable password class
Bogor(config)#enable secret class (supaya password dienksripsi untuk menghindari yang tidak bertanggung jawab)
Bogor(config)#service password-encryption
Bogor(config)#line vty 0 4
Bogor(config)#logging synchronous
Bogor(config-line)#password cisco
Bogor(config-line)#login
Bogor(config-line)#exit

untuk masuk router 3 pintu:
console, auxilary, vty
console adalah port tersndiri, biasanya semua router ada router tersendiri. tiap router modelnya beda - beda.
aux, rj 11. fungsinya sama kaya console. kalau console yang cisco lama rs232. tapi kalau yang baru pakai USB.
vty, melalui jaringan pakai remote, pakai ssh, jadi kalau vty ini konfigurasi melalui jaringan, jadi vty ini digunakan untuk mengembangkan configurasi. jadi syarat vty adalah tersambung terlebih dahulu, digunakan port vty.



Share:

Subnetting VLSM

Subnet CIDL digunakan untuk
jumlah host sama

Subnet VLSM digunakan untuk meminimalisir ip adress yang tidak dipakai saat mengaplikasikan.
VLSM suatu teknik untuk mengurangi jumlah terbuang alamat. kita dapat memberi suatu subnet ke seseorang, dan dia dapat membagi lebih lanjut subnet ke dalam beberapa subnets. oleh karena lebar dari subnet akan diperkecil, maka disebut VLSM


membagi berdasarkan jumlah host, untuk mengefektifkan host yang tidak terpakai
menyesuaikan jumlah host, nanti juga akan peritmbangan saat menggunakan protocol routing. kalau menggunakan 1 router masih bisa 22nya (CIDL VLSM)

contohnya, di perusahaan beberapa departemen. VLSM membagi berdasarkan jumlah host, tidak memperdulikan jumlah network.
jumlah host sama (CIDL)
jumlah network beda - beda (VLSM)

Menentukan subnet baru: Rumus 32-H(H adalah bit host)(32 dari total bit)
Menentukan Bit Host(H): Rumus --> 2^H > 500 maka H=9 (500 dari yang dibuthkan)
Subnet baru = 32 - 9 =23, Maka subnetnya menjadi: 172.16.0.0/23 yang artinya subnenya adalah: 255.255.254.0
HITUNG DARI HOST PALING BANYAK LALU KE YANG KECIL
Range IP = Max NetMask - NetMask sekarang (255.255.255.255 - 255.254.254.0)

host 2
2 pangkat 2, H =2
32 - 2 = 30
11111111.11111111.11111111.11111100 |
255.255.255.252
NET : 172.16.2.128
FH: 172.16.2.129
LH: 172.16.2.130
BA: 172.16.2.131
NM: 255.255.255.254
255.255.255.255 - 255.255.255.252 = 0.0.0.3

IP 144.44.4.0
100 Host
Host 100, 2 pangkat 7, H=7
32 - 7 = 25
11111111.11111111.11111111.100000000 | 255.255.255.128
NET: 144.44.4.0
FH:144.44.4.1
LH:144.44.4.126
BA:144.44.4.127
NM: 255.255.255.128
255.255.255.255 - 255.255.255.128 = 0.0.0.127

50 Host
Host 50, 2 pangkat 6, H = 6
32 - 6 = 26
11111111.11111111.11111111.11000000 | 255.255.255.192
NET: 144.44.4.128
FH: 144.44.4.129
LH: 144.44.4.190
BA: 144.44.4.191
NM: 255.255.255.192
255.255.255.255 - 255.255.255.192 = 0.0.0.63

3 Host
Host 3, 2 pangkat 2, H = 2
32 - 2 = 30
11111111.11111111.11111111.11111100|255.255.255.252
NET: 144.44.4.192
FH:  144.44.4.193
LH: 144.44.4.194
BA: 144.44.4.195
NM: 255.255.255.252
255.255.255.255 - 255.255.255.252 = 0.0.0.3

1000 Host
Host 1000, 2 pangkat 10, H=10
32 - 10 = 22
11111111.11111111.11111100.00000000 | 255.255.252.0
NET:172.16.5.4
FH:`172.16.5.5
LH: 172.16.9.2
BA: 172.16.9.3
NM: 255.255.252.0
255.255.255.255 - 255.255.252.0 = 0.0.3.255

500 Host
Host 500, 2 pangkat 9, H = 9
32 - 9 = 23
11111111.11111111.11111110.00000000 | 255.255.254.0
NET:  172.16.9.4
FH:  172.16.9.5
LH: 172.16..11.2
BA: 172.16.11.3
NM: 255.255.254.0
255.255.255.255 - 255.255.254.0 = 0.0.1.255

100 Host
Host 100, 2 pangkat 7, H = 7
32 - 7 = 25
11111111.11111111.11111111.10000000 | 255.255.255.128
NET: 172.16.11.4
FH: 172.16.11.5
LH: 172.16.11.130
BA: 172.16.11.131
NM: 255.255.255.128
255.255.255.255 - 255.255.255.128 = 0.0.0.127

60 Host
Host 60, 2 pangkat 6, H = 6
32 - 6 = 26
11111111.11111111.11111111.11000000 | 255.255.255.192
NET: 172,16,11,132
FH: 172.16.11.133
LH: 172.16.11.195
BA: 172.16.11.196
NM: 255.255.255.192
255.255.255.255 - 255.255.255.192 = 0.0.0.63








kelebihan CIDL
kalau rata - rata jumlah host sama pakai cidl

kekurangan
jumlah host masing - masing subnetwork bedanya jauh signifikan


VLSM
kelebihan

kekurangan


Share:

Membuat VLAN

VLAN
tekonologi dalam jaringan untuk mengkoneksikan atau tidak mengkoneksikan virtual adress

VLAN | PEMISAH ANTAR KONEKSI INTERNET YANG TERHUBUNG DALAM 1 SWITCH

definisi LAN
jaringan yang tergantung menggunakan switch

sedangkan VLAN
tidak tergantung switch

VLAN terkait penggunaan port atau lubang yang ada dalam jaringan 8/16/24/32
bagaimana dalam satu switch yang sama tapi tidak terkoneksi akan terkoneksi apabila tersambung pada vlan yang sama

ada 2 kemungkinan komputer tidak connetct
beda vlan
beda subnet


MEMBUAT VLAN
switch>enable
switch#configure terminal
switch(config)#hostname switch1
switch1(config)#vlan 10
switch1(config-vlan)# name 10/HRD
switch1(config-vlan)#exit

mendaftarkan Interface VLAN
switch1(config)#interface fastEthernet 0/1
switch1(config-if)#switchport access vlan 10
switch1(config-if)#switchport mode access
switch1(config-if)#exit



















Share:

Wednesday, June 26, 2019

Pertemuan 13, OSPF 3 Router 1 Switch 1 Komputer

PC 1 KE Router 3
--- System Configuration Dialog ---
Would you like to enter the initial configuration dialog? [yes/no]: no
Router>enable
Router#configure terminal
Router(config)#interface gig
Router(config)#interface gigabitEthernet 0/0
Router(config-if)#ip address 202.202.202.100 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface gigabitEthernet 0/1
Router(config-if)#ip address 205.205.205.100 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/0/0
Router(config-if)#ip address 101.101.101.1 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0.0
Router(config)#interface serial 0/0/0
Router(config-if)#ip address 102.102.102.2 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/0/1
Router(config-if)#ip address 101.101.101.1 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#
Router(config)#router ospf 1
Router(config-router)#network 101.101.101.0 0.0.0.255 area 0
Router(config-router)#network 102.102.102.0 0.0.0.255 area 0
Router(config-router)#network 202.202.202.0 0.0.0.255 area 1
Router(config-router)#network 205.205.205.0 0.0.0.255 area 2
Router(config-router)#log-adjacency-changes

Router(config-router)#exit


PC 1 Ke Router 2
--- System Configuration Dialog ---
Would you like to enter the initial configuration dialog? [yes/no]: no
Router>enable
Router#configure terminal
Router(config)#interface gigabitEthernet 0/0
Router(config-if)#ip address 200.200.200.100 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface gigabitEthernet 0/1
Router(config-if)#ip address 204.204.204.100 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/0/0
Router(config-if)#ip address 100.100.100.1 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/0/1
Router(config-if)#ip address 102.102.102.1 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#
Router(config)#router ospf 1
Router(config-router)#network 101.101.101.0 0.0.0.255 area 0
Router(config-router)#network 100.100.100.0 0.0.0.255 area 1
Router(config-router)#network 201.201.201.0 0.0.0.255 area 1
Router(config-router)#network 204.204.204.0 0.0.0.255 area 2
Router(config-router)#log-adjacency-changes
Router(config-router)#exit

PC 1 Ke Router 1
--- System Configuration Dialog ---
Would you like to enter the initial configuration dialog? [yes/no]: NO
Router>enable
Router#configure terminal
Router(config)#interface gigabitEthernet 0/0
Router(config-if)#ip address 201.201.201.100 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface gigabitEthernet 0/0
Router(config-if)#ip address 203.203.203.100 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/0/0
Router(config-if)#ip address 100.100.100.2 255.255.255.0

Router(config-if)#clock rate 64000
Router(config-if)#exit
Router(config)#interface serial 0/0/1

Router(config-if)#ip address 101.101.101.2 255.255.255.0
Router(config-if)#clockrate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/0/0
Router(config-if)#ip address 100.100.100.2 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#
Router(config)#router ospf 1
Router(config-router)#network 100.100.100.0 0.0.0.255 area 1
Router(config-router)#network 102.102.102.0 0.0.0.255 area 0
Router(config-router)#network 200.200.200.0 0.0.0.255 area 1
Router(config-router)#network 203.203.203.0 0.0.0.255 area 2
Router(config-router)#log-adjacency-changes

Router(config-router)#exit
Share:

Sunday, February 17, 2019

Padé & Murat Salman – Time Flies Lyric

Padé & Murat Salman – Time Flies Lyric


Set my heart on fire, hold me in your arms.
Light up my desire, drink me till I´m gone.
All we cannot face, the open road will always find a way.
We´re learning to accept what we can´t change.
The story of our lives, we read between the lines.
Is it my reflection, deep in the night.
We might be near the end, drink me till I´m gone.
All we cannot face, the open road will always find a way.
We´re learning to accept what we can´t change.
The story of our lives, we read between the lines.
Share:

Saturday, February 16, 2019

Grace Carter - Heal Me (René LaVice Remix) Lyric


Grace Carter - Heal Me (René LaVice Remix) Lyric

Same eyes, complexion
No love or affection
But you don't recognise my face
Same time, same place
Treat me like your baby
I’m mad, you're crazy
Yeah, I've been through some phases
No change, no change at all

We got similar faces, but I don't feel nothing like you
And they’ve only tainted my view
I'm not waiting for, for your love, you can keep it
I'm not waiting for you to cure, you to heal me
I'm not waiting for you to cure, I don't need it
I'm not waiting for you to come back
For you to let me down like that
Disaster, I happened, I matter
Grew harder, found laughter
Found peace in all the cracks, oh

No, no, you couldn't manage
Our bridges are burning, it’s too late
You saw me as baggage, a dead weight
Now the tables are turning
Though the tears are still coming out
I’m not waiting for, for your love, you can keep it
I found the courage, there’s no hate
I'm not waiting for you to cure, you to heal me
I'm not waiting for you to come back
’Cause of you, I know what I deserve
For you to let me down like that
I'm not waiting for you to cure, I don't need it

Taking me back to the way we were
I'm not waiting for you to cure, you to heal me
Always the cause when I lost my nerve, no more
I'm not waiting for you to cure, you to heal me
I'm not waiting for, for your love, you can keep it
I'm not waiting for you to cure, I don't need it
I'm not waiting for, for your love, you can keep it
I'm not waiting for you to come back
For you to let me down like that
Share:

Friday, February 15, 2019

MARINA - Handmade Heaven Lyric


MARINA - Handmade Heaven Lyric

[Verse 1]
I envy the birds high up in the trees
They live out their lives so purposefully
I envy the spiders, the squirrels and seeds
They all find their way automatically

[Chorus]
But in this handmade heaven, I come alive
Bluebirds forever colour the sky
In this handmade heaven, we forget the time
‘Cause birds of a feather fly together

[Verse 2]
I carry along a feel of unease
I want to belong like the birds in the trees
I sit on my own, look over the town
The skyscrapers glow like they’ll never fall down

[Chorus]
But in this handmade heaven, it’s paradise
Bluebirds forever colour the sky
In this handmade heaven, we forget the time
‘Cause birds of a feather fly together

[Post-Chorus]
In this handmade heaven, I come alive
Bluebirds forever colour the sky
In this handmade heaven, handmade heaven
Handmade heaven, handmade heaven

[Bridge]
And I can no longer ignore
The ivy growing tall
This life don’t suit me anymore
The writings on the wall

[Chorus]
But in this handmade heaven, I come alive
Bluebirds forever colour the sky
In this handmade heaven, handmade heaven
Handmade heaven, handmade heaven

[Outro]
(Bluebirds forever) Birds of a feather
(Bluebirds forever) Fly together
(Bluebirds forever) In this strange, strange weather
(Bluebirds forever) In this handmade heaven
In this handmade heaven, in this handmade heaven
In this handmade heaven, in this handmade heaven
Share: