CentOS之iptables&firewalld&ntp


网络相关命令

  • 获取ip地址: ifconfig 或者 ip -a
  • 修改网卡名称: vim /boot/grub2.cfg, 在第一个linux16后添加 net.ifnames=0
  • 与服务器时间临时同步:ntpdate IP (及时同步时间命令)
  • 与服务器时间永久同步:vim /etc/ntp.conf 添加 service IP iburst后执行:
  • ntpd开关
    • CentOS6:
      • service ntpd start 开启同步服务
      • service ntpd restart 重启服务
      • chkconfig ntpd on 开机自启动
    • CentOS7:
      • systemctl start ntpd 开启同步服务
      • systemctl restart ntpd 重启同步服务
      • systemctl enable ntpd 开机自启动
  • 防火墙开关
    • CentOS6:
      • service iptables status 查看防火墙状态
      • service iptables stop 关闭防火墙
      • service iptables start 打开防火墙
      • chkconfig iptables on/off 永久开启关闭防火墙:
    • CentOS7:
      • systemctl stop firewalld 关闭防火墙
      • systemctl start firewalld 打开防火墙
      • systemctl enable/disable firewalld 开机启动/不启动防火墙

你可能感兴趣的:(CentOS之iptables&firewalld&ntp)