Caramenstabilkan ping game online di mikrotik. Jaringan fidelity vectorified kesetiaan sinyal. Cara menstabilkan ping game online di mikrotik Itulah postingan mengenai Cara Menstabilkan Ping Game Online di Mikrotik yang telah gue rangkum berasal dari beraneka sumber. Mikrotik - Reduce gaming and streaming lag with a Mikrotik RouterBOARD Do you play online games? Of course you do. Have you experienced lag? Very likely. No matter how fast your internet connection is, if another program or person on your network competes for bandwidth, the packets will be processed at the same priority, resulting in increased latency or worse, packet loss for your game or other interactive applications. Whether you share an internet connection with roommates or operate a gaming house, LAN center, etc, this can quickly become a problem. Thankfully there's a cheap and relatively easy way to solve this in the form of a decent router - the Mikrotik RouterBOARD. Many people are familiar with the trouble consumer grade routers can cause. It's not a surprise that the number one go to troubleshooting technique is a simple reboot - consumer routers are designed to be low price and thus operate on cheap hardware with limited memory which can easily cause problems. From NAT table overflows to DHCP server crashes, your off-the-shelf router probably isn't that great. While some routers claim to offer QoS options to help prioritize traffic, they have very limited functionality and can even reduce performance since the hardware in such routers is not meant for any kind of serious processing. Thankfully there's a good step in between full grade business routers like Cisco real Cisco, not the rebadged Linksys crap and the off-the-shelf consumer routers. Mikrotik is a Latvian based company that produces both hardware RouterBOARDs and software RouterOS that provide a solid platform on which to build a router. The hardware alone is far and away better grade than almost anything you can find in consumer routers - try to find any big box retailer selling a router with 128 MB RAM! The software provides a GUI to a Linux-based routing setup - don't worry, you don't need to know any complicated Linux stuff - RouterOS handles it all for you, while still exposing all of the power and flexibility that Linux offers. This guide is going to focus on setting up and configuring the RB951G-2HnD. This is one of the latest RouterBOARD models with a 600 MHz CPU, integrated high power wireless and five port gigabit ethernet. The RB951G-2HnD will handle up to around 200mbps internet connections without a problem. Note This guide is a work in progress. Step 1 Buy It. As RouterBOARDs are somewhat specialized hardware, you are unlikely to find many physical stores carrying them, so be prepared to order online. Depending on where you live, you have several options. In the US, the RB951G-2HnD is available at one of my favorite distributors I've ordered many times from them with great results. It's also available on Amazon. Outside of the US, I recommend consulting the Mikrotik distributor list to find a local seller. Step 2 Unboxing and connecting You'll receive a small box containing the router, a power adapter and possibly a sticker with your serial number on it. Don't expect any manuals or installation discs etc - remember these are not consumer routers! If you get a sticker, attach it to the bottom of your router for safe keeping. You shouldn't need to worry about the serial number unless you have to do a complete re-imaging of the RouterOS software. Depending on your distributor, the default configurations for the device can vary. Typically the 1st ethernet port will be setup for WAN usage, and ports 2-5 LAN. Connect your internet cable modem, fiber, DSL, etc to port 1 and a PC or laptop to port 2 on the router using an ethernet cable, then plug in the power. The router should take around 15-30 seconds to boot. Now turn on your PC or laptop and it should hopefully acquire an IP address via DHCP from the router. The most common default range is so expect an IP of or similar. You should now be able to navigate to to access "Webbox" - a cut down web interface version of "Winbox", a software program used to configure RouterOS. On the Webbox screen should be a link to download Winbox - click that and you should have a copy of which we will use for the rest of this guide. Note RouterOS runs on top of a full Linux OS. As such, you should avoid abruptly unpowering the router where possible as you run a small risk of causing file system corruption. In both Webbox and Winbox is a system / shutdown option which you can use to initiate a clean shutdown, at which point it is safe to remove power. Step 3 Check for software updates As the router has likely been sitting around in a warehouse for a few months, it's important to update the software to ensure you have the latest security and performance updates. To do this, log in to the router using the you downloaded - enter the IP address username admin and a blank password. Once logged in to winbox, on the left menu choose System / Packages and click "Check for updates". If an update is available, hit "Download and install" and your router will reboot and install the update. Step 4 Configure wireless network Now let's set up your wireless network. On the Wireless menu in winbox, double click on wlan1 to open up the properties for the wireless adapter. From here, go to the "Wireless" tab and hit the "Advanced Mode" button, then set the following options Wireless Protocol Frequency Mode regulatory domain Country Your country Channel Width 20/40 MHz Ce Frequency Pick the least congested frequency - use the "Freq Usage" button as a quick test SSID Name of your wireless network Hit OK, then go to the "Security Profiles" tab of the Wireless dialog. Double click "default" and set the following Mode dynamic keys Authentication Types WPA2 PSK Ciphers aes ccm WPA 2 Pre Shared Key Your wireless password This should leave you with a fully secured wireless network. Step 5 Set up some basic features Go to System / Clock and set your time zone don't worry about the date / time Go to System / SNTP Client and enable it, set primary server secondary Go to System / Password and enter a password to secure the router's admin interface Go to IP / UPNP and hit Enabled. Click the Interfaces box, then click the + to add a new interface. Add ether1 your internet as an external interface. Hit OK, then + again and add bridge-local as your internal interface. This will enable UPNP allowing applications on your network to configure port forwarding automatically if needed. At this point you are pretty much set if all you want is a solid, stable router. The next steps will set up QoS to ensure smooth gaming and streaming. Step 6 Setting up QoS This is where it starts to get a little complicated. Rather than explain everything involving the firewall, connection marking, packet tagging, queues, priorities, etc, I'm going to give you a bunch of commands that you should run. To run these commands, press "New Terminal" in winbox, then copy and paste the following/queue tree add limit-at=9700k max-limit=9700k name=queue1 parent=ether1-gateway queue=default add limit-at=9300k max-limit=9300k name=prio5-streaming packet-mark=streaming parent=queue1 priority=5 queue=default add limit-at=100k max-limit=9500k name=prio8-untagged packet-mark=no-mark parent=queue1 queue=default add limit-at=1G max-limit=1G name=prio3-gaming packet-mark=gaming parent=queue1 priority=3 queue=default add limit-at=1G max-limit=1G name=prio2-misc-fast packet-mark=misc-fast parent=queue1 priority=2 queue=default add limit-at=100k max-limit=9500k name=prio6-http packet-mark=http parent=queue1 priority=6 queue=default /ip firewall mangle add action=mark-packet chain=postrouting connection-mark=streaming new-packet-mark=streaming passthrough=no add action=mark-packet chain=postrouting connection-mark=gaming new-packet-mark=gaming passthrough=no add action=mark-packet chain=postrouting new-packet-mark=misc-fast packet-size=40 passthrough=no protocol=tcp tcp-flags=ack add action=mark-packet chain=postrouting dst-port=53 new-packet-mark=misc-fast out-interface=ether1-gateway passthrough=no protocol=udp add action=mark-packet chain=postrouting connection-mark=http new-packet-mark=http passthrough=no add action=mark-connection chain=postrouting comment=Streaming connection-state=new dst-port=1935 new-connection-mark=streaming out-interface=ether1-gateway protocol=tcp add action=mark-connection chain=postrouting comment=League dst-port=5000-5500 new-connection-mark=gaming out-interface=ether1-gateway protocol=udp add action=mark-connection chain=postrouting comment=SC2 dst-port=1119 new-connection-mark=gaming out-interface=ether1-gateway protocol=udp add action=mark-connection chain=postrouting comment=HotS dst-port=1120,3724 new-connection-mark=gaming out-interface=ether1-gateway protocol=udp add action=mark-connection chain=postrouting comment="BW + HotS" dst-port=6112-6113 new-connection-mark=gaming out-interface=ether1-gateway protocol=udp add action=mark-connection chain=postrouting comment="Valve Games" dst-port=27000-27060 new-connection-mark=gaming out-interface=ether1-gateway protocol=udp add action=mark-connection chain=postrouting comment="Web Browsing" connection-state=new dst-port=80,443 new-connection-mark=http out-interface=ether1-gateway protocol=tcp After doing this, click on Queues / Queue Tree and double click queue1. You'll see the value 9700k - this should be replaced by a little under your upload speed. The copy/paste code was designed for someone with 10mbps upload, so the maximum upload is limited to 9700k. You want to limit it just under your max upload, otherwise there is a risk the upload will be queued on your modem, making all the QoS worthless. After setting your max upload on queue1, double click streaming and do the same, except slightly lower. If streaming affects your gaming, you can set the streaming queue to a little over your maximum stream bitrate so that the stream bandwidth is smoothed out, but try the regular method first. Next up, double click http and no-mark and do the same there - replace 9500k with a number slightly less than the number you used for queue1. This will ensure http and uncategorized traffic won't hog the connection. This will set up basic upload QoS, with supported games being StarCraft 2, Brood War, Valve Source based games CSGO, Dota 2, etc, Heroes of the Storm and League of Legends . Gaming and important small packets such as TCP acks and DNS get the highest priority, ensuring there's no lag even if the upstream is close to max. The next highest priority is outgoing stream data, so if you're streaming it won't get interrupted by other uploads such as video uploads or torrents. fonte carastabilkan ping Wifi, anda bisa meng-install Ping Games Mobile, selanjutnya buka program itu. Untuk mengawali, anda dapat click Start, lalu tutup aplikasinya. Anda diamkan program berjalan pada background. Tukar Jaringan Mobile Seorang gamers yang memakai netbook atau PC tidak mempunyai 2 buah akses internet. Anda seorang pengusaha RT RW net atau seorang gamer yang kesel karena internet buat ngegame ā€œngelagā€ yang disebabkan oleh ping yang turun naik?Saya juga pernah mengalaminya, tapi itu dulu…Disini saya akan berbagi cara mengatasi lag yang disebabkan ping tinggi agar koneksi lebih stablil an upgrade bandwidth, dengan 5Mbps anda bisa adem ayem bermain game tanpa terganggu walau sekeluarga pakai WiFi untuk youtube harus bandwidth gede, 5Mbps pun sudah cukup untuk bermain game dengan ini sudah terbukti, teruji di lapangan dan dipakai banyak orang tapi hanya sedikit orang yang mau tau?Penyebab Lag pada game Perangkat jelek KentangKoneksi / Sinyal JelekKurang Bandwidth / Berebut Koneksi & bad routingPerangkat WiFi JelekCara Mengatasi Lag Pada Game OnlineTidak perlu upgrade SpeedGunakan VPN/TunnelMenerapkan QoSBagaimana Cara Menerapkan QoS?Bantuan Konsultasi GratisPenyebab Lag pada game Untuk bisa mengatasi lag pada game anda harus tau sumber penyebabnya nya agar cara/metode/solusi yang akan anda pakai efektif mengatasi lag di game jelek KentangJika ping nya bagus hijau/dibawah 100ms tapi masih terjadi patah-patah bisadipastikan lag seperti ini disebabkan karena spek HP kk kurang adalah dengan mengganti/upgrade hp ke spek yang lebih / Sinyal JelekLag yang disebabkan oleh sinyal jelek bisa ditandai dengan , ping tinggi dan kecepatan dan kestabilan internet kk artinya bukan hanya akses game yang lambat tapi semua akses ke internet juga untuk masalah ini adalah carilah sinyal yang bagus atau ganti provider yang sinyalnya anda menggunakan internet satelite biasa bukan starlink, bisa dipastikan ping untuk game akan tinggi dan tidak untuk masalah ini adalah dengan mengganti jenis internet satelit yang menggunakan low level orbit seperti starlink belum masuk indo.Kurang Bandwidth / Berebut Koneksi & bad routingKasus ini sering terjadi saat anda menggunakan jaringan wifi bersama, misal di rumah atau di jaringan RT RW dipakai sendiri semua berjalan lancar, dan menjadi kaau ketika anggota keluarga lain menggunakan nya untuk nonton filem atau youtube seperti ini disebabkan karena bandwidth tersedot oleh pengguna yang perlu bandwidth besar misalnya untuk video dan juga lag yang disesbabkan karena bad routing, tandanya untuk akses selain game lancar, download kenceng, browsing gesit tapi pas buat main game ping nya disesbabkan karena routing yang jelek oleh ISP penyebab lag ini ā€œberebut koneksi & bad routingā€ bisa diatasi tanpa perlu upgrade bandwidth/ganti paket internet ke yang lebih cukup menerapkan QoS bandwidht management pengaturan prioritas dan limit bandwidthPerangkat WiFi JelekAda beberapa kasus lag game pada game disebabkan karena penggunaan pemancar wifi kulitas jika dilakukan speedtest hasilnya bagus, untuk memutar video juga saat dipakai untuk bermain game ping nya naik diatas hanyalah tanda pada umumnya, untuk memastikan alat tersebut yang bermasalah atau tidak mampu menangani game, harus dibaca spek Mengatasi Lag Pada Game Onlineuntuk masalah gear/perangkat spek rendahbahasa gaulnya spek kentang solusinya harus ganti, begitu juga dengan koneksi yang disebabkan karena sinyal hanya akan fokus cara mengatasi lag yang disebabkan oleh kurang bandwidth karena berebut koneksi wifi dipake ramai-ramai dan bad routing dari ISP perlu upgrade SpeedGame tidak perlu kecepatan yang tinggi tapi perlu jaringan yang stabil, rata-rata traffic game online dibawah agar koneksi game mu anda hanya perlu menstabilkan koneksi, bukan menambah simpan uang mu untuk keperluan lain, jika teammarketing menawarkan upgrade bandwidth , itu hanya strategi mereka VPN/TunnelUntuk masalah lag yang disebkan oleh bad routing bisa diatasi dengan menggunakan VPN atau tunnel ke server yang punya jalur routing lebih atau tunnel gratis tidak akan bisa mengatasi masalah ini,kenapa??loginakanya jika server vpn/tunnel dibuka untuk umum tentu saja akan banyak sekali yang pakai,akibatnya kerja server menjadi berlebih dan bandwidth server juga ini malah bisa memperparah lag koneksi game anda menggunakan layanan VPN hanya akan mengatasi masalah lag karena bad routing, bukan lag karena wifi dipakai QoSJika anda pengusaha RT RW Net atau pengguna wifi rumahan dimana satu wifi dipakai banyak user,yang terjadi adalah semua orang akan saling berdesakan untuk mendapatkan koneksi tercepat dan koneksi game yang makan bandwidth kecil menjadi kalah dan terjepit, lag pun untuk masalah ini bukanlah upgrade bandwidth, sebesar apapun bandwidth kalau tidak dimanage akan habis adalah dengan menerapkan QoS Quality of service terhadap pengguna wifi adalah tehnik untuk menjamin semua pengguna internet wifi di tempat anda mendapat porsi speed dan prioritas sesuai kebutuhan nya sehingga aktivitasnya tidak mengganggu user begitu anda tidak akan terganggu saat meeting via zoom/video call atau saat bermain Cara Menerapkan QoS?Cara paling mudah dan murah untuk menerapkan QoS dalam skala kecil WiFi rumah anda adalah menggunak alat khusus yang disebut yang saya sarankan adalah mikrotik seri hAP Lite yang harganya cuma 350-an ribu yang sudah punya fitur jika anda pengusaha RT RW Net, agar bisa menerapkan QoS bandwidth management minimal menggunakan mikrotik RB 750GR3 atau hAP AC2Selanjutnya mikrotik perlu disetting oleh tenaga ahli agar berfungsi sebagai QoS management bandwidth wifi .QoS BANDWIDTH RUMAH & KANTORDibawah ini adalah contoh penerapan QoS bandwidth di mikrotik untuk rumahan hAP lite, menggunakan prioritas dan QoS Menagement bandwidth di rumahWalau 5Mbps asal dimanage dengan biak bisa dipakai hingga 10 perangkat tanpa lag dan semua BANDWIDTH RT RW NETDibawah ini adalah contoh penerapan QoS bandwidht management untuk usaha RT RW Net, tidak hanya menggunakan prioritas dan limit tapi juga memisah & merouting traffic game ke jalur ini bersifat dinamis, artinya jika pengguna prioritas penting tidak ada maka alokasi bandwidth nya bisa dipakai orang ke server game, aplikasi , VoIP juga diberi prioritas satu agar tidak lag walau sekelurga sedang Konsultasi GratisFAST RESPOND!!

Menstabilkanping game online mikrotik walau sedang download dan browsing Anda akan memiliki kepala di pasir (bukan awan) untuk lewatkan tren alat kerja yang bergerak online.

Selamatsore, saya Rifai Uciha. Pada pertemuan kita kali ini, saya akan mencoba membahas sebuah script mikrotik yang menggabungkan metode PCQ dengan Simple
Menstabilkan Ping -Setting NAT dan Route-Game Online Bebas Lag-Port Untuk Game Online Paket Setting Mikrotik Load Balance + Hotspot *Feature Setingan Mikrotik -Pisah bandwidth Game Online, Browsing, Streaming dan Download
. 252 307 387 425 178 413 222 259

menstabilkan ping game online mikrotik