• Idea to install TCPcrypt into pfSense

    3
    0 Votes
    3 Posts
    1k Views
    S
    @doktornotor: There is no iptables on pfSense in the first place. Thanks for your reply, because I'm new to BSD and pfsense would you be able to help me set TCPcrypt up, as I see you are very clued on to pfsense setup and you have already saved me with with the code you did on setting up firewalls and there lists.
  • Package Build Failed - Poudriere

    7
    0 Votes
    7 Posts
    2k Views
    S
    Got it. The BUILD_AS_NON_ROOT did the trick. Thank you.
  • Error building filterdns-1.0.9

    1
    0 Votes
    1 Posts
    656 Views
    No one has replied
  • New Feature Load Balance Per Amount Of GB

    2
    0 Votes
    2 Posts
    852 Views
    H
    you could probably create a package that hooks into the data of Status_Traffic_Totals (vnstrat) to monitor the usage and disable the interface when a certain amount of gigabytes is transferred. you could submit a feature request on redmine.pfsense.org to see if the main developers are interested and/or create a bounty for some of the community members
  • Load external module for squid based on ecap

    1
    0 Votes
    1 Posts
    630 Views
    No one has replied
  • [SOLVED] Unable to submit PRs in FreeBSD-ports repo

    8
    0 Votes
    8 Posts
    2k Views
    D
    @doktornotor: Oh well… I'll delete the entire repo and see if it helps. Hmmmm, that worked. Not exactly an ideal "fix".  >:(
  • Add checkbox to captive portal config

    6
    0 Votes
    6 Posts
    2k Views
    H
    glad to be of some use, every once in a while  8)
  • Howto build a package for the webinterface

    4
    0 Votes
    4 Posts
    747 Views
    D
    [image: 4214180-800d25a13e8c028f4c1887bb1072f5f09bba55138e875cb66a02402dd6e7fbfe.jpg]
  • 0 Votes
    3 Posts
    607 Views
    T
    Thanks for that pointer, I will check this package out. I suppose the system I authenticate against is kinda arcane. I run pfsense to manage the network on a leisure flying airport. Our club uses a cloud based system to manage reservations, flights, licenses etc - the whole 9 yards. This system has a REST interface against which I authenticate pilots wanting to access our network. This system is in use roughly by about 250 clubs in Germany. So, it is not completely arcane - but on a global scale it's probably completely irrelevant :-) cheers Torsten
  • Building pfSense

    2
    0 Votes
    2 Posts
    2k Views
    P
    Most of the code is just interpreted PHP and bash scripts… So just use the normal installers to install a VM. Then you can GitSync it (see the console menu pfSense tools option, palyback gitsync...) You can then edit files however you like (for small things, I just use the Diagnostics->Edit in the GUI, and cut-paste from a "real" editor on my laptop). Then submit the changes to a git clone branch and make a pull request (lots of ways to achieve this - e.g. I have a fork on GitHub, cloned to my laptop, make branches on the laptop, push them up to GitHub when they are good, then make the pull request). For the most unusual case that you need to compile something, then you will have to work out how to have a "real" build environment.
  • AT&T (and other ISP's) 6rd ipv6 mtu issues

    2
    0 Votes
    2 Posts
    2k Views
    S
    I've got quite similar issues. By default working with 6rd and my providers gateway, i had lots of fragmented packages as well as packet loss. Therefore connecting to encrypted ipv6 websites was real slow. After analyzing the traffic with wireshark, my provider told me to set the mtu for ipv6 traffic to 1472. I configured this by setting the mtu on the wan_stf interface and have the radv service distribute this mtu value with its route advertisements. Since pfsense seems to be unable to do such things by default, I used the patch plugin (https://doc.pfsense.org/index.php/System_Patches) and applied the following crude patch: BEWARE: Only apply this patch, if you are able to deduct its consequences. I am only using the 6rd gateway of my provider for any IPv6 traffic. This might not apply to you. I applied this patch to version 2.3.2-RELEASE-p1 diff --git a/src/etc/inc/interfaces.inc b/src/etc/inc/interfaces.inc index 4388ef9..4e8e970 100644 --- a/src/etc/inc/interfaces.inc +++ b/src/etc/inc/interfaces.inc @@ -3756,6 +3756,7 @@ function interface_6rd_configure($interface = "wan", $wancfg) {         pfSense_interface_flags($stfiface, IFF_LINK2);         mwexec("/sbin/ifconfig {$stfiface} inet6 {$rd6prefix}/{$rd6prefixlen}");         mwexec("/sbin/ifconfig {$stfiface} stfv4br " . escapeshellarg($wancfg['gateway-6rd'])); +      mwexec("/sbin/ifconfig {$stfiface} mtu 1472");         if ($wancfg['prefix-6rd-v4plen'] >= 0 && $wancfg['prefix-6rd-v4plen'] <= 32) {                 mwexec("/sbin/ifconfig {$stfiface} stfv4net {$ip4address}/" . escapeshellarg($wancfg['prefix-6rd-v4plen']));         } diff --git a/src/etc/inc/services.inc b/src/etc/inc/services.inc index 64c40af..46d10be 100644 --- a/src/etc/inc/services.inc +++ b/src/etc/inc/services.inc @@ -161,7 +161,7 @@ function services_radvd_configure($blacklist = array()) {                 $mtu = get_interface_mtu($realif);                 if (is_numeric($mtu)) { -                      $radvdconf .= "\tAdvLinkMTU {$mtu};\n"; +                      $radvdconf .= "\tAdvLinkMTU 1472;\n";                 } else {                         $radvdconf .= "\tAdvLinkMTU 1280;\n";                 } @@ -363,7 +363,7 @@ function services_radvd_configure($blacklist = array()) {                 }                 $mtu = get_interface_mtu($realif);                 if (is_numeric($mtu)) { -                      $radvdconf .= "\tAdvLinkMTU {$mtu};\n"; +                      $radvdconf .= "\tAdvLinkMTU 1472;\n";                 } else {                         $radvdconf .= "\tAdvLinkMTU 1280;\n";                 } I hope this might help someone with similar issues. Of course it would be nice if the mtu could be adapted on the pfSense web interface.
  • Pfsense 2.3.1 compilation environment

    13
    0 Votes
    13 Posts
    5k Views
    J
    Not using the portlint command I go ahead and copied the package to my pfsense box and install it successfully. So this is it.  Thank you all for your help.
  • MOVED: Off-Topic: Captive Portal - Custom Portal development.

    Locked
    1
    0 Votes
    1 Posts
    561 Views
    No one has replied
  • What's needed to add a FreeBSD port as a package

    5
    0 Votes
    5 Posts
    2k Views
    S
    Thanks - perfect answer. (Maybe add the info in the last 2 answers to dev package documentation?)
  • 2.2 build help

    11
    0 Votes
    11 Posts
    10k Views
    M
    Thank you for reply… I use 2.2.3 repo and the path /home/pfsense/tools/pfPorts/www/pecl-APC is exist, my make try result: root@FBSD101X64:/home/pfsense/tools/pfPorts/www/pecl-APC # make ===>  License PHP301 accepted by the user ===>  Found saved configuration for pecl-APC-3.1.14_1 ===>  pecl-APC-3.1.14_1 depends on file: /usr/local/sbin/pkg - found ===>  Fetching all distfiles required by pecl-APC-3.1.14_1 for building ===>  Extracting for pecl-APC-3.1.14_1 ===>  SHA256 Checksum OK for PECL/APC-3.1.13.tgz. ===>  Patching for pecl-APC-3.1.14_1 ===>  Applying extra patch /home/pfsense/tools/pfPorts/www/pecl-APC/files/extra-patch-fix-build-55 ===>  Configuring for pecl-APC-3.1.14_1 ===>  Building for pecl-APC-3.1.14_1 make[2]: cannot open Makefile. make[2]: stopped in /home/pfsense/tools/pfPorts/www/pecl-APC/work/APC-3.1.13 ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 Stop. make[1]: stopped in /home/pfsense/tools/pfPorts/www/pecl-APC *** Error code 1 Stop. make: stopped in /home/pfsense/tools/pfPorts/www/pecl-APC Next try with option MAKE_JOBS_UNSAFE=yes root@FBSD101X64:/home/pfsense/tools/pfPorts/www/pecl-APC # make MAKE_JOBS_UNSAFE=yes install ===>  Building for pecl-APC-3.1.14_1 make[2]: cannot open Makefile. make[2]: stopped in /home/pfsense/tools/pfPorts/www/pecl-APC/work/APC-3.1.13 *** Error code 1 Stop. make[1]: stopped in /home/pfsense/tools/pfPorts/www/pecl-APC *** Error code 1 Stop. make: stopped in /home/pfsense/tools/pfPorts/www/pecl-APC root@FBSD101X64:/home/pfsense/tools/pfPorts/devel/php55-pfSense-module # make mkdir -p /home/pfsense/tools/pfPorts/devel/php55-pfSense-module/work/pfSense-0.1 cp -r files/* /home/pfsense/tools/pfPorts/devel/php55-pfSense-module/work/pfSense-0.1 ===>  Patching for php55-pfSense-module-0.1_2 ===>  Configuring for php55-pfSense-module-0.1_2 ===>  Building for php55-pfSense-module-0.1_2 make[1]: cannot open Makefile. make[1]: stopped in /home/pfsense/tools/pfPorts/devel/php55-pfSense-module/work/pfSense-0.1 ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 Stop. make: stopped in /home/pfsense/tools/pfPorts/devel/php55-pfSense-module Next try with option MAKE_JOBS_UNSAFE=yes root@FBSD101X64:/home/pfsense/tools/pfPorts/devel/php55-pfSense-module # make MAKE_JOBS_UNSAFE=yes ===>  Building for php55-pfSense-module-0.1_2 make[1]: cannot open Makefile. make[1]: stopped in /home/pfsense/tools/pfPorts/devel/php55-pfSense-module/work/pfSense-0.1 *** Error code 1 Stop. make: stopped in /home/pfsense/tools/pfPorts/devel/php55-pfSense-module root@FBSD101X64:/home/pfsense/tools/pfPorts/devel/php55-pfSense-module # Can you help me please?!
  • Add notify when an update of package is available

    2
    0 Votes
    2 Posts
    878 Views
    jimpJ
    Not currently. The update check is only performed when your browser loads the page. To do so on a regular basis for notifications would place a much, much higher load on our servers for very minimal benefits. Unless a package has a security problem, is misbehaving, or you need a new feature, most of the time you don't need to upgrade it immediately.
  • Bootstrap questions

    1
    0 Votes
    1 Posts
    871 Views
    No one has replied
  • Support for lcm162 module in lcdproc webinterface

    1
    0 Votes
    1 Posts
    788 Views
    No one has replied
  • Find captiveportal rol time in php

    1
    0 Votes
    1 Posts
    809 Views
    No one has replied
  • Monitor PHP-FPM and Nginx - Script for low memory environments / Alix

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.