I too noticed SNMP data is not available for all interfaces (ethernet, wireless, etc).Normis...
Another problem found...
with RouterOS v5 beta 6, i set it running on the MPLS + NV2 and apply the NV2-qos-default.
the dude manager is not able to read the snmp.
when i downgrade back to the RouterOS v5 beta 5, then i having no issue with it.
Mikrotik have highly this in the RouterOS v5 beta 5.I have found that WDS mode does not work using any of the nv2 protocols.
Wish you allow me me help for some correction for this translation ^_^:IRQ cause new problems can not be upgraded
Figure specify the CPU upgrade package can not be upgraded configuration upload no response after reboot
CPU power into the system to restore it to normal and auto reboot after the upgrade
translate.google
1) 新的问题 IRQ 引起 无法升级
2) 如图 指定CPU 配置 上传升级包无法升级 reboot 后无响应
3) 断电进入系统 恢复 CPU 为 auto 后 reboot 才正常 并升级
Normis..Yes, there are some issues with the multicore IRQ selection, it's fixed in beta7
Yes, there are also some SNMP issues that are fixed in beta7
/system backup save name=whatyouwant
It's all true. But sometimes I'm too lazy to write a such long command (plus timestamp is a keyword).more practical would be to use a script that saves with custom name and automatically emails you the files
but I will see if we can change the default name to the identity name + timestamp for example.Code: Select all/system backup save name=whatyouwant
how did you set tc /rx queue in mikrotik? what command?2 normis - found that when i map every tx and rx ethernet queue (i82576) to processor core (disable automatic sharing) - queue start working, and global-in and global-out also working (multicore enabled)
OMG confirmedmemory leak still there in x86 and leak very fast
http://forum.mikrotik.com/viewtopic.php ... 28#p221228please update kernel to 2.6.35 , atuo save irq problem 、improve netwokr performence
palese !!!
tanks
Please provide us with the support output file from your setup.We tested on a simple 10mhz wide link with 2.4 radios sr2 and KXS30SG radios and they would only connect in B no matter what was set. quickly went back to 5b5 all better...
Any news about next release ?What's new in 5.0beta6 (2010-Aug-10 13:22):
....
*) intel 82576 (uncommon expensive chip) crash/reboot to be fixed in next release
....
Just waiting sir, because so much bugs in ROS 5 beta. Just waitingWhen a ROS beta7 is expected ?
Hi...We were using MPLS for Transparent Bridging, and both side using Alix G2D2 + XR5 for PTP connection over 20 KM, with nstream mode, the throughput are 30/30 Mbps with TCP, and we were very exciting after using nv2 the throughput increasing to 40/40 Mbps..
But after 2 hours, suddenly one side of hardware lockup, and the connection loss.. we cannot remote the hardware, so we turning off and on again to make it work again.. and after 1 hour, the other side lockup too, and so on..
There was no chance to look the message report, because we have to reboot the hardware, and the log was cleared after that..
Using nstream, with same configuration have stable result, and work no problem at all
And we have tried with RB433AH + XR5 @both side, with NV2, the hardware were stable, but the connection after 1 days drop, and not reconnect after that, except we disable and enable the interface again, or change it to other mode like nstream or 802.11
Yes, You can.can i upgrade my rb333 to RouterOS v5 beta 6 ?
OK,Any news about next release ?What's new in 5.0beta6 (2010-Aug-10 13:22):
....
*) intel 82576 (uncommon expensive chip) crash/reboot to be fixed in next release
....
I would like if ask me anyone form Mikrotik team.The values available over SNMP for gps,
/system gps> print oid
date-and-time: .1.3.6.1.4.1.14988.1.1.12.1.0
longitude: .1.3.6.1.4.1.14988.1.1.12.2.0
latitude: .1.3.6.1.4.1.14988.1.1.12.3.0
altitude: .1.3.6.1.4.1.14988.1.1.12.4.0
speed: .1.3.6.1.4.1.14988.1.1.12.5.0
sattelites: .1.3.6.1.4.1.14988.1.1.12.6.0
is-valid: .1.3.6.1.4.1.14988.1.1.12.7.0
Finlay something hope Nv2 for wds fixednext version will be out next week
Hm.. I have 3 p2p (ap-bridge<->station wds) links with Hide SSID ver. 5beta6 all working, dont really sure what is not functionAnother issue is the hide ssid not function.
Please first resolve bug with restart on x86 with bridge filter.next version will be out next week
Please first resolve bug with restart on x86 with bridge filter.next version will be out next week
I send you now supout.rif form last non public version.
Please first resolve bug with restart on x86 with bridge filter.next version will be out next week
I send you now supout.rif form last non public version.
Bridge Filter is not working on v5 really?
I upgrade a lot of RBs and the bridge filter is not working...
i can scan the ssid from other wireless bridge, but when i fall back to the V4.11, the ssid is not able to scan anymore.Hm.. I have 3 p2p (ap-bridge<->station wds) links with Hide SSID ver. 5beta6 all working, dont really sure what is not functionAnother issue is the hide ssid not function.
+1When next version is coming as per normis mikrotik is supposed to release this week.
Normis you are the BOSS… However, ROS is not OS for Wireless only, give us a chance to test BGP, QOS and other functions on high-load X86 systems with new Intel chipsets , I’m really waiting for this from 5B2.we have some complications with one big change, we are still working on it.
$methods = array ( 'kex' => 'diffie-hellman-group1-sha1' );
$shell = ssh2_connect($host, 22, $methods);
function routeros_Connect($host, $username, $password) {
if (!function_exists("ssh2_connect")) die("function ssh2_connect doesn't exist");
$methods = array ( 'kex' => 'diffie-hellman-group1-sha1' );
$shell = ssh2_connect($host, 22, $methods);
ssh2_auth_password($shell, $username, $password);
return $shell;
}
function routeros_SendCommand($shell, $command) {
$stream = ssh2_exec($shell, $command);
stream_set_blocking( $stream, true );
$data = "";
while( $buffer = fread($stream, 4096) ) {
$data .= $buffer;
}
fclose($stream);
return $data;
}
routeros_SendCommand(routeros_Connect('server_ip','server_login','server_password'),'command');