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

    DDNS upadate to Cloudflare DNS will fail using: Enable Proxy (Cloudflare)

    Scheduled Pinned Locked Moved DHCP and DNS
    15 Posts 6 Posters 2.8k 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.
    • V
      v1ckxy
      last edited by v1ckxy

      Let's copy here (again) the error msg:

      /rc.dyndns.update: phpDynDNS (@): PAYLOAD: {"success":false,"errors":[{"code":1004,"message":"DNS Validation Error","error_chain":[{"code":9003,"message":"Invalid 'proxied' value, must be a boolean"}]}],"messages":[],"result":null}
      

      Tried with the latest stable version and latest *developer; same issue.

      W 1 Reply Last reply Reply Quote 0
      • W
        Wepee @v1ckxy
        last edited by Wepee

        @v1ckxy said in DDNS upadate to Cloudflare DNS will fail using: Enable Proxy (Cloudflare):

        Let's copy here (again) the error msg:

        /rc.dyndns.update: phpDynDNS (@): PAYLOAD: {"success":false,"errors":[{"code":1004,"message":"DNS Validation Error","error_chain":[{"code":9003,"message":"Invalid 'proxied' value, must be a boolean"}]}],"messages":[],"result":null}
        

        Tried with the latest stable version and latest *developer; same issue.

        Hi thanks for replying.
        I am glad that someone in the forum is in the same boat as I am.
        I am a newbie in using pfsense. So I am just a novice fella
        who does not a in depth understanding how the internal
        coding works.

        I am not a programmer in PHP, therefore if I am, I will have more appreciation and understanding to your reply, given the code you have just highlighted above.☝

        Bottom line..........
        My question here:
        If Enabled Proxy is not ticked, that is Cloudflare DNS proxy is NOT enabled and...........it is broken, what happen if I use the normal method of using DDNS to Cloudflare? All DDNS updates transmission to Cloudflare will be in the clear, and subject to being sniffed by a hacker and IP address of my home's WAN IP address can be revealed? 😧

        1 Reply Last reply Reply Quote 0
        • V
          v1ckxy
          last edited by

          If enable proxy is not "ticket", cloudflare proxy will be disabled upon update.

          As simple as that.

          1 Reply Last reply Reply Quote 0
          • GrimsonG
            Grimson Banned
            last edited by

            Bug reports need to go on redmine: https://redmine.pfsense.org/projects/pfsense

            1 Reply Last reply Reply Quote 0
            • A
              arian_0098
              last edited by

              Finally someone reported it.
              https://redmine.pfsense.org/issues/9362

              Hope it will be fixed soon.

              Really need Cloudflare proxy and don't know why pfSense team haven't solved it yet.

              1 Reply Last reply Reply Quote 0
              • W
                Wepee
                last edited by

                Thanks for your info. I did open an account with Pfsense Bugtracker, but I did not how to create a report, let alone finding the php code, which is responsible for doing DDNS update. Well...at least someone has finally report this issue to the Pfsense development team, and see whether they look in to it.
                A big thank you to: Nico Schneider for lodging this issue. ☺

                1 Reply Last reply Reply Quote 0
                • A
                  arian_0098
                  last edited by

                  It's exactly 2 months after opening ticket and still no reply ...
                  fortunately there is other free FWs with better support.

                  1 Reply Last reply Reply Quote 0
                  • O
                    Overlord
                    last edited by

                    1. Januar 2020 and the issue is still existent. With proxy disabled, its working like a charm and with proxy enabled, I got the same error. Updating manually with proxy enabled, is working fine as well.
                    A 1 Reply Last reply Reply Quote 0
                    • A
                      arian_0098 @Overlord
                      last edited by

                      @Overlord said in DDNS upadate to Cloudflare DNS will fail using: Enable Proxy (Cloudflare):

                      1. Januar 2020 and the issue is still existent. With proxy disabled, its working like a charm and with proxy enabled, I got the same error. Updating manually with proxy enabled, is working fine as well.

                      It's been solved ... You should do some php code editing till new version arrives.

                      https://redmine.pfsense.org/issues/9362

                      O 1 Reply Last reply Reply Quote 0
                      • O
                        Overlord @arian_0098
                        last edited by

                        @arian_0098 said in DDNS upadate to Cloudflare DNS will fail using: Enable Proxy (Cloudflare):

                        @Overlord said in DDNS upadate to Cloudflare DNS will fail using: Enable Proxy (Cloudflare):

                        1. Januar 2020 and the issue is still existent. With proxy disabled, its working like a charm and with proxy enabled, I got the same error. Updating manually with proxy enabled, is working fine as well.

                        It's been solved ... You should do some php code editing till new version arrives.

                        https://redmine.pfsense.org/issues/9362

                        Yes, found it already. Thank you!

                        I'm wondering that it takes so long time to integrater this in the master

                        W 1 Reply Last reply Reply Quote 0
                        • W
                          Wepee @Overlord
                          last edited by

                          @Overlord

                          Thank you for the reminder.......

                          Would you be enough kind to illustrate how to edit the PHP
                          coding?

                          I am not a PHP programmer, let alone a computer programmer
                          who can skillfully change the the coding within pfSense.

                          Or better wait for the next update of pfSense v2.5 stable to be released to the public?

                          Thank you.

                          O 1 Reply Last reply Reply Quote 0
                          • O
                            Overlord @Wepee
                            last edited by Overlord

                            @Wepee

                            I edited the code yesterday and it's working fine. And it's really easy.

                            1. Connect so pfSense via SSH or directly and open a Shell
                            2. Use your preferred text editor (normal is vi, I used nano (pkg install nano)) to open this /etc/inc/services.inc
                            3. sudo nano /etc/inc/services.inc or sudo vi /etc/inc/services.inc

                            Look for this part (simply search like this $dyndns['curl_ssl_verifypeer'] = isset($dyndns['curl_ssl_verifypeer']); ) and add the line with the + between.

                            $dyndns['verboselog'] = isset($dyndns['verboselog']);
                            				$dyndns['curl_ipresolve_v4'] = isset($dyndns['curl_ipresolve_v4']);
                            				$dyndns['curl_ssl_verifypeer'] = isset($dyndns['curl_ssl_verifypeer']);
                            +	Add this	->	$dyndns['proxied'] = isset($dyndns['proxied']);
                            				services_dyndns_configure_client($dyndns);
                            				sleep(1);
                            			}
                            
                            1. Save
                            2. A restart is not requiered.

                            Greetz
                            Overlord

                            1 Reply Last reply Reply Quote 0
                            • P
                              propeto13 @Wepee
                              last edited by

                              @wepee I switched over to cloudflare and noticed i when proxy is enabled = No Joy, if proxy is disable everything is normal. Is this still an on going bug/problem on pfsense?

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