Pages

Banner 468 x 60px

 
Tampilkan postingan dengan label technology. Tampilkan semua postingan
Tampilkan postingan dengan label technology. Tampilkan semua postingan

Jumat, 02 November 2012

Configure your Ubuntu Server as a DHCP server

0 komentar

Configure your Ubuntu Server as a DHCP server


Now it’s time to get a bit deeper in the trenches by configuring that same Ubuntu server to serve up DHCP addresses. You might think this is a difficult setup, but it’s not. And many might be asking “Why do this when my router does the trick?” Most routers do a good job of serving up DHCP addresses. But there are times when those routers aren’t as configurable as we’d like them. Or maybe you want your DHCP server/router to also act as a much stronger firewall than what a standard router can handle. In these cases it’s nice to be able to set up your own DHCP server. And in this article, we will do just that.
Nuts and bolts
The information you should know about the DHCP server in this article looks like this (for examples’ sake):
  • ethernet device: eth0
  • IP Address range: 192.168.1.100 – 192.168.1.200
  • Subnet address: 192.168.1.0
  • Netmask: 255.255.255.0
  • DNS Servers: 208.67.222.222 and 208.67.220.220 (OpenDNS for those who do not know)
  • Domain: my.example.net
  • Gateway Address: 192.168.1.1
  • Broadcast Address: 192.168.1.255
What you will need to do install the dhcp3-server package in order to serve up the addresses. To install this issue the command:
sudo apt-get install dhcp3-server
You will need to enter your sudo password for the installation to begin. When the installation is complete you will have the configuration file (dhcp3-server) located in /etc/default/ and the executable command (dhcp3-server) will be located in /etc/init.d/.
Before you fire up the server you first must handle some configuration.
Configuration
The first configuration is to set the ethernet device. Open up the configuration file with the command:
nano /etc/default/dhcp3-server
On line 11 of this file (Which is actually the last line because this file is basically empty) you will see the line:
INTERFACES=”"
Change this line to read:
INTERFACES=”eth0″
You are finished with this file. Save the file and then open up the file /etc/dhcp3/dhcpd.conf. The first line you will need to edit is line 16. This line will look like this:
# option definitions common to all supported networks...
option domain-name "example.org";
option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600;
max-lease-time 7200;
You need to comment out all of those lines so they look like:
# option definitions common to all supported networks...
#option domain-name "example.org";
#option domain-name-servers ns1.example.org, ns2.example.org;
#default-lease-time 600;
#max-lease-time 7200;
Now go down to line 53. Here you will see this section:
# A slightly different configuration for an internal subnet.
#subnet 10.5.5.0 netmask 255.255.255.224 {
#  range 10.5.5.26 10.5.5.30;
#  option domain-name-servers ns1.internal.example.org;
#  option domain-name "internal.example.org";
#  option routers 10.5.5.1;
#  option broadcast-address 10.5.5.31;
#  default-lease-time 600;
#  max-lease-time 7200;
#}
This section needs to be uncommented out and edited to reflect this:
# A slightly different configuration for an internal subnet.
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.200;
option domain-name-servers 208.67.222.222, 208.67.220.220;
option domain-name "my.example.net";
option routers 192.168.1.1;
option broadcast-address 192.168.1.255;
default-lease-time 600;
max-lease-time 7200;
}
Save this file and you are ready to fire up your DHCP server.
Starting the service
To start the DHCP server issue the command:
/etc/init.d/dhcp3-server start
You should see no errors. Once your server is up and running go to one of your machines and restart the networking. You should get a new IP address as well as the DNS addresses configured. If your machine does not find the server you may have to configure the DHCP server IP address. This should not be necessary, but it’s good to know in a pinch.
Final thoughts
You probably didn’t realize how simple it would be to set up a DHCP server did you? Now you know. This set up should make for a very reliable DHCP server for your internal network.
Read more...

Cara Membangun DHCP Server Ubuntu Server

0 komentar

Cara Membangun DHCP Server Ubuntu Server - DHCP Singkatan dari Dynamic Host Configuration Protocol, merupakan protokol yang menangani pemberian IP address beserta atribut-atribut lainnya ke komputer klien secara otomatis. DHCP server merupakan solusi manajemen ip address di jaringan besar.
  1. Install paket dhcp3
    # apt-get install dhcp3-server
    On what network interfaces should the DHCP server listen? eth0
    Please configure the DHCP server as soon as the installation finishes. enter
    The version 3 DHCP server is now non-authoritative by defaultenter

    Generating /etc/default/dhcp3-server...
    Starting DHCP server: dhcpd3 failed to start - check syslog for diagnostics.
    invoke-rc.d: initscript dhcp3-server, action "start" failed.

    Abaikan pesan error diatas karena konfigurasi dhcpd3 belum dilakukan
  2. Backup file konfigurasi dhcp3
    # cp /etc/dhcp3/dhcpd.conf /etc/dhcp3/dhcpd.conf_orig

    Biasakan untuk membackup file konfigurasi jika belum terbiasa melakukannya agar jika terjadi error bisa mengembalikan ke kondisi semula.
  3. Konfigurasi dhcp3
    # nano /etc/dhcp3/dhcpd.conf
    default-lease-time 43200;
    max-lease-time 86400;
    option subnet-mask 255.255.255.0;
    option broadcast-address 192.168.1.255;
    option routers 192.168.1.253;
    option domain-name-servers 192.168.1.253, 192.168.1.252;
    option domain-name "repositori.fui";

    subnet 192.168.1.0 netmask 255.255.255.0 {
    range 192.168.1.101 192.168.1.150;
    }
    Save keluar lalu restart service dhcp
    # /etc/init.d/dhcp3-server restart

    Yang perlu diperhatikan adalah waktu sewa/leases setiap ip addres yang diberikan oleh server.
    3600 = satu jam
    86400 = satu hari
    604800 = satu minggu
    2592000 = satu bulan (asumsi 30 hari)
    31536000 = satu tahun
  4. Pastikan daemon dhcp siap melayani permintaan dari client
    # netstat -uap
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address      Foreign Address      State     PID/Program name

    udp        0          0   *:bootps     *:*                            4143/dhcpd
  5. Monitoring distribusi ip address
    Lakukan disisi server dhcp
    # tail -f /var/lib/dhcp3/dhclient.*.leases
    Atau
    # tail -n 100 /var/log/syslog
  6. Testing DHCP Client
    Pastikan komputer client tidak sedang menggunakan ip statik. Restart komputer client atau eksekusi perintah dibawah agar mengirim permintaan ke server dhcp.
    $ sudo dhclient
Selesai juga Cara Membangun DHCP Server Ubuntu Server.

Sumber : Forum Ubuntu Indonesia
Read more...

Apache 2 Web Server on Ubuntu 10.10 (Maverick)

0 komentar

Apache 2 Web Server on Ubuntu 10.10 (Maverick)


Set the Hostname

Before you begin installing and configuring the components described in this guide, please make sure you've followed our instructions for setting your hostname. Issue the following commands to make sure it is set properly:
hostname
hostname -f
The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN).

Install Apache 2

Make sure your package repositories and installed programs are up to date by issuing the following commands:
apt-get update
apt-get upgrade
Enter the following command to install the Apache HTTP server, its documentation, and a collection of utilities.
apt-get install apache2 apache2-doc apache2-utils

Install Support for Scripting

The following commands are optional, and should be run if you want to have support within Apache for server-side scripting in PHP, Ruby, Python, or Perl.
To install Ruby support, issue the following command:
apt-get install libapache2-mod-ruby
To install Perl support, issue the following command:
apt-get install libapache2-mod-perl2
To install Python support, issue the following command:
apt-get install libapache2-mod-python
If you need support for MySQL in Python, you will also need to install Python MySQL support:
apt-get install python-mysqldb
Your PHP application may require additional dependencies included in Ubuntu. To check for available PHP dependencies run "apt-cache search php", which will provide a list of package names and descriptions. To install, issue the following command:
apt-get install libapache2-mod-php5 php5 php-pear php5-xcache
Issue the following command to install the php5-suhosin package, which provides additional security to your PHP installation:
apt-get install php5-suhosin
If you're also hoping to run PHP with MySQL, then also install MySQL support:
apt-get install php5-mysql

Configure Name-based Virtual Hosts

There are different ways to set up Virtual Hosts, however we recommend the method below. By default, Apache listens on all IP addresses available to it.
First, issue the following command to disable the default Apache virtual host.
a2dissite default
Each additional virtual host needs its own file in the /etc/apache2/sites-available/ directory. In this example, you'll create files for two name-based virtually hosted sites, "example.net" and "example.org".
First create bucknell.net (/etc/apache2/sites-available/example.net) so that it resembles the following.
File:/etc/apache2/sites-available/bucknell.net
<VirtualHost *:80>
     ServerAdmin admin@example.net
     ServerName example.net
     ServerAlias www.example.net
     DocumentRoot /srv/www/example.net/public_html/
     ErrorLog /srv/www/example.net/logs/error.log
     CustomLog /srv/www/example.net/logs/access.log combined
</VirtualHost>
If you would like to enable Perl support, then add the following lines to the VirtualHost entry above.
File excerpt:/etc/apache2/sites-available/example.net
Options ExecCGI
AddHandler cgi-script .pl
Next, create example.org (/etc/apache2/sites-available/example.org) so that it resembles this:
File:/etc/apache2/sites-available/ducklington.org
<VirtualHost *:80>
     ServerAdmin webmaster@example.org
     ServerName example.org
     ServerAlias www.example.org
     DocumentRoot /srv/www/example.org/public_html/
     ErrorLog /srv/www/example.org/logs/error.log
     CustomLog /srv/www/example.org/logs/access.log combined
</VirtualHost>
You'll note that some basic options are specified for both sites, including where the files for the site will reside (under/srv/www/). You can add (or remove) additional configuration options, such as the Perl support, on a site-by-site basis to these files as your needs dictate.
Create required directories for these sites by issuing the following commands:
mkdir -p /srv/www/example.net/public_html
mkdir /srv/www/example.net/logs

mkdir -p /srv/www/example.org/public_html
mkdir /srv/www/example.org/logs
Enable the sites by issuing these commands:
a2ensite example.net
a2ensite example.org
Finally, restart the Apache server to initialize all the changes, with this command:
/etc/init.d/apache2 restart
When you create or edit any virtual host file, you'll need to reload the config, which you can do without restarting the server with the following command:
/etc/init.d/apache2 reload
Congratulations! You now have Apache installed on your Ubuntu Linux VPS and have configured the server for virtual hosting.

Install Apache Modules

One of Apache's prime strengths is its extreme customizability and flexibility. With its support for a large number of modules, there are few web serving tasks that Apache cannot fulfill. By default, modules and their configuration files are installed in the /etc/apache2/mods-available/ directory. Generating a list of this directory will tell you what modules are installed. To enable a module listed in this directory, use the following command:
a2enmod [module-name]
Note that in the /etc/apache2/mods-available/ directory, files have a .load and .conf extension. Module names do not include the extension.
To disable a module that is currently enabled, use the inverse command:
a2dismod [module-name]
To get a list of available Apache modules modules in the Ubuntu repository use the following command:
apt-cache search libapache2*
To install one of these modules use the command:
apt-get install [module-name]
Modules should be enabled and ready to use following installation, though you may have to apply additional configuration options to have access to the modules' functionality. Consult the Apache module documentation for more information regarding the configuration of specific modules.

Configuration Options

One of the strengths, and obstacles, of Apache is the immense amount of flexibility offered in its configuration files. In the default installation of Apache 2 on Ubuntu, the main configuration is located in the/etc/apache2/apache2.conf files, but Apache configuration directives are loaded from files in a number of different locations, in a specific order. Configuration files are read in the following order, with items specified later taking precedence over earlier and potentially conflicting options:
  1. /etc/apache2/apache2.conf
  2. Files with .load or .conf extensions in /etc/apache2/mods-enabled/ directory.
  3. /etc/apache2/httpd.conf (Blank by default.)
  4. /etc/apache2/ports.conf
  5. Files within the /etc/apache2/conf.d/ directory.
  6. Files within the /etc/apache2/sites-enabled/ directory.
  7. Per-directory .htaccess files in the directory.
Remember, later files take precedence over earlier-cited files. Within a directory of included configuration files, files will be read in order based on the sort of their file names.
Apache will follow symbolic links to read configuration files, so you can create links in these directories and locations to files that are actually located elsewhere in your file system.
Best practices for most installations dictate that we don't recommend modifying the following default configuration files:/etc/apache2/httpd.conf, files in /etc/apache2/mods-enabled/, and in most cases/etc/apache2/apache2.conf. This is to avoid unnecessary confusion and unintended conflicts in the future.
Generally, as specified in the LAMP guide and elsewhere, files that configure virtual hosts should be located in the/etc/apache2/sites-available/ directory (and symbolically linked to sites-enabled/ with the a2ensitetool. This allows for a clear and specific per-site configuration.
In practice, the vast majority of configuration options will probably be located in site-specific virtual host configuration files. If you need to set a system-wide configuration option or aren't using virtual hosting, the best practice is to specify options in files created beneath the conf.d/ directory.
Read more...

Apache Web Server on Ubuntu

0 komentar

Install Apache Web Server on Ubuntu

This step-by-step howto shows a basic setup for Apache 2 web server. Apache is installed on Ubuntu 6.06 LTS Dapper, but instructions will probably work on any Ubuntu. This document is a work in progress, initially only required commands are listed without troughout explanations.
© 2006 Tero Karvinen. GNU General Public License, version 2.

Install Apache

$ sudo apt-get install apache2

Test it

Surf to your own server on your own local computer:
$ firefox "http://localhost"
Find out how your server is found on the net. Anyone can use your IP address or DNS name to connect to your server:
$ ip addr
Use your own IP address (eth0, first IP number, does not end .255)
$ firefox "http://1.2.3.4"
If DNS is working on your network, you can see your fully qualified domain name with:
$ host 1.2.3.4

User homepages

With user homepages, anything you put in public_html in your home directory is published on the web.

Enabling Userdir on Server

For newer Ubuntu such as 8.04 Hardy, you have to explicitly enable userdir module. On older ones such as 6.06 LTS Dapper, userdir is enabled by default.
$ sudo a2enmod userdir
$ sudo /etc/init.d/apache2 restart

Test homepages

Go to your home directory
$ cd
Create a folder for public html files, note the underscore ‘_’
$ mkdir public_html
Check your name
$ whoami
Surf to ~yourname:
$ firefox "http://localhost/~tkarvine/"
You should see a directory listing of an empty directory. You can also try it using your IP address and a different machine.
If you see your homepage, well done. You have successfully installed a server with user homepages. You can create some web pages with OpenOffice and save them to your public_html directory.
Last modified: 2008-05-02. Permanent url: http://www.iki.fi/karvinen/install_apache_on_ubuntu.html
Read more...

Senin, 29 Oktober 2012

FTP SERVER

0 komentar
FTP SERVER



FTP (File Transfer Protocol) adalah mekanisme yang digunakan untuk men-transfer data (baca: file) antar komputer lewat Internet, atau network. Dalam konteks website (blog misalnya), FTP digunakan untuk men-transfer file dari komputer kita ke server hosting, sehingga file ini kemudian bisa diakses di website kita
secara online menggunakan web browser. Setidaknya dua komputer terlibat dalam proses transfer ini: FTP server dan FTP client. FTP server menjalankan software di server (hosting) dan siap menerima permintaan transfer dari FTP client (berupa software FTP client di komputer kita, misalnya CuteFTP, SmartFTP, NCFTP, WSFTP). Untuk bisa melakukan aktifitas FTP, kita memerlukan FTP account (username dan password). Setelah FTP client terhubung dengan FTP server, kita bisa melakukan upload file ke server, download file dari server, mengganti nama file di server, menghapus file, dan banyak operasi lainnya. Salah satu kelemahan utama dari FTP adalah kurang (atau bahkan tidak ada)-nya metode enkripsi, baik dalam pengiriman data account (password) dan pengiriman data. Karena faktor ini, direkomendasikan untuk menggunakan cara lain untuk men-transfer file lewat internet, misalnya SCP dan SSH Tunnel. SCP client yang cukup populer adalah WinSCP untuk Windows.


Langkah – Langkah Penggunaan FTP Server
Sebelum melakukan capture data, install aplikasi ftp server pada komputer anda. Cara melakukannya adalah sebagai berikut :
1. Install FTP Server (VSFTPD)
$ sudo apt-get install vsftpd
2. Konfigurasi file /etc/vsftpd.conf
Buka file dengan text editor, misalnya nano,
$ sudo nano /etc/vsftpd.conf
Tambah baris berikut atau hilangkan tanda comment (#) pada file tersebut. Langkah ini agar user lokal bisa log in melalui ftp
local_enable=YES
Agar user bisa mengupload file, cari baris berikut dan hilangkan tanda comment (#)
write_enable=YES
Untuk keamanan, agar user tetap berada di home direktorinya, tambahkan baris berikut :
chroot_local_user=YES


Save dan tutup file
3. Restart VSFTPD di Komputer
$ sudo /etc/init.d/vsftpd restart


4. Cara melakukan ftp melalui command line adalah sebagai berikut :
$ ftp ipkomputerserver atau domain
contoh :
$ ftp 10.17.0.251 atau $ ftp ftp.labjaringan.com
Kemudian masukkan username dan password.


Capture Data FTP Server
Sebelum Melakukan capture data kita harus mensetting IP server dan IP client server
contoh:


IP server ipaddress 10.17.0.194
subnetmask 255.255.255.0
gateway 10.17.0.254
DNS 10.17.0.194

IP client server
ipaddress 10.17.0.170
subnetmask 255.255.255.0
gateway 10.17.0.254
DNS 10.17.0.194



setelah mensetting IP server dan IP client server, kita melakukan perintah ping. Ping digunakan untuk mengetes apakah ip terhubung atau tidak.



Bila komputer server dan komputer client telah terhubung kita lakukan perintah tcpdump pada komputer server lalu enter

root@polsri : /home/polsri# tcpdump –i eth0 | grep ftp


Hasilnya:


tcpdump: verbose output suppressed, use-v or -vv for protokol decode
listening on eth0, link-type EN10MB (Ethernet), capture size 65535 bytes
-


Pada hasil diatas komputer server siap melakukan capture data.
Kemudian pada komputer client kita lakukan pengaksesan ftp
caranya:
Buka comand prompt
Ketikan ftp (ip server)
Hasilnya:
C:\Users\MDP.Windows7-PC\Documents>ftp 10.17.0.194
Connected to 10.17.0.194.
220 <vsFTPd 2.3.5>
Users <10.17.0.194(none)): polsri
331 Please specify the password.
Password:
230 Login successful.
ftp> put Doc1.docx
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 Transfer complete.
ftp: 17543 bytes sent in 0.00Seconds 8771.50Kbytes/sec.
ftp>quit
221 Goodbye.
C:\Users\MDP.Windows7-PC\Documents>

Pada hasil diatas komputer client mengakses ke IP komputer server dengan melakukan login,kita akan diminta memasukan user dan password jika muncul "230 Login successful." proses pengaksesan ke komputer server berhasil.
Setelah itu, kita coba meletakan sebuah file ke komputer server misalkan file "Doc1.docx" dengan melakukan perintah

ftp> put Doc1.docx
Bila muncul


200 PORT command successful. Consider using PASV. 150 Ok to send data.
226 Transfer complete.

maka proses meletakan file ke komputer server berhasil.
Untuk keluar dari ftp kita masukan perintah "quit".

Setelah melakukan langkah-langkah tersebut maka komputer server akan mengcapture datanya, sehingga hasil capture nya sebagai berikut:


17:58:27.962975 IP 10.17.0.170.49178 > 10.17.0.194.ftp-data: Flags [.], seg 4923
3:50681, ack 1, win 4163, options [nop,nop,TS val 535895 ecr 1685696], length 14
48
17:58:27.963039 IP 10,17,0,194.ftp-data > 10.17.0.170.49178; Flags[.],ack 4633
7,win 2641, options [nop,nop,TS val 1685696 ecr 535895],length 0
17:58:27.963055 IP 10,17,0,194.ftp-data > 10.17.0.170.49178; Flags[.],ack 4923
7,win 2641, options [nop,nop,TS val 1685696 ecr 535895],length 0
17:58:27.963039 IP 10.17.0.170.49178 > 10.17.0.194.ftp-data: Flags [.], seg 5068
3:50681, ack 1, win 4163, options [nop,nop,TS val 535895 ecr 1685696], length 14
48
17:58:27.963055 IP 10,17,0,194.ftp-data > 10.17.0.170.49178; Flags[.],ack 5212
9,win 2641, options [nop,nop,TS val 1685696 ecr 535895],length 0
17:58:27.963220 IP 10.17.0.170.49178 > 10.17.0.194.ftp-data: Flags [.], seg 5212
3:50681, ack 1, win 4163, options [nop,nop,TS val 535895 ecr 1685696], length 14
48
17:58:27.963345 IP 10.17.0.170.49178 > 10.17.0.194.ftp-data: Flags [.], seg 5357
7:55025, ack 1, win 4163, options [nop,nop,TS val 535895 ecr 1685696], length 14
48
17:58:27.963377 IP 10,17,0,194.ftp-data > 10.17.0.170.49178; Flags[.],ack 5502
5,win 2641, options [nop,nop,TS val 1685696 ecr 535895],length 0
17:58:27.963468 IP 10.17.0.170.49178 > 10.17.0.194.ftp-data: Flags [.], seg 5502
5:56473, ack 1, win 4163, options [nop,nop,TS val 535895 ecr 1685696], length 14
48
17:58:27.963592 IP 10.17.0.170.49178 > 10.17.0.194.ftp-data: Flags [.], seg 5647
3:57921, ack 1, win 4163, options [nop,nop,TS val 535895 ecr 1685696], length 14
48
17:58:27.963715 IP 10.17.0.170.49178 > 10.17.0.194.ftp-data: Flags [.], seg 5792
3:59369, ack 1, win 4163, options [nop,nop,TS val 535895 ecr 1685696], length 14
48
Dari Hasil diatas Merupakan Hasil capture file yang diletakan pada komputer server. "IP 10,17,0,194" merupakan IP komputer server yang di setting sebelumnya."ftp-data > 10.17.0.170" merupakan asal file "Doc1.docx" yang diletakan pada komputer server yaitu berasal dari komputer client dengan IP 10.17.0.170
Read more...

Sabtu, 13 Oktober 2012

Installing Apache2 With PHP5 And MySQL Support On Ubuntu 12.04 LTS (LAMP)

0 komentar

Installing Apache2 With PHP5 And MySQL Support On Ubuntu 12.04 LTS (LAMP)

 

1 Preliminary Note

In this tutorial I use the hostname server1.example.com with the IP address 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate.
I'm running all the steps in this tutorial with root privileges, so make sure you're logged in as root:
sudo su
Read more...

Apache2 web server for ubuntu

0 komentar

HTTPD - Apache2 Web Server


Apache is the most commonly used Web Server on Linux systems. Web Servers are used to serve Web Pages requested by client computers. Clients typically request and view Web Pages using Web Browser applications such as Firefox, Opera, or Mozilla.
Users enter a Uniform Resource Locator (URL) to point to a Web server by means of its Fully Qualified Domain Name (FQDN) and a path to the required resource. For example, to view the home page of the Ubuntu Web site a user will enter only the FQDN. To request specific information about paid support, a user will enter the FQDN followed by a path.
The most common protocol used to transfer Web pages is the Hyper Text Transfer Protocol (HTTP). Protocols such as Hyper Text Transfer Protocol over Secure Sockets Layer (HTTPS), and File Transfer Protocol (FTP), a protocol for uploading and downloading files, are also supported.
Apache Web Servers are often used in combination with the MySQL database engine, the HyperText Preprocessor (PHP) scripting language, and other popular scripting languages such as Python and Perl. This configuration is termed LAMP (Linux, Apache, MySQL and Perl/Python/PHP) and forms a powerful and robust platform for the development and deployment of Web-based applications.
Read more...

What's proxy server

0 komentar
proxy server is a server (a computer system or an application) that acts as an intermediary for requests from clients seeking resources from other servers. A client connects to the proxy server, requesting some service, such as a file, connection, web page, or other resource available from a different server and the proxy server evaluates the request as a way to simplify and control their complexity. Today, most proxies are web proxies, facilitating access to content on the World Wide Web.
Read more...

What's DNS server

0 komentar
DNS server is any computer registered to join the Domain Name System. A DNS server runs special-purpose networking software, features a public IP address, and contains a database of network names and addresses for other Internet hosts.

DNS Root Servers

DNS servers communicate with each other using private network protocols. All DNS servers are organized in a hierarchy. At the top level of the hierarchy, so-called root servers store the complete database of Internet domain names and their corresponding IP addresses. The Internet employs 13 root servers that have become somewhat famous for their special role. Maintained by various independent agencies, the servers are aptly named A, B, C and so on up to M. Ten of these servers reside in the United States, one in Japan, one in London, UK and one in Stockholm, Sweden.
Read more...

Rabu, 10 Oktober 2012

Pengertian & Aplikasi pada mail server

2 komentar

·         Pengertian dari Mail Server
Mail Server yaitu sebuah server yang digunakan untuk menyimpan dan mengirim sebuah email. bisa diibaratkan mail server itu seperti sebuah kantor pos. Mail Server dapat diartikan juga sebagai perangkat lunak program yang mendistribusikan file atau informasi sebagai respons atas permintaan yang dikirim via email yang saling berkomunikasi satu dengan yang lainnya melalui jaringan LAN/WAN yang memberikan tulang punggung (backbone) komunikasi antara client dengan server. Untuk mengirim sebuah email dari alamat email yang satu ke alamat email yang lain digunakan sebauh protocol (aturan) yaitu Simple Mail Transfer Protocol SMTP. Protocol SMTP telah menjadi aturan dasar yang disepakati untuk pengiriman email. Dengan demikian semua software email server pasti mendukung protokol ini. SMTP merupakan protokol yang digunakan untuk megirim email (komunikasi antar mail server), dan tidak digunakan untuk berkomunikasi dengan client. Sedangkan untuk client, digunakan protokol imap imaps pop3 pop3s.

Read more...

Instalasi Mail server

0 komentar
Cara Instalasi Mail server

1. Download semua file Toaster yang dibutuhkan dari www.qmailtoaster.com


    Masukkan ke dalam sebuah direktori, misalkan /qmailtoaster.
    File-file yang harus kita download ada 18 buah, sebagai berikut:
    zlib (kalau OS kamu menggunakan zlib lebih tua dari 1.2.2.2)
Read more...

Senin, 08 Oktober 2012

Klasemen Liga Premier Inggris terbaru di bulan oktober

0 komentar

Klasemen Liga Premier Inggris


No
Klub
Main
M
S
K
SG
Poin

1
7
6
1
0
15 - 4
19

2
7
5
0
2
17 - 9
15

3
7
4
3
0
15 - 8
15

4
7
4
2
1
14 - 8
14

5
7
4
2
1
13 - 8
14

6
7
4
2
1
11 - 7
14

7
7
3
3
1
13 - 5
12

8
7
3
2
2
8 - 8
11

9
7
3
1
3
15 - 11
10

10
7
2
3
2
8 - 11
9

11
7
2
2
3
12 - 11
8

12
7
1
5
1
6 - 5
8

13
6
1
4
1
5 - 7
7

14
7
1
3
3
9 - 12
6

15
7
1
2
4
7 - 13
5

16
7
1
2
4
6 - 12
5

17
7
1
1
5
12 - 20
4

18
6
0
3
3
8 - 13
3

19
7
0
3
4
5 - 17
3

20
7
0
2
5
6 - 16
2


TOP SKOR
No
Nama
Goal
Klub
1
6
Newcastle
2
5
Liverpool
3
5
Swansea City
4
5
Sunderland
5
4
Chelsea
6
4
Tottenham
7
4
Everton
8
4
Stoke City
9
4
Southampton
10
4
Manchester United

Read more...
wewen06. Diberdayakan oleh Blogger.