• DHCP issue after bridging an interface

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    T
    Ticket 1281
  • Dynamic dns no-ip

    Locked
    5
    0 Votes
    5 Posts
    3k Views
    R
    hoba, the problem persists, tested in other machine, looks like no-ip client don´t work, in logs seen updated, but ip is other, anybody use no-ip for test? I´m using latest snapshot…
  • Freedns.afraid.org DDNS?

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    S
    thanks very much for the tip!
  • DHCP in CVS update not working again…

    Locked
    11
    0 Votes
    11 Posts
    5k Views
    S
    I grabbed the snapshot dated from today and will update when I get home. 04-03-07 full update. If it doesn't work I'll try a full install. But normally the full update snapshots work perfectly. Thanks Sullrich. I'll make a detailed post back on how to get Verizon FiOS setup without any Actiontec non-sense here as soon as I get it working.
  • Dynamic DNS with Zoneedit

    Locked
    8
    0 Votes
    8 Posts
    6k Views
    G
    thnx! missed that  :)
  • DHCP - Static Mapping

    Locked
    7
    0 Votes
    7 Posts
    4k Views
    dotdashD
    I think this is a matter of differing views of how a DHCP server should operate. I happen to think the implementation is absolutely correct and one should never put a reservation within the scope. That being said, I the current ISC DHCP server (IIRC, since v3) allows putting reservations within the scope, so if you really need this you could either write a patch or post a bounty to have someone do it. Or just run DCHP on a different box. If you have a server on the network, why run DCHP on the firewall anyway?
  • DNS and VIP

    Locked
    5
    0 Votes
    5 Posts
    4k Views
    J
    did you turn on nat reflection ?? so that you can ping inside youre network the wan's ip's ?
  • DHCP per user groups

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    H
    Thisis not supported currently.
  • Some questions about DNS options

    Locked
    11
    0 Votes
    11 Posts
    5k Views
    H
    It caches DNS only, so if one client has requested google.com it chaches the IP that has been resolved so that another client gets quicker nameresolution. It's not caching any files like a squid proxy if that is what you mean.
  • LAN DHCP do not refresh

    Locked
    5
    0 Votes
    5 Posts
    2k Views
    H
    We chache the config.xml to speed up filter reloads and other things. Only editing/replacing the file will not help. Your edits might even get lost on reboot due to that. You should only use the webgui restore config. for config.xml changes which will force a reboot.
  • Status / DHCP leases

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    R
    The hostname is read from the dhcpd.leases file. When the host renews the dhcp lease the hostname change should appear.
  • Trouble with DHCP and Static ARP

    Locked
    7
    0 Votes
    7 Posts
    7k Views
    J
    Just wanted to update this and say that it still doesn't work in 1.0.1… Anybody know what this might be? Or have any other advice how to get the same functionality? I want to have an easy way to connect to the network. And I admin want to know what IP the client has. The way it is now each IP is linked to the MAC address and with a discription with the owner of the computer. And I want to seperate wires from non wires :)
  • SOLVED: (WPAD) Export Proxy Config through DHCP

    Locked
    5
    0 Votes
    5 Posts
    21k Views
    Y
    Hi, I have integrated the automatic proxy configuration by myself. It is integrated in the gui. Feel free to adopt. The files to edit: /usr/local/www/services_dhcp.php /etc/inc/services.inc The modifications: /usr/local/www/services_dhcp.php   $pconfig['failover_peerip'] = $config['dhcpd'][$if]['failover_peerip'];   $pconfig['netmask'] = $config['dhcpd'][$if]['netmask']; +  $pconfig['wpad'] = $config['dhcpd'][$if]['wpad'];   $ifcfg = $config['interfaces'][$if]; ----- $config['dhcpd'][$if]['next-server'] = $_POST['nextserver']; $config['dhcpd'][$if]['filename'] = $_POST['filename']; + $config['dhcpd'][$if]['wpad'] = $_POST['wpad']; write_config(); /* static arp configuration */ interfaces_staticarp_configure($if); ----- Leave blank to disable.  Enter the REAL address of the other machine.  Machines must be using CARP. +                      +                        Automatic Proxy URL +                        +                          +                          +                          This is the URL to the automatic proxy script. + +                                              Static ARP /etc/inc/services.inc one-lease-per-client true; deny duplicates; EOD; + if (isset($dhcpifconf['wpad'])) { + $dhcpdconf .= "option wpad-url code 252 = text;"."\n"; + $dhcpdconf .= "option wpad-url \"".$dhcpifconf['wpad']."\\n\";"."\n"; + } $dhcpdifs = array(); /*    loop through and deterimine if we need to setup *    failover peer "bleh" entries With these slight modifications, there will be an extra field in the dhcp configuration where you can enter the URL to your proxy.pac. I have copied my proxy.pac to /usr/local/captiveportal/captiveportal-proxy.pac and have entered in the Automatic proxy field http://192.168.0.1:8000/captiveportal-proxy.pac. My proxy script looks like this: function FindProxyForURL(url, host) { if (     (isPlainHostName(host)) ||     (dnsDomainIs(host, ".dsl.local")) ||     (isInNet(host, "10.0.0.0", "255.0.0.0")) ||     (isInNet(host, "172.16.0.0", "255.240.0.0")) ||     (isInNet(host, "169.254.0.0", "255.255.0.0")) ||     (isInNet(host, "192.168.0.0", "255.255.0.0"))   )     return "DIRECT"; else if (     (isInNet(myIpAddress(), "192.168.0.0", "255.255.255.0"))   )     return "PROXY 192.168.0.1:3128"; } Cheers, Manuel
  • Exclude a dhcp range within a scope

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    H
    The webgui only allws for one range per dhcp server, not multiple ranges. This is not possible atm, at least not from the webgui.
  • Adding static DHCP leases

    Locked
    3
    0 Votes
    3 Posts
    4k Views
    C
    @simpat1zq: yeah, i think that it's basically counting 'blank' as a hostname. so you can only have one. I know it used to allow unlimited blank hostnames, but i don't know when it changed. Yep, that was it. When I entered hostnames for the subsequent static leases they went through just fine. Thanks a lot for your help!
  • IPrange

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    B
    Hoba Again thank you for you help.
  • DDNS is not updating

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    H
    We need more details about your setup then. Is your pfSense WAN IP the real public IP or are you natted behind a router? What's in the logs?
  • DNS names not picked up by bandwidthd

    Locked
    6
    0 Votes
    6 Posts
    8k Views
    P
    Ah! OK Thanks Sullrich, one to put in the wibni list then  :)
  • After DHCP renews, DynDNS doesn't update

    Locked
    5
    0 Votes
    5 Posts
    3k Views
    H
    The waiting for backend issue should be fixed. Please try a reinstall.
  • DNS Forwarder

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    E
    I dont see anything related to DNS being blocked.
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.