Download the new RouterOS 5.26 release over the torrent network: http://www.mikrotik.com/download/routeros-ALL-5.26.torrent
Otherwise please visit http://www.mikrotik.com/download to pick exact version!
5.26 changelog:
*) ssh - fixed denial of service;
Source
Download the new RouterOS 5.26 release over the torrent network: http://www.mikrotik.com/download/routeros-ALL-5.26.torrent Otherwise please visit http://www.mikrotik.com/download to pick exact version!
5.26 changelog: *) ssh - fixed denial of service;
Download the new RouterOS 6.3 release over the torrent network: http://www.mikrotik.com/download/routeros-ALL-6.3.torrent
Otherwise please visit http://www.mikrotik.com/download to pick exact version!
6.3 changelog:
*) ssh - fixed denial of service;
*) traceroute - show mpls labels as well;
*) bug fix - sometimes some new interfaces could not be created properly any more (f.e. some pppoe clients could not connect);
*) console - added '/console clear-history' command that clears co
Download the new RouterOS 6.3 release over the torrent network: http://www.mikrotik.com/download/routeros-ALL-6.3.torrent Otherwise please visit http://www.mikrotik.com/download to pick exact version!
6.3 changelog: *) ssh - fixed denial of service; *) traceroute - show mpls labels as well; *) bug fix - sometimes some new interfaces could not be created properly any more (f.e. some pppoe clients could not connect); *) console - added '/console clear-history' command that clears command-line
Download the new RouterOS 6.2 release over the torrent network: http://www.mikrotik.com/download/routeros-ALL-6.2.torrent
Otherwise please visit http://www.mikrotik.com/download to pick exact version!
6.2 changelog:
*) console - added "on-error" argument to ':do' command that is executed if command raises error;
*) hotspot - fixed chap error after failed http-chap login (broken in v6.1);
*) console - added new ':return' command that interrupts execution of script and passes ar
Download the new RouterOS 6.1 release over the torrent network: http://www.mikrotik.com/download/routeros-ALL-6.1.torrent
Otherwise please visit http://www.mikrotik.com/download to pick exact version!
6.1 changelog:
*) pptp, l2tp - fixed crash when tunnel mru was too big and fragmented ip packet was received;
*) hotspot - fixed problem when after upgrade hotspot html directory was empty;
*) ipv6 nd - dns dynamic-servers were not included in router advertisements;
*) winbox - fi
#!/bin/bash
####################################
#
# Backup to NFS mount script with
# grandfather-father-son rotation
# of specified directory
#
####################################
# What to backup.
backup_files="/etc /root"
# Where to backup to.
dest="/backup/system"
# Setup variables for the archive filename.
day=$(date +%A)
hostname=$(hostname -s)
# Find which week of the month 1-4 it is.
day_num=$(date +%d)
if (( $day_num <= 7 )); then
week_file="$hostname-week1.tgz"