• 3 short beeps exactly every 15 minutes - no idea what the cause is

    5
    0 Votes
    5 Posts
    913 Views
    stephenw10S
    Hmm, curious! I would definitely try changing the dyndns update period just to be sure it's not related. I would also check the temperature is reasonable. Steve
  • Traffic Totals not correct

    3
    0 Votes
    3 Posts
    520 Views
    gregeehG
    No ideas anyone? TIA Greg
  • VLAN vs Dual LAN for Home Business

    dual lan vlan qotom
    8
    0 Votes
    8 Posts
    2k Views
    T
    @johnpoz When I installed pfSense on the new router I created two interfaces... I had read on the basic firewall page that OPT interfaces have no rules and forgot that - thanks for setting me straight and waking me up. Firewall rules are scary but I'm getting there.
  • UI Bugs?

    3
    0 Votes
    3 Posts
    532 Views
    jimpJ
    The P2s will only show in the status if they are active. If there is no traffic that has attempted to establish the P2, then the P2 won't exist and won't show there in the list. Only P1s will show up at all times, even if they are down/inactive.
  • Access the IPSec server address from a remote IPSec server

    7
    0 Votes
    7 Posts
    889 Views
    DerelictD
    Well, in my opinion the easiest way to do that is to run DNS off the firewall so the queries are organically sourced from something interesting to the tunnel. In the Resolver (unbound) you can set one outgoing interface for queries it needs to resolve. That could be the LAN. All queries going to the outside will then have to go through NAT but that is generally not an issue. In the Forwarder (dnsmasq) you can set the source address on a per-domain-override basis. Again, if it important, I'd run a couple of bind instances on the inside.
  • Why does this forum have only an IPv4 address?

    5
    1 Votes
    5 Posts
    759 Views
    JKnottJ
    @gertjan said in Why does this forum have only an IPv4 address?: Yes: 2610:160:11:18::199 Yep. I see that too.
  • Gigabit WAN + OpenVPN -- Speed on WAN for policy routed devices

    5
    0 Votes
    5 Posts
    878 Views
    stephenw10S
    I would only expect to see that reduction if something else is using the VPN connection. If there is no VPN traffic then the full WAN bandwidth should be available for clients routing directly. Unless you have some traffic shaping in play. 100Mbs doesn't seem bad for a VPN provider but speeds do vary wildly. 70-95% is not a useful measure, there things are almost certainly limited at the VPN provider in absolute terms. What hardware are you running this on? You may be hitting a local limit there. Steve
  • VPN routing in high availability setup

    Locked
    7
    0 Votes
    7 Posts
    2k Views
    stephenw10S
    All of them if you needs communication all ways. the rules should be very specific though to avoid catching traffic incorrectly and since they apply per node often they would have 'do not sync' set. This thread is 2 years old though, please open a new thread if you have questions about a similar setup. Steve
  • Routing between interfaces..

    9
    0 Votes
    9 Posts
    1k Views
    stephenw10S
    That looks correct. You can't route over policy based IPSec. But if you NAT the subnets you can make the traffic match an existing policy. Steve
  • How to permit a new HTTPS port

    15
    0 Votes
    15 Posts
    1k Views
    L
    @zacha Thank you! you're a Hero!! Your solution helped me. And i confess, i've already seen it!
  • Traffic not going though WAN when server is on different local network

    4
    0 Votes
    4 Posts
    460 Views
    JKnottJ
    You'd have to set up the firewall rules to block traffic between the VLANs and also allow it out the VPN
  • pfSense no internet connection with Rogers Coda 4582 in Bridge Mode

    12
    0 Votes
    12 Posts
    2k Views
    S
    @jknott @bfeitell thanks a lot! After setting as DHCP, internet works under bridge mode. Will spend some time to explore IPv6.
  • Help with pfsense backup script

    12
    1 Votes
    12 Posts
    3k Views
    wgstarksW
    Here's what I finally worked out- BACKUP_HOST=<gateway_IP> BACKUP_USER=<user_name> BACKUP_PASSWORD=<user_password> # Create config file directory if it doesn't exist [ -d files/ ] || mkdir files # Fetch the login form and save the cookies and CSRF token: wget -qO- --keep-session-cookies --save-cookies cookies.txt \ --no-check-certificate https://${BACKUP_HOST}/diag_backup.php \ | grep "name='__csrf_magic'" | sed 's/.*value="\(.*\)".*/\1/' > csrf.txt # Submit the login form along with the first CSRF token and save the second CSRF token (can’t reuse the same file) – now the script is logged in and can take action: wget -qO- --keep-session-cookies --load-cookies cookies.txt \ --save-cookies cookies.txt --no-check-certificate \ --post-data "login=Login&usernamefld=${BACKUP_USER}&passwordfld=${BACKUP_PASSWORD}&__csrf_magic=$(cat csrf.txt)" \ https://${BACKUP_HOST}/diag_backup.php | grep "name='__csrf_magic'" \ | sed 's/.*value="\(.*\)".*/\1/' > csrf2.txt # Submit the download form along with the second CSRF token to save a copy of config.xml: wget --keep-session-cookies --load-cookies cookies.txt --no-check-certificate \ --post-data "download=download&donotbackuprrd=yes&__csrf_magic=$(head -n 1 csrf2.txt)" \ https://${BACKUP_HOST}/diag_backup.php -O ./files/config_${BACKUP_HOST}_$(date +%Y-%m-%d-%H-%M-%S).xml 2>/dev/null # Clean up rm cookies.txt csrf.txt csrf2.txt unset BACKUP_HOST BACKUP_USER BACKUP_PASSWORD # Remove files older than 100 days find /mnt/user/odin_backup/OdinBackUp/files/ -type f -name '*.xml' -mtime +100 -exec rm {} \; I did have to change permissions for the backup user though. Even when I used the code in the link that @Gertjan provided and just substituted the correct IP, user and password I would still get the error shown in my first post. Once I added "all pages" to the backup user's permissions the errors went away. I think that the default code in the link didn't generate an error because it uses the default admin/pfsense user which has full privileges IIRC. Just a guess. @Gertjan and @stephenw10 Thanks again for your help. Very much appreciate it.
  • sshguard

    7
    0 Votes
    7 Posts
    4k Views
    NogBadTheBadN
    Just looked in the logs as per my bold text, it wasn't hitting the sftp host but the dmz interface.
  • DHCP 5 Fixed IP

    9
    0 Votes
    9 Posts
    953 Views
    stephenw10S
    You could bridge the WAN to an internal interface and have clients there pull IPs directly from your ISP. You can still filter the traffic across the bridge. Steve
  • Time errors in system logs.

    3
    0 Votes
    3 Posts
    283 Views
    D
    Thanks jimp. I went back to the General System Settings and re-selected the correct timezone location, saved then rebooted and all seems good.
  • Script E-Mail Notification for borg backup

    3
    0 Votes
    3 Posts
    1k Views
    junicastJ
    Thanks for the fast answer. It's a shell script I wrote so the only requirement for the method is that I can do it via command line. I installed pfSense-pkg-arpwatch and tried successfully via: echo "test" | sendmail recipient@email.com The only downside is that the sender is "Arpwatch Notification" but since that's only cosmetic I will stick to this approach. Thank you Edit: As it turns out there's a mail.php that I can utilize, without the need to install arpwatch package and without the cosmetic flaws. echo "test" | mail.php -s"subject" recipient@email.com
  • OPT1 - Unifi Access Point - No Internet Access

    13
    0 Votes
    13 Posts
    3k Views
    GrimsonG
    Ok, now that we found the cause you need to make sure your rules on the WIFI net are right. If you don't intend to route the devices on that network through your VPN connection, but want them to talk to devices on another local network you will need an additional rule. That rule needs to be placed above the default rule, with the source of your WIFI net, the destination will be your local network(s) and it's gateway needs to be "default". That is because currently all connections coming from your WIFI net will be routed out of your WAN gateway. For more in-depth details you better read up on policy routing.
  • Why does pfSense set net.inet.tcp.delayed_ack to 0?

    3
    0 Votes
    3 Posts
    3k Views
    ?
    Thank you, that makes sense, I am enlightened! Appreciate the reply.
  • Captive Portal Unable to logout

    3
    0 Votes
    3 Posts
    652 Views
    S
    Thanks for notifying us of this! I just confirmed that this happens even when using the local database as authorization. If you haven't already, could you open up a ticket on redmine so it can be tracked and documented? https://redmine.pfsense.org/projects/pfsense/issues Thank you.
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.