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 | 31 |
Tags
- xe guest utilities
- 보안양파
- GitLab
- Windows
- 한글가이드
- ssh key 배포
- application security
- ansible
- 로그인불가
- pfsense
- freebsd
- ELASTIC
- endpoint security
- miniconda
- x-pack
- centos 8
- Kibana
- Elasticsearch
- Kibana server is not ready yet
- proxycfg
- bash
- G-suite
- PlayBook
- hardening
- XCP-ng
- docker
- Proxy
- macos
- elastic stack
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