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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
#compdef nmcli
# compatible with NetworkManager 1.8.4
_networkmanager() {
local curcontext="$curcontext" state line
local nmcli="$words[1]"
_arguments -C \
'(-o -overview)-o'{,verview}'[overview mode (hide default values)]' \
'(-p -pretty -t -terse)-t'{,erse}'[terse output]' \
'(-p -pretty -t -terse)-p'{,retty}'[pretty output]' \
'(-m -mode)-m'{,ode}'[output mode]:mode:(tabular multiline)' \
'(-c -colors)-c'{,olors}'[whether to use colors in output]:value:(auto yes no)' \
'(-f -fields)-f'{,ields}'[specify fields to output]:field:_nm_fields' \
'(-f -fields -g -get-values -m -mode -p -pretty -t -terse)-g'{,et-values}'[shortcut for -m tabular -t -f]:field:_nm_fields' \
'(-e -escape)-e'{,scape}'[escape column separators in values]:value:(yes no)' \
'(-a -ask)-a'{,sk}'[ask for missing parameters]' \
'(-s -show-secrets)-s'{,how-secrets}'[allow passwords to be displayed]' \
'(-w -wait)-w'{,ait}'[set time limit on wait for operations to finish]:timeout (seconds)' \
'(- *)-v'{,ersion}'[show program version]' \
'(- *)-h'{,elp}'[print help]' \
'1:command:(general networking radio connection device agent monitor help)' \
'*::arg:->args'
case $line[1] in
g*) _nm_general ;;
n*) _nm_networking ;;
r*) _nm_radio ;;
c*) _nm_connection ;;
d*) _nm_device ;;
a*) _nm_agent ;;
esac
}
_nm_fields() {
_values -s , 'field to output' \
all common \
RUNNING VERSION STATE STARTUP CONNECTIVITY NETWORKING WIFI-HW WIFI WWAN-HW WWAN \
NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE \
DEVICE CONNECTION CON-UUID CON-PATH BSSID SSID MODE CHAN RATE SIGNAL BARS SECURITY
}
_nm_general() {
_arguments "1:command:(status hostname permissions logging help)"
# TODO: provide completions for logging
}
_nm_networking() {
local curcontext="$curcontext" state line
_arguments -C \
"1:command:(on off connectivity help)" \
"*::arg:->args"
case $line[1] in
c*) _nm_networking_connectivity ;;
esac
}
_nm_networking_connectivity() {
_arguments "1:flag:(check)"
}
_nm_radio() {
_arguments \
"1:type:(all wifi wwan help)" \
"2:switch:(on off)"
}
_nm_connection() {
local curcontext="$curcontext" state line
_arguments -C \
"1:command:(show up down add modify clone edit delete monitor reload load import export help)" \
"*::arg:->args"
case $line[1] in
s*) _nm_connection_show ;;
u*) _nm_connection_up ;;
d*) _nm_connection_down ;;
# TODO: a*) _nm_connection_add ;;
m*) _nm_connection_modify ;;
c*) _nm_connection_clone ;;
e*) _nm_connection_edit ;;
de*) _nm_connection_delete ;;
mon*) _nm_connection_monitor ;;
l*) _nm_connection_load ;;
i*) _nm_connection_import ;;
ex*) _nm_connection_export ;;
esac
}
_nm_connection_show() {
# TODO: add support for --order
_arguments \
"--active" \
"1:connection:_nm_connection_specs"
}
_nm_connection_up() {
# TODO: add support for ifname, ap and passwd-file parameters
_arguments "1:connection:_nm_connection_specs"
}
_nm_connection_down() {
_arguments "1:connection:_nm_connection_active"
}
_nm_connection_modify() {
local curcontext="$curcontext" ret=1
local -a state line expl properties
_arguments -A "-*" \
"--temporary" \
"1:connection:_nm_connection_specs" \
'2:option:->properties' \
'3:value' && ret=0
if [[ -n "$state" ]]; then
properties=( ${${(f)"$(_call_program properties $nmcli -t connection show $line[1])"}%%:*} )
_description properties expl property
_multi_parts "$expl[@]" . properties && ret=0
fi
return ret
}
_nm_connection_clone() {
_arguments \
"--temporary" \
"1:connection:_nm_connection_specs" \
"2:new name"
}
_nm_connection_edit() {
# TODO: add support for adding new connections (type and con-name parameters)
_arguments "1:connection:_nm_connection_specs"
}
_nm_connection_delete() {
_arguments "*:connection:_nm_connection_specs"
}
_nm_connection_monitor() {
_arguments "*:connection:_nm_connection_specs"
}
_nm_connection_load() {
_files
}
_nm_connection_import() {
_arguments \
"--temporary" \
"1: :(type)" \
"2:type:(vpnc openvpn pptp openconnect openswan libreswan ssh l2tp iodine)" \
"3: :(file)" \
"4:file:_files"
}
_nm_connection_export() {
_arguments \
"1:connection:_nm_connection_specs" \
"2:file:_files"
}
_nm_connection_specs() {
# TODO: add support for uuids and D-Bus paths
_nm_connection_ids
}
_nm_connection_ids() {
local -a con_ids
con_ids=(${(f)"$(_call_program nmcli nmcli -t -f name connection)"})
_describe 'select connection' con_ids
}
_nm_connection_active() {
local -a con_ids
con_ids=(${(f)"$(_call_program nmcli nmcli -t -f name connection show --active)"})
_describe 'select connection' con_ids
}
_nm_device() {
local curcontext="$curcontext" state line
_arguments -C \
"1:command:(status show set connect reapply modify disconnect delete monitor wifi lldp help)" \
"*::arg:->args"
case $line[1] in
sh*) _nm_device_show ;;
se*) _nm_device_set ;;
c*) _nm_device_connect ;;
r*) _nm_device_reapply ;;
mod*) _nm_device_modify ;;
d*) _nm_device_disconnect ;;
de*) _nm_device_delete ;;
m*) _nm_device_monitor ;;
w*) _nm_device_wifi ;;
l*) _nm_device_lldp ;;
esac
}
_nm_device_show() {
_arguments "1:interface:_nm_device_ifnames"
}
_nm_device_set() {
# TODO: allow specifying both options, and in any order
_arguments \
"1:interface:_nm_device_ifnames" \
"2:property:(autoconnect managed)" \
"3:switch:(yes no)"
}
_nm_device_connect() {
_arguments "1:interface:_nm_device_ifnames"
}
_nm_device_reapply() {
_arguments "1:interface:_nm_device_ifnames"
}
_nm_device_modify() {
# TODO: add support for settings
_arguments "1:interface:_nm_device_ifnames"
}
_nm_device_disconnect() {
_arguments "*:interface:_nm_device_ifnames"
}
_nm_device_delete() {
_arguments "*:interface:_nm_device_ifnames"
}
_nm_device_monitor() {
_arguments "*:interface:_nm_device_ifnames"
}
_nm_device_wifi() {
local curcontext="$curcontext" state line
_arguments -C \
"1:command:(list connect hotspot rescan show-password)" \
"*::arg:->args"
case $line[1] in
l*) _nm_device_wifi_list ;;
c*) _nm_device_wifi_connect ;;
ho*) _nm_device_wifi_hotspot ;;
r*) _nm_device_wifi_rescan ;;
s*) _nm_device_wifi_show-password ;;
esac
}
_nm_device_wifi_list() {
# TODO: support bssid on its own
_arguments \
'--rescan[force or disable network scan]:network scan:(yes no auto)' \
"1: :(ifname)" \
"2:interface:_nm_device_ifnames" \
"3: :(bssid)" \
"4:bssid:_nm_device_wifi_bssids"
}
_nm_device_wifi_connect() {
local curcontext="$curcontext" state line
_arguments -C \
"1:ssid:_nm_device_wifi_ssids" \
"*::arg:->args"
if [[ -n $line[1] ]]; then
_nm_device_wifi_connect_opts
fi
}
_nm_device_wifi_connect_opts() {
# TODO: there must be a cleaner way to implement this
local curcontext="$curcontext" state line
_arguments -C \
"1:property:(password wep-key-type ifname bssid name private hidden)" \
"*::arg:->args"
local min_line_len=2
case $line[-2] in
password)
_arguments -C "1:password" "*::arg:->args"
;;
wep-key-type)
_arguments -C "1:wep key type:(key phrase)" "*::arg:->args"
;;
ifname)
_arguments -C "1:device:_nm_device_ifnames" "*::arg:->args"
;;
bssid)
_arguments -C "1:bssid:_nm_device_wifi_bssids" "*::arg:->args"
;;
name)
_arguments -C "1:name" "*::arg:->args"
;;
private)
_arguments -C "1:private:(yes no)" "*::arg:->args"
;;
hidden)
_arguments -C "1:hidden:(yes no)" "*::arg:->args"
;;
*)
min_line_len=1
;;
esac
if [[ $#line > $min_line_len ]]; then
_nm_device_wifi_connect_opts
fi
}
_nm_device_wifi_hotspot() {
local curcontext="$curcontext" state line
_arguments -C \
"1:property:(ifname con-name ssid band channel password)" \
"*::arg:->args"
local min_line_len=2
case $line[-2] in
ifname)
_arguments -C "1:device:_nm_device_ifnames" "*::arg:->args"
;;
con-name)
_arguments -C "1:connection name" "*::arg:->args"
;;
ssid)
_arguments -C "1:ssid" "*::arg:->args"
;;
band)
_arguments -C "1:band:(a bg)" "*::arg:->args"
;;
channel)
_arguments -C "1:channel" "*::arg:->args"
;;
password)
_arguments -C "1:password" "*::arg:->args"
;;
*)
min_line_len=1
;;
esac
if [[ $#line > $min_line_len ]]; then
_nm_device_wifi_hotspot
fi
}
_nm_device_wifi_rescan() {
# TODO: support ssid on its own and multiple ssids
_arguments \
"1: :(ifname)" \
"2:interface:_nm_device_ifnames" \
"3: :(ssid)" \
"4:ssid:_nm_device_wifi_ssids"
}
_nm_device_wifi_show-password() {
_arguments \
"1: :(ifname)" \
"2:interface:_nm_device_ifnames"
}
_nm_device_wifi_bssids() {
local -a bssids
bssids=(${(f)"$(_call_program nmcli nmcli -t -f bssid device wifi list)"})
_describe 'select network' bssids
}
_nm_device_wifi_ssids() {
local -a ssids
ssids=(${(f)"$(_call_program nmcli nmcli -t -f ssid device wifi list)"})
_describe 'select network' ssids
}
_nm_device_lldp() {
_arguments \
"1: :(list)" \
"2: :(ifname)" \
"3:interface:_nm_device_ifnames"
}
_nm_device_ifnames() {
local -a ifnames
ifnames=(${(f)"$(_call_program nmcli nmcli -t -f device device)"})
_describe 'select device' ifnames
}
_nm_agent() {
_arguments "1:type:(secret polkit all help)"
}
_networkmanager "$@"
|