• PFSense + RADIUS + Traffic Counting

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    T
    Did you have any luck with this?
  • MOVED: SNAPSHOT-1-28-06 pftpx error in logs New

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Possible to have SSH tunnel as a WAN Interface?

    Locked
    5
    0 Votes
    5 Posts
    4k Views
    E
    There is a way to set up a VPN using SSH, but the pfSense web gui doesn't support this, so you would need to do it manually if you wanted to do that.  It is something that is described somewhere in the OpenSSH documentation.
  • 0 Votes
    3 Posts
    2k Views
    D
    thanks for the link there - I've read over it but it doesn't really give me much more than i already understand. Basically, I know the function of traffic shaping exists but what i need to know is if my example of use is achivable?? Does that make sense? I don't understand the limitations or options available in traffic shaping and should someone tell me what i want isn't possible I don't want to take the time testing and researching into it for zero return. Having a 3yo daughter and full time job doesn't leave me much in the way of spare time to play with things so i'd prefer someone to give me an opinion if my config is acheiveable - then if i know its possible i'll do the research and testing knowing I'll get somewhere in the end :)
  • Need advice on vlan configuration with pf, routing and xen config

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    8 Posts
    3k Views
    R
    oh yeah….. feel completly stupid now... so, first rule when you play with vlan: Be sure to configure your host to tag the right vlan OR Be sure ton configure your switch/port with the right vlan before saying that nothing is working ;-) thanks again. I still have a network issue but I will put this in another thread. Romain
  • Is There A Bandwidth Limit for WAN Connections

    Locked
    7
    0 Votes
    7 Posts
    6k Views
    E
    AT&T is blowing smoke about your router. There's nothing keeping your router from using all 4.5 Mbps of your connection. Or 10 Mbps, or 100 Mbps, or 1000 Mbps. There are other people using PfSense in much larger applications than yours. But it's worth noting that the speed you're getting on the WAN link to the first router and the speed you're measuring on speedtest.net are not the same. It's pretty much true that only AT&T can measure the connection speed of the T1, unless you somehow have access to the T1 termination equipment and you know how to ask it what the connection speed is. Also, you will lose about 10% or so of the actual connection speed to TCP overhead, and even if you had a Speedtest.net server connected directly to the router at AT&T, the connection speed and "internet" speed will be different as a result of that. So I would expect a maximum capacity of about 4.09 Mbps on 3 T1s and 2.73 Mbps on 2 T1s. If you're getting somewhere in between those two numbers, then AT&T isn't lying to you about the connection speed (especially if you're getting slightly more than 3Mbps - that would be impossible if only two T1s were working).
  • PfSense No Firewall/NAT - Unable to Load Webpages

    Locked
    7
    0 Votes
    7 Posts
    4k Views
    N
    Got it working, thanks so much.
  • Firewall Not Pingable Until ifconfig down and then ifconfig up

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    C
    It's almost as if em3 is not brough up during a reboot procedure at all. Is anyone aware of why this would occur? Cheers!
  • ISP modem not seeing pfsense, but sees linksys

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Cry HavokC
    Sometimes you have to power down the ISP provided modem before you change what's connected to it.
  • PPPOE server and FQDN question

    Locked
    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • Downloading intensly slows everything else + Traffic Shaper problem.

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    K
    Does the ADSL modem have a full-duplex Ethernet connection? Does the pfSense computer have one, too? If not, both should be. Both ethernet connections should probably support 100Base-TX (or higher) just to make sure that there is never a moment in which the ethernet is the bottleneck.
  • Custom RRD Graph

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    S
    I just realized I forgot the most important term ! :) I'd like to create a custom quality graph of the LAN if. Is it possible ? This option is not present in the custom preset graphs.
  • Mouting points - please help

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    O
    ahh nfs with firewall rules - perfect! thanks closed!
  • Remote access via wan2

    Locked
    6
    0 Votes
    6 Posts
    3k Views
    ?
    Not in the way that you'd want.  It would be a major management nightmare and wouldn't work quite like you'd expect.  Better to throw a squid (or other filtering box) into the DMZ and send all connections through it.
  • MOVED: Deactivate Package:

    Locked
    1
    0 Votes
    1 Posts
    944 Views
    No one has replied
  • PfSense w/ DHCP has brought down our network twice

    Locked
    12
    0 Votes
    12 Posts
    5k Views
    B
    jakobud, get to work  early in the am,,get a bootable cd with memtest86 on it. 1. boot the (linux)cd and at command prompt type in memtest let it run for a couple hours. ,,,if this results "OK"(no red blocks) 2. Put a different keyboard on this pfSense machine as someone else mentioned. 3. restart pfSense machine. Post your results so someone else will know what has been found. Take Care, BC
  • [Solved] Insert a pause at boot time

    Locked
    10
    0 Votes
    10 Posts
    4k Views
    W
    Thanks for the information.
  • Ftp problem, cannot connect to lan server via wan ip

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Direction to me in publish FTP server

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    D
    Hello, I had similar problems, the solution on my system was to define the pasv_address in your vsftp.conf. It is mendatory, that this address is your WAN-IP. I found a script which put my WAN address in to this config file once a day. Every night at 2a.m. my PFSense is restarting the wan connection and five munutes later a cron job will run this script. #!/bin/sh #vsftpd.conf IP update vsftpd_conf=/usr/local/etc/vsftpd.conf vsftpd_log=/var/log/vsftpd.log my_ip=`host your-dyndns-address | cut -f4 -d" "` vsftpd_ip=`grep pasv_address $vsftpd_conf | cut -f2 -d=` if [ "$my_ip" != "$vsftpd_ip" ] ; then ( echo ",s/$vsftpd_ip/$my_ip/g" && echo w ) | ed - $vsftpd_conf echo `date` "$vsftpd_conf updated with $my_ip IP address" >> $vsftpd_log /etc/rc.d/inetd restart >> $vsftpd_log fi
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.