seq와 math를 사용하여 IP 주소의 마지막 옥텟을 조작하여 파일을 만듭니다.

seq와 math를 사용하여 IP 주소의 마지막 옥텟을 조작하여 파일을 만듭니다.

Ubuntu 16.04 GNU bash, 버전 4.3.48(1)-릴리스(x86_64-pc-linux-gnu)

우리는 하루에 여러 번씩 서버에 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

관련 정보