服务器: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

相关内容