-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnmcli-cli-ipv6-copy
More file actions
executable file
·151 lines (126 loc) · 3.55 KB
/
Copy pathnmcli-cli-ipv6-copy
File metadata and controls
executable file
·151 lines (126 loc) · 3.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#!/bin/bash
#
# nmcli-cli-ipv6-copy
#
# Copyright (c) 2019-2026 Jun Futagawa (jfut)
#
# This software is released under the MIT License.
# http://opensource.org/licenses/mit-license.php
ECHO_OR_EXECUTE="echo"
print_command() {
# Print the nmcli command in a reusable shell-quoted form.
printf '%q' "$1"
shift
printf ' %q' "$@"
printf '\n'
}
echo_or_execute() {
local RET
if [[ -z "${ECHO_OR_EXECUTE}" ]]; then
printf 'Applying: '
print_command "$@"
"$@"
RET=$?
if [[ ${RET} -ne 0 ]]; then
echo "Error: command failed (${RET})." >&2
exit "${RET}"
fi
else
print_command "$@"
fi
}
nmcli_value() {
# Convert only nmcli's unset marker to an empty string.
local value=${1:-}
[[ "${value}" == "--" ]] && value=""
printf '%s' "${value}"
}
usage() {
cat << _EOF_
Usage:
$0 [-n] [-x] SRC_IF_NAME DEST_IF_NAME
Options:
-n No interface check (Default: check interface)
-x Run command (Default: echo only)
Examples:
$0 eno1 bond1
$0 bond1 br1
$0 eno1 (show current configuration)
_EOF_
}
check() {
local SRC_IF_NAME=${1:-}
local DEST_IF_NAME=${2:-${SRC_IF_NAME}}
# Check interface: src
nmcli connection show "${SRC_IF_NAME}" > /dev/null 2>&1
RET=$?
if [[ ${RET} -ne 0 ]]; then
echo "Error: Source interface \"${SRC_IF_NAME}\" not found."
exit 1
fi
# Check interface: dest
nmcli connection show "${DEST_IF_NAME}" > /dev/null 2>&1
RET=$?
if [[ ${RET} -ne 0 ]]; then
echo "Error: Destination interface \"${DEST_IF_NAME}\" not found."
exit 1
fi
}
ipv6_copy() {
local SRC_IF_NAME=${1:-}
local DEST_IF_NAME=${2:-${SRC_IF_NAME}}
# IP
SRC_IP_SUBNET=$(nmcli_value "$(nmcli -g ipv6.addresses connection show "${SRC_IF_NAME}")")
SRC_METHOD=$(nmcli_value "$(nmcli -g ipv6.method connection show "${SRC_IF_NAME}")")
echo_or_execute nmcli connection modify "${DEST_IF_NAME}" ipv6.addresses "${SRC_IP_SUBNET}" ipv6.method "${SRC_METHOD}"
# Gateway
SRC_GATEWAY=$(nmcli_value "$(nmcli -g ipv6.gateway connection show "${SRC_IF_NAME}")")
echo_or_execute nmcli connection modify "${DEST_IF_NAME}" ipv6.gateway "${SRC_GATEWAY}"
# DNS
SRC_DNS=$(nmcli_value "$(nmcli -g ipv6.dns connection show "${SRC_IF_NAME}")")
echo_or_execute nmcli connection modify "${DEST_IF_NAME}" ipv6.dns "${SRC_DNS}"
cat << _EOF_
# Next steps:
# -> Change IP address
# nmcli-cli-ipv6 "${DEST_IF_NAME}" ...
# -> Restart the interface:
# nmcli-cli-restart "${DEST_IF_NAME}"
#
# -> Create a bond interface:
# nmcli-cli-bond-add bond1 mode=... "${DEST_IF_NAME}" "ens2f0"
# -> Create a vlan interface:
# nmcli-cli-vlan-add "${DEST_IF_NAME}.100" 100 "${DEST_IF_NAME}"
# -> Create a bridge interface:
# nmcli-cli-bridge-add br1 "${DEST_IF_NAME}"
_EOF_
}
# Main
main() {
local NO_CHECK="no"
while getopts nxh OPT; do
case "${OPT}" in
"n" )
NO_CHECK="yes" ;;
"x" )
ECHO_OR_EXECUTE="" ;;
"h" )
usage
exit 0
;;
* )
usage
exit 1
;;
esac
done
shift $((OPTIND - 1))
[[ $# -lt 1 ]] && usage && exit 1
if [[ "${NO_CHECK}" = "no" ]]; then
check "${@}"
fi
if [[ "${ECHO_OR_EXECUTE}" = "echo" ]]; then
echo "# ${ECHO_OR_EXECUTE} only."
fi
ipv6_copy "${@}"
}
[[ ${#BASH_SOURCE[@]} = 1 ]] && main "${@}"