关于CentOS 7 防火墙的开关

小白学习记录,仅供参考,大神勿喷,欢迎批评指正

开始学习Java,用socket的方式来连接服务器,于是自己用VisualBox装了一台CentOS的虚拟机。

万事俱备,但连接的时候一直抛出错误,大致就是说连接超时,一直连不上(原谅我Linux也是小白)。去关闭CentOS的防火墙时,却发现service iptables start/stop命令无法使用。
报错如下:

[ryan@bogon ~]$ service iptables stop
Redirecting to /bin/systemctl stop iptables.service
==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units ===
Authentication is required to manage system services or units.
Authenticating as: ryan
Password: 
==== AUTHENTICATION COMPLETE ===
Failed to stop iptables.service: Unit iptables.service not loaded.

原来CentOS 7的防火墙firewalld来管理。开关代码如下

systemctl stop/start firewalld

关闭防火墙后,用

nc -l -p 端口号

创建一个监听,就可以用socket实现简单的java程序与服务器的简单交互了。


第一次接触程序与另一台电脑的交互,有点小激动,写一条博客纪念一下,也是第一次写博客,大佬勿喷。跨专业学编程的小白,请多多指教。


你可能感兴趣的:(关于CentOS 7 防火墙的开关)