如何限制IP 通过 SSH连接服务器

例如 只让192.168.0.7通过ssh连接到服务器

  1:vim /etc/hosts.allow 里加入以下:

    sshd:192.168.0.7:allow    #允许192.168.0.7通过ssh连接

  2:vim /etc/hosts.deny 里加入以下:

    sshd:ALL       #禁止所有IP通过SSH连接

  3:service sshd restart     #重启sshd服务


你可能感兴趣的:(限制ip,SSH设置)