在OpenWrt路由器上,如何修改Web访问端口号,通常涉及到修改HTTP服务器的配置文件。默认情况下,OpenWrt使用的HTTP服务器是uHTTPd。
# 1. 编辑 uhttpd 文件
vi /etc/config/uhttpd
# 2. 找到并修改端口号:在打开的配置文件中,找到类似以下行的配置(默认端口号为80)
config uhttpd 'main'
list listen_http '0.0.0.0:80'
list listen_http '[::]:80'
list listen_https '0.0.0.0:443'
list listen_https '[::]:443'
option redirect_https '0'
option home '/www'
option rfc1918_filter '1'
option max_connections '100'
option cert '/etc/uhttpd.crt'
option key '/etc/uhttpd.key'
option cgi_prefix '/cgi-bin'
list lua_prefix '/cgi-bin/luci=/usr/lib/lua/luci/sgi/uhttpd.lua'
option network_timeout '30'
option http_keepalive '20'
option tcp_keepalive '1'
option ubus_prefix '/ubus'
option script_timeout '3600'
list index_page 'cgi-bin/luci'
option max_requests '50'
...
# 3. 重新启动uHTTPd服务
/etc/init.d/uhttpd restart
评论区