Berikut saya akan menulis artikel tentang bagaimana mengkonfigurasi IP Address pada Debian 6 Squeeze. Dalam artikel ini saya memiliki dua buah ethernet, kemudian saya juga akan menerangkan bagaimana IP Address Alias dibuat. IP Address alias dapat dikatakan sebuah IP Address bayangan yang menginduk pada IP Address utama.
Tanpa panjang lebar lagi silakan anda perhatikan tahapan-tahapan dalam konfigurasi
1. Dalam Debian file konfigurasi untuk IP Address bernama interfaces berada pada direktori /etc/network.
2. Sebelum lebih jauh lagi alangkah baiknya anda mencari referensi lain yang berkaitan dengan IP Address karena untuk kedepannya anda akan mengenal apa itu netmask, network, broadcast, gateway dan lain sebagainya.
Berikut merupakan konfigurasi IP Address komputer saya dengan dua buah network
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.27.254
netmask 255.255.255.0
network 192.168.27.0
broadcast 192.168.27.255
gateway 192.168.27.254
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.27.254
dns-search sandimulyadi.web.id
allow-hotplug eth1
iface eth1 inet static
address 192.168.3.254
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.254
gateway 192.168.3.1
dns-nameservers 192.168.3.254
/etc/network/interfaces
3. Sedangan untuk IP Address Alias anda dapat menggunakan script seperti dibawah ini
allow-hotplug eth0:0
iface eth0:0 inet static
address 192.168.27.1
netmask 255.255.255.0
network 192.168.27.0
broadcast 192.168.27.255
gateway 192.168.27.254
allow-hotplug eth1:0
iface eth1:0 inet static
address 192.168.3.1
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.255
gateway 192.168.3.254
/etc/network/interfaces
4. Dan berikut adalah file interfaces secara lengkap antara IP Address dengan IP Address Alias
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.27.254
netmask 255.255.255.0
network 192.168.27.0
broadcast 192.168.27.255
gateway 192.168.27.254
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.27.254
dns-search sandimulyadi.web.id
allow-hotplug eth0:0
iface eth0:0 inet static
address 192.168.27.1
netmask 255.255.255.0
network 192.168.27.0
broadcast 192.168.27.255
gateway 192.168.27.254
allow-hotplug eth1
iface eth1 inet static
address 192.168.3.254
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.254
gateway 192.168.3.1
dns-nameservers 192.168.3.254
dns-search sandimulyadi.web.id
allow-hotplug eth1:0
iface eth1:0 inet static
address 192.168.3.1
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.255
gateway 192.168.3.254
/etc/network/interfaces