📄 servers.sh
字号:
#!/bin/sh## LiMon-Server# Copyright (C) 2006 Marcelo Busico## Author: Marcelo Busico marcelobusico@gmail.com## This program is free software which I release under the GNU General Public# License. You may redistribute and/or modify this program under the terms# of that license as published by the Free Software Foundation; either# version 2 of the License, or (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details. Version 2 is in the# LICENSE.txt file in the top level directory of this distribution.## To get a copy of the GNU General Puplic License, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA###Script que copia el estado de cada uno de los servidores a un archivoip="127.0.0.1"#Estado del Servidor Webnmap $ip -p 80 | sed -n 5p | grep open | wc -l > /tmp/limon-server-web#Estado del Servidor de Correonmap $ip -p 25 | sed -n 5p | grep open | wc -l > /tmp/limon-server-mail#Estado del Servidor SSHnmap $ip -p 22 | sed -n 5p | grep open | wc -l > /tmp/limon-server-ssh#Estado del Servidor FTPnmap $ip -p 21 | sed -n 5p | grep open | wc -l > /tmp/limon-server-ftp#Estado del Servidor Sambanmap $ip -p 139 | sed -n 5p | grep open | wc -l > /tmp/limon-server-samba
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -