Bagi yang ingin konfigurasi mikrotik untuk kepentingan Warnet Game Online, berikut link IP list. http://www.4shared.com/get/L0Bm4to5/gameip.html;jsessionid=625043843F0B3BDAB3B7BBF29B20696D.dc285
Ethernet over IP (EoIP) Tunnel Interface
Document revision 1.2 (30-May-2003)
This document applies to the MikroTik RouterOS V2.7
• Possibility to bridge LANs over the Internet
• Possibility to bridge LANs over encrypted tunnels
• Possibility to bridge LANs over 802.11b 'ad-hoc' wireless networks
Specifications
Packages required : None
License required : Basic (DEMO license is limited to 4 tunnels)
Home menu level : /interface eoip
Standards and Technologies : GRE (RFC1701)
Hardware usage: not significant
Related Documents
Software Package Installation and Upgrading
IP Addresses and Address Resolution Protocol (ARP)
Bridge Interfaces
PPTP (Point to Point Tunnel Protocol) Interface
Description
An EoIP interface should be configured on two routers that have the possibility for an IP level connection. The EoIP tunnel may run over an IPIP tunnel, a PPTP 128bit encrypted tunnel, a PPPoE connection, or any connection that transports IP.
Specific Properties:
• Each EoIP tunnel interface can connect with one remote router which has a corresponding interface configured with the same 'Tunnel ID'.
• The EoIP interface appears as an Ethernet interface under the interface list.
• This interface supports all features of and Ethernet interface. IP addresses and other tunnels may be run over the interface.
• The EoIP protocol encapsulates Ethernet frames in GRE (IP protocol number 47) packets (just like PPTP) and sends them to the remote side of the EoIP tunnel.
• Maximal count of EoIP tunnels is 65536.
EoIP Setup
Submenu leve : /interface eoip
Property Description
name (name; default: eoip-tunnelN)- interface name for reference
mtu (integer; default: 1500) - Maximum Transmission Unit. The default value provides maximal compatibility
arp (disabled | enabled | proxy-arp | reply-only; default: enabled) - Address Resolution Protocol
tunnel-id (integer; default: 0) - a unique tunnel identifier
remote-address - the IP address of the other side of the EoIP tunnel – must be a MikroTik router
Notes
tunnel-id is method of identifying tunnel. There should not be tunnels with the same tunnel-id on the same router. tunnel-id on both participient routers must be equal.
mtu should be set to 1500 to eliminate packet refragmentation inside the tunnel (that allows transparent bridging of ethernet-like networks, so that it would be possible to transport full-sized ethernet frame over the tunnrl).
Example
To add and enable an EoIP tunnel named to_mt2 to the 10.5.8.1 router, specifying tunnel-id of 1:
[admin@MikroTik] interface eoip> add name=to_mt2 remote-address=10.5.8.1 \
\... tunnel-id 1
[admin@MikroTik] interface eoip> print
Flags: X - disabled, R - running
0 X name="to_mt2" mtu=1500 arp=enabled remote-address=10.5.8.1 tunnel-id=1
[admin@MikroTik] interface eoip> enable 0
[admin@MikroTik] interface eoip> print
Flags: X - disabled, R - running
0 R name="to_mt2" mtu=1500 arp=enabled remote-address=10.5.8.1 tunnel-id=1
[admin@MikroTik] interface eoip>
EoIP Application Example
Let us assume we want to bridge two networks: 'Office LAN' and 'Remote LAN'. The networks are connected to an IP network through the routers [Our_GW] and [Remote]. The IP network can be a private intranet or the Internet. Both routers can communicate with each other through the IP network.
Our goal is to create a secure channel between the routers and bridge both networks through it. The network setup diagram is as follows:
To make a secure Ethernet bridge between two routers you should:
1. Create a PPTP tunnel between them. Our_GW will be the pptp server:
2. [admin@Our_GW] interface pptp-server> /ppp secret add name=joe service=pptp \
3. \... password=top_s3 local-address=10.0.0.1 remote-address=10.0.0.2
4. [admin@Our_GW] interface pptp-server> add name=from_remote user=joe
5. [admin@Our_GW] interface pptp-server> server set enable=yes
6. [admin@Our_GW] interface pptp-server> print
7. Flags: X - disabled, D - dynamic, R - running
8. # NAME USER MTU CLIENT-ADDRESS UPTIME ENC...
9. 0 from_remote joe
10. [admin@Our_GW] interface pptp-server>
The Remote router will be the pptp client:
[admin@Remote] interface pptp-client> add name=pptp user=joe \
\... connect-to=192.168.1.1 password=top_s3 mtu=1500 mru=1500
[admin@Remote] interface pptp-client> enable pptp
[admin@Remote] interface pptp-client> print
Flags: X - disabled, R - running
0 R name="pptp" mtu=1500 mru=1500 connect-to=192.168.1.1 user="joe"
password="top_s2" profile=default add-default-route=no
[admin@Remote] interface pptp-client> monitor pptp
status: "connected"
uptime: 39m46s
encoding: "none"
[admin@Remote] interface pptp-client>
See the PPTP Interface Manual for more details on setting up encrypted channels.
11. Configure the EoIP tunnel by adding the eoip tunnel interfaces at both routers. Use the ip addresses of the pptp tunnel interfaces when specifying the argument values for the EoIP tunnel:
12. [admin@Our_GW] interface eoip> add name="eoip-remote" tunnel-id=0 \
13. \... remote-address=10.0.0.2
14. [admin@Our_GW] interface eoip> enable eoip-remote
15. [admin@Our_GW] interface eoip> print
16. Flags: X - disabled, R - running
17. 0 name=eoip-remote mtu=1500 arp=enabled remote-address=10.0.0.2 tunnel-id=0
18. [admin@Our_GW] interface eoip>
19.
20. [admin@Remote] interface eoip> add name="eoip" tunnel-id=0 \
21. \... remote-address=10.0.0.1
22. [admin@Remote] interface eoip> enable eoip-main
23. [admin@Remote] interface eoip> print
24. Flags: X - disabled, R - running
25. 0 name=eoip mtu=1500 arp=enabled remote-address=10.0.0.1 tunnel-id=0
26.
27. [Remote] interface eoip>
28. Enable bridging between the EoIP and Ethernet interfaces on both routers.
On the Our_GW:
[admin@Our_GW] interface bridge> add forward-protocols=ip,arp,other \
\... disabled=no
[admin@Our_GW] interface bridge> print
Flags: X - disabled, R - running
0 R name="bridge1" mtu=1500 arp=enabled mac-address=00:00:00:00:00:00
forward-protocols=ip,arp,other priority=1
[admin@Our_GW] interface bridge> port print
Flags: X - disabled
# INTERFACE BRIDGE
0 eoip-remote none
1 office-eth none
2 isp none
[admin@Our_GW] interface bridge> port set "0,1" bridge=bridge1
And the same for the Remote:
[admin@Remote] interface bridge> add forward-protocols=ip,arp,other \
\... disabled=no
[admin@Remote] interface bridge> print
Flags: X - disabled, R - running
0 R name="bridge1" mtu=1500 arp=enabled mac-address=00:00:00:00:00:00
forward-protocols=ip,arp,other priority=1
[admin@Remote] interface bridge> port print
Flags: X - disabled
# INTERFACE BRIDGE
0 ether none
1 adsl none
2 eoip-main none
[admin@Remote] interface bridge> port set "0,2" bridge=bridge1
29. Addresses from the same network can be used both in the Office LAN and in the Remote LAN
________________________________________
© Copyright 1999-2003, MikroTik
Label: Internet
Penerimaan CPNS Propinsi Riau dan Kabupaten/Kota 2010
Penerimaan CPNS di lingkungan pemerintah propinsi Riau telah dibuka sejak 22 November. Seluruh kabupaten/kota di Riau juga menerima pendaftaran cpns pada tanggal 22 November, kecuali kota Dumai dan kab. Rokan Hulu. Berikut linknya:
- CPNS Propinsi Riau 2010 bisa didownload di sini;
- CPNS Kab. Rohil 2010 bisa didownload di sini;
- CPNS Kab. Pelalawan 2010 bisa didownload di sini
- CPNS Kab. Siak 2010 bisa didownload di sini;
- CPNS Kab. Kuansing 2010 bisa didownload di sini;
- CPNS Kota Pekanbaru 2010 di sini.
Label: Jendela
VLAN dengan Mikrotik
VLAN atau virtual bisa diterapkan dalam sebuah router mikrotik jika router hanya memiliki minim interface. VLAN interface bisa ditambahkan mengikuti interface yang sudah ada sesuai keinginan kita. Penggunaannya cukup banyak, diantaranya, jika router mikrotik kita menggunakan sistem routing, maka kita bisa membuat router tersebut berfungsi sebagai bridge dengan menambahkan VLAN.
Contoh VLAN di sebuah router mikrotik.
Flags: X - disabled, R - running, S - slave
# NAME MTU ARP VLAN-ID INTERFACE
0 R vlan1-RTV-Kulim 1500 enabled 10 ether11
1 R vlan2 RTV 1500 enabled 9 ether10
2 R vlan3 Dude Server 1500 enabled 2 ether11
3 R vlan4 Pku MX 1500 enabled 1 ether11
Untuk menghubungkan dua perangkat router mikrotik secara bridge yg melewati sebuah router, maka pada router A kita menambahkan VLAN pada interface LAN (menuju router B). Perhatikan VLAN IDnya (isi dengan angka), karena harus sama persis dengan VLAN ID router B.
Router A ====> Router B =====> Router C
Bridging
Kemudian pada router B, kita menambhkan VLAN pada interface WAN (yg dari router A), lalu VLAN ID nya harus sama dengan VLAN ID router A. Setelah selesai, maka diinterface LAN (yng menuju router C), dibuat lagi VLAN, dan masukkan VLAN ID yang berbeda dari VLAN ID sebelumnya. VLAN ID ini harus sama pula nanti dengan VLAN ID pada router C. Sampai disini, pembuatan VLAN di router B selesai.
Kemudian pada router C, kita menambhkan VLAN pada interface WAN (yg dari router B), lalu VLAN ID nya harus sama dengan VLAN ID router B. Jika tahap ini selesai, maka pembuatan VLAN di router D sudah selesai.
Selanjutnya, buatlah Bridge baru pada router B, dengan menambahkan port VLAN 1 dan VLAN 2, yang merupakan VLAN dari masing2 interface yang sudah kita buat di router B tadi. Setelah selesai, coba buka winbox loader dari router mana saja,, maka disana akan keluar MAC Address dari ketiga router, dan sudah bisa dijalankan untuk keperluan bridging.
Label: Internet, Riau MLINK
Imbauan Pemko Pekanbaru buat Pemilik Warnet
Ada imbauan baru dari Pemko Pekanbaru buat para pemilik warnet di kota ini. Apa itu? Imbauan tersebut mengenai jam tutup warnet di wilayah Kota Pekanbaru, yakni pemilik warnet diharuskan menutup usahanya pada jama 10 malam. Hal itu termuat dalam harian Riau Pos edisi 16 Oktober 2010.
Kepala Badan Pelayanan Terpadu (BPT) Kota Pekanbaru, Edi Satria yang dijumpai Riau Pos, Jumat (15/10) mengatakan, sejauh ini pihaknya sudah mengeluarkan imbauan kepada pemilik warnet untuk tidak membuka tempat usahanya melebihi pukul 22.00 WIB.
Sebenarnya apa yang menjadi alasan imbauan ini? Tidak lain adalah kesempatan pengguna warnet yang bisa mengakses konten porno jika warnet tetap membuka di atas jam tersebut. Terkait sanksi yang akan diberikan kepada pihak yang melanggar imbauan tersebut, Edi Satria belum bisa menentukan, karena sejauh ini khusus untuk warnet ini belum ada Perda dan Peraturan Wali Kota yang mengatur tentang itu. Terkecuali masalah izin mendirikan warnet.
Apa lagi imbauan Pemko ini? Tidak kita benarkan memasang sekat tinggi, sehingga tidak terlihat antara dinding satu dengan dinding lainnya. "Larangan lainnya, pemilik warnet kita larang untuk mengakses situs porno dan para pelajar tidak dibenarkan memakai pakaian sekolah saat masuk ke warnet, jika ditemukan maka kita berikan teguran hingga tiga kali, kalau tetap dilanggar maka izinya akan kita cabut,’’ katanya.
Menurut saya, kalau pemko serius menindak warnet nakal, tak perlu membuat aturan tutup seperti itu. Banyak keperluan warga saat ini yang mengakses internet pada jam seperti itu. Ketakutan akan akses situs porno bisa dilakukan dengan memberi aturan/perda tersendiri secara teknis. Seperti mewajibkan pemblokiran situs porno bagi pengelola warnet(dengan software/hardware), usia pengunjung yang dibatasi, dan sidak ke warnet pada jam2 tertentu.
Pembatasan jam buka warnet bisa merugikan pemilik warnet, dan juga membatasi kebebesan akses informasi bagi pengguna warnet. Ada baiknya aturan tersebut dipertimbangkan kembali untuk memberikan ruang bagi internetmania dan gamemania bereksplorasi di malam hari.
Label: Internet
