Langkah-langkah:
1. Masuk command prompt : Start -> Run -> ketik "cmd" (Tanpa petik)
2. Gunakan command convert
C:\> convert c: /fs:ntfs
3. Kemudian masukkan nama harddisk.
Tunggu sampai proses selesai.
Note: Sesuaikan drive yang akan diconvert.
C:\> convert c: /fs:ntfs
system ntp client set primary-ntp=202.169.224.16 secondary-ntp=203.160.128.6 mode=unicast enabled=yes
/ip firewall filter add chain=forward src-address=0.0.0.0/0 protocol=tcp dst-port=80 content="facebook" action=drop comment="web_blocking"
/ip firewall filter add chain=forward src-address=0.0.0.0/0 protocol=tcp dst-port=80 content="youtube" action=drop comment="web_blocking"
/system script add name="web_off" policy=write,read,policy,test,sniff source={
/ip firewall filter enable [/ip firewall filter find comment="web_blocking"]}
/system script add name="web_on" policy=write,read,policy,test,sniff source={
/ip firewall filter disable [/ip firewall filter find comment="web_blocking"]}
/system scheduler add name="close_access" start-date=Apr/01/2011 start-time=08:00:00 interval=1d on-event="web_off"
/system scheduler add name="open_access" start-date=Apr/01/2011 start-time=17:00:00 interval=1d on-event="web_on"
/ip firewall layer7-protocol add name=youtube regexp="http/(0\.9|1\.0|1\.1)[\x09-\x0d ][1-5][0-9][0-9][\x09-\x0d -~]*(content-type: video)"
/ip firewall mangle add action=mark-packet chain=prerouting comment="Limit Video" disabled=no layer7-protocol=youtube new-packet-mark=http-video passthrough=no
/queue simple add max-limit=0/64000 name=http-video packet-marks=http-video
[root@HQ clientmqueue]# find . -name "*" | xargs rm -rf



Cek interface :
/interface print
Rename interface:
/interface set 0 name="WAN" -> koneksi ke modem
/interface set 1 name="LAN" -> koneksi ke Switch/client
Memberi ip address:
/ip address add interface=WAN address=192.168.0.2 netmask=255.255.255.0
/ip address add interface=LAN address=192.168.1.1 netmask=255.255.255.0
Cek ip:
/ip address print
Memberi gateway:
/ip route add gateway=192.168.0.1
Setting DNS:
/ip dns set primary-dns=192.168.0.1 secondary-dns=202.134.0.155 allow-remote-requests=yes
Setting NAT untuk bisa dapat bandwidth:
/ip firewall nat add chain=srcnat out-interface=WAN action=masquerade
<link href="http://www.blogfixes.com/shared/css/thickbox.css" rel="stylesheet" type="text/css"/>
<script src="http://www.blogfixes.com/shared/js/jquery.min.js" type="text/javascript"/>
<script src="http://www.blogfixes.com/shared/js/thickbox-compressed.js" type="text/javascript"/>
class="thickbox"
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" class="thickbox"href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcMQMr-04f9vYDdcIPDS0o6VXWqEyYe-IIEfdhhF4e3KzLnDs1p0Y8rdlIN4SAM06ETgtsIXDhpIo55HZM6XmFJW7IbLY3EJhDpnmCMJCSXWAUW6tiA7IM594Q9AsM1Rw5iQ3x-J-eiGkB/s320/ftp-filefilla.jpg"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 214px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcMQMr-04f9vYDdcIPDS0o6VXWqEyYe-IIEfdhhF4e3KzLnDs1p0Y8rdlIN4SAM06ETgtsIXDhpIo55HZM6XmFJW7IbLY3EJhDpnmCMJCSXWAUW6tiA7IM594Q9AsM1Rw5iQ3x-J-eiGkB/s320/ftp-filefilla.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5394883051755045410" /></a>
[root@Bast~]# rpm -qa |grep proftp
proftpd-1.3.1-8.el5
[root@Bast~]#
[root@Bast~]# yum install proftpd
[root@Bast~]# vim /etc/proftpd.conf
ServerName "FTPku"
ServerType standalone
DefaultServer on
Port 21
# Don't use IPv6 support by default.
UseIPv6 off
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
MaxInstances 30
# Set the user and group under which the server will run.
User proftpd
Group proftpd
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Bar use of SITE CHMOD by default
DenyAll
User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
#UserAlias anonymous ftp
# Limit the maximum number of anonymous logins
MaxClients 10
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayChdir .message
# Limit WRITE everywhere in the anonymous chroot
DenyAll
Microsoft Windows [Version 6.0.6002]
Copyright (c) 2006 Microsoft Corporation. All rights reserved.
C:\Users\LenovoN100>ftp 192.168.0.1
Connected to 192.168.0.1.
220 ProFTPD 1.3.1 Server (FTPku) [192.168.0.1]
User (192.168.0.1:(none)): ftpbas
331 Password required for ftpbas
Password:
230 User ftpbas logged in
ftp>







Microsoft Windows [Version 6.0.6002]
Copyright (c) 2006 Microsoft Corporation. All rights reserved.
C:\Users\LenovoN100>f:
F:\>attrib -s -h *.* /s /d


