Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    $50 for tftp-server-name DHCP option

    Scheduled Pinned Locked Moved Completed Bounties
    31 Posts 14 Posters 47.3k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C
      cayblood
      last edited by

      We are setting up a remote office with a router running pfsense beta 3.  One important feature that we are currently using in our ipcop routers is the ability to set the tftp-server-name option in DHCP so that our IP phones automatically provision themselves by downloading an XML file from the tftp server that is in the DHCP offer.  This is pretty important to us because it makes it a lot easier to reprovision phones in offices that don't have any technical people.  Since we noticed that some configuration settings can be set manually in the pfsense XML configuration (such as next-server), we figured it would not be too hard to add this option as well.  I am posting a $50 bounty for this feature, since we are only going to be here for a few days and don't have time to develop it ourselves.

      Please send solutions to carl at youngbloods dot org.  I will paypal the bounty to the first successful implementor.

      Thanks,
      Carl

      1 Reply Last reply Reply Quote 0
      • B
        billm
        last edited by

        Sent private email on this (not that this should discourage anyone else ;-P)

        –Bill

        pfSense core developer
        blog - http://www.ucsecurity.com/
        twitter - billmarquette

        1 Reply Last reply Reply Quote 0
        • R
          robbyt
          last edited by

          how about a more generic dhcp option#->value field?

          1 Reply Last reply Reply Quote 0
          • S
            sullrich
            last edited by

            @robbyt:

            how about a more generic dhcp option#->value field?

            No thanks.  It won't be used very often and we are not going to start cluttering the interface with this stuff for 1% usage.

            1 Reply Last reply Reply Quote 0
            • B
              billm
              last edited by

              @sullrich:

              @robbyt:

              how about a more generic dhcp option#->value field?

              No thanks.  It won't be used very often and we are not going to start cluttering the interface with this stuff for 1% usage.

              As it is, this will likely only go in as a hidden config.xml option anyway.  I'll consider making it an array value that allows arbitrary dhcp options.  Maybe some day we'll figure out a compromise between the advanced features and the normal features that won't require editing config.xml - for now, that's the only real option.  Needless to say, this isn't going in 1.0 regardless of how it's implemented.

              –Bill

              pfSense core developer
              blog - http://www.ucsecurity.com/
              twitter - billmarquette

              1 Reply Last reply Reply Quote 0
              • R
                robbyt
                last edited by

                @sullrich:

                @robbyt:

                how about a more generic dhcp option#->value field?

                No thanks.  It won't be used very often and we are not going to start cluttering the interface with this stuff for 1% usage.

                i can understand, and in someways agree with you. But you should perhaps re-examine the this. For example, at my office- i run an asterisk server with about 60-70 polycom phones. The latest polycom firmware lets you specify the sip server as a dhcp option. (i think it's like option# 165 or something like that)  You can push out all sorts of other wonderful and usefull stuff from dhcp: static routes, wins, ntp, and so on…

                I can understand not having this ability due to complexity of implimentation, but this seems like a fairly trivial thing (other then interface bloat)

                (attached is a screenshot from ipcop's dhcp server options)

                ipcop-dhcp.jpg
                ipcop-dhcp.jpg_thumb
                ipcop-dhcp.jpg_thumb

                1 Reply Last reply Reply Quote 0
                • C
                  cayblood
                  last edited by

                  This bounty has been claimed by Daniel S. Haischt, who sent us some patched files, from which we were able to create a modification with a more minimal impact.

                  To add this feature, mount the filesystem in a writeable mode (if not already) with:

                  
                  mount -w /
                  
                  

                  and then add the following code to /etc/inc/services.inc, starting at line 238:

                  
                  if ($dhcpifconf['tftp-server-name'])
                      $dhcpdconf .= " option tftp-server-name \"{#dhcpifconf['tftp-server-name']}\";\n";
                  
                  

                  Then just change your config.xml and add

                  
                  <tftp-server-name>X.X.X.X</tftp-server-name>
                  
                  

                  under pfsense/dhcpd/lan. That should do it.

                  I agree with robbyt that adding the ability to set DHCP options is a common thing that is not supporting a 5% minority but actually would be used by a lot of people, and the changes to the interface would be minimal.

                  Best wishes,
                  Carl

                  1 Reply Last reply Reply Quote 0
                  • S
                    sullrich
                    last edited by

                    This has been commited to -HEAD.

                    Thanks!

                    1 Reply Last reply Reply Quote 0
                    • D
                      DanielSHaischt
                      last edited by

                      If you want I can post the GUI related mods that I did to services_dhcp.php as well.

                      Regards
                      Daniel S. Haischt

                      Mit freundlichen Gruessen / With kind regards
                      DAn.I.El S. Haischt

                      1 Reply Last reply Reply Quote 0
                      • B
                        billm
                        last edited by

                        @cayblood:

                        This bounty has been claimed by Daniel S. Haischt, who sent us some patched files, from which we were able to create a modification with a more minimal impact.

                        To add this feature, mount the filesystem in a writeable mode (if not already) with:

                        
                        mount -w /
                        
                        

                        and then add the following code to /etc/inc/services.inc, starting at line 238:

                        
                        if ($dhcpifconf['tftp-server-name'])
                            $dhcpdconf .= " option tftp-server-name \"{#dhcpifconf['tftp-server-name']}\";\n";
                        
                        

                        Then just change your config.xml and add

                        
                        <tftp-server-name>X.X.X.X</tftp-server-name>
                        
                        

                        under pfsense/dhcpd/lan. That should do it.

                        I agree with robbyt that adding the ability to set DHCP options is a common thing that is not supporting a 5% minority but actually would be used by a lot of people, and the changes to the interface would be minimal.

                        Best wishes,
                        Carl

                        fwiw, the better patch would have been something along the lines of:

                        
                        foreach($dhcpifconf['options'] as $optname => $dhcpopt) {
                        	$dhcpdconf .= " option {$optname} \"{$dhcpopt}\";\n";
                        }
                        
                        

                        and then added

                        
                         <options><tftp-server-name>foobar</tftp-server-name></options> 
                        
                        

                        to config.xml in the same place.  If someone creates a diff (that has been tested) with the above code concept, I'll commit it to HEAD (and only HEAD).

                        –Bill

                        pfSense core developer
                        blog - http://www.ucsecurity.com/
                        twitter - billmarquette

                        1 Reply Last reply Reply Quote 0
                        • B
                          billm
                          last edited by

                          or nm…the previous code was commited.  thus ends my interest in this. :)

                          --Bill

                          pfSense core developer
                          blog - http://www.ucsecurity.com/
                          twitter - billmarquette

                          1 Reply Last reply Reply Quote 0
                          • K
                            keefe007
                            last edited by

                            Is this going to be in the next GUI too?

                            1 Reply Last reply Reply Quote 0
                            • H
                              hoba
                              last edited by

                              @sullrich:

                              @robbyt:

                              how about a more generic dhcp option#->value field?

                              No thanks.  It won't be used very often and we are not going to start cluttering the interface with this stuff for 1% usage.

                              With this said it most probably will remain a hidden xml option.

                              1 Reply Last reply Reply Quote 0
                              • K
                                keefe007
                                last edited by

                                I think many many people would use a feature such as this.  IP phones are becoming more and more popular and the easiest way to configure a network of them is with the tftp DHCP option.  I know this option would be used more than some of the other more specialized options that are already in pfsense.  I truely hope more people voice their need for this feature and you reconsider adding it to the gui.

                                1 Reply Last reply Reply Quote 0
                                • S
                                  sullrich
                                  last edited by

                                  @keefe007:

                                  I think many many people would use a feature such as this.  IP phones are becoming more and more popular and the easiest way to configure a network of them is with the tftp DHCP option.  I know this option would be used more than some of the other more specialized options that are already in pfsense.  I truely hope more people voice their need for this feature and you reconsider adding it to the gui.

                                  I'll meet you half way.  You do the GUI work and I'll commit.

                                  1 Reply Last reply Reply Quote 0
                                  • D
                                    DanielSHaischt
                                    last edited by

                                    The attached diff (against CVS HEAD) contains some GUI related mods as requested by keefe007.

                                    services_dhcp.php.txt

                                    Mit freundlichen Gruessen / With kind regards
                                    DAn.I.El S. Haischt

                                    1 Reply Last reply Reply Quote 0
                                    • S
                                      sullrich
                                      last edited by

                                      0KB

                                      1 Reply Last reply Reply Quote 0
                                      • D
                                        DanielSHaischt
                                        last edited by

                                        @sullrich:

                                        0KB

                                        Yep, unfortunatly :(

                                        services_dhcp.php.txt

                                        Mit freundlichen Gruessen / With kind regards
                                        DAn.I.El S. Haischt

                                        1 Reply Last reply Reply Quote 0
                                        • K
                                          kerryg
                                          last edited by

                                          As an installer of Asterisk PBX systems, the ability to push different DHCP options such as boot server, NTP server, and time offset, are absolute requirements in choosing a firewall/DHCP server. Without means of providing this function to DHCP clients such as IP phones, the usefullness of PFSense is greatly diminished. Its ok for now to be able to add them to a config file but a long term solution to provide this functionality is crucial to the success of PFSense within the IP PBX market.

                                          -Kerry

                                          1 Reply Last reply Reply Quote 0
                                          • R
                                            robbyt
                                            last edited by

                                            @kerryg:

                                            As an installer of Asterisk PBX systems, the ability to push different DHCP options such as boot server, NTP server, and time offset, are absolute requirements in choosing a firewall/DHCP server. Without means of providing this function to DHCP clients such as IP phones, the usefullness of PFSense is greatly diminished. Its ok for now to be able to add them to a config file but a long term solution to provide this functionality is crucial to the success of PFSense within the IP PBX market.

                                            -Kerry

                                            agree 100%!
                                            for asterisk support alone, a more flexible DHCP server is a killer feature.

                                            DHCP server interface works really well in IPCOP, better then any other i've seen.

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.