Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- G-suite
- 로그인불가
- hardening
- 보안양파
- Windows
- ansible
- ELASTIC
- Elasticsearch
- PlayBook
- freebsd
- pfsense
- Kibana server is not ready yet
- elastic stack
- miniconda
- GitLab
- 한글가이드
- docker
- Kibana
- xe guest utilities
- x-pack
- Proxy
- centos 8
- application security
- XCP-ng
- endpoint security
- macos
- bash
- proxycfg
- ssh key 배포
Archives
- Today
- Total
선 밖에 선 자유인
간단한 ping test script 본문
#!/bin/bash for i in `cat <서버 리스트 파일>` do ping -q -c2 $i > /dev/null if [ $? -eq 0 ]; then echo $i " : Success" else echo $i " : Fail" fi done
Comments