伺服器:192.168.40.23

伺服器:192.168.40.23

伺服器:192.168.40.23

  `# vi /etc/sysconfig/shellinaboxd`

    # TCP port that shellinboxd's webserver listens on 
    PORT=6175
    # specify the IP address of a destination SSH server 
    OPTS="-s /:SSH:192.168.40.23"
    
    # if you want to restrict access to shellinaboxd from localhost only     
#OPTS="-s /:SSH:192.168.40.23 --localhost-only"
 OPTS="--disable-ssl-menu -s /:LOGIN"

當我訪問: https://localhost:6175在同一台伺服器上工作正常。

當我從外部使用伺服器 LAN ip 存取權時https://192.168.40.23:6175,瀏覽器顯示:

無法連接

如何開啟6175外部瀏覽?是防火牆的問題還是只是設定錯誤貝殼盒子

答案1

firewall-cmd --permanent --add-port=6175/tcp
firewall-cmd --reload

相關內容