Community discussions

MikroTik App

Search found 220 matches

by ropeba
Tue Sep 04, 2018 7:12 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

That's I need :) thank you so much nescafe2002!
by ropeba
Tue Sep 04, 2018 4:14 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

It should be done automatically by your app. That is how API works and how it should be used. Maybe we misunderstand. You say that I need to enter ID by login in Mikrotik console manual, enter /ip rou bgp pri and copy ID manual to PHP script, or think that I need to get ID through PHP script? I hop...
by ropeba
Tue Sep 04, 2018 4:09 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

Because you didn't specify ID to remove. 1) run print 2) get ID 3) use ID to remove network Hm, this is not an option in my situation. If i need to enter ID in script, I can remove manual via winbox or telnet, don't need PHP API script. Is there solution to remove all networks with comment "te...
by ropeba
Tue Sep 04, 2018 3:41 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

It does not change in milliseconds (time between two commands) Works as expected: /routing/bgp/network/print ?comment=test =.proplist=.id <<< /routing/bgp/network/print <<< ?comment=test <<< =.proplist=.id <<< >>> !re >>> =.id=*0 >>> >>> !done >>> /routing/bgp/network/remove =.id=*0 <<< /routing/bg...
by ropeba
Tue Sep 04, 2018 3:21 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

You haven't specified any ID to remove. I only want to remove all networks with comment "test", nothing more, ID is not always same so can't define ID. That should be simple with code from below, but it's not working. $API->write('/routing/bgp/network/remove',false); $API->write('?=commen...
by ropeba
Tue Sep 04, 2018 3:06 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

API and terminal is not the same thing There is no such thing as '[find comment=tes"]' or regexp matching in API. Read link provided earlier about API queries. First method does not work, because you do not have bgp network with comment 'test', you have comment that contains test Read possible...
by ropeba
Tue Sep 04, 2018 2:56 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

Maybe a timing issue? Are you sure that the output of $API->read(false); is "!done"? This is probably Mikrotik bug, there is a lot posts about this problem, and each and everyone is without solution. All I can do is try my first idea, to remove BGP network directly via PHP API. Can you pl...
by ropeba
Tue Sep 04, 2018 1:41 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

Hm, it doesn't work for me on ROS 6.42.7 when in script is: /routing bgp network remove [find comment="test"]; or /routing bgp network remove [find comment~"test"]; Only the count number is increased. 3 name="ocisti-bgp-network" owner="admin" policy=ftp,reboot...
by ropeba
Tue Sep 04, 2018 12:11 pm
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

I managed to run the script (or just script counter) with: $API->write('/system/script/run',false); $API->write("=.id=*4"); However, there appears to be a bug in the Mikrotik ROS? When I run script via PHP API, the script is not executed, only the run count number is increased. When I run ...
by ropeba
Tue Sep 04, 2018 11:54 am
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

Now, problem with runing script via PHP API. Script name is ocisti-bgp-network
$API->write( '/system/script/run', false );
$API->write( '=ocisti-bgp-network', false );
What is wrong there?
by ropeba
Tue Sep 04, 2018 11:37 am
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

Ok, i will try to add to router script "routing bgp network remove [find comment~"Fast"]" and run this script via PHP API.
by ropeba
Tue Sep 04, 2018 11:25 am
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Re: Remove BGP network by comment via PHP API

comment~test is not a valid query.

See the manual for valid queries:
https://wiki.mikrotik.com/wiki/Manual:API#Queries
Hi mrz,

I was try with ?comment=test but result is same. Please can you help me with this.
by ropeba
Tue Sep 04, 2018 11:14 am
Forum: Scripting
Topic: Remove BGP network by comment via PHP API
Replies: 22
Views: 4022

Remove BGP network by comment via PHP API

Hello everyone, I'm trying to remove BGP network with comment which contain word "test" via PHP API but without success: Mikrotik command is: /routing bgp network remove [find comment~"test"]; I tried with 2 solution, but still doesn't work: 1. $API->write( '/routing/bgp/network/...
by ropeba
Mon Apr 09, 2018 5:56 pm
Forum: RouterBOARD hardware
Topic: MUM Europe 2018 - New hardware incoming
Replies: 52
Views: 28056

Re: MUM Europe 2018 - New hardware incoming

Sorry to burst your bubble but anybody with so many 10g ports in their datacenter to justify going 40/100g is going to deploy CSS/CRS to use them as edge/access devices or remote site aggregation at best, where QSFP is a nice extra but not mission critical. If you are so bandwidth strapped to cry f...
by ropeba
Sun Apr 08, 2018 6:59 pm
Forum: RouterBOARD hardware
Topic: MUM Europe 2018 - New hardware incoming
Replies: 52
Views: 28056

Re: MUM Europe 2018 - New hardware incoming

Most of these switches are useless for many scenarios, especially for data centres. What's the use of a switch with SFP + ports, if it does not have a uplink? Mikrotik must seriously work on the research and needs of clients. All new switches should have a minimum of 2-4 QSFP ports, otherwise they ...
by ropeba
Fri Apr 06, 2018 6:24 pm
Forum: RouterBOARD hardware
Topic: MUM Europe 2018 - New hardware incoming
Replies: 52
Views: 28056

Re: MUM Europe 2018 - New hardware incoming

Most of these switches are useless for many scenarios, especially for data centres. What's the use of a switch with SFP + ports, if it does not have a uplink? Mikrotik must seriously work on the research and needs of clients. All new switches should have a minimum of 2-4 QSFP ports, otherwise they a...
by ropeba
Thu Sep 15, 2016 4:27 pm
Forum: General
Topic: CCR packet-sniffer streaming stops for unknown reason?
Replies: 7
Views: 2104

Re: CCR packet-sniffer streaming stops for unknown reason?

Hi, I have same problem with packet sniffer, but in my case status of sniffer is running but stream doesn't go. Mangle is not solution for me, because I need only packet headers, with mangle this is not possible.
by ropeba
Sun May 15, 2016 4:27 am
Forum: Forwarding Protocols
Topic: BGP route to addresslist or exclude from routing mark
Replies: 3
Views: 2165

Re: BGP route to addresslist or exclude from routing mark

I have two ISP. For example: I'm split upload via mangle/mark routing to both ISP. 192.168.0.0/24 to ISP1 192.168.1.0/24 to ISP2. I want to exclude BGP routes from mangle. If I get BGP route 10.10.10.0/24 from ISP1, I want that all packets with destination 10.10.10.0/24 goes via ISP1, because, this ...
by ropeba
Wed May 11, 2016 2:15 am
Forum: Forwarding Protocols
Topic: BGP route to addresslist or exclude from routing mark
Replies: 3
Views: 2165

BGP route to addresslist or exclude from routing mark

Hi everyone,

is there solution for add BGP routes to address list or exclude BGP routes from routing mark?

Thanks...
by ropeba
Mon Feb 02, 2015 3:23 pm
Forum: Wireless Networking
Topic: slow troughput over AC link with one TCP connection
Replies: 2
Views: 1762

Re: slow troughput over AC link with one TCP connection

I figure that I have this problem only with nv2. With nstream TCP test with one connection is about 100 Mbps, but, capacity on link with nstream is 140 Mbps, with nv2 350 Mbps.
by ropeba
Sun Feb 01, 2015 11:34 pm
Forum: Wireless Networking
Topic: slow troughput over AC link with one TCP connection
Replies: 2
Views: 1762

slow troughput over AC link with one TCP connection

Today i make wireless link with AC. 7 km link with JRC DUPLEX antenna . Last cerrsion of ROS. TX: 650Mbps-80MHz/2S/SGI RX: 585Mbps-80MHz/2S/SGI I make speedtest and with TCP and one connection i get only 6-8 Mbps. I done test from CCR to CCR. CCR > AP-RB912/AC mpci-e > CLIENT-RB912/AC mpci-e > CCR A...
by ropeba
Tue Sep 30, 2014 4:55 pm
Forum: RouterBOARD hardware
Topic: New product CRS 109
Replies: 48
Views: 19252

Re: New product CRS 109

Ok, when we can expect RouterBoard with 24 ports? :) Or RB2011 with powerful cpu? Mikrotik does not have optimal router for FTTB installation!
by ropeba
Tue Sep 30, 2014 12:14 pm
Forum: RouterBOARD hardware
Topic: New product CRS 109
Replies: 48
Views: 19252

Re: New product CRS 109

When we can expect CRS with better CPU?
by ropeba
Wed Sep 03, 2014 1:07 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

if you router have only 1 subscirber - you can use fast-leave, on other cases you have to set it to no.
Sorry Janisk, but that is bug. Only mikrotik stop group to all ports when receive fast leave message on one port.
by ropeba
Wed Sep 03, 2014 1:04 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

this is how it works on Siemens S223. Or you where interested in how this works in RouterOS? Check how it works with all manufacturers around the world (excluding mikrotik). Check what is the standard! Juniper: http://www.juniper.net/documentation/en_US/junos12.3/topics/reference/configuration-stat...
by ropeba
Tue Sep 02, 2014 3:26 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

http://www.manualslib.com/manual/152590/Siemens-S223.html?page=287 IGMP v2 Fast Leave In IGMP version 2, you can minimize the leave latency of IGMP memberships. This com- mand is used when only one receiver host is connected to each interface . When this command is not configured, the router sends a...
by ropeba
Tue Sep 02, 2014 3:00 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

That's not true!! Fast leave should not be used only if there's more than 1 user per interface and not per RB!!!!!! I have plenty of other routers which are not Mikrotik, 20 users on 20 ports and fast leave works perfect. Fast leave should not be used if there's more then one user on one port!!! htt...
by ropeba
Tue Sep 02, 2014 2:16 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

224.0.0.2 is not fast leave. - one of the uses is - send IGMP group leave. IGMP proxy was fixed. It should correctly send and receive packets as it did not do that before and only option was to turn on fast-leave. Now this leave mechanism is fixed and it works (at least in test-bed). In which versi...
by ropeba
Mon Sep 01, 2014 4:41 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

I believe that you didn't understand what's the problem. I'm using these settings because of the bug that Mikrotik has. Querry interval is so low because I blocked IGMP leave messages that STB is sending. User is switching the channels and then when he leaves the group that channels will still go to...
by ropeba
Mon Sep 01, 2014 4:08 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

Janisk, this is working form me without any problem for about 3-4 years. When user switch channel on stb, stb sends leave message on address 224.0.0.2. And that's all of the communication that goes on that IP address in this situation. Nothing else! When router send querry to stb for specific IGMP, ...
by ropeba
Mon Sep 01, 2014 3:06 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

It's not helping disabling of fast leave option on RB, channels are still stopping sometime when leave message comes to RB. Only thing left is that I turn off on STB fast leave, but IPTV is unusable then because users can switch 20 channels in 10 secs and that means that 20 channels is running on st...
by ropeba
Tue Aug 26, 2014 4:26 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

This bug is solved in 6.18. Janisk, can we expect you to fix a bug that causes that sometimes when the routerboard gets fast leave message for a particular IGMP group on one interface , he' doing leave at all downstream interfaces who are joined into that group, and that should be done only live on ...
by ropeba
Sun Aug 24, 2014 12:53 am
Forum: RouterBOARD hardware
Topic: SFP with OTDR.
Replies: 2
Views: 3150

Re: SFP with OTDR.

Does it work with MikroTik?
by ropeba
Sun Aug 10, 2014 3:44 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

I writing to support email for years now, but with no result.
Every normal person expects support when invests millions, but at mikrotik this is not the case.

Ticket #2013100166000528 opened 01.10.2013.
Simple but big bug, still not solved!
by ropeba
Sun Aug 10, 2014 2:17 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

shame
by ropeba
Thu Aug 07, 2014 3:28 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

Hi janisk, do you have information about this bug? We need solution ASAP for this problem!!! Your making huge damage to out company by not fixing this bug!
Janisk, please do not ignore me.
by ropeba
Tue Aug 05, 2014 6:48 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

What's the TTL on VLC from which you are streaming?
by ropeba
Mon Aug 04, 2014 9:03 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

Hi, my scenario it's simple: 1 PC WITCH VLC STREAMING MULTICAST UDP IN ETHERNET 2 ROUTER MIKEORIK FB433AH 1 PC WITCH VLC CLIENT RECEIVING MULTICAST STREAM IN ETHERNET 3 IGMP Proxy don't work. I enable IGMP Proxy, I test all configuration, but in the client I can't see anithing, I can't see the stre...
by ropeba
Fri Aug 01, 2014 6:21 pm
Forum: General
Topic: v6.18
Replies: 109
Views: 40913

Re: v6.18

IGMP proxy is still broken in 6.18!!!! Since when do you plan ignoring major bugs and problems???? I can't understand that mikrotik don't know how to fix simple problem with IGMP proxy, for which I believe half hour would be enough! It's sad that you are selling broken products, you don't wont to fi...
by ropeba
Wed Jul 30, 2014 9:25 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

When can we expect a solution for this bug?
yes hopefully in the next RouterOS release.
Janisk, any news? this is simple bug, please solve it!
by ropeba
Fri Jul 18, 2014 1:29 pm
Forum: General
Topic: v6.16/v6.17
Replies: 187
Views: 62918

Re: v6.16

IGMP proxy is still broken!
by ropeba
Sun Jul 13, 2014 9:20 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

Hi janisk, do you have information about this but? We need solution ASAP for this problem!!! Your making huge damage to out company by not fixing this bug!
by ropeba
Tue Jul 08, 2014 11:00 pm
Forum: General
Topic: CCR 100 Percent CPU
Replies: 9
Views: 7879

Re: CCR 100 Percent CPU

Hi, I don't use connection-limit. I have two drop rules and about 20-30 accept rules. Problem also persist when I disable all filter rules.
by ropeba
Tue Jul 08, 2014 9:10 pm
Forum: General
Topic: CCR 100 Percent CPU
Replies: 9
Views: 7879

Re: CCR 100 Percent CPU

I have same problem, cpu core 34 is always over 90% and completely router have problem because of that. [admin@FTTH/B GW] /tool> profile cpu=34 NAME CPU USAGE firewall 34 91.5% networking 34 1.5% winbox 34 0% management 34 0% routing 34 0% idle 34 6.5% profiling 34 0% queuing 34 0.5% unclassified 34...
by ropeba
Thu Jun 26, 2014 7:32 pm
Forum: General
Topic: V7 soon ?
Replies: 20
Views: 10702

Re: V7 soon ?

Maybe udpxy in Ros7, i guess it's not hard to implement such usefull tool?
+1 for UDPXY.
by ropeba
Thu Jun 26, 2014 1:27 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

IGMP proxy stops forward of multicast traffic on all mikrotik routers. you can find detailed describe of problem if u read this topic. it is obvious that there's problem with interface since thins bug happend only when I have PPPoE server with PPPoE clients connected on that same router. So, in IGMP...
by ropeba
Wed Jun 25, 2014 8:18 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

6.16.rc9., bug "IGMP proxy stop forward multicast traffic" is still there.
by ropeba
Tue Jun 24, 2014 10:38 pm
Forum: Beginner Basics
Topic: Copy multicast between two bridges
Replies: 5
Views: 1952

Re: Copy multicast between two bridges

Is it possible to add MFC static entries from Winbox? I haven't found it yet...
No, only from console.
by ropeba
Fri May 16, 2014 11:19 am
Forum: General
Topic: v6.13 released!
Replies: 176
Views: 65545

Re: v6.13 released!

When we can expect solving of bug "IGMP proxy stop working on upstream interface down/up"? Described in: http://forum.mikrotik.com/viewtopic.php ... mp#p412317
by ropeba
Thu May 15, 2014 11:23 am
Forum: Forwarding Protocols
Topic: CCR - Multicast over EoIP, and PPPoE problem
Replies: 4
Views: 3780

Re: CCR - Multicast over EoIP, and PPPoE problem

Hi, I have the following problem with CCR. So, I have EoIP tunnel that only passes through the CCR (he's not terminate to the CCR). RB2011 (1)> CCR> RB2011 (2) EoIP is terminated on the RB2011 (1) and RB2011 (2) and through it passes multicast (IPTV), not much, 5-6 mbps - one TV channel. Happens to...
by ropeba
Tue May 06, 2014 5:18 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

When can we expect a solution for this bug?
yes hopefully in the next RouterOS release.
I just upgrade to 6.12 but bug still persist. after couple times upstrime interface goes to down/up, IGMP proxy stop to forward multicast traffic and only reboot help.
by ropeba
Wed Apr 16, 2014 5:55 pm
Forum: General
Topic: SSH client is not working
Replies: 18
Views: 8505

Re: SSH client is not working

Same here. I urgently need solution for this problem! We use ssh for IPTV service (STB administration). More than 2-3 months we don't have control over users STBs.
by ropeba
Thu Apr 10, 2014 7:49 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

6.10 have same problem. IGMP proxy not work after upstream interface link down/link up. Only reboot help.
When can we expect a solution for this bug?
by ropeba
Tue Apr 08, 2014 6:48 pm
Forum: General
Topic: SSH client is not working
Replies: 18
Views: 8505

Re: SSH client is not working

How do you explain this?

v6.11
Image

v6.2
Image
by ropeba
Sun Mar 23, 2014 12:51 pm
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

uptime: 3h31m27s version: 6.1 build-time: Jun/12/2013 11:50:54 free-memory: 3533.5MiB total-memory: 3969.0MiB cpu: tilegx cpu-count: 36 cpu-frequency: 1200MHz cpu-load: 6% free-hdd-space: 900.0MiB total-hdd-space: 1024.0MiB architecture-name: tile board-name: CCR1036-12G-4S platform: MikroTik route...
by ropeba
Sun Mar 23, 2014 12:42 pm
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

I contacted mikrotik same day when I discovered the problem, rather than four months as you say!
by ropeba
Sun Mar 23, 2014 12:30 pm
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

You do not read what I write, the latest version has a bug, and from 6.6 to 6.10 and now 6.11. After several hours, DHCP server gone, networks, leases... and all that is related to the DHCP server is dissapeared, with some PPPoE interface IP address disappears and only reboot helps, understand now? ...
by ropeba
Sun Mar 23, 2014 12:18 pm
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

I'm bad with English, but I'll try to explain. I bought routers with 6 beta and upgrade to 6.1 and everything worked fine. However, due to certain bugs I did upgrade to a newer version on the MikroTik recommendation, but then emerged a new and even worse bugs. After that I did downgrade to 6.1 and s...
by ropeba
Sun Mar 23, 2014 11:51 am
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

I don't understand what is contradictory? 6.1 have kernel failure bug 6.6-6.10 have bug from this topic: Once per day DHCP server gone, ip address on PPPoE interface missing... I opened a ticket before 32 days. But still I do not have anything concrete. All responses are the type "send the log&...
by ropeba
Sun Mar 23, 2014 11:14 am
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

Um...so... I got a question I guess... Have you tried 6.5? Does it work for what you need it to do? Hi, I do not remember whether I was trying 6.5. I can not take a lot to play with it, it's core and edge routers of which depends a large number of users. I am currently on version 6.1 and there is n...
by ropeba
Sun Mar 23, 2014 10:41 am
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

Maybe it is not up to me to say it, but you're making your own issue as a general one. I know some guys that have CCR-s and are very happy with them. This is a user forum where can be asked for help or discussion and not airing your frustration with the equipment. Nothing is perfect, just gets bett...
by ropeba
Sun Mar 23, 2014 10:31 am
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

Re: 6.x useless on CCR

I noticed that these problems have only on routers where I use IPv6.
by ropeba
Fri Mar 21, 2014 6:58 pm
Forum: General
Topic: 6.x on CCR [Invalid]
Replies: 20
Views: 8039

6.x on CCR [Invalid]

I really don't get it, why is my previously opened topic deleted. I have problem with CCR (~15 of them) and version 6.6 - 6.11. Once per day DHCP server gone, ip address on PPPoE interface missing..., and only router reboot helps that everything goes to normal operation. I opened ticket about this b...
by ropeba
Fri Mar 21, 2014 11:58 am
Forum: General
Topic: v6.11 released
Replies: 260
Views: 112074

Re: v6.11 released

What's with bug described in topic "6.x is useless" which has disappeared from forum and only Miktotik knows why. Prolem is also described in Ticket#2014022266000216 And this bug also persist from 6.x: http://forum.mikrotik.com/viewtopic.php?f=14&t=77336&p=411503&hilit=igmp#p38...
by ropeba
Sat Mar 08, 2014 3:46 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

Multicast flow is: MC Sourse > SWITCH > RB 1100 (with IGMP proxy) > SWITCH with IGMP Snooping > OLT > ONU > RB2011 (IGMP proxy) > END USERS One ONU and one rb2011 or CRS per entrance of building. On RB2011/CRS in entrance with IGMP proxy I have only IGMP groups wich users watching (what is ok), but ...
by ropeba
Sat Mar 08, 2014 2:42 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

you're wrong
I have three types of OLTs and PIM not working on any
by ropeba
Sat Mar 08, 2014 2:32 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

Obviously you're not up to date with Mikrotik IGMP bugs. I tried everything possible a few years ago when I reported these bugs ... I have FTTB infrastructure and to buildings I use GEPON, unfortunately I can use only IGMP becouse I don't have PIM snooping on OLT and ONUs.
by ropeba
Sat Mar 08, 2014 2:17 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

You do not understand, I do not want to try anything, I want proper IGMP proxy, nothing else comes into consideration. I have RouterBoards with 20 TV users or so, when IGMP proxy freezes, everyone on that RouterBOARD is left without television. Every day at least 10 users is calling and complaining ...
by ropeba
Sat Mar 08, 2014 1:57 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

IGMP is started, IGMP messages work ok, but the router is not forwarding IGMP traffic. There is no way to restart the IGMP proxy manually, and it's not an option to wait to my customer calls and complains that he's television is not working. I need IGMP proxy that works properly!
by ropeba
Sat Mar 08, 2014 11:10 am
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

please latest version available for IGMP-proxy, that is 6.10 or even 6.11rc1 if possible.
6.10 have same problem. IGMP proxy not work after upstream interface link down/link up. Only reboot help.
by ropeba
Tue Mar 04, 2014 1:05 pm
Forum: General
Topic: SSH client not work from 6.8
Replies: 0
Views: 678

SSH client not work from 6.8

When could we expect you to solve this bug?
by ropeba
Sat Mar 01, 2014 3:28 pm
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

I noticed today that ether1 is down/up because of bad connector. Ether1 is also a upstream interface in IGMP proxy and after this he's stop to work a forwarding. It is obvious that something freezes in IGMP proxy after the upstream interface goes down and then up.
by ropeba
Sat Mar 01, 2014 3:27 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

I noticed today that ether1 is down/up because of bad connector. Ether1 is also a upstream interface in IGMP proxy and after this he's stop to work a forwarding. It is obvious that something freezes in IGMP proxy after the upstream interface goes down and then up.
by ropeba
Tue Feb 25, 2014 12:01 am
Forum: RouterBOARD hardware
Topic: CRS226
Replies: 33
Views: 13270

Re: CRS226

CRS is ok for FTTB instalation, but it would be ok that CPU is litle bit stronger.
by ropeba
Sun Feb 23, 2014 10:06 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

I can confirm that too. ROS 6.9 IGMP proxy stops forwarding. CRS.

What problem do you have? do not work for IPTV?
do you have multicast enabled?
Carefully read this post from the beginning and you'll understand what's not working!
by ropeba
Fri Feb 14, 2014 12:54 am
Forum: General
Topic: RouterOS 6.9 IGMP proxy stop working
Replies: 58
Views: 26250

Re: RouterOS 6.9 IGMP proxy stop working

Hi janisk,

bug described in this post still persist (fast leave is disabled):
http://forum.mikrotik.com/viewtopic.php ... mp#p390956

Also, bug when mikrotik stop forwarding multicast still persist.
by ropeba
Thu Feb 13, 2014 10:23 am
Forum: General
Topic: error client failure: get CA certificate
Replies: 3
Views: 2502

error client failure: get CA certificate

Hi,

from today, my CCR spam log with:

08:59:05 certificate,error client failure: get CA certificate
09:00:05 certificate,error client failure: get CA certificate

ROS 6.1

Does someone know what is the problem?
by ropeba
Wed Feb 12, 2014 4:53 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

I can confirm that too. ROS 6.9 IGMP proxy stops forwarding. CRS.
by ropeba
Sat Feb 01, 2014 8:03 pm
Forum: General
Topic: 6.9 released!
Replies: 222
Views: 103458

Re: 6.9 released!

6.9 still has bug same as the 6.7 version. Ip addresses are disappeared, dhcp stops working, pppoe is not working, more then a half of services is not usable and reboot is necessary. It happens on all RBs!!!! Now it's happened on CCR which is core router in my network. It's wrong when 10.000 users ...
by ropeba
Sat Feb 01, 2014 3:02 pm
Forum: General
Topic: 6.9 released!
Replies: 222
Views: 103458

Re: 6.9 released!

6.9 still has bug same as the 6.7 version. Ip addresses are disappeared, dhcp stops working, pppoe is not working, more then a half of services is not usable and reboot is necessary. It happens on all RBs!!!! Now it's happened on CCR which is core router in my network. It's wrong when 10.000 users i...
by ropeba
Thu Jan 30, 2014 8:02 pm
Forum: General
Topic: routeros 6.9 (release candidate)
Replies: 33
Views: 12754

Re: routeros 6.9

What's new in 6.9 (2014-Jan-30 13:02): *) lcd - added option to change the color-scheme; ... What for?! MiktoTik team should concentrate to improve main features, like wireless radio performance and stability! You did not see the other changes, did you ? Normis, I do not see IGMP bug fix, and it ex...
by ropeba
Mon Jan 27, 2014 3:01 pm
Forum: General
Topic: What's new in 6.8rc1
Replies: 106
Views: 33177

Re: What's new in 6.8rc1

Any news about IGMP proxy bugs?
I want to know the same thing.
by ropeba
Fri Jan 10, 2014 8:28 pm
Forum: Forwarding Protocols
Topic: CCR - Multicast over EoIP, and PPPoE problem
Replies: 4
Views: 3780

Re: CCR - Multicast over EoIP, and PPPoE problem

Last edition of ROS has too many bugs and it' unstable and it' s on CORE router and I don't dare to do an upgrade. On routers on which I tested 6.7 I had problems, users are faced with Internet breaks, IPs and DHCP server are gone, half of RB services is not in function etc.
by ropeba
Fri Jan 10, 2014 7:45 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

where I can download 6.8rc1?
by ropeba
Thu Jan 09, 2014 12:52 pm
Forum: Forwarding Protocols
Topic: CCR - Multicast over EoIP, and PPPoE problem
Replies: 4
Views: 3780

CCR - Multicast over EoIP, and PPPoE problem

Hi, I have the following problem with CCR. So, I have EoIP tunnel that only passes through the CCR (he's not terminate to the CCR). RB2011 (1)> CCR> RB2011 (2) EoIP is terminated on the RB2011 (1) and RB2011 (2) and through it passes multicast (IPTV), not much, 5-6 mbps - one TV channel. Happens to ...
by ropeba
Thu Dec 05, 2013 2:19 am
Forum: Forwarding Protocols
Topic: IPv6 work only after disable/enable address
Replies: 7
Views: 6117

Re: IPv6 work only after disable/enable address

I have a problem with IPv6 address on LAN interface when disable/enable or reconect wan (PPPoE client interface). I can ping IPv6 destination from router but not from PC. And problem persist on 6.7, you can see on video.
http://youtu.be/6Mo1HN4y6ug
by ropeba
Tue Dec 03, 2013 3:21 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

I hope that you'll manage to solve IGMP proxy problems in some of the future v6.x versions.
by ropeba
Tue Dec 03, 2013 12:56 pm
Forum: Forwarding Protocols
Topic: IPv6 work only after disable/enable address
Replies: 7
Views: 6117

Re: IPv6 work only after disable/enable address

I have same problem on 6.7. When client is reconnected with PPPoE IPv6 is not working anymore so IPv6 must be disabled/enabled on LAN interface on CPE router.
by ropeba
Tue Dec 03, 2013 5:20 am
Forum: Forwarding Protocols
Topic: IPv6 work only after disable/enable address
Replies: 7
Views: 6117

IPv6 work only after disable/enable address

I have a problem on all routers in my network. Sometime IPv6 address stop to work and after disable/enable IPv6 address everything work ok. I have this problem on all routers and on all versions ROS, does someone have solution for the problem? scenario: 1. add ip address to interface 2. ping gateway...
by ropeba
Wed Nov 20, 2013 10:52 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

it should be present also on 5.14 I thought on bug where mikrotik forwarding stops working. This bug appeared in newer versions, hi's not present in 5.14 it's not there and Iom sure at that 10000000000000000000%. I have nearly 1000 active RouterBoard 2011 with a 5.14 version, I guess I have noticed...
by ropeba
Sat Nov 16, 2013 4:48 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

Possible, I use version 5.14 on all routers, so it's possible that the bug exists on 5.25 because I have not tried on it. I'm upgrade from 5.14 to 6.x because more than half of my rb2011 with the version 5.14 going to switch mode after couple days of working and I must to switch off/on power.
by ropeba
Mon Oct 14, 2013 9:06 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

Hi, STB send leave only if stream stops or if our user switch to some other channel. Here's the thing that multicast stream stops for all users on RB at the same time. On some RBs we have up to 9 users that are active watchers of TV channels and when this bug start stream stops to all of them. I mus...
by ropeba
Tue Oct 08, 2013 5:12 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

Hi, the STB is configured to seek the stream until it receives. Given that mikrotik is not forwarding the stream, STB do join and leav constantly (stop/play on stb). There are two users on this RB, and there's several hundred of RBs 2011 and every one of them is facing this same bug, starting from v...
by ropeba
Tue Oct 08, 2013 12:05 am
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

Shame on everyone from Mikrotik stuff! You see your users as fools. Normal people would say "we don't know how to fix that" and you are only ignoring us.

gamad, fuj, fuj ,fuj...
by ropeba
Fri Oct 04, 2013 11:37 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

????
by ropeba
Thu Oct 03, 2013 12:21 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

Re: New bug with igmp proxy in 6.x

Normis, Janisk, can you please give me an answer related with this bug? I'm stil waiting ticket response too.
by ropeba
Tue Oct 01, 2013 2:05 pm
Forum: Forwarding Protocols
Topic: New bug with igmp proxy in 6.x
Replies: 26
Views: 11237

New bug with igmp proxy in 6.x

Hi, from version 6.x IGMP proxy forwarding stops working after a while, 1, 5, 10 days .... Although IGMP messages are regularly passing and stream is coming to upstream interface, there's no stream on downstream. Please resolve this bug as soon as possible. So far we have used version 5.14 and we di...
by ropeba
Tue Sep 24, 2013 4:19 pm
Forum: General
Topic: MUM Live video from St. Louis starting now!
Replies: 52
Views: 22358

Re: MUM Live video from St. Louis starting now!

I hope that we will see a little better processor in CRS, in some close future. It doesn't have to be like the one in CCR serie but 1 GHz or 1 GHz dual core would be perfect for our FTTB project.
by ropeba
Tue Sep 24, 2013 1:37 pm
Forum: General
Topic: MUM Live video from St. Louis starting now!
Replies: 52
Views: 22358

Re: MUM Live video from St. Louis starting now!

Can CRS work as 24 port router and that he's not used as switch? Will ROS see all 24 ports?
by ropeba
Sat Sep 21, 2013 3:33 am
Forum: General
Topic: MUM Live video from St. Louis starting now!
Replies: 52
Views: 22358

Re: MUM Live video from St. Louis starting now!

Normis, which CPU does have CRS?
by ropeba
Tue Sep 17, 2013 9:35 pm
Forum: Forwarding Protocols
Topic: IGMP Proxy issue
Replies: 60
Views: 34848

Re: IGMP Proxy issue

I lost every hope that they'll fix the bug and I'm so disappointed in them.
by ropeba
Sun Sep 08, 2013 6:37 pm
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

Hi, I use CCR with BGP, OSPF, QUEUE... 800 Mbps, everything works ok. uptime: 6w3d7h4m30s version: 6.1 build-time: Jun/12/2013 11:50:54 free-memory: 3291.1MiB total-memory: 3969.0MiB cpu: tilegx cpu-count: 36 cpu-frequency: 1200MHz cpu-load: 13% free-hdd-space: 901.5MiB total-hdd-space: 1024.0MiB ar...
by ropeba
Fri Aug 16, 2013 10:51 pm
Forum: The Dude
Topic: Dude v4beta3 released
Replies: 251
Views: 126732

Re: Dude v4beta3 released

+40° :)
by ropeba
Tue Jul 30, 2013 4:21 pm
Forum: Beginner Basics
Topic: IGMP Proxy - how to setup Two SXT Lite2 in bridge for IPTV
Replies: 5
Views: 2429

Re: IGMP Proxy - how to setup Two SXT Lite2 in bridge for IP

Put eoip tunnel between AP1 and AP2 and leave multicast over tunnel.
by ropeba
Wed Jul 24, 2013 11:26 pm
Forum: The Dude
Topic: Dude on ppc (RB1100) cant access by web
Replies: 15
Views: 10016

Re: Dude on ppc (RB1100) cant access by web

Same problem
x86
ROS V5.25
DUDE V4.0beta3

Unable to connect
Firefox can't establish a connection to the server at 178.209.2.6:81.
by ropeba
Tue Jul 23, 2013 11:06 am
Forum: RouterBOARD hardware
Topic: CRS Switch - How's it coming?
Replies: 21
Views: 10838

Re: CRS Switch - How's it coming?

+++
by ropeba
Wed Jul 17, 2013 5:44 pm
Forum: General
Topic: RouterOS 6.1 released
Replies: 198
Views: 74648

Re: RouterOS 6.1 released

Two years for a reported bug that still has not been resolved is "working really hard"?? They're wasting time on nonsense and unnecessary things while serious bugs are still unresolved. Please tell me the ticket number of this issue, and I will check the progress. Hi Normis, did you check...
by ropeba
Sat Jul 13, 2013 12:25 pm
Forum: General
Topic: RouterOS 6.1 released
Replies: 198
Views: 74648

Re: RouterOS 6.1 released

October 03, 2011 12:08 PM
Ticket#2011092966000591
Wow, that IS old! What is the issue in that ticket?
http://forum.mikrotik.com/viewtopic.php ... hilit=igmp
by ropeba
Wed Jul 10, 2013 2:35 pm
Forum: General
Topic: RouterOS 6.1 released
Replies: 198
Views: 74648

Re: RouterOS 6.1 released

When all known issues will be fixed.
issue with IGMP PROXY is "known issues"?
by ropeba
Wed Jul 10, 2013 1:25 pm
Forum: General
Topic: Where is CRS?
Replies: 3
Views: 1459

Where is CRS?

I have a feeling that mikrotik staff lost their calendar, it is now almost mid 07th month! In Zagreb is announced that CRS will be on market in the 05th month. It's not fair to act like that with clients,you are ruing our plans. Mikrotik, please stop lying to us.
by ropeba
Wed Jul 03, 2013 3:46 pm
Forum: Forwarding Protocols
Topic: IGMP Proxy issue
Replies: 60
Views: 34848

Re: IGMP Proxy issue

by ropeba
Wed Jun 26, 2013 6:29 pm
Forum: Wireless Networking
Topic: Nstream is not suitable for 2x2 ?
Replies: 40
Views: 16295

Re: Nstream is not suitable for 2x2 ?

True, nstream no longer works ok. The last 15 days I have commissioned 10 new links based on the RB911 and JRC duplex 24 antennas. Signals on the links are -50 to -60 but none of the links with active NSTREAM has no uptime higher than 2h. Log on the client side says "lost connection, not polled...
by ropeba
Fri Jun 21, 2013 12:59 am
Forum: Forwarding Protocols
Topic: IGMP Proxy issue
Replies: 60
Views: 34848

Re: IGMP Proxy issue

I was thinking about that but I already have about 1000 active RBs in FTTB network, so it's not so easy to upgrade all that on OpenWRT, and re-configure each of them, IGMP, firewall, NAT, DHCP, PPPoE, etc...
by ropeba
Fri Jun 14, 2013 1:03 pm
Forum: General
Topic: RouterOS 6.1 released
Replies: 198
Views: 74648

Re: RouterOS 6.1 released

Hi Normis, I don't know why mikrotik stuff pretends to be deaf whenever someone mentions IGMP proxy, you don't know how to fix that bug or don't want to do that?
by ropeba
Thu Jun 13, 2013 7:23 pm
Forum: General
Topic: RouterOS 6.1 released
Replies: 198
Views: 74648

Re: RouterOS 6.1 released

Is IGMP proxy fixed? IGMP works perfectly in 6.0 and 6.1 versions. Tested on RB951G-2HnD You're wrong! Since there's a IGMP proxy in mikrotik there are two big bugs. One of them is described in this topic: http://forum.mikrotik.com/viewtopic.php?f=14&t=55404&hilit=igmp#p283100 Works fine if...
by ropeba
Wed Jun 12, 2013 9:15 pm
Forum: General
Topic: RouterOS 6.1 released
Replies: 198
Views: 74648

Re: RouterOS 6.1 released

Is IGMP proxy fixed?
by ropeba
Sat Jun 01, 2013 8:52 pm
Forum: General
Topic: Newsletter 48
Replies: 9
Views: 2681

Re: Newsletter 48

where is CRS?
by ropeba
Fri May 10, 2013 10:37 am
Forum: Wireless Networking
Topic: Throughput over 300Mbps on MIMO 2x2 ???
Replies: 53
Views: 17871

Re: Throughput over 300Mbps on MIMO 2x2 ???

Just 30 + 30 MHz channel width.
by ropeba
Fri May 10, 2013 10:28 am
Forum: Wireless Networking
Topic: Throughput over 300Mbps on MIMO 2x2 ???
Replies: 53
Views: 17871

Re: Throughput over 300Mbps on MIMO 2x2 ???

I have 450 with two chains!
by ropeba
Wed Apr 03, 2013 3:21 pm
Forum: RouterBOARD hardware
Topic: RB260GS ONU in GEPON network using SFP (TX=1310nm/RX=1490nm)
Replies: 4
Views: 4211

Re: RB260GS ONU in GEPON network using SFP (TX=1310nm/RX=149

Mikrotik doesn't support EPON protocol!
You can try with EPON STICK ONU SFP Transceiver, he has integrated EPON chip.
by ropeba
Sat Mar 23, 2013 3:23 pm
Forum: Forwarding Protocols
Topic: MikroTik bridge - poor performance
Replies: 2
Views: 2127

MikroTik bridge - poor performance

Could someone explain to me why the bridge in Mikrotik has a bad performance? I tested on the RB1100AH and on the CCR and results were terrible. I bridged two ports on the CCR (ethernet8 and ethernet9) and put through them about 110 TV channels, multicast. When viewing TV, the cubes/pixelation appea...
by ropeba
Mon Mar 18, 2013 1:34 pm
Forum: General
Topic: MUM Croatia NEW PRODUCT ANNOUNCEMENT
Replies: 42
Views: 21629

Re: MUM Croatia NEW PRODUCT ANNOUNCEMENT

All RACK products should have front DC connector (12-30V)
AC power is not suitable for AP points.
For unknown reasons Mikrotik forcing AC power supply?
I agree. All RB's should have DC Connector (10-30V).
I completely agree with you!
by ropeba
Sat Mar 16, 2013 7:33 pm
Forum: General
Topic: MUM Croatia NEW PRODUCT ANNOUNCEMENT
Replies: 42
Views: 21629

Re: MUM Croatia NEW PRODUCT ANNOUNCEMENT

Does anyone know how many switch chips will be in the CRS?.
1
by ropeba
Fri Mar 01, 2013 2:45 pm
Forum: Forwarding Protocols
Topic: IGMP Proxy issue
Replies: 60
Views: 34848

Re: IGMP Proxy issue

Is there any new information? It's been a year and a half since I reported a bug which is very simple and can be fixed in a few minutes but you still didn't fix it. Get serious, please!
by ropeba
Mon Feb 11, 2013 2:29 pm
Forum: General
Topic: v6.0rc9 released
Replies: 59
Views: 22825

Re: v6.0rc9 released

We use nat rules with address list but it not work.
After reset counter:

Image

after 23 seconds, but there is no anything nated.

Image
by ropeba
Sun Feb 10, 2013 3:46 pm
Forum: General
Topic: v6.0rc9 released
Replies: 59
Views: 22825

Re: v6.0rc9 released

NAT is not working on CCR with rc9.
by ropeba
Sat Feb 09, 2013 12:24 am
Forum: RouterBOARD hardware
Topic: RB260GS
Replies: 23
Views: 11241

Re: RB260GS

Hello everybody, @ropeba First they were launching the RB2011 sorted with SFP a cage, then the greater ones, called CCR. Perhaps the GS260GS is now the smaller one and we will see in the future greater switches from them!? But for using together with the RB2011 it is a really great effort in my eye...
by ropeba
Wed Feb 06, 2013 2:51 pm
Forum: RouterBOARD hardware
Topic: RB260GS
Replies: 23
Views: 11241

Re: RB260GS

Some distributors have this one under 599$: http://routerboard.com/CCR1016-12G-BU It's still too expensive. On that RouterBoard I can connect only 15 users, you know... We are offering duo pack (IPTV with over 100 TV channels and 20 Mbps Internet) which is present with the majority of users and we ...
by ropeba
Wed Feb 06, 2013 2:32 pm
Forum: RouterBOARD hardware
Topic: RB260GS
Replies: 23
Views: 11241

Re: RB260GS

CCR is too expensive and unnecessary for this. We currently use the RB2011 and RB800 with the daugterboard. We need something with the CPU 800-1000 MHz. Currently we have installed over 600 RB2011 in FTTB network and they are all work perfectly except bug with IGMP proxy where we had to improvise......
by ropeba
Wed Feb 06, 2013 2:23 pm
Forum: RouterBOARD hardware
Topic: RB260GS
Replies: 23
Views: 11241

Re: RB260GS

We have FTTB network based on teknovus gepon and mikrotik RB. But, we need more ports on routerboard. One routerboard, one building with 10-20 users. IPTV, VoIP, internet...
by ropeba
Wed Feb 06, 2013 2:21 pm
Forum: RouterBOARD hardware
Topic: RB260GS
Replies: 23
Views: 11241

Re: RB260GS

no switxh, routerboard!
by ropeba
Wed Feb 06, 2013 2:19 pm
Forum: RouterBOARD hardware
Topic: RB260GS
Replies: 23
Views: 11241

Re: RB260GS

Small number of ports...
We need routerboard with 16, 24... ports and cpu 800-1000 Mhz, for FTTB instalation... Price 150-300 USD.
IGMP snooping implementation on switch chip or IGPM proxy without bugs!
by ropeba
Fri Feb 01, 2013 10:31 am
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

Hi, CCR is still rebooting very often without any good reason. I send supout files to support@mikrotik.com
by ropeba
Fri Jan 18, 2013 11:21 pm
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

I just upgraded CCR on latest rc7 version which i downloaded from official download link. After upgrade status of ports 1,2,3,4 is running and link ok even there's nothing connected on those ports. After that I downgraded CCR on rc7 which I downloaded 5 - 6 days ago and everything get back to normal...
by ropeba
Fri Jan 18, 2013 10:03 pm
Forum: General
Topic: IGMP Snooping
Replies: 134
Views: 81603

Re: IGMP Snooping

Will there be any changes for the better, in terms of IGMP proxy?
by ropeba
Tue Jan 08, 2013 11:05 am
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

Auto-negotiation is disabled. Did you try turning it on ? Also try some other settings that you can change.
I tried everything possible, but I still can't realize traffic over the link.
I sent the suppout file an hour ago...
by ropeba
Tue Jan 08, 2013 9:52 am
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

Hi, today I got CCR router and I have problems right from the start. I put SFP module
Have you running RC6? If dont work you can try RC7
same problem on v6rc7.
by ropeba
Mon Jan 07, 2013 10:09 pm
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

Hi, today I got CCR router and I have problems right from the start. I put SFP module
Have you running RC6? If dont work you can try RC7
Ok, i will try that tomorrow.
by ropeba
Mon Jan 07, 2013 7:47 pm
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

Hi, today I got CCR router and I have problems right from the start. I put SFP module (that has previously been in the TP-Link media converter and is used to link to one of the providers) in spf slot . After I put the module in the CCR, the orange led is lit, ROS says that the link is ok and running...
by ropeba
Sun Dec 30, 2012 3:00 am
Forum: General
Topic: IGMP-Proxy multiple interfaces
Replies: 3
Views: 3377

Re: IGMP-Proxy multiple interfaces

Hi, Remove all bridges! Connect IPTV source to ethernet 1. Add to igmp proxy interface ethernet1 with alternative subnet 0.0.0.0/0 and check checkbox "upstream". add IP address: 192.168.11.0/24 on ethernet2 192.168.12.0/24 on ethernet3 192.168.13.0/24 on ethernet4 (you can use addresses th...
by ropeba
Sat Dec 29, 2012 9:24 pm
Forum: General
Topic: RB493G fail after firmware upgrade
Replies: 7
Views: 3040

Re: RB493G fail after firmware upgrade

I can't establish connection via serial. RB is acting like is dead.
by ropeba
Sat Dec 29, 2012 8:27 pm
Forum: General
Topic: RB493G fail after firmware upgrade
Replies: 7
Views: 3040

RB493G fail after firmware upgrade

Hi, I updated a firmware today on 20 pieces of RB493G, after the update I went to reboot, which needs to be done by procedure. After that none of the Routerboards did't work, all LED are constantly lighted, can't access the router over serial... Does anyone know what the problem is? Is it possible t...
by ropeba
Sat Dec 22, 2012 5:21 pm
Forum: General
Topic: v6 rc6 released
Replies: 215
Views: 80641

Re: v6 rc6 released

IGMP proxy is still broken. When can we expect a functional IGMP proxy? Today's ISP services are based on a Triple play, but mikrotik still no functional IPTV support. We need igmp proxy or udpxy. Thanks...
by ropeba
Fri Nov 23, 2012 7:10 pm
Forum: Beginner Basics
Topic: IPTV solution with udpxy
Replies: 20
Views: 22255

Re: IPTV solution with udpxy

Yes, multicast works over EoIP, but if you are using igmp proxy on ROS, expect problems becouse of existing bugs.
by ropeba
Tue Nov 20, 2012 8:48 pm
Forum: General
Topic: European MUM 2013: Croatia!
Replies: 51
Views: 23013

Re: European MUM 2013: Croatia!

see you all there :)
by ropeba
Sun Nov 18, 2012 10:42 pm
Forum: Beginner Basics
Topic: IPTV solution with udpxy
Replies: 20
Views: 22255

Re: IPTV solution with udpxy

You can transport multicast over EoIP tunnel. Or waiting 10-20 years for udpxy on mikrotik ROS. :)
by ropeba
Sun Nov 18, 2012 7:02 pm
Forum: General
Topic: Feature requests
Replies: 1739
Views: 624732

Re: Feature requests

I think that mikrotik should base their attention on the correction of current bugs instead of adding new options. It's a waste of time that you develop a product that is semi useful.. First fix the bugs and then continue with the development, only then you will have the opportunity to stay in the m...
by ropeba
Tue Nov 13, 2012 7:29 pm
Forum: Forwarding Protocols
Topic: IGMP Proxy issue
Replies: 60
Views: 34848

Re: IGMP Proxy issue

janisk, please give me some information about my problem.
by ropeba
Fri Nov 09, 2012 6:54 pm
Forum: RouterBOARD hardware
Topic: CLOUD CORE ROUTER
Replies: 1373
Views: 1184435

Re: CLOUD CORE ROUTER

CCR1036-12G-BU - $625.00
CCR1036-12G - $645.00
CCR1036-12G-4S - $995.00
by ropeba
Fri Nov 09, 2012 2:05 pm
Forum: Forwarding Protocols
Topic: IGMP Proxy issue
Replies: 60
Views: 34848

Re: IGMP Proxy issue

bump
by ropeba
Thu Sep 29, 2011 1:33 pm
Forum: Forwarding Protocols
Topic: IGMP Proxy issue
Replies: 60
Views: 34848

IGMP Proxy issue

We are on a big project, making IPTV service for our clients based on Mikrotik RBs. Total project includes about 80 streams, 250 RB800 (one on every building), 2000+ clients Scenario: 1 IPTV Streamer 1 RouterBoard800 2 Clients - 2 STB (ether 10, 12 and 13) Everything works like a charm except 1 big ...
by ropeba
Fri Jan 08, 2010 2:26 pm
Forum: Wireless Networking
Topic: Problem with ping on all routerboards V 3.30 >
Replies: 1
Views: 1090

Problem with ping on all routerboards V 3.30 >

Hello everyone, today I upgraded the several routers from a 3.25 to 3.30 and 4.4 version and ping to the CPE is increased from ~1-2 ms to ~5-10 ms. Can someone from mikrotik solve this problem? So, it's not just on one RouterBOARD it's on about ~30 pieces that I upgraded, and on all of them ping is ...
by ropeba
Sat Apr 21, 2007 4:10 pm
Forum: Wireless Networking
Topic: Best miniPCI for high noise
Replies: 4
Views: 1699

yes, but ping goes from 100-10 000 ms
by ropeba
Fri Apr 20, 2007 10:50 pm
Forum: Wireless Networking
Topic: Best miniPCI for high noise
Replies: 4
Views: 1699

Best miniPCI for high noise

Who have experience with equipment in high noise region? Right now I'm in very bad situation with CM9 on 2,4 GHz, becouse in my region there's about 30-40 active AP's on aproximately every 500m. (2-3 APs on each channel)
by ropeba
Mon Feb 12, 2007 1:09 am
Forum: General
Topic: limit speed on bridging interface, how?
Replies: 4
Views: 1664

up
by ropeba
Mon Feb 05, 2007 11:42 am
Forum: General
Topic: limit speed on bridging interface, how?
Replies: 4
Views: 1664

via that interface only that one user is connecting and I want to limit his speed. I don't want to limit his IP, that's no good for me, becouse his IP is changing every 24 Hours.
by ropeba
Sun Feb 04, 2007 7:51 pm
Forum: General
Topic: limit speed on bridging interface, how?
Replies: 4
Views: 1664

limit speed on bridging interface, how?

I have rb 153, 1 wlan and 5 ethernet interfaces. All of the interfaces are bridged. I want to limit speed on ether1. from queue that don't work. Does someone know how can I limit speed via some interface?
by ropeba
Thu Jan 11, 2007 12:15 am
Forum: General
Topic: problem with TORCH
Replies: 3
Views: 1411

it shows only if I turn off all options. but then dont shows Rx

1
Image
------------------
2
Image
by ropeba
Wed Jan 10, 2007 8:46 pm
Forum: General
Topic: problem with TORCH
Replies: 3
Views: 1411

and it's even worst with another router:

Image
by ropeba
Wed Jan 10, 2007 8:22 pm
Forum: General
Topic: problem with TORCH
Replies: 3
Views: 1411

problem with TORCH

Hi,

I have a problems with viruses on my network. But I cannot find from wich IP address are they comming and via wich port, becouse torch option on mikrotik dont work properly. Does anyone know what should I do to fix this problem. Thanks

Image
by ropeba
Tue Jan 09, 2007 11:31 am
Forum: General
Topic: downgrade form 2.9.38 to 2.9.35
Replies: 12
Views: 2199

On more thing

when ping stops I can still mac-telnet in but cannot ping in.

Is this the same as you?
yes, that's right.. He answering on ping but can mac-telnet.. I don't have any rules on RB, it's just station wds on wich are placed 2 interfaces in bridge
by ropeba
Tue Jan 09, 2007 10:54 am
Forum: General
Topic: downgrade form 2.9.38 to 2.9.35
Replies: 12
Views: 2199

I dont think that you understand what I'm trying to tell.. RB is working fine, users are connected and they surfing fine, but RB dont aswer to me on ping nor I can connect on him via winbox, telnet, webbox...In one h he is responding on ping about 5 minutes in about 4-5 sessions.. Look pic below and...
by ropeba
Mon Jan 08, 2007 10:30 pm
Forum: General
Topic: downgrade form 2.9.38 to 2.9.35
Replies: 12
Views: 2199

downgrade form 2.9.38 to 2.9.35

hi, how will I do downgrade form 2.9.38 version to 2.9.35 version. board is placed on mountain so i need that board t o work after downgrade. I dont want that board stop working after downgrade becouse that mountine is wery far from my place. by the way, sometimes two boards wit 2.9.38 are simply st...
by ropeba
Mon Jan 08, 2007 2:01 am
Forum: General
Topic: Mikrotik + freeradius, keepalive-timeout
Replies: 1
Views: 1924

Mikrotik + freeradius, keepalive-timeout

hi,

I use mikrotik, freeradius and radius manager. Can someone tell me how can I manage that user session can't be longer than 24 hours. I set in hotspot keepalive-timeout on 24 hours, but 24h after user session nothing is changed, user is still online.

Thanks...
by ropeba
Sun Nov 26, 2006 1:00 am
Forum: Wireless Networking
Topic: RB153 + SR2 as simple AP
Replies: 1
Views: 1153

RB153 + SR2 as simple AP

Does any have and with how many of clients works stabile.

It's simple AP without pppoe, DHCP , etc...
by ropeba
Sat Nov 25, 2006 9:50 pm
Forum: Wireless Networking
Topic: RB532, CM9, and high pings
Replies: 28
Views: 7580

maxfava,

did you try plug a mPCI card from 2000AP+ into RB523?
by ropeba
Fri Nov 24, 2006 2:28 pm
Forum: Wireless Networking
Topic: RB532, CM9, and high pings
Replies: 28
Views: 7580

ropeba
are you Italian guy, right?

mail me public[chiocc]maxfava.com

Ciao
no, Bosnian ;)
by ropeba
Wed Nov 22, 2006 11:45 am
Forum: General
Topic: Sugestion for DHCP
Replies: 0
Views: 942

Sugestion for DHCP

I have a sugestion for option that I desperately need.. I have 2 gateways (postpaid a nd prepaid). I use Mikrotik as postpaid and some other as prepaid. Mikrotik is 10.10.0.2 and the other one is 10.10.0.5. Is it possible to make an option in DHCP server; I reserve IP and he will be static and he wi...
by ropeba
Sun Nov 19, 2006 9:41 pm
Forum: Wireless Networking
Topic: RB532, CM9, and high pings
Replies: 28
Views: 7580

CM9 is working fine on ptp links but when it's about AP for more clients it shows that it's really bad card. with -56 % of signal ping goes over 300ms. I plan to buy SR2 and I hope that she will be better with AP on which about 10 clients are connecting, on 2.4
by ropeba
Sun Nov 19, 2006 9:23 pm
Forum: Wireless Networking
Topic: RB532, CM9, and high pings
Replies: 28
Views: 7580

I have same problem with CM9. Till he was dwl-2000+ everything was working good. I try to set mikrotik in client wds mode and d-link 2000+ in ap mode but no one cannot connect on d-link as long as he is connected to mokrotik via ethernet.
by ropeba
Mon Nov 13, 2006 2:02 am
Forum: Wireless Networking
Topic: snow and signal
Replies: 4
Views: 1440

noise level is -101db
signal to noise 27 db
by ropeba
Mon Nov 13, 2006 12:09 am
Forum: Wireless Networking
Topic: snow and signal
Replies: 4
Views: 1440

snow and signal

hi,

I have a link on 7 km with rb112, CM9 and grid 27db.
usualy, signal is -59db, but tonight I notice that signal is -77 db. Is it possible that snow is cousing that?

I would allso like to know wich is minimum signal for qualitet link?

Yes, link is on 5,8 GHz.

Thanks...
by ropeba
Mon Nov 06, 2006 9:33 pm
Forum: General
Topic: instalation mikrotik on compackt flash drive problem
Replies: 2
Views: 1190

no, this is sandisk 128 MB, DMA in bios is disabled...
by ropeba
Mon Nov 06, 2006 8:45 pm
Forum: General
Topic: instalation mikrotik on compackt flash drive problem
Replies: 2
Views: 1190

instalation mikrotik on compackt flash drive problem

hi,

i have a compact flash card (sandisk) attached to IDE adapter. After successfuly installed mikrotik and rebooted i get an error "loading E", where should be "uncopressing linux kernel..."

does anyone knows what is the problem?

Thanks...
by ropeba
Sun Oct 29, 2006 6:06 pm
Forum: Wireless Networking
Topic: Block file sharing on WDS network
Replies: 7
Views: 3035

yes i use wds + bridge, how I can block file sharing?
by ropeba
Fri Oct 27, 2006 9:06 pm
Forum: Wireless Networking
Topic: Block file sharing on WDS network
Replies: 7
Views: 3035

i have blocked port 135-139 and 445, but I still can access to some shared folders on computers in network...
by ropeba
Fri Oct 27, 2006 10:21 am
Forum: Wireless Networking
Topic: lost connection, got deauth (urgent help)
Replies: 15
Views: 7778

security - profile is on default all the time
by ropeba
Thu Oct 26, 2006 10:00 pm
Forum: Wireless Networking
Topic: lost connection, got deauth (urgent help)
Replies: 15
Views: 7778

I try on all 13 chanels, and on every of them i have same problem 08:07:14 wireless,info wlan2: data from unknown device 00:80:48:41:7C:D5, sent deauth 08:07:14 wireless,info wlan2: data from unknown device 00:80:48:41:7C:D5, sent deauth 08:07:38 wireless,info 00:80:48:41:7C:D5@wlan2: connected, wan...
by ropeba
Thu Oct 26, 2006 12:59 pm
Forum: Wireless Networking
Topic: lost connection, got deauth (urgent help)
Replies: 15
Views: 7778

lost connection, got deauth (urgent help)

I have problems with link which is on 6 kilometers distance, 2,4 ghz, signal strength is -71 dbi, but every few minutes he is reconnecting. below is log: 00:04:33 wireless,info 00:80:48:41:7C:8D@wlan1: lost connection, no beacons 00:04:35 wireless,info 00:80:48:41:7C:8D@wlan1: failed to connect, joi...
by ropeba
Sun Oct 22, 2006 6:39 pm
Forum: Wireless Networking
Topic: master interface shows double bandwidth then WDS stat. usign
Replies: 0
Views: 882

master interface shows double bandwidth then WDS stat. usign

master interface shows double bandwidth then WDS station is usign.
Is that how it supposed to be or is some issue?
Image
by ropeba
Sun Oct 22, 2006 5:17 pm
Forum: Wireless Networking
Topic: Problem with date and time on RB112
Replies: 2
Views: 1165

Problem with date and time on RB112

I have a problem with date and time on rb112, after every reboot date and time are automaticaly set on Jan/01/2000 00:00:00.
by ropeba
Sat Oct 21, 2006 12:25 pm
Forum: Wireless Networking
Topic: rb112 to rb112 wds, upload 12 mbita/download 4 mbita
Replies: 5
Views: 1833

I try with nstream but is even slower
by ropeba
Fri Oct 20, 2006 8:22 pm
Forum: Wireless Networking
Topic: rb112 to rb112 wds, upload 12 mbita/download 4 mbita
Replies: 5
Views: 1833

These are setings on ap / interface wireless set wlan1 name="wlan1" mtu=1500 mac-address=00:0B:6B:57:12:00 arp=enabled disable-running-check=no \ radio-name="000B6B5712A0" mode=bridge ssid="LINK" area="" frequency-mode=manual-txpower \ country=no_country_set a...
by ropeba
Fri Oct 20, 2006 8:13 pm
Forum: Wireless Networking
Topic: rb112 to rb112 wds, upload 12 mbita/download 4 mbita
Replies: 5
Views: 1833

rb112 to rb112 wds, upload 12 mbita/download 4 mbita

Hi, I have two RB112 board's, first one is in brdidge mode, adn second one is in wds-station. I'm connecting on board wich is in wds-station mode, results are: download 4 Mbita / upload 12 Mbita. All settings are default on both board's, I would like to know is it possible to achieve bigger download...
by ropeba
Thu Oct 19, 2006 7:29 pm
Forum: Wireless Networking
Topic: Problem with mikrotik configuration, help...
Replies: 6
Views: 2206

I allso want to know how to make a restriction of connection some others AP's (in client or wds mod) on my AP?
by ropeba
Thu Oct 19, 2006 1:28 pm
Forum: Wireless Networking
Topic: Block file sharing on WDS network
Replies: 7
Views: 3035

Block file sharing on WDS network

how?

Thanks
by ropeba
Thu Oct 19, 2006 12:45 am
Forum: Wireless Networking
Topic: Problem with mikrotik configuration, help...
Replies: 6
Views: 2206

Thank you, I have done all with WDS and everything wirk fine, but two litle problems are still remaining. I can't ping from "wds station" > ap "bridge" on wich he is connected, and reverse. Allso, even there is no one surfing on wireless interface it shows trafic about 128 kbps.
by ropeba
Wed Oct 18, 2006 8:06 pm
Forum: Wireless Networking
Topic: Problem with mikrotik configuration, help...
Replies: 6
Views: 2206

Problem with mikrotik configuration, help...

Hi, i have network configuration showed below.. Here's the thing; I have 2 AP's who are far from me 5 and 20 kilometeres, and till now they are used to be connected with d-link AP. Now I decide to replace those d-link AP's with mikrotik RB112, but I have problem with configuration. Clients are conne...
by ropeba
Thu Sep 14, 2006 7:36 pm
Forum: Wireless Networking
Topic: 15 km link, RB112+CM9+grid 27db 5GHz = 5 Mbita, Possible?
Replies: 1
Views: 1139

15 km link, RB112+CM9+grid 27db 5GHz = 5 Mbita, Possible?

15 km link, RB112 + CM9 + grid 27db @ 5GHz = 5 Mbita

is it possible?
by ropeba
Thu Sep 14, 2006 12:35 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

I have two gateways, one is mikrotik (10.10.0.2) for postpaid users and the other one is antamedia (10.10.0.5) for prepaid users. On dhcp server which I use I can set that some mac addresses are using one and some others are using other gateway, but with mikrotik dhcp server that is not possible. I ...
by ropeba
Wed Sep 13, 2006 8:26 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

top
by ropeba
Sun Sep 10, 2006 2:20 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

Under the Hotspot server settings, set your Address Pool to none and see if that helps.
I dont use mikrotik DHCP server, so in hotspot none of the pools was not selected.
by ropeba
Sat Sep 09, 2006 2:43 am
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

when I disable HotSpot, everything work fine...
by ropeba
Thu Sep 07, 2006 12:52 pm
Forum: Wireless Networking
Topic: 15 km link, 5 Mbita, RIC/522, Possible?
Replies: 8
Views: 2227

I have an 11km link with a couple of RIC/522 units. Tx has been set to 10dBm at both ends and the signal strength is showing -75dBm.
speed?
by ropeba
Thu Sep 07, 2006 12:48 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

I have on same mikrotik pppoe server and pool for pppoe, there's one part of the addresses which are for pppoe users and when those users are connected they get public IP and on net that public IP belong to them, still I only have problems with hotspot
by ropeba
Tue Sep 05, 2006 11:22 am
Forum: Wireless Networking
Topic: 15 km link, 5 Mbita, RIC/522, Possible?
Replies: 8
Views: 2227

15 km link, 5 Mbita, RIC/522, Possible?

http://www.mikrotik.com/systems.php#RIC_522

RIC/522

I need link of 5 Mbita to 15 km. Is it possible with RIC/522

Best regards...
by ropeba
Tue Sep 05, 2006 11:17 am
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

You can try to make sure that your NAT rules are ABOVE All your other rules, By that i mean at the top of the list, and the wait about 10 SEC and repair your "Customer SIDE Internet Connection so they get the DHCP address again and then try it, all should be good! I did it, but I still have sa...
by ropeba
Mon Sep 04, 2006 9:28 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

so, what do you think that is cousing me so much problems. is it possible that the reason is that I don't use mikrotik DHCP server?
by ropeba
Mon Sep 04, 2006 7:42 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

I did it, but I still have same problem...
by ropeba
Sat Sep 02, 2006 2:19 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

is the ip dynamic or static? that's irelevant. I want to maping local 10.10.1.1 on public 87.250.108.130 local 10.10.1.2 on public 87.250.108.131 local 10.10.1.3 on public 87.250.108.132 etc... Rule below should do that, but in my case that dont work: /ip address add address=87.250.108.130/32 interf...
by ropeba
Sat Sep 02, 2006 2:06 pm
Forum: General
Topic: PPPOE Problem
Replies: 3
Views: 1761

it's 2.9.27. version. I just got turn off MPPE encription on freeradius and it's working for about 15 minutes.
by ropeba
Sat Sep 02, 2006 1:07 pm
Forum: General
Topic: PPPOE Problem
Replies: 3
Views: 1761

PPPOE Problem

pppoe connection is stopping my transfer every five or six minutes, after i do reconnect everything works fine for a couple minutes and then same again - transfer is stopped. What's going on??
by ropeba
Sat Sep 02, 2006 12:57 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

I understand. I dont want that my clients have static IP, I want them to have dinamic. What I want to do is maping of local IP addresses 10.10.1.1-10.10.1.128 to public 87.250.108.128-87.250.108.255. About DHCP server, I dont even use mikrotik DHCP server. I use some other that is running on other m...
by ropeba
Sat Sep 02, 2006 1:17 am
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

I still have a problem. There's block of IP addresses and I want that every client who is connecting via hotspot have his own public IP. With rule which I add in this topic that dont works. Does anyone know what is the problem? To all my clients which are connected via hotspot, when they go on http:...
by ropeba
Wed Aug 23, 2006 10:35 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

I don't understund you. Those are the only rules wich i have in nat.
by ropeba
Wed Aug 23, 2006 7:22 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

up
by ropeba
Tue Aug 22, 2006 12:55 pm
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

up
by ropeba
Mon Aug 21, 2006 12:55 am
Forum: General
Topic: HotSpot and public ip (NAT)
Replies: 29
Views: 8669

HotSpot and public ip (NAT)

Hi there, I have a hotspot server on local interface 10.10.0.2 and 5 clients who do connecting via hotspot (10.10.1.1-10.10.1.5). I want to every of them have his own public IP. I try with below way, but it's not working. Does anyone know why? What's wrong with this? /ip address add address=87.250.1...
by ropeba
Tue Aug 15, 2006 8:43 pm
Forum: General
Topic: public ip to my server behind MT ( no NAT)
Replies: 10
Views: 3047

yes, my provider is give to me 87.250.126.210 for my mikrotik router, and he gave to me 128 IP addreses( 87.250.108.128/25). I have add 87.250.108.129/29 on interface where I'm connecting server, i set 87.250.108.130 to my server. I ping mikrotik (87.250.108.129) from server and everything works goo...
by ropeba
Tue Aug 15, 2006 2:38 pm
Forum: General
Topic: public ip to my server behind MT ( no NAT)
Replies: 10
Views: 3047

If I understund you well, on interface which goes to my provider I need to add address that is given to me from my provider 87.250.126.210/30 and other addresses 87.250.108.128/25 then, on "local" interface I should add 87.250.108.128/28 on interface for server I add 87.250.108.144/28 and ...
by ropeba
Tue Aug 15, 2006 12:14 pm
Forum: General
Topic: public ip to my server behind MT ( no NAT)
Replies: 10
Views: 3047

same again..I add 08.250.108.129/29 on local interface

on servers I have add:

server1: IP:08.250.108.130 gtw:08.250.108.129
server2: IP:08.250.108.131 gtw:08.250.108.129
server3: IP:08.250.108.132 gtw:08.250.108.129

everything works fine for about 5 minutes and then it has stopped again
by ropeba
Tue Aug 15, 2006 12:02 pm
Forum: General
Topic: generic host process for win 32 sevices
Replies: 1
Views: 1160

generic host process for win 32 sevices

hi, I have a ten of users who are use pppoe connection. Since yesterday it start happening that in same time all users have some error mesage "generic host process for win 32 sevices" that couse crashing of pppoe conection. I must reset all clients computers and that I can connecta againt,...
by ropeba
Tue Aug 15, 2006 12:38 am
Forum: General
Topic: public ip to my server behind MT ( no NAT)
Replies: 10
Views: 3047

Image

Image

Image


servers are connected to interface LOCAL
by ropeba
Mon Aug 14, 2006 3:21 pm
Forum: General
Topic: public ip to my server behind MT ( no NAT)
Replies: 10
Views: 3047

configured, but I still have some problem
by ropeba
Mon Aug 14, 2006 12:09 pm
Forum: General
Topic: public ip to my server behind MT ( no NAT)
Replies: 10
Views: 3047

public ip to my server behind MT ( no NAT)

hi, I have 128 (xx.250.108.128/25) ip addresses which I got from provider. Most of them I use for pppoe, but I would like to give couple of them to servers who are behind of microtic. I dont want to use nat but I want that ip's are directly on servers. I try following: I add xx.250.108.128/29 to int...
by ropeba
Sat Jul 29, 2006 8:22 pm
Forum: General
Topic: How to make reverse DNS
Replies: 2
Views: 4777

How to make reverse DNS

Could someone tell me how to make reverse DNS which instead of displaying my IP displays my host name?
by ropeba
Sat Jul 29, 2006 4:48 pm
Forum: General
Topic: SMTP problem, how?
Replies: 5
Views: 1691

I got it, first I add rule for forwarding of port 25 to Ip form provider, and then I add rule for blocking of all bandwith on port 25
by ropeba
Sat Jul 29, 2006 4:38 pm
Forum: General
Topic: SMTP problem, how?
Replies: 5
Views: 1691

but can you tell me which order should I use?
how should I configure that?

thanks
by ropeba
Sat Jul 29, 2006 4:28 pm
Forum: General
Topic: SMTP problem, how?
Replies: 5
Views: 1691

SMTP problem, how?

Does anyne know how could I set sending only via SMTP server of my provider, and all others must be rejected. I did following, but it's not working / ip firewall filter add chain=forward protocol=tcp dst-port=25 dst-address-list=SMTP action=drop comment="" disabled=no / ip firewall address...