在虚拟网络中开启所有端口
不管是哪种系统都会使用iptables来管理,使用下面的命令在服务器开启端口
sudo iptables -I INPUT 6 -m state --state NEW -p tcp --dport 443 -j ACCEPT
sudo netfilter-persistent save
参考链接:
https://stackoverflow.com/questions/62326988/cant-access-oracle-cloud-always-free-compute-http-port
评论区