Cari Blog Ini

Rabu, 30 Maret 2011

Cara Installasi Debian lenny gateway
















Gateway menghubungkan satu jaringan komputer dengan satu atau lebih jaringan komputer yang berbeda untuk berkomunikasi dengan protokol yang berbeda, Untuk komputer yang dijadikan gateway biasanya memakai minimal 2 Lan Card atau lebih.
Langkah – langkah:
1. Install debian lenny base system,
2. Setting hostname
#vim /etc/hostname
#/bin/hostname namakomputer
3. setting DNS
#vim /etc/resolv.conf
search my.server
nameserver 192.168.1.1

***Jikalau pakai DHCP client tdk perlu diset.

4.Setting IP address
Configure Lan card di /etc/network/interfaces dengan menggunakan VIM
(untuk mengetahui perintah atau file2 di linux gunakan perintah MAN ):

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.15.4
gateway 192.168.15.12
netmask 255.255.255.0
network 192.168.15.0
broadcast 192.168.15.253

auto eth1
iface eth1 inet dhcp

5. Restart ipaddress #/etc/init.d/networking restart or #ifdown/ifup eth1/eth0
6. Setting Default gateway
Untuk mengetahui gateway yang dipakai ketikin
#netstat -nr

Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.15.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 192.168.15.12 0.0.0.0 UG 0 0 0 eth0

Atau dengan perintah ROUTE
#/sbin/route

Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.15.0 * 255.255.255.0 U 0 0 0 eth0
default router 0.0.0.0 UG 0 0 0 eth0

#sbin/route -n

Untuk merubah default gateway pertama harus menghapus gateway yg ada

/sbin/route del default gw 192.168.15.12
lalu masukan alamat gateway baru

/sbin/route add default gw 192.168.15.250

Tidak ada komentar: