Minggu, 17 November 2013

lirik lagu brian mcknight - one last cry


one last cry
brian mcknight
 
My shattered dreams and broken heart
Are mending on the shelf
I saw you holding hands
Standing close to someone else
Now I sit all alone
Wishing all my feeling was gone
I gave my best to you, nothing for me to do
But have one last cry
One last cry, before I leave it all behind
I've gotta put you outta my mind this time
Stop living a lie
I guess I'm down to my last cry, cry
I was here, you were there
Guess we never could agree
While the sun shines on you
I need some love to rain on me
Still I sit all alone
Wishing all my feeling was gone
Gotta get over you, nothing for me to do
But have one last cry
One last cry, before I leave it all behind
I've gotta put you outta my mind this time
Stop living a lie
I know I've gotta be strong
'Cause round me life goes on and on and on
And on
I'm gonna dry my eyes
Right after I had my one last cry
One last cry, before I leave it all behind
I've gotta put you outta my mind for the very last time
Been living a lie
I guess I'm down
I guess I'm down
I guess I'm down to my last cry



Kamis, 14 November 2013

konfigurasi DNS


KONFIGURASI NETWORK
1.       Mengkonfigurasikan jaringan komputer pada PC yang telah tersedia.
Memasang ip address 192.168.0.80/24 pada eth0 dengan menggunakan perintah #nano /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.0.80 
netmask 255.255.255.0
kemudian restart dengan perintah #/etc/init.d/networking restart.
2.       Mengkonfigurasikan repository server yang akan digunakan untuk update paket
a.       Dengan tujuan repositori kehttp://192.168.0.1
-          Dengan mengetikkan perintah #nano /etc/apt/sources.list.
-          Dan tambahkan input seperti berikut:
Deb http://192.168.0.1/ubuntu/ lucid main restricted multiverse universe
Deb http://192.168.0.1/ubuntu/ lucid-updates main restricted multiverse universe
Deb http://192.168.0.1/ubuntu/ lucid-security main restricted multiverse universe
b.      Kemudian update repository
-          Dengan mengetikkan perintah #apt-get update.
c.       Kemudian upgrade repository
-          Dengan mengetikkan perintah #apt-get upgrade.
DNS
3.       instal paket software DNS (bind9).
-          Dengan mengetikkan perintah #apt-get install bind9.
4.       konfigurasi paket DNS.
a.       Edit file named.conf.options.
-          Dengan mengetikkan perintah #nano /etc/bind/named.conf.options.
-          ganti alamat ip address yang tadinya0.0.0.0menjadi192.168.0.80.
b.      Edit file named.conf.local.
-          Ketikkan perintah #nano /etc/bind/named.conf.local.
-          Inputkan zona DNSseperti berikut :

zone “smktip-sri.org” {
type master;
file “etc/bind/db. sri.master”;
};

zone “0.168.192.in-addr.arpa” {
type master;
file “/etc/bind/db. sri.slave”;
};
c.       Copy filedb.localmenjadidb. sri.master dandb.127menjadidb. sri.slave.
-          Denganmengetikkanperintah :
#cpdb.local db.sri.master
#cp db.127 db.sri.slave
d.      Kemudian edit file db.sri.master 
-          Ketikkan perintah #nano /etc/bind/db.sri.master
-          Kemudian gantikkan localhost dengan nama domain kita yaitu smktip-sri.org Dan inputkan pada bagian bawah seperti berikut :

$TTL       604800
@           IN           SOA       ns.smktip-sri.org. sri.smktip-sri.org. (
2                             ; Serial
604800                  ; Refresh
86400                    ; Retry
2419200                ; Expire
604800                  ; Negative Cache TTL
@                           IN           NS          smktip-sri.org.
@                           IN           MX 10    mail.smktip-sri.org.
sri                          IN           A             192.168.0.80
mail                       IN           A             192.168.0.80

e.      Kemudian edit pula file db.sri.slave.
-          Ketikkan perintah #nano /etc/bind/db.sri.slave.
-          Inputkan seperti berikut :

$TTL       604800
@           IN           SOA       ns. smktip-sri.org. sri. smktip-sri.org. (
3                              ; Serial
604800                  ; Refresh
86400                    ; Retry
2419200                ; Expire
604800                  ; Negative Cache TTL
@           IN           NS          ns.smktip-sri.org.
80           IN           PTR        ns.smktip-sri.org.
               IN           PTR        sri.smktip-sri.org.
   IN           PTR        mail.smktip-sri.org.    

f.        Edit file resolv.confdi /etc.
-          Denganmengetikkanperintah#nano /etc/resolv.conf.
-          Tuliskannameserver 192.168.0.80 dan save.
g.       Lalu restart paket DNS yang telah terkonfigurasi.
-          Ketikkan perintah restart, yaitu #/etc/init.d/bind9 restart
   Untuk pengetesan DNS yang telah dikonfigurasi tadi jalan atau tidak, kita dapat mengetikkan perintah: nslookup
# nslookup 
>mail.smktip-sri.org
Kalo benar, maka hasilnya sebagai berikut:
Server:          127.0.0.1
Address:        127.0.0.1#53.
Name:     mail.smktip-sri.org
Address: 192.168.0.80