Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 4

PAKET REMED MANTAP

DNS
tambahin di /etc/network/interfaces
dns-nameservers [IP]
edit named.conf.local
zone "19.broadband.net" {
type master;
file "/etc/bind/db.broadband";
};
zone "10.16.172.in-addr.arpa" {
type master;
file "/etc/bind/db.19";
};
==================================================
nano db.broadband
$TTL
@

604800
IN
SOA

ns.19.broadband.net. root.19.broadband.net (
1706201300
; Serial
604800
; Refresh
86400
; Retry
2419200
; Expire
604800
; Negative Cache TTL

);
@
ns
@

IN
IN
IN
IN

NS
A
A
MX 10

ns.19.broadband.net.
172.16.10.119
172.16.10.119
mail.19.broadband.net.

www
ftp
mail
blog

IN
IN
IN
IN

CNAME
CNAME
A
CNAME

ns
ns
172.16.10.119
ns

===========================================================================
nano db.19
$TTL 604800
@
IN
`

SOA

ns.19.broadband.net. root.19.broadband.net. (
1706201300
; Serial
604800
; Refresh
86400
; Retry
2419200
; Expire
604800
; Negative Cache TTL

);
@
IN
NS
ns.19.broadband.net.
119
IN
PTR
ns.19.broadband.net.
===============================================================================
liat di /etc/resolv.conf
/etc/init.d/bind9 restart

=====================================================
"VSFTPD"
nano /etc/vsftpd.conf
paling bawah: anon_root=/home
di save, terus :
chmod 777 /home
chmod -R 777 /home
chmod u-w /home
chown ftp:ftp /home
usermod -d /home ftp
invoke-rc.d vsftpd restart
=====================================================
"PROFTPD"
# nano /etc/proftpd/proftpd.conf
=================================
ServerName
"Reysa FTP Server"
<Anonymous ~ftp>
User
Group
#
#
UserAlias
#
#
DirFakeUser on ftp
DirFakeGroup on ftp
#
RequireValidShell

ftp
nogroup

off

#
#
MaxClients
10
#
#
#
#
#
DisplayLogin
welcome.msg
DisplayChdir
.message
#
#
#
<Directory *>
<Limit WRITE>
#
DenyAll
</Limit>
</Directory>
#
#
#
#
# <Directory incoming>
#
#
# Umask
#
#
# (second parm)
#
#
Umask
#
#
<Limit READ WRITE>
#
#
DenyAll
#
#
</Limit>
#
#
<Limit STOR>
#
#
AllowAll
#
#
</Limit>
#
# </Directory>

#
</Anonymous>
==================================
# /etc/init.d/proftpd restart
# clear
# ftp ftp.reysa.biz
#clear
====================================================
==================================================
Paket Hemat SAMBA
nano /etc/samba/smb.conf
paling bawah
[siswa]
path = /home/siswa
browseable = yes
guest ok = yes
writeable = yes
[guru]
path = /home/guru
valid users = rezija
browseable = yes
writeable = yes
/etc/init.d/smbd restart
mkdir /home/siswa /home/guru
smbpasswd -a [user]
chmod 777 /home/siswa /home/guru
========================apache2==================================
# nano /var/www/index.html
==============================
<html>
<head>Biodata</head>
<body>
<h1>Biodata</h1>
<center>
Nama
: Reysa Agrianza Hambali <br>
Kelas
: XII TKJ A <br>
Sekolah
: SMKN 1 Cimahi <br>
No.Absen
: 25
</center>
</body>
</html>
====================================
# nano /etc/apache2/sites-available/default
Tambahkan
DirectoryIndex index.php
# /etc/init.d/apache2 restart
# w3m http://www.reysa.biz

==========================================================

You might also like