Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - sp33dy

#1
Quote from: axsdenied on June 19, 2025, 06:20:43 PMYou simply switch the Granularity and then take a look at the x axis.  you'll notice the history goes back months if you use 24 hours.  It doesn't mean show me the last 24 hours, it means each tick represents 24 hours.

i´m completely missing the "option" section where the history data is, when i upgrade to the latest version that option is not there any more

the entire option setting show´n 9sec in the video is just missing when i upgrade to latest

#2
i´m i the only one with this bug?
i have a fresh install without restore backup and i´m missing that option.
#3
is it just me that got this bug?
#4
Just fired up the opnsense install and updated to 25.1.9-amd64

i´m missing all the historical graphs, where have they gone?
is it moved somewhere or do i have a broken install?

under -> reporting -> health
not the traditional with cpu/interface/temperature/vpn etc etc
just some "zoom graph"?!

i did reset all the rrd graph but no difference

EDIT: like this video 9sec in
https://www.youtube.com/watch?v=IhuCAPqco9g

EDIT: not solved
when i make upgrade to the latest version i loos the "options" on top where the historical graphs is

fresh install without restoring backup and it´s still missing
ideas?
#5
really?

this cant be real can it... troll much?
#6
any ideas where that or is it for premium only?

EDIT: just watched this video and saw the "devices" tab that i have never seen before
https://www.youtube.com/watch?v=khC9TQ4pJqA&t=479s
~9:40 in

edit: premium did it
#7
that´s a arm device, go for x86

have you searched, one of the most asked questions...

anyhow, any old pc with a extra nic(intel) will work
or aliexpress..there are boxes under 200$ that will work
#8
If i enable setting "Enable log for rules" i get log entrys both on wan and lan not matter if the rule even exists on the wan interface

i have a "block" on lan port for dst: crowdsec but i dont want it filled with crowdsec hits from wan.

is it possible to not have hits on wan and only on hits originating from lan?
#9
Atleast not for me, i get traffic logs under "live view" but noting on "home page" with vidget
#10
General Discussion / Re: getting custom script working
December 14, 2022, 01:59:47 PM
Quote from: EdwinKM on December 14, 2022, 12:49:26 PM
I now see "custom script" is not a default option. So you are "hacking" the system. This will possible break with a opnsense update. It is an appliance.

well, read up on that will ya
"hacking"..was that the scariest word you could come up with?
#11
General Discussion / Re: getting custom script working
December 14, 2022, 12:39:27 PM
if you look at the atached screenshot, should that really be that syntax

get the cron running from with crontab -e is no problem
but in order to get it persistand i was looking for this solution

/s
#12
General Discussion / getting custom script working
December 14, 2022, 10:54:32 AM
in
/usr/local/opnsense/service/conf/actions.d/
i added
more actions_pingtest.conf

and the script

[start]
command:/etc/pingtest.sh
parameters:
type:script
description:run custom script
message:run script


and the pingtest script

#!/bin/sh

#=====================================================================
# pingtest.sh, v1.0.1
# Created 2009 by Bennett Lee
# Released to public domain
#*/30 * * * * #
# (1) Attempts to ping several hosts to test connectivity.  After
#     first successful ping, script exits.
# (2) If all pings fail, resets interface and retries all pings.
# (3) If all pings fail again after reset, then reboots pfSense.
#
# History
# 1.0.1   Added delay to ensure interface resets (thx ktims).
# 1.0.0   Initial release.
#=====================================================================

#=====================================================================
# USER SETTINGS
#
# Set multiple ping targets separated by space.  Include numeric IPs
# (e.g., remote office, ISP gateway, etc.) for DNS issues which
# reboot will not correct.
ALLDEST="ping.sunet.se idg.se"
#ALLDEST="irc.com"
# Interface to reset, usually your WAN
BOUNCE=igb3
# Log file
LOGFILE=/tmp/pingtest.log
#=====================================================================

COUNT=1
while [ $COUNT -le 2 ]
do

        for DEST in $ALLDEST
        do
                #echo `date +%Y%m%d.%H%M%S` "Pinging $DEST" >> $LOGFILE
                ping -c1 $DEST >/dev/null 2>/dev/null
                if [ $? -eq 0 ]
                then
                        echo `date +%Y%m%d.%H%M%S` "Ping $DEST OK." >> $LOGFILE
                        exit 0
                fi
        done

        if [ $COUNT -le 1 ]
        then
                echo `date +%Y%m%d.%H%M%S` "All pings failed. Resetting interface $BOUNCE." >> $LOGFILE
                /sbin/ifconfig $BOUNCE down
                # Give interface time to reset before bringing back up
                sleep 20
                /sbin/ifconfig $BOUNCE up
                # Give WAN time to establish connection
                sleep 20
        else
                echo `date +%Y%m%d.%H%M%S` "All pings failed twice. Rebooting..." >> $LOGFILE
#                  /sbin/shutdown -r now >> $LOGFILE
                exit 1
        fi

        COUNT=`expr $COUNT + 1`
done

it runs if i do
configctl pingtest start

any ideas why it doesent run on the 5min schedule
/s



#13
General Discussion / Re: ddclient plugin issue
November 08, 2022, 12:19:12 PM
i´m really struggling with ddns client(legacy works fine)

i´m trying to get freedns to work but it just wont update
'login=' is an invalid login.
line 4: Invalid Value for keyword 'ip' = ''
WARNING: last updated <never> but last attempt on Tue Nov 8 12:13:41 2022 failed.
FAILED: Could not get freedns update URLs from freedns.afraid.org

any one running freedns and got this working?
#14
22.1 Legacy Series / Re: os-ddclient
February 28, 2022, 01:37:32 PM
Quote from: sbellon on February 28, 2022, 01:13:56 PM
Quote from: sp33dy on February 28, 2022, 10:51:21 AM
i cant choose freeDNS on the accounts page, what do i choose there?
Hm, I can choose freeDNS ... If you can't then I don't know ...

on -> dynamic dns -> settings -> service  there i dont have freedns

is that the place?
#15
22.1 Legacy Series / Re: os-ddclient
February 28, 2022, 10:51:21 AM
Quote from: sbellon on February 28, 2022, 08:35:40 AM
Quote from: sp33dy on February 28, 2022, 08:20:45 AM
cant find how to get afraid.org (freedns) working, anyone got it running and if so how
Not intrested in running as a cron job.
Configure freeDNS, WAN interface, your hostname and your V2 password and it should work. It's important to activate freeDNS version 2 on the freeDNS web page.

i cant choose freeDNS on the accounts page, what do i choose there?