Friday, 17 November 2017

REMOTE MIKROTIK JARAK JAUH

Ini adalah script untuk remote mikrotik

# No-IP automatic Dynamic DNS update

#--------------- Change Values in this section to match your setup ------------------

# No-IP User account info
:local noipuser "#"
:local noippass "#"

# Set the hostname or label of network to be updated.
# Hostnames with spaces are unsupported. Replace the value in the quotations below with your host names.
# To specify multiple hosts, separate them with commas.
:local noiphost "#"

# Change to the name of interface that gets the dynamic IP address
:local inetinterface "#"

#------------------------------------------------------------------------------------
# No more changes need

:global previousIP

:if ([/interface get $inetinterface value-name=running]) do={
# Get the current IP on the interface
   :local currentIP [/ip address get [find interface="$inetinterface" disable=no] address]

# Strip the net mask off the IP address
   :for i from=( [:len $currentIP] - 1) to=0 do={
       :if ( [:pick $currentIP $i] = "/") do={
           :set currentIP [:pick $currentIP 0 $i]
       }
   }

   :if ($currentIP != $previousIP) do={
       :log info "No-IP: Current IP $currentIP is not equal to previous IP, update needed"
       :set previousIP $currentIP

# The update URL. Note the "\3F" is hex for question mark (?). Required since ? is a special character in commands.
       :local url "http://dynupdate.no-ip.com/nic/update\3Fmyip=$currentIP"
       :local noiphostarray
       :set noiphostarray [:toarray $noiphost]
       :foreach host in=$noiphostarray do={
           :log info "No-IP: Sending update for $host"
           /tool fetch url=($url . "&hostname=$host") user=$noipuser password=$noippass mode=http dst-path=("no-ip_ddns_update-" . $host . ".txt")
           :log info "mikrotikremote.zapto.org"
       }
   }  else={
       :log info "No-IP: Previous IP $previousIP is equal to current IP, no update needed"
   }
} else={
   :log info "No-IP: $inetinterface is not currently running, so therefore will not update."
}

Dan Untuk scedulenya


Thursday, 16 November 2017

TRIK UEFI GPT UNTUK INSTAL WINDOWS


SHIFT+F10

diskpart
select disk 0
clean
convert mbr
exit


  1. Masuk ke Command Prompt dengan mengetikkan: CMD pada Run Menu atau kotak Search Program and Files.
  2. Ketik Diskpart, kemudian Enter
  3. Akan muncul jendela Microsoft Diskpart, kemudian ketik List Disk untuk melihat Disk drive yang terinstal pada komputer kita, kemudian tekan Enter
  4. Pilih disk yang menunjukkan USB Flashdisk kita (untuk memudahkan llihat aja ukurannya) dengan cara ketik misalnya: Select Disk 1
  5. Kemudian hapus partisi dengan cara ketik: Clean, setelah succsess kemudian buat partisi baru dengan mengetik: Create Partition Primary
  6. Pilih partisi tersebut  dengan mengetik: Select Partition 1
  7. Baru kemudian USB Flashdisk di format dengan system file FAT 32 caranya ketik: format fs=fat32
  8. Setelah selesai ketik: Assign untuk menambahkan drive letter (mounting) pada USB tersebut.
  9. Setelah selesai, baru kemudian ketik Exit

Jika sudah benar, lakukan format flashdisk dengan mengetikkan command CLEAN
Lalu lanjut menyelesaikan proses format dengan command CREATE PARTITION PRIMARY
Lanjutkan dengan command FORMAT FS=FAT32 LABEL=“FLASHDISK” QUICK atau FORMAT FS=FAT32 LABEL=“FLASHDISK” QUICK sesuai dengan filesystem apa yang kamu inginkan, FAT32 atau NTFS. Saya sendiri lebih suka menggunakan FAT32.