• How to add a new game?

    3
    0 Votes
    3 Posts
    837 Views
    tShaperT

    Thank you. Helped a lot.

  • Do I really have to add a "q" in front of the queue name for RRD to work?

    2
    0 Votes
    2 Posts
    782 Views
    C

    I did several more tests on this.
    Whenever the queues don't have the letter "q" in front of the name they didn't show up in the RRD graphs.

    Just in case anyone is having the same issue…

  • Layer 7 Not working?

    5
    0 Votes
    5 Posts
    2k Views
    T

    bump

    I'm still getting this error:

    ipfw-classifyd: unable to write to divert socket: Invalid argument

    I'm at a loss, any ideas?

  • Traffic shaping only to router

    3
    0 Votes
    3 Posts
    1k Views
    B

    Please try to clarify your question. Is it really the case you only want to shape traffic to the router itself? Or is it really the case that you want to shape traffic from the WAN to any host on a LAN but not between different LAN/DMZ hosts. It would be helpful if you made a network diagram and then gave some examples of traffic you would and would not like to shape.

  • Problems getting traffic into queues other than the default

    11
    0 Votes
    11 Posts
    2k Views
    B

    Well, after playing around some more with rules I think I got it to do what I want but I don't understand why. If someone can explain I would appreciate it.

    The rule I created which ended up working (it seems) is a floating match rule applied in all directions on all interfaces with a SOURCE IP address of the inside system who's traffic I want to put through the queue (172.17.110.61 in my example). Why it's the source IP is the mystery to me because the traffic I want to shape is traffic DESTINED for 172.17.110.61 and originating from the Internet not traffic originating from 172.17.110.61…

    Can anyone explain how/why this works?

  • Basic shaping question

    1
    0 Votes
    1 Posts
    751 Views
    No one has replied
  • Traffic Shape bump sched buckets to 256 (was 0)

    1
    0 Votes
    1 Posts
    966 Views
    No one has replied
  • Problem with queueing web server traffic

    4
    0 Votes
    4 Posts
    1k Views
    ?

    The queues aren't my issue (I GUESS!) its about the queues are ignoring the shaping (kinda). At least that's how it feels to me.

    I give it a whirl on the weekend and report back :)

  • Split available WAN bandwidth between two LANs

    2
    0 Votes
    2 Posts
    856 Views
    P

    I think you could do this with either of the 2. There might be less work involved with the limiter.

  • Root queue in "Status: Traffic shaper: Queues" is showing double values

    2
    0 Votes
    2 Posts
    2k Views
    C

    In the meantime I found a workaround which makes the PPS and the Bandwidth column showing the correct values.

    status_queues.php is reading from a file called /tmp/qstats
    This /tmp/qstats file is already having the sum of each child queues for the root queue for bandwidth and PPS. But the PHP code still adds the amount of all child queues to it which is causing the doubles.

    I did a change in status_queues.php to fix it. I commented two lines (highlighted in red):

    function statsQueues($xml){
    global $statistics;

    $current = new QueueStats();
    $child = new QueueStats();
    $current->queuename = $xml['name'] . $xml['interface'];
    $current->queuelength = $xml['qlength'];
    $current->pps = $xml['measured'];
    $current->bandwidth = $xml['measuredspeedint'];
    $current->borrows = intval($xml['borrows']);
    $current->suspends = intval($xml['suspends']);
    $current->drops = intval($xml['droppedpkts']);
    if (is_array($xml['queue'])) {
    foreach($xml['queue'] as $q) {
    $child = statsQueues($q);
    /* $current->pps += $child->pps;
    $current->bandwidth += $child->bandwidth; */
    $current->borrows += $child->borrows;
    $current->suspends += $child->suspends;
    $current->drops += $child->drops;
    }
    }
    unset($child);
    $statistics[] = $current;
    return $current;
    }

  • Pls help: blocking p2p (bittorrent) on Layer7 not working

    3
    0 Votes
    3 Posts
    2k Views
    W

    I guess that could be one probable reason why it is really hard blocking P2P in Layer7 now due to this encryption using random ports.

    As you can see one sample we can site, on bittorrent program by default the encryption is disabled but for other peers it is possible that it is encrypted on their end.

    Others are welcome to chip in their ideas on this. Thanks again Harvy66.

  • Manual setup works?

    1
    0 Votes
    1 Posts
    776 Views
    No one has replied
  • Single WAN Muti LAN setup for bandwidth division HELP!!!!

    2
    0 Votes
    2 Posts
    954 Views
    C

    For simply assigning bandwidth to different LANs looks like the limiter will do an easy job for you.
    https://doc.pfsense.org/index.php/Traffic_Shaping_Guide#Limiter

  • Pls help: Limit total bandwidth and limit per IP

    7
    0 Votes
    7 Posts
    4k Views
    W

    @cheonne:

    @waldopulanco:

    @cheonne:

    @waldopulanco:

    @cheonne:

    just get idea of foxale08 in this thread https://forum.pfsense.org/index.php?topic=63531.0

    thanks this is informative, hope it will work too to pfsense 2.1.2, I hope it will equally share on each ip. how about no limit on squid proxy? thank you so much!!

    the howto of foxale08 is still working in 2.1 and higher versions (2.1.1,2.1.2,2.1.3)
    tested only in single dsl line
    with regards to squid, try to pud your limiter in floating rule or if you want in lan rule, make an external cache server

    thanks about the bandwidth sharing, I try it but not working, I try to download a file and then I try to browse a website to other pc but the internet on other pc was slow to load a page.

    do you have squid?
    if yes, then, use delay pools for extensions.

    I have no idea about delay pools I am new in pfsense, if you don't mind can you guide me?..

    Also I have a problem to my pfsense. when I visit google.com it say "This webpage is not available" but when I manually put the squid proxy ip and port to my browse it works. how to solve this problem? I do not want to put a proxy on every browser.

    I am using squid 2.7.9 and the Transparent proxy was checked.
    pfsense version 2.1.3

    thanks in advance!!

  • Lagg devices in 2.1.3 not found in wizard

    1
    0 Votes
    1 Posts
    747 Views
    No one has replied
  • L7 traffic shaper Log

    1
    0 Votes
    1 Posts
    653 Views
    No one has replied
  • Add new pattern to l7 traffic shaper

    4
    0 Votes
    4 Posts
    1k Views
    C

    Thank you very much pukkita

  • Google talk

    6
    0 Votes
    6 Posts
    1k Views
    jimpJ

    Start a new thread for that since it's unrelated to this topic. There are answers out there for that already though.

  • Can a penalty box be manually added to existing shaper setup

    5
    0 Votes
    5 Posts
    2k Views
    M

    Thanks Jimp.  Thought it had to work as you describe.  I want to ensure I'm not undermining my shaping efforts with a limiter.

  • Layer7 - Shaping youtube videos.

    15
    0 Votes
    15 Posts
    23k Views
    C

    thanks
    How can i add youtube pattern to pfsense?

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