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

DHCP relay

Scheduled Pinned Locked Moved 2.5 Development Snapshots (Retired)
9 Posts 4 Posters 1.2k 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.
  • B
    BeingMoody2
    last edited by Sep 28, 2020, 1:35 AM

    DHCP relay service will not start. Running Sept 14, 2020 dev build and DHCrelay works. Update to latest build and DHCrelay stops working. Not sure what info is needed. I've installed Build Sept 14, 2020 in a VM to verify that it works and stops working after updating to latest build. DHCrelay can be started manually from the command line using full syntax. Can stop with GUI via services and will not restart.

    N 1 Reply Last reply Sep 28, 2020, 8:48 AM Reply Quote 0
    • N
      netblues @BeingMoody2
      last edited by Sep 28, 2020, 8:48 AM

      @BeingMoody2 Check the logs, system and dhcp for clues.

      1 Reply Last reply Reply Quote 0
      • F
        fragged
        last edited by fragged Sep 28, 2020, 6:57 PM Sep 28, 2020, 6:23 PM

        Also seeing this issue, nothing in the logs to indicate the service even tried to start.

        2.5.0-DEVELOPMENT (amd64)
        built on Mon Sep 28 07:01:24 EDT 2020
        FreeBSD 12.2-PRERELEASE

        Edit 2:
        Found this in the system log:
        /services_dhcp_relay.php: No suitable upstream interfaces found for running dhcrelay!

        I have DHCP relay configured on 2 VLAN interfaces for my WiFi networks.

        1 Reply Last reply Reply Quote 0
        • F
          fragged
          last edited by fragged Sep 30, 2020, 2:27 PM Sep 30, 2020, 1:59 PM

          The error "No suitable upstream interfaces found for running dhcrelay!" seems to come from the function guess_interface_from_ip($ipaddress) not returning a valid interface for whatever reason. I've yet to track the changes to see what borked it.

          Edit 1:
          guess_interface_from_ip($ipaddress) return $false because route_get($ipaddress) returns array(0) for my LAN network.. the investigation continues..

          php > var_dump(route_get('192.168.11.1'));
          array(1) {
            [0]=>
            array(7) {
              ["destination"]=>
              string(12) "192.168.11.1"
              ["gateway"]=>
              string(6) "link#2"
              ["flags"]=>
              string(3) "UHS"
              ["flags_pretty"]=>
              array(3) {
                [0]=>
                string(2) "up"
                [1]=>
                string(4) "host"
                [2]=>
                string(6) "static"
              }
              ["use"]=>
              int(0)
              ["mtu"]=>
              int(16384)
              ["interface-name"]=>
              string(3) "lo0"
            }
          }
          php > var_dump(route_get('192.168.11.18'));
          array(0) {
          }
          

          Edit2:

          This code should probably handle subnets? 192.168.11.18 is in the 192.168.11.0/24 subnet which there is a route for, but the code just checks if the destination matches.

          $result = array();
          	foreach ($rtable[$family] as $item) {
          		if ($item['destination'] == $target) {
          			$result[] = $item;
          		}
          	}
          

          https://github.com/pfsense/pfsense/commit/c428cdf436cc9e407e64fd550be96bb0ecad3fb3#diff-d45d58361f1c16219dd36fc4951f76db

          1 Reply Last reply Reply Quote 0
          • B
            BeingMoody2
            last edited by Oct 14, 2020, 5:40 PM

            Today Oct 14,2020 updated to latest dev build.
            2.5.0-DEVELOPMENT (amd64)
            built on Wed Oct 14 07:02:29 EDT 2020
            dhcrelay now works correctly without needing any additional work arounds. Not sure what changed from Sept 14th to Oct 14th.

            1 Reply Last reply Reply Quote 0
            • Y
              YoMarK
              last edited by YoMarK Dec 9, 2020, 3:47 PM Dec 9, 2020, 3:11 PM

              DHCP relay does not work for me on a new installation.

              Two networks:
              LAN1(gateway there has access to DHCP server)
              LAN2(has no gateway - should run DHCP relay)

              Previously configured DHCP server on LAN2 interface, is now disabled of course.

              Error:
              /services_dhcp_relay.php: No suitable upstream interfaces found for running dhcrelay!

              Version:
              2.5.0-DEVELOPMENT (amd64)
              built on Wed Dec 09 03:04:22 EST 2020

              Edit:
              Starting dhclient from command line seems to work as expected, DHCP gets forwarded to DHCP, and Client(windows 10) gets a IP from DHCP server (although did not test it thoroughly):
              /usr/local/sbin/dhcrelay –i em0 –iu em1 10.1.0.1

              em0 --> LAN2 --> DHCP relay should listen here
              em1 --> LAN1 --> has gateway, DHCP server behind gateway
              10.1.0.1 --> Windows DHCP server

              B 2 Replies Last reply Dec 9, 2020, 8:43 PM Reply Quote 0
              • B
                BeingMoody2 @YoMarK
                last edited by Dec 9, 2020, 8:43 PM

                @yomark
                Currently running 2.5.0-DEVELOPMENT (amd64)
                built on Mon Nov 30 01:02:20 EST 2020
                And it's been working for some time. I recommend going back to the oldest snapshot you can find. Otherwise you'll have to create a startup script like I did until they correct this.

                1 Reply Last reply Reply Quote 0
                • B
                  BeingMoody2 @YoMarK
                  last edited by Dec 9, 2020, 8:55 PM

                  @yomark Just checked my test VM that has Sept 2020 build and upgraded to lastest Dec 9th and DHCrelay works without issue. Your issue could be something else.

                  Y 1 Reply Last reply Dec 10, 2020, 2:15 PM Reply Quote 1
                  • Y
                    YoMarK @BeingMoody2
                    last edited by YoMarK Dec 10, 2020, 2:18 PM Dec 10, 2020, 2:15 PM

                    @beingmoody2 Tnx for the reply.

                    Some more info...
                    I've added a new interface to pfSense, and put it "directly" in the network/subnet of the DHCP server.
                    DHCP relay now starts from the GUI(it will probably use that interface for relaying as it's closest to the DHCP server).
                    I recon this is the most used option, so maybe that is why no a lot of people have problems.

                    However, I do not want this interface there.
                    If i disable this new interface from pfSense gui. DNS resolver won't start anymore.

                    1 Reply Last reply Reply Quote 0
                    • First post
                      Last post
                    Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.
                      [[user:consent.lead]]
                      [[user:consent.not_received]]