#-- ホスト名の設定
hostnamectl set-hostname vps.masdon.life
#-- よく使用するパッケージのインストールとアップデート
yum install -y epel-release
yum install -y bind-utils telnet jq expect bash-completion whois knot-utils
yum update -y
#-- sshd の ClientAliveInterval のチューニング
cp -p /etc/ssh/sshd_config{,.org}
sed -i -e 's/#ClientAliveInterval 0/ClientAliveInterval 120/' /etc/ssh/sshd_config
#-- IPv6 の有効化
sed -i -e "s/net.ipv6.conf.all.disable_ipv6.*/net.ipv6.conf.all.disable_ipv6 = 0/" /etc/sysctl.conf
sed -i -e "s/net.ipv6.conf.default.disable_ipv6.*/net.ipv6.conf.default.disable_ipv6 = 0/" /etc/sysctl.conf
sed -i -e "s/^#//g" /etc/sysconfig/network
sed -i -e "s/^#//g" /etc/sysconfig/network-scripts/ifcfg-eth0
sed -i -e "s/^#//g" /etc/resolv.conf
sysctl -p
service network restart
#-- 再起動
reboot
- ssh key の作成や登録は必要であれば実施する