• pfSense fails to obtain IP after power outage

    3
    0 Votes
    3 Posts
    362 Views
    X
    I'll have to double check, but I'm usually in a rush to just get things working again. In the mean time I've followed the workaround you linked to. It makes sense and I think that's what is happening in my case too. Thanks so much!
  • Trying to setup web server control panel access with pfSense

    2
    0 Votes
    2 Posts
    218 Views
    KOMK
    https://docs.netgate.com/pfsense/en/latest/book/nat/troubleshooting.html Post screens of your NAT rule(s) and WAN rules, with any public details (like WAN address) obscured.
  • Growl on 2.3.2 Netgate

    3
    0 Votes
    3 Posts
    621 Views
    B
    I have this problem as well. My Growl server is listening for notifications and other applications work just fine. The bug was not fixed in 2.4 release (validated). I believe more people than you think use Growl. If you have a proposed fix, I am happy to help QA this. This bug is quite old - can we please have some attention on this?
  • Syslogd keeps using old IP address after interface IP address change

    3
    0 Votes
    3 Posts
    462 Views
    ?
    Done.
  • Wake on lan from mac adresses from DHCP Lease

    14
    0 Votes
    14 Posts
    1k Views
    P
    @johnpoz @JKnott @akuma1x I will try your suggestion, didn't think about doing that that way!
  • pfSense crash report

    3
    0 Votes
    3 Posts
    435 Views
    L
    @KOM thank you very much for your response.
  • High ping in Proxmox VE

    1
    0 Votes
    1 Posts
    530 Views
    No one has replied
  • Option to Hot Plug (some) Interfaces

    5
    0 Votes
    5 Posts
    1k Views
    J
    @xhivo97 said in Option to Hot Plug (some) Interfaces: Hi, Thank you for the reply. I opened a feature request here. I managed to make it work good enough so that I can use it. Have been reading the source code and managed to make some php scripts that do what I want. This creates the interface: Runs on boot-up and when the USB modem is plugged in (using devd). <?php require_once("config.inc"); require_once("interfaces.inc"); if (does_interface_exist(ue0)) { if (!is_array($config['interfaces']['opt100'])) { $config['interfaces']['opt100'] = array(); } $config['interfaces']['opt100']['if'] = 'ue0'; $config['interfaces']['opt100']['enable'] = 'true'; $config['interfaces']['opt100']['descr'] = 'WAN2'; $config['interfaces']['opt100']['blockpriv'] = 'on'; $config['interfaces']['opt100']['blockbogons'] = 'on'; $config['interfaces']['opt100']['ipaddr'] = 'dhcp'; $config['interfaces']['opt100']['ipaddrv6'] = 'dhcp6'; $config['interfaces']['opt100']['dhcp6-ia-pd-len'] = '0'; print_r($config['interfaces']); write_config($config); } sleep(2); interface_dhcp_configure(ue0); ?> This deletes the interface: I included it in /etc/rc.bootup so that the interface gets deleted on boot. <?php require_once("config.inc"); if (isset($config['interfaces']['opt100'])) { unset($config['interfaces']['opt100']); print_r($config['interfaces']); write_config($config); } ?> This script runs when the USB modem is plugged in and on boot: #!/bin/sh sleep 10 logger usb_modeswitch Changing Modem Mode usb_modeswitch -v 0x12d1 -p 0x1f01 -c /usr/local/share/usb_modeswitch/12d1:1f01 sleep 5 php /path/to/create.php I tested this and seems to work really good. Do you mind to share what 4g mdem your using ??
  • TMobile cell spot not having internet

    11
    0 Votes
    11 Posts
    1k Views
    DerelictD
    If they did that they broke NAT-T and everything NAT-T is supposed to do. Wouldn't surprise me though. If they did that they might as well just use port 500.
  • Connect via SSH as root?

    7
    0 Votes
    7 Posts
    731 Views
    jimpJ
    In the OS, the root and admin accounts are setup using the same credentials. So you just connect with root@hostname using the password for the admin account.
  • Custom Setup Question

    5
    0 Votes
    5 Posts
    585 Views
    asphalt3A
    @Gertjan said in Custom Setup Question: @asphalt3 said in Custom Setup Question: settings do i have to change in the host's OS A PC (device) can have many NIC's, like several physical RJ45, Wifi adapters and virtual NIC's. Up to you to choose the one you need. I'm not using Virtual Box myself, but surely you could find some info on the net about how to set things up. If not, there is a Hyper-V example in the pfSense doc, you could use it as a guide. Removing the upstream router : you should analyse the WAN settings of this Netgear device. Use the same settings on the WAN interface of pfSense and you'll be fine. For example, it is was DHCP, use the DHCP (client) on the pfSense WAN device. Okay, thank you!
  • Admin best practises + Yubikey

    7
    0 Votes
    7 Posts
    5k Views
    stephenw10S
    Ooo nice.
  • Tenda W15E Router IPSec, PPTP or L2TP Router to Client VPN connection

    2
    0 Votes
    2 Posts
    752 Views
    stephenw10S
    L2TP doesn't require a 'key'. There is an optional 'secret' but you don't need to enter that in pfSense. But do you really need L2TP? It looks like it support IPSec, can you not use that? Steve
  • Curious VLAN and differentiated services traffic with new TV

    24
    0 Votes
    24 Posts
    2k Views
    stephenw10S
    @JKnott said in Curious VLAN and differentiated services traffic with new TV: TP-Link does something better than Cisco!
  • 504 gateway timeout on pfsense 2.4

    4
    0 Votes
    4 Posts
    1k Views
    stephenw10S
    Restart php and then the webconfigurator at the console, menu options 16 then 11. Then check the system logs and any php error reports. Steve
  • Huawei E303 Unsupported

    3
    0 Votes
    3 Posts
    362 Views
    stephenw10S
    What point are you stuck at? Is the modem connecting and giving you an IP and a gateway? Steve
  • inconsistent internet speeds

    2
    0 Votes
    2 Posts
    298 Views
    stephenw10S
    How are you testing? How does the usage break down across cores? top -aSH Are the interupt rates from the NIC reasonable? Are they spreading load across the cores? vmstat -i Steve
  • SPAN port

    4
    0 Votes
    4 Posts
    583 Views
    stephenw10S
    The SPAN port will reflect all traffic on the bridge so you would have to add anther port, set that as SPAN and then connect the tcpdump client to that. Steve
  • SSH connection stalls when going through pfSense

    12
    0 Votes
    12 Posts
    2k Views
    johnpozJ
    @pfuzr said in SSH connection stalls when going through pfSense: I see some CISCO switches run like a jet engine for several minutes at startup! In the smb line unless your talking higher port density >28, they are normally all fanless https://www.cisco.com/c/en/us/products/collateral/switches/small-business-smart-switches/data-sheet-c78-737359.html So you don't have any fans until you hit the 28 port poe model in the sg350 line for example. As to those features, for example the $40 dgs-1100-08 has all of that other than the ACLs, and there is a poe model. And if you look at their firmware release history, they do update it.. Just trying to point out that you don't have to drop $200 bucks to get a switch that can do what you want.. And that you can get instant gratification for a few bucks ;) vs dicking with work arounds. Especially if high port density is not a requirement currently. Keep in mind that lacp is not going to get you much with your nas unless you have lots of clients, and or your devices that are going to be moving traffic to and from it also have multiple interfaces.. Or what your worried about is failure mitigation on loss of port on your switch or nas. Since you stated 8 port would work, doesn't seem like you have enough clients to worry about setting up lacp ;)
  • Create Custom pfsense

    3
    0 Votes
    3 Posts
    437 Views
    F
    thanks for your reply.
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.