是否可以允许从任何 Internet IP 连接到 Webmin?
我试过
allow=127.0.0.1 0.0.0.0/32
但仍然阻止我通过互联网进行远程访问。
答案1
您是否已检查过 IPTables 以确保端口已开放?
请尝试以下操作:
iptables -A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT
iptables save
iptables restart
是否可以允许从任何 Internet IP 连接到 Webmin?
我试过
allow=127.0.0.1 0.0.0.0/32
但仍然阻止我通过互联网进行远程访问。
您是否已检查过 IPTables 以确保端口已开放?
请尝试以下操作:
iptables -A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT
iptables save
iptables restart