Membuat DNS Server LINUX

Perlu diketahui bahwa paket DNS Server di Ubuntu bisa dipilih ketika pertama kali diinstall. Bisa
diperiksa dengan mengetik :
sudo apt-cache policy bind9
contoh di sistem saya :
aspan@aspan-laptop:~$ sudo apt-cache policy bind9
[sudo] password for aspan:
bind9:
Installed: 1:9.7.0.dfsg.P1-1ubuntu0.1
Candidate: 1:9.7.0.dfsg.P1-1ubuntu0.1
Version table:
*** 1:9.7.0.dfsg.P1-1ubuntu0.1 0
500 http://id.archive.ubuntu.com/ubuntu/ lucid-updates/main Packages
500 http://security.ubuntu.com/ubuntu/ lucid-security/main Packages
100 /var/lib/dpkg/status
1:9.7.0.dfsg.P1-1 0
500 http://id.archive.ubuntu.com/ubuntu/ lucid/main Packages
aspan@aspan-laptop:~$
Lihat baris Installed, berarti bind9 sudah terinstall di sistem saya.
Jika belum terinstall, lakukan install, update dulu ketik :
sudo apt-get update


lalu install ketik :
sudo nano apt-get install bind9
Setelah itu langsung saja disetting, masuk ke direktori bind untuk berkenalan dulu dengan file-file bind,   
ketik :
cd /etc/bind/
ketik :
ls
contoh di sistem saya :
aspan@aspan-laptop:~$ cd /etc/bind
aspan@aspan-laptop:/etc/bind$ ls
bind.keys db.255 db.ip named.conf named.conf.options
db.0 db.coba db.local named.conf.default-zones rndc.key
db.127 db.empty db.root named.conf.local zones.rfc1918
aspan@aspan-laptop:/etc/bind$
perhatikan file yang bernama db.local. Copy file tersebut, ketik :
sudo cp db.local db.coba
tercipta sebuah file yang bernama db.coba, langsung saja diedit, ketik :
sudo nano db.coba
isinya kurang lebih seperti ini :
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA localhost. root.localhost. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS localhost.
@ IN A 127.0.0.1
@ IN AAAA ::1
ubah menjadi seperti di bawah ini :
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA ns.aspan.net. root.aspan.net. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns.aspan.net.
IN A 192.168.1.10
ns IN A 192.168.1.10
@ IN AAAA ::1
www IN CNAME ns
ftp IN CNAME ns
smtp IN CNAME ns
fulan IN CNAME ns
chat IN CNAME ns
Penjelasan :
No Asal Perubahan
localhost ns.aspan.net
root.localhost. ns.aspan.net
@ IN NS localhost. IN NS ns.aspan.net.
@ IN A 127.0.0.1 @ IN A 192.168.88.13
(tambahan) ns IN A 192.168.88.13
www IN CNAME ns
ftp IN CNAME ns
smtp IN CNAME ns
fulan IN CNAME ns
chat IN CNAME ns
copy file db.coba menjadi db.ip, ketik :
sudo cp db.coba db.ip
edit, ketik :
sudo nano db.ip
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA ns.aspan.net. root.aspan.net. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns.aspan.net.
13 IN PTR ns.aspan.net.
ns IN A 192.168.88.13
@ IN AAAA ::1
Penjelasan :
13 adalah host ID dari ip address DNS Server
kemudian edit file named.conf, ketik :
sudo nano named.conf
isinya kurang lebih seperti ini :
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
;
$TTL 604800
@ IN SOA ns.aspan.net. root.aspan.net. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns.aspan.net.
13 IN PTR ns.aspan.net.
ns IN A 192.168.88.13
@ IN AAAA ::1
Penjelasan :
13 adalah host ID dari ip address DNS Server
kemudian edit file named.conf, ketik :
sudo nano named.conf
isinya kurang lebih seperti ini :
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "aspan.net" {
type master;
file "/etc/bind/db.coba";
};
zone "88.168.192.in-addr.arpa" {
type master;
file "/etc/bind/db.ip";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
restart service bind9 ketik :
sudo /etc/init.d/bind9 restart
kemudian buat seluruh client menggunakan DNS yang telah kita buat. Jika di sistem Linux IP DNS
Server bisa kita masukan di file /etc/resolv.conf, ketik :
sudo nano /etc/resolv.conf
search aspan.net
nameserver 192.168.88.13
jika menggunakan network manager silakan lihat screenshot :
test domain dengan perintah :
dig -x aspan.net
; <<>> DiG 9.7.0-P1 <<>> -x aspan.net
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 15242
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;net.aspan.in-addr.arpa. IN PTR
;; AUTHORITY SECTION:
in-addr.arpa. 10800 IN SOA A.ROOT-SERVERS.NET. dns-ops.ARIN.NET.
2011021110 1800 900 691200 10800
;; Query time: 258 msec
;; SERVER: 192.168.1.10#53(192.168.1.10)
;; WHEN: Sat Feb 12 00:15:36 2011
;; MSG SIZE rcvd: 107
Read More..

Menambahkan Sudoers pada Ubuntu

Sebagai pengguna Ubuntu, pasti kenal dengan istilah Sudo. Ya, ini adalah perintah untuk "menaikkan" hak akses user menjadi setingkat dengan root.
Tetapi, tidak semua user dapat menjalankan perintah sudo. User tersebut harus terdaftar pada sebagai Sudoers.
Untuk menambahkan user menjadi sudoers, berikut caranya :
1. Buka console Anda
2. Ketikkan 'sudo visudo' (tanpa tanda petik). Bingung? Tentunya perintah ini dijalankan oleh user yang sudah sebagai sudoers. Saat pertama kali install ubuntu, user pertama yang diciptakan sudah otomatis menjadi anggota Sudoers.
3. Pada baris root ALL=(ALL) ALL tambahkan : user ALL=(ALL) ALL
4. Ganti 'user' menjadi username yang terdaftar pada Ubuntu. Contoh : pungki ALL=(ALL) ALL
5. Tekan Ctrl-X dan simpan setting tersebut.
6. Tidak perlu restart, perubahan ini akan aktif seketika.
Selamat mencoba :D
Read More..

Transparent v2 (Pidgin Screenlet theme) description

Transparent theme for the Pidgin screenlet

Transparent v2 is a modified version of the original Transparent theme for the Pidgin screenlet, to use the original Pidgin icons.

Developer comments

I've also changed some settings and fixed some bugs.

Installation:

Install in ~/.screenlets/pidgin/themes

About Screenlets:

Screenlets is the name of both a set of independently-developed widget applications and the widget engine which runs them. The engine runs primarily on X11-based compositing window managers, most notably the Compiz (under Linux) architecture.

Until 0.0.14, screenlets were exclusively scripted in Python and drawn in SVG. Afterward, support was added for web widgets (widgets which are written in HTML, JavaScript and CSS, similar to widgets for Apple Inc.'s Dashboard).

Download 

Transparent theme for the Pidgin screenlet

http://linux.softpedia.com/progDownload/Transparent-v2--Pidgin-Screenlet-theme-Download-42818.html

Read More..

Pendaftaran Siswa Baru SMA POMOSDA Tahu Ajaran 2011-1012

a. Syarat Pendaftaran :
1.       Mempunyai minat yang kuat untuk melanjutkan pendidikan di SMA POMOSDA
2.       Telah dinyatakan lulus sekolah di tingkat SMP/MTS atau yang sederajat, dengan ditunjukkan Surat Keterangan Lulus
3.       Maksimal berusia 17 tahun pada tanggal 1 Juli 2011
4.       Sehat jasmani dan rohani dibuktikan dengan surat keterangan sehat dari Dokter dan balai kesehatan POMOSDA
Penerimaan Santri Baru SMA POMOSDA
SMA POMOSDA
b. Cara Pendaftaran
i.       Calon Siswa/santri dan atau orang tua datang langsung ke sekretariat PSB SMA POMOSDA atau melalui perwakilan-perwakilan yang ditunjuk.

ii        Membayar uang pendaftaran untuk mendapatkan formulir pendaftaran.
iii.      Mengisi dan menyerahkan kembali formulir pendaftaran yang dilampiri dengn kelengkapan persyaratan administrasi berupa :


a. Fotocopi ijazah SMP/MTs atau sederajat yang telah dilegalisir sebanyak 3 lembar beserta ijazah asli
b. Fotocopi SKHUN yang dilegalisir sebanyak 2 lembar.
c. Fotocopi Nomor Induk Siswa Nasional (NISN) sebanyak 2 lembar
d. Fotocopi raport SMP/MTS semester 4,5 dan 6 sebanyak 1 lembar
e. Foto terbaru hitam putih 3x4 sebanyak 4 lembar
f. Surat keterangan Berkelakuan Baik dari sekolah asal.
g. Surat Keterangan Sehat dari Dokter atau Rumah Sakit

Waktu & Tempat  Pendaftaran :
Waktu pendaftaran Mulai Tanggal  01 juni - 08 juli 2011 (Gelombang I) 11 Juli - 21 Juli (Gelombang II)
Tempat di kampus SMA POMOSDA
Jl. Kh wachid hasym 312 Tanjunganom, Nganjuk Jawa Timur 64483 Telp (0358) 771589 fax: (0358) 773351

Pelaksanaan, Materi & Pengumuman Tes Seleksi
1.       Seleksi berkas tanggal 05 Juli 2011 (Gelombang I), 21 Juli 2011 (Gelombang II)
2.       Tes dan Wawancara 9-10 Juli (Gelombang I), 22-23 Juli (Gelombang II)
3.       Pengumuman testing 10 Juli 2011 (Gelombang I), 23 Juli (Gelombang II)
4.       OTRIBA 11 - 13 Juli 2011

Rincian  Biaya Pendaftaran
1.       Pendaftaran: Rp. 100.000,-
2.       Seragam dan Sarpras santri Baru : Rp 960.000,
Seragam sekolah, peralatan tidur, makan, almari dan kelengkapan belajar
(Dapat dibayarkan selama 1 (satu) tahun)
3.       SPP/Jariyah  Perbulan : Rp. 350.000,-
Biaya makan  3 x sehari, air dan listrik, dana kesehatan dan simpanan siswa
4.       Dana Pengembangan Pendidikan: Rp. 1.000.000,- (Gelombang I), Rp. 1.500.000,- (Gelombang II)
(Dapat diangsur selama 6 bulan/ 1 semester)
 Total Rp. 2.510.000,- (Gelombang I) Rp. 3.010.000,- (Gelombang II)


Read More..

Wireless cell phone video surveillance solution is here adding a sense of private protection and safety it offers you real-time video monitoring.

Wireless mobile phone video surveillance solution This technology utilizes the most powerful software applications for distantly monitoring from Everywhere in the world.
This is a solution that will turn any regular cell phone into a high end security device.
The surveillance system brings video from video source such as USB or IP Webcam to your mobile phone. It contains both the client and server application.

You can connect to your residence, business, babysitter, parents, pets, etc.

You can watch online shots from your webcams on mobile phone through any kind of ip connection from any location in the world. In case of intrusion, a real scene helps prevent false alarm and cancel police dispatches to avoid the fines.
Enjoy the liberty of viewing all your webcams on cell phone anytime and from anyplace with just the touch of a button.

How does cellular security work:

You connect your webcam (USB, IP camera, or Camcoder) to your home pc and setup the software.
The application records video and audio from webcam and sends it, as compressed media stream, to web server.
You login to this Web server from your mobile phone and see your camera.
No special application for your mobile phone is necessary.

All about cellular video security.

Get cash from your website. Sign up as affiliate.

Bisnis your Web

affiliate program

EARN INCOME FROM YOUR WEBPAGE

Turn your valuable webpage visitors into money. Work online and join our free money making partner program. We offer the most payment rate to help increase your cash stream.

Join our money making program absolutely no charge and 100% risk free.

Sign Up...

FREE INVESTMENT PROGRAM

We designed this money earn system specially for NO SETUP FEE methods, to make hundreds, if not millions of dollars, without spending something.

Start receiving serious affiliate commissions

Our money earn system really can give you money on the same day. Begin collecting steady partner commissions with almost no investments at all. This is a profitable business opportunity, the chance for you to create a solid, reliable, long-term profitable business.

Get paid after you not working

Create many new revenue incomes each and every day. Get paid after you stop working or even retire at an young age with a broad cash stream. Do this one time and get revenue over and over again. It's best time to create mind-blowing new levels of profit and success on the Internet.

Cell Phone Advertising System cell phone advertising,bruce shilander,shilander marketing