August 15, 2008

masalah share di windows

permasalahan dalam sharing data mungkin saja terjadi karena disebabkan oleh bebrapa hal, berikut pengetahuan saya yang saya alami dalam keseharian.

windows XP dan windows VISTA

  1. Sharing tidak jalan karena 2 komputer yang trhubung belum diberi alamat (IP)
  2. Windows firewall aktif sehingga akan menutup port yang digunakan untuk sharing
  3. untuk windows vista firewallNya lebih lengkap ( IPv6 connection filtering, outbond packet filtering, IPsec ) nah itu di cek.
  4. windows defendernya full protected
  5. komputer terserang virus ( worm, spyware dll)
  6. Networknya dalam artian membangunnya

mungkin petunjuk diatas kurang memuaskan ya, saya minta maaf. postingan ini nanti saya akn update lagi tunggu saja, karena ni saya masih sibuk banget.

salam kemerdkaan

August 15, 2008

share file in windows

to the point.

biasanya kalau kita sharing file di windows sangat mudah syarat utamanya :

  1. komputer tidak stand alone alias minimal 2 komputer terserah deh mau ptp maupun local area network
  2. komputer sudah ada windowsnya jangan pake linux ya ni kan share file di windows :d
  3. didalam komputer sudah ada file atau printer
  4. kalau sudah semua siap langkah selanjutnya
  5. pilih file yang akan dishare file
  6. klik kanan di file yang diinginkan pilih sharing and security
  7. dibagian propertisnya >> pilih sharing >>
  8. jika muncul komentar “if you understand the risk but still want to share the root of the drive ” itu di klik aja… :-/
  9. muncul pilihan local sharing and security atau network sharing and security
  10. pilih network sharing aja
  11. disitu muncul pilihan chek list.
  • share this folder on the network ( client hanya bisa lihat,membuka tetapi tidak dapat merubah file tsbt)
  • alow network to change my folder ( berarti client bisa melakukan apa saja terhadap file tsbt)

kalo sudah sampai disini di cheklist aja pilihan diatas terus tekan OK. tapi terserah anda. kalau sudah maka berhasi sharingnya kalo itu semua sudah dilakukan

August 1, 2008

Setting Mikrotik Wireless Bridge

Sering kali, kita ingin menggunakan Mikrotik Wireless untuk solusi point to point dengan mode jaringan bridge (bukan routing). Namun, Mikrotik RouterOS sendiri didesain bekerja dengan sangat baik pada mode routing. Kita perlu melakukan beberapa hal supaya link wireless kita bisa bekerja untuk mode bridge.

Mode bridge memungkinkan network yang satu tergabung dengan network di sisi satunya secara transparan, tanpa perlu melalui routing, sehingga mesin yang ada di network yang satu bisa memiliki IP Address yang berada dalam 1 subnet yang sama dengan sisi lainnya.

Namun, jika jaringan wireless kita sudah cukup besar, mode bridge ini akan membuat traffic wireless meningkat, mengingat akan ada banyak traffic broadcast dari network yang satu ke network lainnya. Untuk jaringan yang sudah cukup besar, saya menyarankan penggunaan mode routing.

Berikut ini adalah diagram network yang akan kita set.

Keep reading →

August 1, 2008

Hotspot Gateway

Summary

The MikroTik HotSpot Gateway enables providing of public network access for clients using wireless or wired network connections.

HotSpot Gateway features:

  • authentication of clients using local client database, or RADIUS server
  • accounting using local database, or RADIUS server
  • Walled-garden system (accessing some web pages without authorization)

Quick Setup Guide

The most noticeable difference in user experience setting up HotSpot system in version 2.9 from the previous RouterOS versions is that it has become in order of magnitude easier to set up a correctly working HotSpot system.

Given a router with two interfaces: Local (where HotSpot clients are connected to) and Public, which is connected to the Internet. To set up HotSpot on the Local interface:

  1. first, a valid IP config is required on both interfaces. This can be done with /setup command. In this example we will assume the configuration with DHCP server on the Local interface
  2. valid DNS configuration must be set up in the /ip dns submenu
  3. To put HotSpot on the Local interface, using the same IP address pool as DHCP server uses for that interface: /ip hotspot add interface=local address-pool=dhcp-pool-1
  4. and finally, add at least one HotSpot user: /ip hotspot user add name=admin

These simple steps should be sufficient to enable HotSpot system

Please find many HotSpot How-to’s, which will answer most of your questions about configuring a HotSpot gateway, at the end of this manual. It is still recommended that you read and understand all the Description section below before deploying a HotSpot system.

If this does not work:

  • check that /ip dns contains valid DNS servers, try to /ping www.mikrotik.com to see, that DNS resolving works
  • make sure that connection tracking is enabled: /ip firewall connection tracking set enabled=yes

Keep reading →