blob: 12ad9aa36edb6ccd657a6b2bd875036061adf8e5 (
plain)
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
|
# ip(8) completion -*- shell-script -*-
_iproute2_etc()
{
COMPREPLY+=($(compgen -W \
"$(awk '!/#/ { print $2 }' /etc/iproute2/$1 2>/dev/null)" \
-- "$cur"))
}
_ip()
{
local cur prev words cword
_init_completion || return
case $prev in
-V | -Version | -rc | -rcvbuf)
return
;;
-f | -family)
COMPREPLY=($(compgen -W 'inet inet6 ipx dnet link' -- "$cur"))
return
;;
-b | -batch)
_filedir
return
;;
-force)
COMPREPLY=($(compgen -W '-batch' -- "$cur"))
return
;;
esac
local subcword cmd subcmd=""
for ((subcword = 1; subcword < ${#words[@]} - 1; subcword++)); do
[[ ${words[subcword]} == -b?(atch) ]] && return
[[ -v cmd ]] && subcmd=${words[subcword]} && break
[[ ${words[subcword]} != -* && \
${words[subcword - 1]} != -@(f?(amily)|rc?(vbuf)) ]] &&
cmd=${words[subcword]}
done
if [[ ! -v cmd ]]; then
case $cur in
-*)
local c="-Version -statistics -details -resolve -family
-oneline -timestamp -batch -rcvbuf"
((cword == 1)) && c+=" -force"
COMPREPLY=($(compgen -W "$c" -- "$cur"))
;;
*)
COMPREPLY=($(compgen -W "help $($1 help 2>&1 | command sed -e \
'/OBJECT := /,/}/!d' -e \
's/.*{//' -e \
's/}.*//' -e \
's/|//g')" -- "$cur"))
;;
esac
return
fi
[[ $subcmd == help ]] && return
case $cmd in
l | link)
case $subcmd in
add)
# TODO
;;
delete)
case $((cword - subcword)) in
1)
_available_interfaces
;;
2)
COMPREPLY=($(compgen -W 'type' -- "$cur"))
;;
3)
[[ $prev == type ]] &&
COMPREPLY=($(compgen -W 'vlan veth vcan dummy
ifb macvlan can' -- "$cur"))
;;
esac
;;
set)
if ((cword - subcword == 1)); then
_available_interfaces
else
case $prev in
arp | dynamic | multicast | allmulticast | promisc | \
trailers)
COMPREPLY=($(compgen -W 'on off' -- "$cur"))
;;
txqueuelen | name | address | broadcast | mtu | netns | alias) ;;
*)
local c="arp dynamic multicast allmulticast
promisc trailers txqueuelen name address
broadcast mtu netns alias"
[[ $prev != @(up|down) ]] && c+=" up down"
COMPREPLY=($(compgen -W "$c" -- "$cur"))
;;
esac
fi
;;
show)
if ((cword == subcword + 1)); then
_available_interfaces
COMPREPLY+=($(compgen -W 'dev group up' -- "$cur"))
elif [[ $prev == dev ]]; then
_available_interfaces
elif [[ $prev == group ]]; then
_iproute2_etc group
fi
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help add delete set show' \
-- "$cur"))
;;
esac
;;
a | addr | address)
case $subcmd in
add | change | replace)
if [[ $prev == dev ]]; then
_available_interfaces
elif [[ $prev == scope ]]; then
_iproute2_etc rt_scopes
else
: # TODO
fi
;;
del)
if [[ $prev == dev ]]; then
_available_interfaces
elif [[ $prev == scope ]]; then
_iproute2_etc rt_scopes
else
: # TODO
fi
;;
show | flush)
if ((cword == subcword + 1)); then
_available_interfaces
COMPREPLY+=($(compgen -W 'dev scope to label dynamic
permanent tentative deprecated dadfailed temporary
primary secondary up' -- "$cur"))
elif [[ $prev == dev ]]; then
_available_interfaces
elif [[ $prev == scope ]]; then
_iproute2_etc rt_scopes
fi
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help add change replace del
show flush' -- "$cur"))
;;
esac
;;
addrlabel)
case $subcmd in
list | add | del | flush)
if [[ $prev == dev ]]; then
_available_interfaces
else
: # TODO
fi
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help list add del flush' \
-- "$cur"))
;;
esac
;;
r | route)
case $subcmd in
list | flush)
if [[ $prev == proto ]]; then
_iproute2_etc rt_protos
else
: # TODO
fi
;;
get)
# TODO
;;
a | add | d | del | change | append | r | replace | monitor)
if [[ $prev == via ]]; then
COMPREPLY=($(compgen -W "$($1 r | command sed -ne \
's/.*via \([0-9.]*\).*/\1/p')" -- "$cur"))
elif [[ $prev == "$subcmd" ]]; then
COMPREPLY=($(compgen -W "table default \
$($1 r | cut -d ' ' -f 1)" -- "$cur"))
elif [[ $prev == dev ]]; then
_available_interfaces -a
elif [[ $prev == table ]]; then
COMPREPLY=($(compgen -W 'local main default' -- "$cur"))
else
COMPREPLY=($(compgen -W 'via dev weight' -- "$cur"))
fi
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help list flush get add del
change append replace monitor' -- "$cur"))
;;
esac
;;
rule)
case $subcmd in
add | del | list | lst)
case $prev in
from | to | tos | dsfield | fwmark | uidrange | ipproto | sport | \
dport | priority | protocol | suppress_prefixlength | \
suppress_ifgroup | realms | nat | goto) ;;
iif | oif)
_available_interfaces -a
;;
table | lookup)
COMPREPLY=($(compgen -W 'local main default' -- "$cur"))
;;
*)
COMPREPLY=($(compgen -W 'from to tos dsfield fwmark
uidrange ipproto sport dport priority table lookup
protocol suppress_prefixlength suppress_ifgroup realms
nat goto iif oif not' -- "$cur"))
;;
esac
;;
flush | save)
if [[ $prev == protocol ]]; then
:
else
COMPREPLY=($(compgen -W 'protocol' -- "$cur"))
fi
;;
restore | show) ;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help add del list flush save
restore show' -- "$cur"))
;;
esac
;;
neigh)
case $subcmd in
add | del | change | replace)
# TODO
;;
show | flush)
# TODO
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help add del change replace
show flush' -- "$cur"))
;;
esac
;;
ntable)
case $subcmd in
change)
# TODO
;;
show)
# TODO
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help change show' \
-- "$cur"))
;;
esac
;;
tunnel)
case $subcmd in
show) ;;
add | change | del | prl | 6rd)
# TODO
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help add change del show prl
6rd' -- "$cur"))
;;
esac
;;
maddr)
case $subcmd in
add | del)
# TODO
;;
show)
if [[ $cword -eq $subcword+1 || $prev == dev ]]; then
_available_interfaces
[[ $prev != dev ]] &&
COMPREPLY=($(compgen -W '${COMPREPLY[@]} dev' \
-- "$cur"))
fi
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help add del show' \
-- "$cur"))
;;
esac
;;
mroute)
case $subcmd in
show)
# TODO
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help show' -- "$cur"))
;;
esac
;;
monitor)
case $subcmd in
all) ;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help all' -- "$cur"))
;;
esac
;;
netns)
case $subcmd in
list | monitor) ;;
add | identify | list-id)
# TODO
;;
delete | exec | pids | set)
[[ $prev == "$subcmd" ]] &&
COMPREPLY=($(compgen -W "$($1 netns list)" -- "$cur"))
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'help add delete exec
identify list list-id monitor pids set' -- "$cur"))
;;
esac
;;
xfrm)
case $subcmd in
state | policy | monitor)
# TODO
;;
*)
((cword == subcword)) &&
COMPREPLY=($(compgen -W 'state policy monitor' \
-- "$cur"))
;;
esac
;;
esac
} &&
complete -F _ip ip
# ex: filetype=sh
|