DDNS upadate to Cloudflare DNS will fail using: Enable Proxy (Cloudflare)
-
If enable proxy is not "ticket", cloudflare proxy will be disabled upon update.
As simple as that.
-
Bug reports need to go on redmine: https://redmine.pfsense.org/projects/pfsense
-
Finally someone reported it.
https://redmine.pfsense.org/issues/9362Hope it will be fixed soon.
Really need Cloudflare proxy and don't know why pfSense team haven't solved it yet.
-
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. -
It's exactly 2 months after opening ticket and still no reply ...
fortunately there is other free FWs with better support. -
- 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.
-
@Overlord said in DDNS upadate to Cloudflare DNS will fail using: Enable Proxy (Cloudflare):
- 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
-
@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):
- 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
-
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.
-
I edited the code yesterday and it's working fine. And it's really easy.
- Connect so pfSense via SSH or directly and open a Shell
- Use your preferred text editor (normal is vi, I used nano (pkg install nano)) to open this /etc/inc/services.inc
- 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); }
- Save
- A restart is not requiered.
Greetz
Overlord -
@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?