0% found this document useful (0 votes)
28 views3 pages

Ip Terserah Kalian

The document provides steps to configure a Debian server without a CD/DVD. It describes how to: 1) Configure the server to use a mirror server and update packages. 2) Configure the IP address, install networking tools, and edit interface configuration files. 3) Configure BIND9 for DNS, install BIND9 and utilities, edit configuration files, and test lookups.

Uploaded by

LedyJoanWijaya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views3 pages

Ip Terserah Kalian

The document provides steps to configure a Debian server without a CD/DVD. It describes how to: 1) Configure the server to use a mirror server and update packages. 2) Configure the IP address, install networking tools, and edit interface configuration files. 3) Configure BIND9 for DNS, install BIND9 and utilities, edit configuration files, and test lookups.

Uploaded by

LedyJoanWijaya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Langkah – langkah konfigurasi debian tanpa cd/dvd

1. Menggunakan server mirror


- Nano /etc/apt/sources.list

Deb http://(..alamatygdisediakanserverutama..)

Deb-src http://(..

- Nano update
- Nano upgrade

2. Konfigurasi ip address
- Apt install net-tools
- Ifconfig
- Nano /etc/network/interfaces

Masukan

}
Auto enp1s0
Iface enp1s0 inet static
Address
Netmask
Network ip terserah kalian
Broadcast
Gateway

- /etc/init.d/networking restart
- Atau service networking restart

3. Konfigurasi BIND9
- Apt-get install bind9
- Apt-get install dnsutils
- Ip address
- Nano /ets/resolv.conf
Search zona-7.lks.id
Nameserver 192.168.7.1
Cd /etc/bind/
- Nano named.conf.default.conf
Zona “zona-7.lks.id
Type master:
File :/etc/bind/db.lks”;
Zona “7.168.192.in-addr.arpa”;
Type master;
File “/etc/bind/db.192”;
- Cp db.local db.lks
- Cp db.127 db.192

- Nano db.lks
Localhost diganti zona-7.lks.id
@ IN NS zona-7.lks.id.
@ IN A 192.168.7.1
www IN A 192.168.7.1
- Nano db.192
Localhost diganti zona-7.lks.id
@ IN NS zona-7.lks.id.
192 IN PTR zona-7.lks.id.
192 IN PTR www. zona-7.lks.id.
192 IN PTR ftp. zona-7.lks.id.
192 IN PTR mail. zona-7.lks.id.
- Servive bind9 restar
Nslookup zona-7.lks.id
Nslookup 192.168.7.1
- Cd

4. Konfigurasi apache2
- Apt–get install apache2
- Cd /etc/apache2/sites-available/
- Cp 000-defaul.conf web.conf
- Nano web.conf
- A2dissite 000-defaul.com
- Service apache2 restart
- Cd
- Mkdir /var/www.web
- Chmod 777/var/www/web
- Cd /var/www/web
- Nano index.web
Masuk kemenu html
<h1> SELAMAT DATANG DI WEB SMK MANFAL </h1>
- Cd

5. Konfigurasi Ftp
- Apt-get install proftpd
- Mkdir /home/manfal/share
- Chmod 777 /home/manfal/share
- Nano /etc/proftpd/proftpd.conf
<Anonymous /home/manfal/share>
User manfal
</Anonymous>
- Service proftpd restart

6. Konfigurasi samba
- Apt-get install samba
- Mkdir /home/samba
- Nano /etc/samba/smb.conf
Dibagian SHARE DEFINITUONS kita tambahkan dibawahnya
dengan
[share]
Parh = /home/samba
Browseable = yes
Writeable = yes
Guest ok = yes
- Chmod 777 /home/samba
Untuk melihat berkas yang sudah dishare
ftp://192.168.100.176
ftp://smkmanfal.sch.id
- Nano /home/manfal/samba/latihan.txt

7. Konfigurasi mail
- Apt-get install postfix
- Apt-get install courier-map
- Apt-get install courier-pop
- Apt-get –f install

You might also like