Mikrotik | Forum Mikrotik Indonesia   Mikrotik Manual Mikrotik iSPY Mikrotik RSS Feed
This Logo is a Courtesy from RumahDowty

Go Back   Mikrotik | Forum Mikrotik Indonesia > Diskusi Mikrotik RouterOS > General Networking
iSpy My iTrade Register FAQ Members List Calendar Mark Forums Read

Diskusi [ASK] Penggunaan Queue Tree dan Web-Proxy Interna Dgn Koneksi IIX dan INTL Terpisah pada General Networking | Mikrotik | Forum Mikrotik Indonesia : hai all... mau tanya nih sudah adakah yang mengimplementasikan Queue Tree dan Web-Proxy Internal ...


Official Board Announcements
NEW
Kunjungi Forum Diskusi PROXY Linux di FMI
donasi



 
Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 25-03-2008, 16:37
DeViLnoAnGeL DeViLnoAnGeL is offline
Baru Gabung
 
Join Date: Nov 2007
Posts: 10
iTrader: (0)
Thanks: 0
Gain Thank You 10 Times in 1 Post
DeViLnoAnGeL is on a distinguished road
[ASK] Penggunaan Queue Tree dan Web-Proxy Interna Dgn Koneksi IIX dan INTL Terpisah




hai all...

mau tanya nih sudah adakah yang mengimplementasikan Queue Tree dan Web-Proxy Internal dengan koneksi IIX dan INTL terpisah ?

belakangan ini saya lagi melakukan penelitian tentang hal tersebut...dan yang saya dapatin adalah queue tree nya menjadi berantakan, berantakan disini dalam arti adanya traffic yang tidak jalan di queue tree.

saya sudah lihat ke bagian mangle nya memang tidak ada traffic yang mengalir.

jadi yang saya alami adalah :
1. IIX pada queue tree berhasil
2. cache hits dari web-proxy internal untuk situs IIX berhasil
3. INTL pada queue tree gagal (tidak ada traffic mengalir)
4. cache hits dari web-proxy internal untuk situs INTL berhasil

nah yg bermasalah itu jadinya ga bisa ngelimitin bandwith international

mungkin disini ada yg bisa bantu gimana setingan yang benernya biar koneksi IIX dan INTL bisa ke queue dan cache hits ke situs IIX dan INTL juga berjalan.

apabila ada yang membutuhkan konfigurasi nya tolong disebut aja nanti saya tambahkan.

Thanks.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 27-03-2008, 01:04
ponywaterhouse ponywaterhouse is offline
Forum Guru
 
Join Date: Jul 2007
Posts: 1,489
iTrader: (0)
Thanks: 62
Thanked 164 Times in 132 Posts
ponywaterhouse has a spectacular aura aboutponywaterhouse has a spectacular aura aboutponywaterhouse has a spectacular aura aboutponywaterhouse has a spectacular aura aboutponywaterhouse has a spectacular aura aboutponywaterhouse has a spectacular aura aboutponywaterhouse has a spectacular aura about
pengalaman dengan web proxy internal susah buat misahin nya..
karena output dari web-proxy internal nya, pake IP nya mikrotik.. jadi gak bisa misahin apakah itu iix ato bukan..

pake proxy external aja klo ngga..

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 29-03-2008, 19:24
sherayusuf's Avatar
sherayusuf sherayusuf is offline
Member
 
Join Date: Sep 2007
Location: bekasi-jakarta bolak balik
Posts: 189
iTrader: (0)
Thanks: 16
Thanked 24 Times in 12 Posts
sherayusuf is on a distinguished roadsherayusuf is on a distinguished road
Send a message via Yahoo to sherayusuf
internal proxy pake queue simple aja lebih mudah

Code:
/ queue simple 
add name="client-IIX" target-addresses=192.168.0.12/32 dst-address=0.0.0.0/0 \
    interface=all parent=none packet-marks=paket-iix 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="client_INTL" target-addresses=192.168.0.12/32 \
    dst-address=0.0.0.0/0 interface=all parent=none packet-marks=paket-intl \
    direction=both priority=8 queue=default-small/default-small limit-at=0/0 \
    max-limit=0/0 total-queue=default-small disabled=no
nat
Code:
/ ip firewall nat 
add chain=srcnat out-interface=Public action=masquerade comment="" disabled=no 
add chain=dstnat in-interface=Lan protocol=tcp dst-port=80 action=redirect \
    to-ports=8080 comment="" disabled=no 
add chain=dstnat src-address=192.168.0.0/27 protocol=tcp dst-port=80 \
    action=redirect to-ports=8080 comment="" disabled=yes
Code:
[sherayusuf@BiMaNeT] > ip web-proxy print 
                 enabled: yes
             src-address: 0.0.0.0
                    port: 8080
                hostname: "proxyku.com"
       transparent-proxy: yes
            parent-proxy: 0.0.0.0:0
     cache-administrator: "yusuf_sexerchivest@yahoo.com"
         max-object-size: 4096KiB
             cache-drive: system
          max-cache-size: unlimited
      max-ram-cache-size: unlimited
                  status: running
      reserved-for-cache: 9124864KiB
  reserved-for-ram-cache: 2048KiB
mangle
Code:
/ ip firewall mangle 
add chain=prerouting in-interface=Lan dst-address-list=OpenIXP \
    action=mark-connection new-connection-mark=con-iix passthrough=yes \
    comment="Mark Packet ke Queue" disabled=no 
add chain=prerouting connection-mark=con-iix action=mark-packet \
    new-packet-mark=paket-iix passthrough=no comment="" disabled=no 
add chain=prerouting action=mark-packet new-packet-mark=paket-intl \
    passthrough=no comment="" disabled=no 
add chain=output connection-mark=con-iix action=mark-packet \
    new-packet-mark=paket-iix passthrough=no comment="" disabled=no 
add chain=output action=mark-packet new-packet-mark=paket-intl passthrough=no \
    comment="" disabled=no

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 30-03-2008, 12:10
masemen's Avatar
masemen masemen is online now
Newbie
 
Join Date: Jul 2007
Location: kota brem
Posts: 68
iTrader: (0)
Thanks: 8
Thanked 5 Times in 4 Posts
masemen is on a distinguished road
Send a message via Yahoo to masemen Send a message via Skype™ to masemen
sampean wis coba om ?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 30-03-2008, 12:16
sherayusuf's Avatar
sherayusuf sherayusuf is offline
Member
 
Join Date: Sep 2007
Location: bekasi-jakarta bolak balik
Posts: 189
iTrader: (0)
Thanks: 16
Thanked 24 Times in 12 Posts
sherayusuf is on a distinguished roadsherayusuf is on a distinguished road
Send a message via Yahoo to sherayusuf
@atas
itu mah hasil export dari MT ku
yg pastinya saat ini berjalan


Last edited by sherayusuf : 30-03-2008 at 12:17. Reason: forget
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 13-10-2009, 23:46
drhenk18 drhenk18 is offline
Calon Member
 
Join Date: Mar 2008
Posts: 89
iTrader: (0)
Thanks: 5
Thanked 12 Times in 8 Posts
drhenk18 is on a distinguished road
Quote:
Originally Posted by sherayusuf View Post
@atas
itu mah hasil export dari MT ku
yg pastinya saat ini berjalan
cache nya kena limit gak tuch gan, setauku settingan kek gitu keknya kena limit dech

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 14-10-2009, 00:47
dondon's Avatar
dondon dondon is offline
Newbie
 
Join Date: Apr 2009
Posts: 50
iTrader: (0)
Thanks: 6
Thanked 8 Times in 6 Posts
dondon is on a distinguished road
Quote:
Originally Posted by drhenk18 View Post
cache nya kena limit gak tuch gan, setauku settingan kek gitu keknya kena limit dech

waduh bukannya kasih jawaban malah ikutan nanya nih
emg klo boleh tau rule mana yg menyebabkan limitnya yah ??

bukannya dari setingan web proxynya udah di set unlimited cachenya

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 16-10-2009, 01:40
drhenk18 drhenk18 is offline
Calon Member
 
Join Date: Mar 2008
Posts: 89
iTrader: (0)
Thanks: 5
Thanked 12 Times in 8 Posts
drhenk18 is on a distinguished road
Quote:
Originally Posted by dondon View Post
waduh bukannya kasih jawaban malah ikutan nanya nih
emg klo boleh tau rule mana yg menyebabkan limitnya yah ??

bukannya dari setingan web proxynya udah di set unlimited cachenya
maksudnya kena limit kek thread yang ini lo bro

http://www.forummikrotik.com/qos-and...mit-queue.html

jadi kalo kita ngambil cache dr web proxy kalo makek settingan diatas masih kena limit queuenya, keknya seperti itu, sorry oot masih nubie neeh gw takut salah

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 17-10-2009, 11:22
r52n r52n is offline
Newbie
 
Join Date: Sep 2009
Posts: 23
iTrader: (0)
Thanks: 0
Thanked 6 Times in 5 Posts
r52n is on a distinguished road
setahu saya, petunjuk pada materi ini bisa melakukan hal tersebut :

1. dual gateway ... satu ke internasional dan satu ke iix menggunakan address-list NICE
2. menggunakan proxy di localhost router
3. membedakan trafik yang hit dan miss

cuma, petunjuk di presentasi ini menggunakan simple queue, dan saya yakin, tidak jauh beda perubahannya dari simple queue ke queue tree.

Mikrotik Workshop IP Flow Routing, Mangle and QoS by Valens Riyadi

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to r52n For This Useful Post:
  #10 (permalink)  
Old 17-10-2009, 11:24
r52n r52n is offline
Newbie
 
Join Date: Sep 2009
Posts: 23
iTrader: (0)
Thanks: 0
Thanked 6 Times in 5 Posts
r52n is on a distinguished road
Quote:
Originally Posted by ponywaterhouse View Post
pengalaman dengan web proxy internal susah buat misahin nya..
karena output dari web-proxy internal nya, pake IP nya mikrotik.. jadi gak bisa misahin apakah itu iix ato bukan..

pake proxy external aja klo ngga..
enggak juga lah.... hal tersebut mungkin untuk dibuat kok....
buktinya materi di atas saya coba sukses untuk melakukan hal tersebut kok...
mungkin kita aja yang belum ngerti mengenai packet flow yang ada di Mikrotik.... (saya juga enggakkkk..... kebanyakan copy paste dan kemudian sudah bangga... padahal gak ngerti)

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 17-10-2009, 12:51
arya_manokwari's Avatar
arya_manokwari arya_manokwari is offline
Newbie
 
Join Date: Oct 2009
Location: Papua Barat
Posts: 35
iTrader: (0)
Thanks: 2
Thanked 0 Times in 0 Posts
arya_manokwari is on a distinguished road
Quote:
Originally Posted by DeViLnoAnGeL View Post
hai all...

mau tanya nih sudah adakah yang mengimplementasikan Queue Tree dan Web-Proxy Internal dengan koneksi IIX dan INTL terpisah ?

belakangan ini saya lagi melakukan penelitian tentang hal tersebut...dan yang saya dapatin adalah queue tree nya menjadi berantakan, berantakan disini dalam arti adanya traffic yang tidak jalan di queue tree.

saya sudah lihat ke bagian mangle nya memang tidak ada traffic yang mengalir.

jadi yang saya alami adalah :
1. IIX pada queue tree berhasil
2. cache hits dari web-proxy internal untuk situs IIX berhasil
3. INTL pada queue tree gagal (tidak ada traffic mengalir)
4. cache hits dari web-proxy internal untuk situs INTL berhasil

nah yg bermasalah itu jadinya ga bisa ngelimitin bandwith international

mungkin disini ada yg bisa bantu gimana setingan yang benernya biar koneksi IIX dan INTL bisa ke queue dan cache hits ke situs IIX dan INTL juga berjalan.

apabila ada yang membutuhkan konfigurasi nya tolong disebut aja nanti saya tambahkan.

Thanks.
cuma mau share aja ..
2 ;;; iix + inter
chain=prerouting dst-address-list=nice action=mark-connection
new-connection-mark=con-iix passthrough=yes

3 chain=prerouting connection-mark=con-iix action=mark-packet
new-packet-mark=pack-iix passthrough=no

4 chain=prerouting action=mark-packet new-packet-mark=pack-inter
passthrough=no

5 ;;; proxy
chain=output connection-mark=con-iix action=mark-packet
new-packet-mark=pack-iix passthrough=no

6 chain=output action=mark-packet new-packet-mark=pack-inter passthrough=no

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
queue tree or queue simple c0nf General Networking 94 21-05-2010 03:36
gimana Proxy jalan di queue tree rj-45 General Networking 18 12-12-2009 12:18
HOTSPOT+mangle+pcq+queue tree sartugiono General Networking 11 19-03-2008 09:37
tolong di jelaskan ( ttg simple queue kok jd spt queue tree?) xxx123 Beginner Basics 3 29-09-2007 16:25
[ask] Beda Simple Queue deengan Queue Tree tobi_cjr General Networking 1 09-08-2007 16:37


This Forum is Powered by Orion Net.

All times are GMT +8. The time now is 06:38.