This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ネットワーク設定スクリプト | |
| # 静的IPアドレスを設定し、起動時の自動有効化を行う | |
| set -e | |
| # 設定値 | |
| IP_ADDRESS="192.168.1.99" | |
| NETMASK="24" |