seq と math を使用して IP アドレスの最後のオクテットを操作してファイルを作成します。

seq と math を使用して IP アドレスの最後のオクテットを操作してファイルを作成します。

Ubuntu 16.04 GNU bash、バージョン 4.3.48(1)-リリース(x86_64-pc-linux-gnu)

1日に数回、サーバーにIPを追加する必要があります。私はIPブロックに基づいて同じファイルのさまざまなバリエーションを作成することを発見しました。

#-- 100.100.100.160/29 - Sun 04/22/18 02-38-pm
#-- -----------------------------------------
auto eth0:0
iface eth0:0 inet static
    address 100.100.100.160
    netmask 255.255.255.255

auto eth0:1
iface eth0:1 inet static
    address 100.100.100.161
    netmask 255.255.255.255

auto eth0:2
iface eth0:2 inet static
    address 100.100.100.162
    netmask 255.255.255.255

auto eth0:3
iface eth0:3 inet static
    address 100.100.100.163
    netmask 255.255.255.255

auto eth0:4
iface eth0:4 inet static
    address 100.100.100.164
    netmask 255.255.255.255

auto eth0:5
iface eth0:5 inet static
    address 100.100.100.165
    netmask 255.255.255.255

auto eth0:6
iface eth0:6 inet static
    address 100.100.100.166
    netmask 255.255.255.255

auto eth0:7
iface eth0:7 inet static
    address 99.100.100.167
    netmask 255.255.255.255

だから私は可能な限りそのファイルに近づけるスクリプトを作成したいので、スクリプトを書いていましたが、これはその一部です。

#!/bin/bash
#
#-- bash add_ips.sh "eth0" "100.100.100.160" "255.255.255.255" "29"

wDir="/scripts/tools/ips"
ifaceFile="/etc/network/interfaces"
ipFile="${wDir}/ipFile.txt"
nic="${1}"
address="${2}"
netmask="${3}"
block="${4}"
timeStamp="$(date '+%a %D %I-%M-%P')"

if [ ! -n "$4" ]; then
   echo 'add_ips.sh nic address mask block ...';
   exit 1;
fi

#-- echo the address block on a header line
{
   echo "";
   echo "#-- IP Block ${address}/${block} - ${timeStamp}";
   echo "#-- ----------------------------------------------";
} > "$ipFile"

#-- If a 30/block
if [[ "$block" == "30" ]]; then
   start="0"
   end="3"
   for ipnum in $(seq "$start" "$end"); do
      {
         echo "auto ${nic}:${ipnum}";
         echo "iface ${nic}:${ipnum} inet static";
         echo -e "\t address ${address}";
         echo -e "\t netmask ${netmask}";
         echo "";
      } >> "$ipFile"
   done

出力は私が探しているものに近いです。私がしなければならない唯一のことは、IPアドレスの最後の数字を変更することだけです。

#-- 100.100.100.160/29 - Sun 04/22/18 02-38-pm
#-- -----------------------------------------
auto eth0:0
iface eth0:0 inet static
    address 100.100.100.160
    netmask 255.255.255.255

auto eth0:1
iface eth0:1 inet static
    address 100.100.100.160
    netmask 255.255.255.255

auto eth0:2
iface eth0:2 inet static
    address 100.100.100.160
    netmask 255.255.255.255

その行に現在のループの$ seq値を追加しながら、IPアドレスの最後のオクテットをどのように変更しますか?

私はこれを試しました

#-- If a 30/block
if [[ "$block" == "30" ]]; then
   start="0"
   end="3"
   for ipnum in $(seq "$start" "$end"); do
      ipaddress=$(expr "$address" + "$ipnum")
      {
         echo "auto ${nic}:${ipnum}";
         echo "iface ${nic}:${ipnum} inet static";
         echo -e "\t address ${ipaddress}";
         echo -e "\t netmask ${netmask}";
         echo "";
      } >> "$ipFile"
   done
fi

アドレスが整数ではないため失敗します。

ベストアンサー1

私はそれを動作させるための最小限の変更は次のとおりです。

ipaddress=${address%.*}.$((${address##*.} + ipnum))

これはipaddress次のように設定されます。

  • address末尾のオクテットdot(最後のオクテット)の後にあるすべての項目を削除します。
  • 一点
  • 数学表現$(( ... ))を追加:
    • 最初のオクテットaddress(発見された最後のポイントまでできるだけ多くの文字を削除)
    • ipnum

おすすめ記事