• Rate command

    10
    0 Votes
    10 Posts
    2k Views
    jimpJ
    @pan_2: Just curious - why not chmod -x ? That should work, too. I prefer to rename though.
  • Enable Data Roaming on 3G USB Modem - how?

    10
    0 Votes
    10 Posts
    4k Views
    S
    @slu: Maybe somebody now the AT command to set that flag with the pfSense? Don't try it yet, maybe this works: https://forum.pfsense.org/index.php?topic=50734.msg270569#msg270569
  • Domain DNS Server

    2
    0 Votes
    2 Posts
    645 Views
    johnpozJ
    yes it does domain overrides.  Pfsense runs either unbound which is the default resolver, or you can use the forwarder which is dnsmasq or if you want you can install bind via a package.  Then whatever these applications do is what pfsense can do with them.
  • PFSense 2.3 broke tftp proxy feature

    6
    0 Votes
    6 Posts
    4k Views
    S
    TFTP helper work. Thanks. I have one additional questions. TFTP helper bind to IP 127.0.0.1. My public network is /24. IPv4 interface XXX.XXX.XXX.2. Server use tftp boot XXX.XXX.XXX.111 I would like that outgoing IP tftp is XXX.XXX.XXX.111, but IP is XXX.XXX.XXX.2. Outbound NAT rula 127.0.0.0.8 is set to XXX.XXX.XXX.111, bit not work. How can I set outgoing IP to XXX.XXX.XXX.111. IP is added to IP Alias.
  • Need some help with a /28 range of IP's and how to use them

    2
    0 Votes
    2 Posts
    777 Views
    C
    I think I may have found my issue: https://doc.pfsense.org/index.php/VirtIO_Driver_Support I am using KVM as my hypervisor, and I an running VirtIO NIC's. I ticked that one freaking check box to disable hardware checksum offloading, and rebooted my pfSense machine and BLAM! Everything is working now. I spent the weekend dicking around with this. HAHA! And it came down to that.
  • Intermittent WAN Outage/High Latency - SG 2440

    10
    0 Votes
    10 Posts
    1k Views
    DerelictD
    You might try putting this into google: T05.0 3-Critical Comcast Seems to be pertinent results to me.
  • High CPU load under network load

    5
    0 Votes
    5 Posts
    2k Views
    R
    So i made a fresh install and tested it with 2 other hosts. My results: host1->pfsense 930 Mb/s 75-80% CPU pfsense->host1 940Mb/s  60% CPU host1->host2 (via pfsense as router/NAT) 720Mb/s ~25% CPU on pfsense This looks somewhat better. So, i guess pfsense handles handles forwarding packets not the same way as passing to user space app. The only thing to figure out is cpu usage when using PPP WAN (my test setup had static IP), but i think it should not be much worse. I consider my issue resolved. Thank you all.
  • Very weird static IP WAN problem

    5
    0 Votes
    5 Posts
    1k Views
    DerelictD
    MAC spoofing should work fine. Their switch can't tell the difference. Diagnostics > Packet Capture on WAN and set the level of detail to full and check the MAC and IP addresses being sent.
  • Change WIFI password from commandline

    2
    0 Votes
    2 Posts
    1k Views
    M
    after a week trying i finally made a script to change the wifi password on my SG-2440 from the command line i know its a dirty script but it does do the job its syncs the pfsense graphical interface and its making a html file where the current password is stored. this script runs in the crontab every 23:59 and logs all command to my syslog machine (splunk) the code #!/bin/sh currconfigpwd="`/bin/cat /cf/conf/config.xml |/usr/bin/grep passphrase | /usr/bin/cut -f 2 -d\">\" | /usr/bin/cut -f 1 -d\"<\"`" newpwd="`/bin/cat /dev/urandom | /usr/bin/tr -dc 'a-zA-Z0-9' | /usr/bin/fold -w 8 | /usr/bin/head -n 1`" currwlanconfpwd="`/bin/cat /var/etc/hostapd_ath0_wlan0.conf |/usr/bin/grep wpa_passphrase |/usr/bin/cut -f 2 -d\"=\"`" /bin/echo "change-wifi-password : This script will update the wifi password with 6 random chars." /bin/echo "change-wifi-password : --------------------------------------------------------------" /bin/echo "change-wifi-password : Current wifi password in /cf/conf/config.xml : $currconfigpwd " /bin/echo "change-wifi-password : Current wifi password in /var/etc/hostapd_ath0_wlan0.conf : $currwlanconfpwd " if [ "$currconfigpwd" != "$currwlanconfpwd" ] then /bin/echo "change-wifi-password : Passwords are not equal ... exiting " /bin/echo "-- $currconfigpwd -- $currwlanconfpwd --" exit 1 fi /bin/echo -n "change-wifi-password : Removing old /var/run/hostapd_ath0_wlan0.pid file ..." /bin/rm /var/run/hostapd_ath0_wlan0.pid /bin/echo "Done!" /bin/echo -n "change-wifi-password : Seting new password ($newpwd) in /var/etc/hostapd_ath0_wlan0.conf ..." /bin/cat /var/etc/hostapd_ath0_wlan0.conf | /usr/bin/sed "s/$currwlanconfpwd/$newpwd/" > /var/etc/hostapd_ath0_wlan0.conf.NEW /bin/mv /var/etc/hostapd_ath0_wlan0.conf.NEW /var/etc/hostapd_ath0_wlan0.conf /bin/echo "Done!" /bin/echo -n "change-wifi-password : Killing old hostapd_ath0_wlan0 daemon ..." #psnum="`/bin/ps aux |/usr/bin/grep \"/usr/sbin/hostapd -B -P /var/run/hostapd_ath0_wlan0.pid\" |/usr/bin/grep -v /usr/bin/grep | /usr/bin/awk '{print $2}'`" psnum="`/bin/ps -auxw |/usr/bin/grep hostapd_ath0_wlan0.pid|/usr/bin/grep -v /usr/bin/grep | /usr/bin/awk '{print $2}'`" /bin/echo -n "$psnum " /bin/kill $psnum /bin/echo "Done!" /bin/echo -n "change-wifi-password : Starting hostapd_ath0_wlan0 daemon ..." /usr/sbin/hostapd -B -P /var/run/hostapd_ath0_wlan0.pid /var/etc/hostapd_ath0_wlan0.conf >/dev/null /bin/echo "Done!" /bin/echo -n "change-wifi-password : Seting new password ($newpwd) in /cf/conf/config.xml ..." /bin/rm /cf/conf/config.xml.NEW /usr/bin/sed "s|$currconfigpwd|$newpwd|" /cf/conf/config.xml >/cf/conf/config.xml.NEW /bin/cp /cf/conf/config.xml.NEW /cf/conf/config.xml /bin/rm /tmp/config.cache /bin/sleep 1 /usr/local/bin/php -f /root/write-apply.php /bin/echo "Done!" /bin/echo -n "change-wifi-password : Making intranet webpage passwordoftheday.html in /usr/local/www ..." /bin/echo " <center>" >/usr/local/www/passwordoftheday.html /bin/echo " **PASSWORD OF THE DAY WILL BE ACTIVE FOR 24 HOURS** ##### Generated on : `date` " >>/usr/local/www/passwordoftheday.html /bin/echo " **PASSWORD : $newpwd** " >>/usr/local/www/passwordoftheday.html /bin/echo "Done!" and the write-apply.php file #!/usr/local/bin/php -q require_once('/etc/inc/pkg-utils.inc'); require_once('/etc/inc/config.lib.inc'); write_config(); ?> have fun with it ;-) m </center>
  • Firewall Logs Dashboard Widget does not save selected Interface

    3
    0 Votes
    3 Posts
    765 Views
    R
    You're right. Selecting the interface and logging out did it for me. After relogin and browsing through the menus it still kept my interface. Thank you!
  • 2.3 - LAGG, VLAN, Carp - after Update no route

    6
    0 Votes
    6 Posts
    1k Views
    M
    Hi again, my Problem is still there. I found out now, that the Problem is the Slave-System! Exactly after five days the second Server does something with the Carp and the Routing failes. I don't know what happen there but after reboot from the Slave-System everything is fine again - till the next five days. The Master-Hardware is changed, the slave not. Should i? What should i Test next? I have no ideas anymore and it's not so nice to get sunday a wake up call from the company that the problem is back again. Thanks!
  • Need help - Boy Scout Camp Setup

    4
    0 Votes
    4 Posts
    898 Views
    DerelictD
    It is far easier to allow PoS, VPN and allow access to a particular (scout) site than it is to block just things that are hosted all over the world, on CDNs, etc. •  Block video from playing in facebook (not necessarily block facebook though) Good luck with that since facebook is pretty much all HTTPS. Might as well try to allow whatsapp but block whatsapp messages containing curse words. I believe what you are trying to do is pretty much impossible and you would be better spending your time blocking everything and passing only what they need access to.
  • Bandwidth consumption not adding up

    1
    0 Votes
    1 Posts
    385 Views
    No one has replied
  • New Error Making Changes to Radius

    1
    0 Votes
    1 Posts
    472 Views
    No one has replied
  • Change default LAN interface

    1
    0 Votes
    1 Posts
    643 Views
    No one has replied
  • Am I missing how to get to 'next page' of system firewall logs?

    2
    0 Votes
    2 Posts
    429 Views
    C
    There is currently no pagination in the logs.
  • Configure pfsense for a simple wan/lan via vmware workstation

    2
    0 Votes
    2 Posts
    933 Views
    B
    btw i can ping the hostvm but not the ip of the set 192.168.1.1 at lan
  • 0 Votes
    3 Posts
    854 Views
    F
    Same problem here.  Doesn't happen particularly often, but usually it is terminal (i.e. it doesn't recover).  The firewall still does all it is supposed to do, but web console just doesn't respond.  Our firewall box has several IPSec and OpenVPN VPNs set up on it, but there doesn't seem to be a specific action that causes it.
  • Email alerts when connection on certain ports made

    3
    0 Votes
    3 Posts
    647 Views
    jahonixJ
    Isn't that related to port security of your switch? I'm pretty sure that can be handled by SNMP and the various tools available. Wait, with ports you refer to IP ports, not switch ports, right? Something in the SNMP MIBs for pfSense maybe?
  • How can I block these from my logs?

    4
    0 Votes
    4 Posts
    1k Views
    jimpJ
    If you disabled IPv6 in the GUI then it's doing what you asked. It's blocking and logging IPv6 since that's what the option does. You could instead make a floating tab rule to block – and not log -- IPv6 from any/to any, and make sure all of your interfaces have IPv6 set to "None" as well. You could also use a block (and not log) rule on each of the interface tabs.
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.