Header Ads Widget

Responsive Advertisement

Tutorial Dasar Setting MikroTIk


# Cara mengganti identity di MikroTik
   system identity set name=YYY

   YYY = Mengganti nama "MikroTik" pada [admin@MikroTik] >


# Cara mengganti nama Interface di MikroTik   interface set 0 name=YYY
   0   = Urutan daftar nomer setelah anda ketik interface print
   YYY = Mengganti nama Ether1/Ether2

# Cara memberi Ip Address di MikroTik
   ip address add address=XXX/XX interface=YYY
   XXX/XX = IP Address dan Subnet mask ct: 192.168.1.1/24
   YYY    = Nama Interface ct:Ether1

# Cara memberi Gateway di MikroTik
   ip route add gateway=XXX.XXX.XXX.XXX/XX
   XXX = IP Address ct: 192.168.1.1/24

# Cara mengganti DNS di MikroTik
   ip dns set servers=XXX,XXX
   XXX pertama = Primary DNS
   XXX kedua   = Secondary DNS

# Cara memberi Firewall di MikroTik
   ip firewall nat add chain=srcnat action=masquerade out-interface=YYY
   YYY = Nama Interface ct:Ether1

# Cara memberi Pool di MikroTik
   ip pool add name=YYY ranges=XXX-XXX
   YYY = Memberi nama poolnya ct:dhcp-pool
   XXX = Ip address dari Ether

# Cara memberi DHCP-Server di MikroTik
   ip dhcp-server network add address=XXX/XX gateway=XXX
   XXX/XX = IP Address dan Subnet Mask
   # Cara memblokir Situs di MikroTik
   ip proxy access add dst-host=www.YYY.com action=deny
   ip firewall nat add chain=dstnat action=redirect protocol=tcp dst-port=80 to-port=8080 disable=no
   YYY = alamat situs
   
   Lalu setting proxy anda pada browser anda   

Post a Comment

0 Comments