我們有 Mikrotik RB 750GL,但我無法透過 Winbox 或 Http 連接到它。
我們之間(在互聯網上)有一個 PPTP 連線(正在運行),該 RB 是 PPTP 用戶端。
Winbox 在擷取首選項時停止,然後中斷連線。且 Http 網頁無法載入。但我可以透過 SSH 或 Telnet 遠端連接到它並 ping 它!
本機用戶端可以透過 Winbox 或 Http 進行連線。
我也無法連接到 DVR(連接到該 RB)。
這些解決方案都不適合我:
- 框架升級 -
路由器作業系統更新
- 嘗試 L2TP 連接
- 更改 MTU
- 更改 MRRU
- 另一個 Winbox 版本
- 禁用所有防火牆規則
- RB 用戶端重置配置(!) -
安全模式 Winbox
-IP>服務:端口和地址
我需要你的幫助
答案1
可能是mss問題;就像在隧道中一樣,這是最常見的問題。請確保您的包裹是這樣夾緊的:
將這些規則放在 mangle 桌子的頂部。
ip firewall mangle add chain=forward action=change-mss new-mss=1440 tcp-flags=syn protocol=tcp out-interface=all-ppp tcp-mss=1441-65535
ip firewall mangle add chain=forward action=change-mss new-mss=1390 tcp-flags=syn protocol=tcp in-interface=all-ppp tcp-mss=1391-65535
這是輸入和輸出的相同規則(影響 mikrotik 本身)
ip firewall mangle add chain=input action=change-mss new-mss=1440 tcp-flags=syn protocol=tcp out-interface=all-ppp tcp-mss=1441-65535
ip firewall mangle add chain=input action=change-mss new-mss=1390 tcp-flags=syn protocol=tcp in-interface=all-ppp tcp-mss=1391-65535
ip firewall mangle add chain=output action=change-mss new-mss=1440 tcp-flags=syn protocol=tcp out-interface=all-ppp tcp-mss=1441-65535
ip firewall mangle add chain=output action=change-mss new-mss=1390 tcp-flags=syn protocol=tcp in-interface=all-ppp tcp-mss=1391-65535
答案2
你檢查過了嗎IP -> Services
? Winbox 服務可以在另一個連接埠上設定或設定為授權有限的位址。
如果是這種情況,您可以按照以下方法將其重設為預設值。
ip service set address=0.0.0.0/0 port=8291 [find name ~"winbox"] disabled=no
答案3
在這裡加入聚會有點晚了,但我也遇到了類似的問題。
透過MAC位址登入WinBox,開啟終端,然後輸入:
export file="name-your-file-here"
使用文字編輯器開啟它,然後搜尋 WinBox。
原來 WinBox 連接埠已更改。