7581/7582/7530ax: Freetz GUI accessible again on port :81 #485
-
When booting freezt-ng image on 7581, port 81 and port 443 are used by process
is not sufficient: e.g. on event "WLAN status change" a box reboot gets triggered Possible options to fix this issue during freetz-ng image built:
Thus, Freetz GUI ( |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Thx for investigation! Freetz-webif uses also the httpd. 1st i thought automatic freetz-webif port change would be the best, but its then hard to find. If you want to (hacky) change symbol_table.txt:
|
Beta Was this translation helpful? Give feedback.
-
changing to prevent the |
Beta Was this translation helpful? Give feedback.
changing
HTTPD_PORT
andHTTPD_PORT_SSL
is not the best option, ashttpd
is still forked as a child process bysmd
( only using some different ports then).it's useless since there is no configuration given for this
httpd
instance.to prevent the
smd
process from starting thehttpd
web-server daemon is a much better option, I think; and it doesn't interfere with the usage ofhttpd
by Freetz-webif not at all.So, set line comment at lines 40 to 47 in file
/etc/cms_entity_info.d/eid_bcm_mgmt.txt
is my preferred fix ( as already stated in #485 (comment))for convenience, just add attached file
840_patch_smd_no_httpd.sh
topatches/scripts
folder and the whole is finished.840_patch_smd_no_http…