2019-03-31 11:00:21 +00:00
|
|
|
---
|
|
|
|
title: ドメインの残り有効期限を取得するシェルスクリプト
|
2021-02-27 13:04:45 +00:00
|
|
|
date: 2013-01-14T15:04:05Z
|
2019-03-31 11:00:21 +00:00
|
|
|
has_been_twittered:
|
|
|
|
- yes
|
|
|
|
tmac_last_id:
|
|
|
|
- 303816623784083456
|
2021-11-13 03:11:49 +00:00
|
|
|
author: kazu634
|
2019-03-31 11:00:21 +00:00
|
|
|
categories:
|
2021-02-27 12:05:32 +00:00
|
|
|
- Infra
|
|
|
|
- Labs
|
2021-02-23 14:31:13 +00:00
|
|
|
tags:
|
2021-02-27 12:05:32 +00:00
|
|
|
- DNS
|
|
|
|
- Domain
|
|
|
|
- ShellScript
|
2019-03-31 11:00:21 +00:00
|
|
|
---
|
|
|
|
とあるところで独自ドメインの更新忘れが起きていて、名前解決できていない状態になっていました。。。独自ドメインの更新忘れはかなり致命的な状況に陥ることに気づいたので、監視できる仕組みを構築せねばということで、調べて作成してみました。
|
|
|
|
|
|
|
|
## 前提条件
|
|
|
|
|
|
|
|
whoisコマンドが使用出来ることが前提です。debian系なら、「aptitude install whois」してください。また、「.com」しか対象にしていません。
|
|
|
|
|
|
|
|
## 作成したシェルスクリプト
|
|
|
|
|
|
|
|
作成したシェルスクリプトは<a href="https://gist.github.com/4527473" onclick="__gaTracker('send', 'event', 'outbound-article', 'https://gist.github.com/4527473', 'Gist');" title="Gist" target="_blank">Gist</a>でも公開しています。以下の通りです:
|
|
|
|
|
2021-02-27 12:05:32 +00:00
|
|
|
```
|
|
|
|
########################################
|
|
|
|
# Name: Kazuhiro MUSASHI
|
|
|
|
#
|
|
|
|
# about:
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# Author:
|
|
|
|
# Date:
|
|
|
|
########################################
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Constants
|
|
|
|
WHOIS='/usr/bin/whois'
|
|
|
|
|
|
|
|
# Check the number of the arguments
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
DOMAIN=$1
|
|
|
|
|
|
|
|
# Check the specified domain name
|
|
|
|
if [ ! ${DOMAIN##*.} == "com" ]; then
|
|
|
|
|
|
|
|
echo "Specify the .com domain name."
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check whether the whois command exists or not
|
|
|
|
if [ ! -x ${WHOIS} ]; then
|
|
|
|
|
|
|
|
echo "${WHOIS} command does not exist."
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Execute the whois command
|
|
|
|
EXPIRE=`${WHOIS} ${DOMAIN} | grep Expiration | tail -n 1 | cut -f 3 -d " "`
|
|
|
|
|
|
|
|
# Convert the expiration date into seconds
|
|
|
|
EXPIRE_SECS=`date +%s --date=${EXPIRE}`
|
|
|
|
|
|
|
|
# Acquire the now seconds
|
|
|
|
CURRENTDATE_SEC=`date +%s`
|
|
|
|
|
|
|
|
# Calculate the remaining days
|
|
|
|
((DIFF_SEC=EXPIRE_SECS-CURRENTDATE_SEC))
|
|
|
|
|
|
|
|
REMAIN_DAYS=$((DIFF_SEC/86400))
|
|
|
|
|
|
|
|
echo ${REMAIN_DAYS}
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
```
|
2019-03-31 11:00:21 +00:00
|
|
|
|
|
|
|
## 参考にしたサイト
|
|
|
|
|
|
|
|
ここがとても参考になりました。dateコマンドって色々と使えるんですね。
|
|
|
|
|
|
|
|
* <a href="http://d.hatena.ne.jp/tmatsuu/20070928/1190940248" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://d.hatena.ne.jp/tmatsuu/20070928/1190940248', 'Nagiosでドメイン失効を監視する');" target="_blank">Nagiosでドメイン失効を監視する</a>
|
|
|
|
|
2019-04-02 16:06:15 +00:00
|
|
|
このシェルスクリプトを Nagios に組み込んであげれば、監視の仕組み構築が完了ということになるかな。
|