• Proper configuration

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    N

    Got it ! Thanks anyway. I had the box pointing at itself

  • Port forwarding problem

    Locked
    23
    0 Votes
    23 Posts
    6k Views
    J

    I FOUND THE PROBLEM!  ;D

    It actually has to do with the captive portal. I had to add to and from rules in the allowed IP addresses list. I already had added the server's MAC to the MAC Pass-Through list, and thought that was all I needed to do, but I was wrong. Now that I have added the IP address of the server to the "allowed IP addresses" list in Captive Portal section it is working as it should be.

    Thank you guys for helping me troubleshoot. :)  You all have been quite helpful!

  • Enable/disable existing rule via script

    Locked
    4
    0 Votes
    4 Posts
    6k Views
    W

    following code does the trick

    require_once("config.inc"); require_once("functions.inc"); require_once("filter.inc"); require_once("shaper.inc"); require_once("ipsec.inc"); require_once("vpn.inc"); /* invalidate interface cache */ get_interface_arr(true); $retval = 0;                 $retval = filter_configure();                 clear_subsystem_dirty('filter');                 pfSense_handle_custom_code("/usr/local/pkg/firewall_rules/apply");                 echo "The settings have been applied. The firewall rules are now reloading in the background. ";
  • RRD Graph backup issue

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    stephenw10S

    That command tells FreeBSD to remount an already mounted slice. It is telling you that it isn't already mounted. Which is bad, /cf should be mounted.
    It looks like this thread: http://forum.pfsense.org/index.php/topic,56506.0.html
    What does your output from the CLI 'mount' command look like?

    Steve

  • Wifi and LAN Bridging

    Locked
    8
    0 Votes
    8 Posts
    4k Views
    GruensFroeschliG

    Depending on the OS you use on these additional PCs you might be able to configure them to use VLANs directly.
    –> The PCs would communicate via tagged frames only.

    Of course this only works if they aren't dynamically comming and going and aren't managed by you.

  • Issues with 2.0.1 ISO md5/sha256 sum

    Locked
    5
    0 Votes
    5 Posts
    2k Views
    C

    yeah Chrome isn't playing nicely with thttpd for some reason. I don't see any config options related to that in thttpd. Anyone know how to fix that? We use it because that server serves the bogon updates and it scales awesomely well for huge scale file downloads where Apache was a real headache. I'll look at it more at some point when time permits.

  • How to use PAP instead of CHAP?

    Locked
    4
    0 Votes
    4 Posts
    4k Views
    M

    OK, I'll try it. thanks

  • Problem with TCP connection on KVM virtualization

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    maxxerM

    apparently there's something else, probably in the firewall.
    I have an IPSEC lan2lan vpn to another office, traffic from the other end to pfsense work, while the other way around just for UDP/ICMP packets. http doesn't work either!

  • Ad-supported Hotspot with pfsense?

    Locked
    1
    0 Votes
    1 Posts
    832 Views
    No one has replied
  • [solved] version 1.2.3 Slow Wan (no autosense)

    Locked
    7
    0 Votes
    7 Posts
    2k Views
    B

    The problem is solved by the provider. They have set the LAN interface on 100 / Full duplex.

  • PANTECH UML290 - 3G/4G - WORKING - PFSENSE

    Locked
    4
    0 Votes
    4 Posts
    5k Views
    M

    See my notes here for updated info on working with the UML290:
    http://forum.pfsense.org/index.php/topic,56696.0.html

  • Verizon Pantech UML290 and public IP addresses

    Locked
    1
    0 Votes
    1 Posts
    5k Views
    No one has replied
  • BT Infinity FTTC, PPPoE Static IPs

    Locked
    7
    0 Votes
    7 Posts
    4k Views
    stephenw10S

    Ah, interesting. I read that more as a figure of speech than a defined connection method. As in simply not one of the static IPs. However I could be mistaken. He was not using a fibre connection though so it could easily be different. I was not aware that BT offered a dhcp assigned service for broadband at any time. Some LLU ISPs did though. I've been caught out by that before.

    Steve

  • 30 second phone call ??

    Locked
    10
    0 Votes
    10 Posts
    6k Views
    chpalmerC

    With Siproxd you set it to look at a particular port. Ive only been able to get 5060 to work here. But then to the provider it looks like your natted device has a public IP.

    But looks like you got it working.    :)

  • Pfr_unroute_kentry: delete failed.

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Internet Cafe Network Router

    Locked
    13
    0 Votes
    13 Posts
    6k Views
    D

    @neteffectcafe:

    Yes i am canning Rogers as its throttled all to hell with pings hovering at 400 if ANYONE hits P2P, including game updates that use p2p. And at about 4 or 5 it slows down when all the local kids come home. i am surrounded by buildings which are probably over sold.

    The bell line is fine unless the up load breaks 500k, then it also goes haywire and hits 400 to 500 ping and throttles. I am hoping for 16/16 FTTN which they swear is unthrottled and has no caps. We will see. if worse comes to worse i will get someone who knows far more than I to come in and implement MLPPP when i am forced to switch to Teksavvy.

    You are going to need some systems side work to help reduce the load.

    Most free to play (account based) games do not actually need to be updated the normal way.  You can usually bypass the updating process by updating only one client and replicating the game directory on the other computers.
    Certain games may store the versioning information in the registry key, export this together with the copy process and manually import the key on the other computers if need be.

    Some tools that can make your life better are Nircmd, Autoit (simple but powerful scripting language), batch files, Robocopy & Task scheduler.

    What I used to do was to implement a schedule to load a custom written program (in Autoit) on startup.  The program tests for the existence of certain flag files (an empty txt file with specific name in certain directories).  Upon encountering the files, it will take certain actions.  eg. Import a reg file in a certain directory.
    Since AutoIT can be compiled into an exe without any UI, the process cannot be closed normally by the customers like a batch/ cmd file.

    This basically allows me to copy & paste the updated game folder & reg file onto the other computers and insert a txt file marker at the same time.  Rebooting the computer will then import the reg key automatically and there won't be a need to update the client, thus, reducing the internet bandwidth usage.

    If your computer naming convention is done properly, you can use a batch script to automate the copy process.

    This is an example script I used in the early parts (subsequently changed it to allow parameters to be parsed and added more variables to allow the script to become a universal template):
    I had my computers with names in sequential order.  eg.  PC01, PC02…..PC34, PC35
    If you want to reuse this, you will need a similar way of connecting to the computer by name or IP (change the share path variable into IP address octets instead)

    @ECHO OFF SET STARTRG=1 SET ENDRG=30 SET SRCDIR="c:\program files\game dir" SET DSTDIR=\game dir SET LOGDIR=C:\TEMP\ SET LOGFILE=GAME_Log.Log SET LOGPATH=%%LOGDIR%%LOGFILE SET OPTS=/MIR /COPY:DAT /DCOPY:T /NFL /NDL /NP /R:3 /W:10 IF NOT EXIST %%LOGDIR MKDIR %%LOGDIR for /L %%x in (%%STARTRG,1,%%ENDRG) DO ( if %%x LSS 10 ( ECHO Copying to PC0%%x... if %%x equ %%STARTRG ( robocopy /LOG:%%LOGPATH %%OPTS %%SRCDIR "\\pc0%%x%%DSTDIR" ) else ( robocopy /LOG+:%%LOGPATH %%OPTS %%SRCDIR "\\pc0%%x%%DSTDIR" ) ) else ( ECHO Copying to PC%%x... robocopy /LOG+:%%LOGPATH %%OPTS %%SRCDIR "\\pc%%x%%DSTDIR" ) ) pause
  • Multilink PPP using VLANs, two 1.5 meg DSL modems?

    Locked
    5
    0 Votes
    5 Posts
    7k Views
    ?

    I also recommend Olypen if you're in Washington state,  i have two dsl lines also with mlppp.

  • Frequent system panics

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    demD

    Thanks, Jim. Maybe I'll get lucky with 2.1.

  • Disable NAT

    Locked
    5
    0 Votes
    5 Posts
    1k Views
    N

    cool thanks for the replies again. I am going to be so happy having this network down to bare essentials. One isp gateway, one router. I like SIMPLE.

  • Forwarding a external connection

    Locked
    5
    0 Votes
    5 Posts
    1k Views
    L

    Thank you very much steve….that was helpful

Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.