Redesign script.

This commit is contained in:
2019-03-07 05:03:30 +01:00
parent 3c896d7052
commit 040f453e6d
13 changed files with 1635 additions and 0 deletions

View File

@ -0,0 +1,50 @@
#!/usr/bin/env bash
# -------------
# --- Network Interfaces
# -------------
# - External interface(s)
#
ext_if_1=""
ext_if_2=""
ext_if_3=""
ext_ifs="$ext_if_1 $ext_if_2 $ext_if_3"
# - VPN Interfaces
# - (comma separated list)
vpn_ifs=""
# - Local Interfaces
local_if_1=""
local_if_2=""
local_if_3=""
local_ifs="$local_if_1 $local_if_2 $local_if_3"
# -------------
# --- Network Interfaces
# -------------
# - Extern IP Addresses on this Host
# -
# NOT IN USE
ext_1_ip=""
# NOT IN USE
ext_2_ip=""
# NOT IN USE
ext_3_ip=""
ext_ips="$ext_1_ip $ext_2_ip $ext_3_ip"
# NOT IN USE
local_1_ip=""
# NOT IN USE
local_2_ip=""
# NOT IN USE
local_2_ip=""