Hi folks, I absolutely need to install OSPF in a group of RUT950. These routers haven’t any optional package on board but it seems that flash memory is not enough to install the package I need. Is there any chance/trick/magic to do that? Thanks
Hi…
Did you look at https://wiki.teltonika-networks.com/view/RUT950_Package_Downloads
There is a OSPF
https://opkg.teltonika-networks.com/e3f1651748814ded9771ec75341fa86b7a9f80f0a1853a686bd70bca4b74bdce/wiki/ospf_daemon.tar.gz
And dynamic routing (rut950)
https://wiki.teltonika-networks.com/view/RUT950_Routing
There is a chapter about OSPF.
Hi Marcelo,
thanks for the quick answer :), I already know the page you show me, but the problem is that I can’t install the package because, as you can see on the list, its size is 1.51 MB and I have only 1.4 MB free on the router flash, without any optional package installed and the latest firmware RUT9_R_00.07.06.17
Have you see this url?
du -a / 2>/dev/null | sort -n -r | head -n 40
Also… Remove log from the device
Sample…
View space at the flash
command df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 9600 9600 0 100% /rom
tmpfs 30072 328 29744 1% /tmp
/dev/mtdblock6 4416 452 3964 10% /overlay
overlayfs:/overlay 4416 452 3964 10% /
/dev/mtdblock7 576 312 264 54% /log
tmpfs 512 0 512 0% /de
cd /log/
ls -l
-rw-r–r-- 1 root root 444416 Feb 2 17:55 log.db
-rw-r–r-- 1 root root 129 Apr 14 2023 rms_id
-rw-r–r-- 1 root root 4 Jan 27 15:51 sim_1_pin
rm log.db
df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 9600 9600 0 100% /rom
tmpfs 30072 372 29700 1% /tmp
/dev/mtdblock6 4416 452 3964 10% /overlay
overlayfs:/overlay 4416 452 3964 10% /
/dev/mtdblock7 576 332 244 58% /log
tmpfs 512 0 512 0% /dev
ls -l
-rw-r–r-- 1 root root 0 Feb 2 17:56 log.db
-rw-r–r-- 1 root root 129 Apr 14 2023 rms_id
-rw-r–r-- 1 root root 4 Jan 27 15:51 sim_1_pin
Updating…
I found this command
opkg list-installed | awk ‘{print $1}’ | while read -r line; do if (opkg info $line | grep -q ‘install ok
installed’); then opkg --autoremove remove $line; fi; done
And last…
Try to remove at Package Manager… To clean some packets?
Hi Marcelo, thanks again. Cheking with WinSCP, it seems that I haven’t bigger files, now I’m trying to remove logs, I’ll let you know.