如何在没有 SSH 或 telnet 连接的情况下重新启用 dd-wrt ​​路由器的 Web 界面?

San*_*nt 13 router dd-wrt administrator

我不小心禁用了 D-link 路由器的 Web 界面。我在上面安装了 dd-wrt ​​固件。路由器的 SSH 和 telnet 连接被禁用。我不想重置路由器。

如何启用 Web 界面?

小智 11

我建议将来遵循这些步骤:http : //www.dd-wrt.com/phpBB2/viewtopic.php?t=29181

nvram set httpd_enable=1
nvram set http_enable=1
nvram commit

you can just reboot, or start httpd from the commandline

httpd -p 80
Run Code Online (Sandbox Code Playgroud)

我跟着他们,让我的工作


小智 6

SSH 然后:

nvram set remote_management=1
nvram set http_wanport=8080 
nvram set httpsd_enable=1 
nvram set https_enable=1
nvram set remote_mgt_https=1 
nvram commit 
reboot 
Run Code Online (Sandbox Code Playgroud)

然后连接:

https://wanIP:8080/

  • 他提到SSH已禁用。 (4认同)