Unduh Adobe Flash player

MikroTik Bandwidth Management + Web Proxy

Script MikroTik in Black and White
========================
First you need to determining your network model.
in this case we used subnetmask Class "C"
-----------------------------------
255.255.255.0           = 24 -> 254
255.255.255.128       = 25 -> 128
255.255.255.192       = 26 -> 64
255.255.255.224       = 27 -> 32
255.255.255.240       = 28 -> 16
255.255.255.248       = 29 -> 8
255.255.255.252 = 30 -> 4
255.255.255.254 = 31 -> 2
255.255.255.255 = 32 -> 1
        ------------------------------
Note :  if using WinBox Just copy-paste to terminal/linegroup.. Here we go.....;)
           (ISP line  Up to 1 Mbps)

/interface
set 0 name=public
set 1 name=local

password

system identity set name=newbie

/ip address add address=192.168.1.2/24 netmask=255.255.255.0 interface=public comment="Internet"
/ip address add address=192.168.0.1/28 netmask=255.255.255.240 interface=local comment = "LAN"

/ip route add gateway=192.168.1.1

/ip dns set primary-dns=8.8.8.8 allow-remoterequests=yes
/ip dns set secondary-dns=8.8.4.4 allow-remoterequests=yes


/ip web-proxy
set enabled=yes src-address=0.0.0.0 port=3128 hostname="computersnewbie.blogspot.com" transparent-proxy=yes parent-proxy=0.0.0.0:0 cache-administrator="computersnewbie@groups.facebook.com" max-object-size=8192KiB cache-drive=system max-cache-size=unlimited max-ram-cache-size=unlimited

/ip firewall nat
add chain=dstnat protocol=tcp dst-port=80 action=redirect to-ports=3128 disabled=no
add chain=dstnat protocol=tcp dst-port=8080 action=redirect to-ports=3128 disabled=no
add chain=dstnat protocol=tcp dst-port=8000 action=redirect to-ports=3128
add chain=scrnat out-interface=public action=masquerade


/ip firewall mangle
add chain=prerouting protocol=icmp action=mark-connection new-connection-mark=icmp-con passthrough=yes comment="" disabled=no
add chain=prerouting protocol=icmp connection-mark=icmp-con action=mark-packet new-packet-mark=icmp-pkt passthrough=no comment="" disabled=no
add chain=prerouting action=mark-connection new-connection-mark=con-up passthrough=yes comment=""
add chain=prerouting action=mark-packet new-packet-mark=all-pkt connection-mark=con-up passthrough=no comment=""
add chain=output content="X-Cache: HIT" action=mark-connection new-connection-mark=proxy-con passthrough=yes comment="" disabled=no
add chain=output connection-mark=proxy-con action=mark-packet new-packet-mark=proxy-pkt passthrough=no comment="" disabled=no
add chain=forward action=mark-connection new-connection-mark=direct-con passthrough=yes comment="" disabled=no
add chain=forward protocol=tcp connection-mark=direct-con action=mark-packet new-packet-mark=all-pkt passthrough=no comment="" disabled=no
add chain=output protocol=tcp connection-mark=direct-con action=mark-packet new-packet-mark=all-pkt passthrough=no comment="" disabled=no


/queue simple
add name="proxy-HIT" dst-address=0.0.0.0/0 interface=all parent=none packet-marks=proxy-pkt direction=both priority=8 queue=default-small/default-small limit-at=0/0 max-limit=0/0 total-queue=default-small disabled=no
add name="Ping-queue" dst-address=0.0.0.0/0 interface=all parent=none packet-marks=icmp-pkt direction=both priority=2 queue=default-small/default-small limit-at=0/0 max-limit=0/0 total-queue=default-small disabled=no
add name="Parent-queue" dst-address=0.0.0.0/0 interface=all parent=none direction=both priority=8 queue=default-small/default-small limit-at=0/0 max-limit=200000/850000 total-queue=default-small disabled=no

/queue simple
add name="Billing" target-addresses=192.168.0.2 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="1" target-addresses=192.168.0.3 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="2" target-addresses=192.168.0.4 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="3" target-addresses=192.168.0.5 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="4" target-addresses=192.168.0.6 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="5" target-addresses=192.168.0.7 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="6" target-addresses=192.168.0.8 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="7" target-addresses=192.168.0.9 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="8" target-addresses=192.168.0.10 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="9" target-addresses=192.168.0.11 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no
add name="10" target-addresses=192.168.0.12 dst-address=0.0.0.0/0 interface=all parent=Parent-queue packet-marks=all-pkt direction=both priority=3 queue=default-small/default-small limit-at=20000/85000 max-limit=32000/100000 total-queue=default-small disabled=no


ReadmoreMikroTik Bandwidth Management + Web Proxy

All In One Media Converter


Format Factory is a multifunctional media converter.

Provides functions below:

  • All to MP4/3GP/MPG/AVI/WMV/FLV/SWF.
  • All to MP3/WMA/AMR/OGG/AAC/WAV.
  • All to JPG/BMP/PNG/TIF/ICO/GIF/TGA.
  • Rip DVD to video file , Rip Music CD to audio file.
  • MP4 files support iPod/iPhone/PSP/BlackBerry format.
  • Supports RMVB,Watermark, AV Mux.


Format Factory's Feature:

  • support converting all popular video,audio,picture formats to others.
  • Repair damaged video and audio file.
  • Reducing Multimedia file size.
  • Support iphone,ipod multimedia file formats.
  • Picture converting supports Zoom,Rotate/Flip,tags.
  • DVD Ripper.
  • Supports 56 languages
OS requirements: All Windows OS

Download Here
ReadmoreAll In One Media Converter

Handbook 2011

















 Health:
  • Drink plenty of water. 
  •  Eat breakfast like a king, lunch like a prince and dinner like a beggar. (once in a while should be ok)
  • Eat more foods that grow on trees and plants and eat less food that is manufactured in plants.
  • Live with the 3 E's -- Energy, Enthusiasm, and Empathy.
  • Make time to practice meditation, yoga, and prayer.
  • Play more games.
  • Read more books than you did in 2010.
  • Sit in silence for at least 10 minutes each day.
  • Sleep for 7 hours.
  • Take a 10-30 minutes walk every day. And while you walk, smile.
Personality:

  • Don't compare your life to others'. You have no idea what their journey is all about.
  •  Don't have negative thoughts or things you cannot control. Instead invest your energy in the positive present moment.
  • Don't over do. Keep your limits.
  • Don't take yourself so seriously. No one else does.
  • Don't waste your precious energy on gossip.
  • Dream more while you are awake.
  • Envy is a waste of time. You already have all you need.
  • Forget issues of the past. Don't remind your partner with his/her mistakes of the past. That will ruin your present happiness.
  • Life is too short to waste time hating anyone. Don't hate others.
  • Make peace with your past so it won't spoil the present.
  • No one is in charge of your happiness except you.
  • Realize that life is a school and you are here to learn. Problems are simply part of the curriculum that appear and fade away like algebra class but the lessons you learn will last a lifetime.
  • Smile and laugh more.
  • You don't have to win every argument. Agree to disagree..
Society:

  • Call your family often. 
  •  Each day give something good to others.
  • Forgive everyone for everything.
  • Spend time with people over the age of 70 & under the age of 6.
  • Try to make at least three people smile each day.
  • What other people think of you is none of your business.
  • Your job won't take care of you when you are sick. Your friends will. Stay in touch.
Life:

  • Do the right thing!
  •  Get rid of anything that isn't useful, beautiful or joyful.
  • GOD heals everything.
  • However good or bad a situation is, it will change.
  • No matter how you feel, get up, dress up and show up.
  • The best is yet to come.
  • When you awake alive in the morning, thank GOD for it.
  • Your Inner most is always happy. So, be happy.
Last but not the least:
  • Spread this to everyone you care about
NB : take from dian wirasari note on facebook  that just read this article in Ilsa Meidina's note, and I want you all to read it for all the good thing of course d(^_^)b
ReadmoreHandbook 2011

Install Windows 7 From USB

That need to be prepared:
  1. Flashdisk 4GB
  2. DVD installer windows 7
The steps are as follows:


  1. Plug the USB stick into your computer with XP,Vista or Win7 Operating systems.
  2. Open The Command Prompt (right click if u use Win7 and Run as administrator)
  3. Type "diskpart"
  4. Type "list disk"
  5. Type "select disk x" (where x = number of disks)
  6. Type "clean"
  7. Type "create partition primary"
  8. Type "select partition 1"
  9. Type "active"
  10. Type "format quick fs=ntfs"
  11. Type "assign"
  12. Type "exit"
  13. Insert your Windows 7 installer  to DVD Rom
  14. Type "f:" (where 'f' is your DVD drive)
  15. Type "cd\boot"
  16. Type "bootsect /nt60 g:" (where 'g' is your USB Tumbdrive)
  17. Type "cd.."
  18. Type "xcopy f:*.* /s/e/f g:"
  19. Thats it...considerate done..!!!
ReadmoreInstall Windows 7 From USB

Install XP From USB

 How to start-
1. First make sure you have a properly formatted USB disk or flash media.
It must have a MBR and an active partition set.

a) USB flash media- format it with RMPrepUSB selecting "Boot as HDD" and "XP bootable" options.
Note that it will DELETE all partitions. NTFS is reported faster on some systems, your USB stick parameters are also factor. Whereas NTFS generally is not recommended for USB flash media, if you are not planning excessive usage, but rather occasional installs from it, then it should be safe to use it as long as you can boot from it.There is another way to format USB flash media- to use filter driver, such as Hitachi microdrive filter driver or dummydisk.sys (included, look in FILES\MULTIpartitionUSBstick folder). Using such driver will 'make' your stick to appear to Windows as fixed disk. In this case, when formatting Windows will write MBR on in with partition information.
You may now use Disk management console, or third party programs to make multiple partitions and format them as you desire.NTFS performs way faster on some systems, or with some USB sticks. However, keep in mind that depending on usage and USB stick quality, it may "wear it out" quicker.

!!!Make sure you set an active partition, either from Disk management, or from your favourite external program if you don't have such!!!
!!!Use primary partitions when placing Windows based sources!!!
!!!Usew first partition when copying Windows XP/2003/2000 Setup!!!

b) USB hard disk- format it from within Windows and make sure you set active partition!!!
In both cases USB boot is not guaranteed! That depends on your BIOS/motherboard, how disk is formatted and what file system etc.In general FAT16 is the best bet for compatibility, next is FAT32, then NTFS. In some cases different format tools may set improper geometry.


2. Select your sources
a) Windows- select the folder, which contains I386/AMD64 folders. Do NOT select folder I386 itself!
!!!If you used Nlite to slim it down, option "Operating System Options-->Manual Install and Upgrade for removal" must NOT be selected. This is crucial part.!!!

Optionally:
b) BartPE/WinBuilder/UBCD4Win/WinFLPC- select the folder, which contains I386 folder.
!!!In case of WinFLPC keep in mind that BOOT.INI on target disk wll be set incorrectly!!! In order to start it for a first time, either edit in BOOT.INI disk(z) to disk(z-1) from BartPE for example, or add this to menu.lst on the active partition of the USB disk
####
title Start WinFLPC
map (hd1) (hd0)
map --hook
rootnoverify (hd0,0)
chainloader /ntldr
###
Above example assumes WinFLPC is on first partition of your first internal disk. Ammend accordingly.
Once in WinFLPC, edit BOOT.INI on the internal disk as was mentioned above:
multi(0)disk(0)rdisk(1)partition(1)\WINDOWS="Microsoft Windows FPLC" /FASTDETECT  to
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows FPLC" /FASTDETECT

c) Vista / Windows 7 setup- select the folder with BOOT and SOURCES folders.
d) PartedMagic- where ISO file pmagic-3.X.iso is. You need to extract pmagic-grub4dos-3.X.iso.zip somewhere and point to its location.
To get PartedMagic: http://partedmagic.com/
 
e) SysLinux- select your Linux distro, which boots off SysLinux. All files/folders will be copied. A file(syslin.dat), containing Syslinux bootsector will be made, and an entry in the boot menu (menu.lst), pointing to that file will be made. In case you do not select anything only syslin.dat and ldlinux.sys will be copied, plus entry in menu.lst.
!!! Make sure you have not already added another source, which contains the same folders in root as the ones from Vista, UBCD4Win etc. The program will NOT overwrite files/folders.!!!
!!! SysLinux cannot be started from NTFS formatted partition !!!
3. Select target disk from the drop-down menu. Windows Setup can be started only from the first partition on the disk! It does not have to be active. Sorry, this is limitation from Microsoft- in case of removable USB disk, it can't read any partition than first.
If your USB disk is not shown then:
a) It's not inserted
b) It does NOT have an active partition
c) It's NOT formatted in FAT16,FAT32 or NTFS
d) The program has a bug :) Please report details.

Optional settings:
4. Force target disk type(FIXED/REMOVABLE)- usually the program will detect that for you. Force selection only if you are using filter driver as above mentioned dummydisk.sys or Hitachi microdrive filter driver. Or if for some reason the program did not detect it correctly. This is an important part when installing Windows XP/2kX from USB hard disks, or USB flash media, which is seen by Windows as FIXED.

5. Copy Setup boot files only- this option will copy just a minimal set of files (7-12MB), necessary for the first part(Text mode) of the setup.
Use to test how your USB disk boots, before copying the main part.
!!!DO NOT continue setup, you have to stop when you see the list of hard disks detected!!!

6. Test in QEMU- this will launch QEMU virtual machine, which will use your USB disk as it's internal disk. You may use that as a basic test how the build went.
Note that this not guarantees you the same result on real hardware.
!!! Currently it's setup to use 256MB RAM when started. Make sure you have at least that amount + some extra RAM available!!!
!!!USE AT OWN RISK. DO NOT PERFORM WRITE OPERATIONS WHILE IN QEMU!!!

7. BOOT.INI adjustments
a) First field is the directory name, where Windows will be installed to.
b) Disk Nr.- on which of your disks Windows will be installed to. For example if you have two internal disks, first is disk 0, second is disk 1.
c) Partition number- in which partition of the above selected disk Windows will be installed to.
d) Additional entries in BOOT.INI- as above, but creates additional lines in BOOT.INI with the specified data. Use it if you plan to install Windows to disks/partition/directories other than the ones above.

This data will be used to create BOOT.INI on the USB disk, with the correct settings. It will be used to start the second part (GUI mode) of setup, AND to start Windows for first time, still using the USB disk as boot device.

!!!Make sure the above entries are correct, otherwise you will get error messages like "HAL.DLL/NTOSKRNL.EXE was not found"
I need to stress on that- make sure BOOT.INI data is correct, and DO NOT UNPLUG the USB disk until you enter first normal Windows desktop.

8) Press GO button, you have guessed that :)

You have 2 steps, in both USB stick is your boot device (change that preferably in BIOS):
-Text mode part of setup
-GUI mode part of setup

!!!If your source is NOT Windows XP2 SP2 or SP3, some of the compressed files in ~LS folder will be deleted during the first part(Text mode). To make another install from this disk you have to copy the missing files, use the program for this purpose and follow the prompts when it finds existing setup folders.!!!

and make sure you have a driver for your mass storage (SATA/AHCI/SCSI/RAID) controller in your source.

Download  >>> Here

ReadmoreInstall XP From USB