]> git.proxmox.com Git - mirror_iproute2.git/blame - man/man8/ip-link.8.in
utils: relax strtoX checking in get_time_rtt
[mirror_iproute2.git] / man / man8 / ip-link.8.in
CommitLineData
77987911 1.TH IP\-LINK 8 "13 Dec 2012" "iproute2" "Linux"
761a1e60
CT
2.SH "NAME"
3ip-link \- network device configuration
4.SH "SYNOPSIS"
5.sp
6.ad l
7.in +8
8.ti -8
9.B ip
10.RI "[ " OPTIONS " ]"
11.B link
12.RI " { " COMMAND " | "
13.BR help " }"
14.sp
15
16.ti -8
17.IR OPTIONS " := { "
18\fB\-V\fR[\fIersion\fR] |
b68d9837 19\fB\-h\fR[\fIuman-readable\fR] |
761a1e60
CT
20\fB\-s\fR[\fItatistics\fR] |
21\fB\-r\fR[\fIesolve\fR] |
22\fB\-f\fR[\fIamily\fR] {
23.BR inet " | " inet6 " | " ipx " | " dnet " | " link " } | "
24\fB\-o\fR[\fIneline\fR] }
25
26.ti -8
9fc56974
AH
27.BI "ip link add"
28.RB "[ " link
29.IR DEVICE " ]"
761a1e60
CT
30.RB "[ " name " ]"
31.I NAME
32.br
33.RB "[ " txqueuelen
34.IR PACKETS " ]"
35.br
36.RB "[ " address
37.IR LLADDR " ]"
38.RB "[ " broadcast
39.IR LLADDR " ]"
40.br
41.RB "[ " mtu
42.IR MTU " ]"
4de8d885
PE
43.RB "[ " index
44.IR IDX " ]"
761a1e60 45.br
d992f3e6
JP
46.RB "[ " numtxqueues
47.IR QUEUE_COUNT " ]"
48.RB "[ " numrxqueues
49.IR QUEUE_COUNT " ]"
50.br
761a1e60
CT
51.BR type " TYPE"
52.RI "[ " ARGS " ]"
53
54.ti -8
55.IR TYPE " := [ "
f1a6f4e9 56.BR bridge " | "
e37a9c73 57.BR bond " | "
f1a6f4e9
SH
58.BR can " | "
59.BR dummy " | "
5c0aec93 60.BR hsr " | "
f1a6f4e9
SH
61.BR ifb " | "
62.BR ipoib " |"
63.BR macvlan " | "
e4c35682 64.BR macvtap " | "
f1a6f4e9
SH
65.BR vcan " | "
66.BR veth " | "
67.BR vlan " | "
77987911
ND
68.BR vxlan " |"
69.BR ip6tnl " |"
70.BR ipip " |"
9abde37c 71.BR sit " |"
72.BR gre " |"
73.BR gretap " |"
74.BR ip6gre " |"
75.BR ip6gretap " ]"
761a1e60
CT
76
77.ti -8
78.BI "ip link delete " DEVICE
79.BI type " TYPE"
80.RI "[ " ARGS " ]"
81
82.ti -8
83.BR "ip link set " {
84.IR DEVICE " | "
85.BI "group " GROUP
86.RB "} { " up " | " down " | " arp " { " on " | " off " } |"
87.br
88.BR promisc " { " on " | " off " } |"
89.br
90.BR allmulticast " { " on " | " off " } |"
91.br
92.BR dynamic " { " on " | " off " } |"
93.br
94.BR multicast " { " on " | " off " } |"
95.br
96.B txqueuelen
97.IR PACKETS " |"
98.br
99.B name
100.IR NEWNAME " |"
101.br
102.B address
103.IR LLADDR " |"
104.B broadcast
105.IR LLADDR " |"
106.br
107.B mtu
108.IR MTU " |"
109.br
110.B netns
111.IR PID " |"
112.br
113.B netns
114.IR NETNSNAME " |"
115.br
116.B alias
117.IR NAME " |"
118.br
119.B vf
120.IR NUM " ["
121.B mac
122.IR LLADDR " ] ["
123.B vlan
124.IR VLANID " [ "
125.B qos
126.IR VLAN-QOS " ] ] ["
127.B rate
128.IR TXRATE " ] ["
f89a2a05
SC
129.B max_tx_rate
130.IR TXRATE " ] ["
131.B min_tx_rate
132.IR TXRATE " ] ["
63f60e3a
OG
133.B spoofchk { on | off } ] [
134.B state { auto | enable | disable}
761a1e60
CT
135] |
136.br
137.B master
138.IR DEVICE
139.br
140.B nomaster
141.BR " }"
142
143
144.ti -8
145.B ip link show
146.RI "[ " DEVICE " | "
147.B group
338f07c6 148.IR GROUP " |"
149.B up
150]
761a1e60
CT
151
152.SH "DESCRIPTION"
153.SS ip link add - add virtual link
154
155.TP
156.BI link " DEVICE "
157specifies the physical device to act operate on.
158
159.I NAME
160specifies the name of the new virtual device.
161
162.I TYPE
163specifies the type of the new device.
164.sp
165Link types:
166
167.in +8
f1a6f4e9
SH
168.B bridge
169- Ethernet Bridge device
761a1e60 170.sp
cc26a890
JP
171.B bond
172- Bonding device
173.sp
761a1e60
CT
174.B dummy
175- Dummy network interface
176.sp
2f937359 177.B hsr
178- High-availability Seamless Redundancy device
179.sp
761a1e60
CT
180.B ifb
181- Intermediate Functional Block device
182.sp
f1a6f4e9
SH
183.B ipoib
184- IP over Infiniband device
185.sp
761a1e60 186.B macvlan
f1a6f4e9 187- Virtual interface base on link layer address (MAC)
761a1e60 188.sp
e4c35682
RR
189.B macvtap
190- Virtual interface based on link layer address (MAC) and TAP.
191.sp
f1a6f4e9 192.B vcan
2b70fe15 193- Virtual Controller Area Network interface
761a1e60 194.sp
f1a6f4e9
SH
195.B veth
196- Virtual ethernet interface
de038993 197.sp
f1a6f4e9
SH
198.BR vlan
199- 802.1q tagged virtual LAN interface
200.sp
201.BR vxlan
202- Virtual eXtended LAN
77987911
ND
203.sp
204.BR ip6tnl
205- Virtual tunnel interface IPv4|IPv6 over IPv6
206.sp
207.BR ipip
208- Virtual tunnel interface IPv4 over IPv4
209.sp
210.BR sit
211- Virtual tunnel interface IPv6 over IPv4
9abde37c 212.sp
213.BR gre
214- Virtual tunnel interface GRE over IPv4
215.sp
216.BR gretap
217- Virtual L2 tuunel interface GRE over IPv4
218.sp
219.BR ip6gre
220- Virtual tuunel interface GRE over IPv6
221.sp
222.BR ip6gretap
223- Virtual L2 tuunel interface GRE over IPv6
761a1e60
CT
224.in -8
225
d992f3e6
JP
226.TP
227.BI numtxqueues " QUEUE_COUNT "
228specifies the number of transmit queues for new device.
229
230.TP
231.BI numrxqueues " QUEUE_COUNT "
232specifies the number of receive queues for new device.
233
4de8d885
PE
234.TP
235.BI index " IDX "
236specifies the desired index of the new virtual device. The link creation fails, if the index is busy.
237
2816a568
TR
238.TP
239VXLAN Type Support
63f60e3a 240For a link of type
2816a568
TR
241.I VXLAN
242the following additional arguments are supported:
243
244.BI "ip link add " DEVICE
245.BI type " vxlan " id " ID
246.R " [ "
247.BI dev " PHYS_DEV "
7cfa3802
AW
248.RB " ] [ { " group " | " remote " } "
249.I IPADDR
2816a568
TR
250.R " ] [ "
251.BI local " IPADDR "
252.R " ] [ "
253.BI ttl " TTL "
254.R " ] [ "
255.BI tos " TOS "
256.R " ] [ "
257.BI port " MIN MAX "
258.R " ] [ "
259.I "[no]learning "
260.R " ] [ "
261.I "[no]proxy "
262.R " ] [ "
263.I "[no]rsc "
264.R " ] [ "
265.I "[no]l2miss "
266.R " ] [ "
267.I "[no]l3miss "
c2fbc57e
ND
268.R " ] [ "
269.BI ageing " SECONDS "
270.R " ] [ "
271.BI maxaddress " NUMBER "
2816a568
TR
272.R " ]"
273
274.in +8
275.sp
276.BI id " VNI "
277- specifies the VXLAN Network Identifer (or VXLAN Segment
278Identifier) to use.
279
280.BI dev " PHYS_DEV"
281- specifies the physical device to use for tunnel endpoint communication.
282
283.sp
284.BI group " IPADDR"
285- specifies the multicast IP address to join.
7cfa3802
AW
286This parameter cannot be specified with the
287.B remote
288parameter.
289
290.sp
291.BI remote " IPADDR"
292- specifies the unicast destination IP address to use in outgoing packets
293when the destination link layer address is not known in the VXLAN device
294forwarding database. This parameter cannot be specified with the
295.B group
296parameter.
2816a568
TR
297
298.sp
299.BI local " IPADDR"
300- specifies the source IP address to use in outgoing packets.
301
302.sp
303.BI ttl " TTL"
304- specifies the TTL value to use in outgoing packets.
305
306.sp
307.BI tos " TOS"
308- specifies the TOS value to use in outgoing packets.
309
310.sp
311.BI port " MIN MAX"
312- specifies the range of port numbers to use as UDP
313source ports to communicate to the remote VXLAN tunnel endpoint.
314
315.sp
316.I [no]learning
317- specifies if unknown source link layer addresses and IP addresses
318are entered into the VXLAN device forwarding database.
319
320.sp
321.I [no]rsc
322- specifies if route short circuit is turned on.
323
324.sp
325.I [no]proxy
326- specifies ARP proxy is turned on.
327
328.sp
329.I [no]l2miss
330- specifies if netlink LLADDR miss notifications are generated.
331
332.sp
333.I [no]l3miss
334- specifies if netlink IP ADDR miss notifications are generated.
335
c2fbc57e
ND
336.sp
337.BI ageing " SECONDS"
338- specifies the lifetime in seconds of FDB entries learnt by the kernel.
339
340.sp
341.BI maxaddress " NUMBER"
342- specifies the maximum number of FDB entries.
343
2816a568
TR
344.in -8
345
9abde37c 346.TP
347IP6GRE/IP6GRETAP Type Support
63f60e3a 348For a link of type
9abde37c 349.I IP6GRE/IP6GRETAP
350the following additional arguments are supported:
351
352.BI "ip link add " DEVICE
353.BI type " { ip6gre | ip6gretap } " remote " ADDR " local " ADDR
354.R " [ "
355.I "[i|o]seq]"
356.R " ] [ "
357.I "[i|o]key" KEY
358.R " ] [ "
359.I " [i|o]csum "
360.R " ] [ "
361.BI hoplimit " TTL "
362.R " ] [ "
363.BI encaplimit " ELIM "
364.R " ] [ "
365.BI tclass " TCLASS "
366.R " ] [ "
367.BI flowlabel " FLOWLABEL "
368.R " ] [ "
369.BI "dscp inherit"
370.R " ] [ "
371.BI dev " PHYS_DEV "
372.R " ]"
373
374.in +8
375.sp
376.BI remote " ADDR "
377- specifies the remote IPv6 address of the tunnel.
378
379.sp
380.BI local " ADDR "
381- specifies the fixed local IPv6 address for tunneled packets.
382It must be and address on another interface on this host.
383
384.sp
385.BI [i|o]seq
386- serialize packets.
387The
388.B oseq
389flag enables sequencing of outgoing packets.
390The
391.B iseq
392flag requires that all input packets are serialized.
393
394.sp
395.BI [i|o]key " KEY"
396- use keyed GRE with key
397.IR KEY ". "KEY
398is either a number or an IPv4 address-like dotted quad.
399The
400.B key
401parameter specifies the same key to use in both directions.
402The
403.BR ikey " and " okey
404parameters specify different keys for input and output.
405
406.sp
407.BI [i|o]csum
408- generate/require checksums for tunneled packets.
409The
410.B ocsum
411flag calculates checksums for outgoing packets.
412The
413.B icsum
414flag requires that all input packets have the correct
415checksum. The
416.B csum
417flag is equivalent to the combination
418.BR "icsum ocsum" .
419
420.sp
421.BI hoplimit " TTL"
422- specifies Hop Limit value to use in outgoing packets.
423
424.sp
425.BI encaplimit " ELIM"
426- specifies a fixed encapsulation limit. Default is 4.
427
428.sp
429.BI flowlabel " FLOWLABEL"
63f60e3a 430- specifies a fixed flowlabel.
9abde37c 431
432.sp
433.BI tclass " TCLASS"
434- specifies the traffic class field on
435tunneled packets, which can be specified as either a two-digit
436hex value (e.g. c0) or a predefined string (e.g. internet).
437The value
438.B inherit
439causes the field to be copied from the original IP header. The
440values
441.BI "inherit/" STRING
442or
443.BI "inherit/" 00 ".." ff
444will set the field to
445.I STRING
446or
447.IR 00 ".." ff
448when tunneling non-IP packets. The default value is 00.
449
450.in -8
451
761a1e60
CT
452.SS ip link delete - delete virtual link
453.I DEVICE
454specifies the virtual device to act operate on.
455.I TYPE
456specifies the type of the device.
457
458
459.TP
460.BI dev " DEVICE "
461specifies the physical device to act operate on.
462
463.SS ip link set - change device attributes
464
465.TP
466.BI dev " DEVICE "
467.I DEVICE
6274b0b7 468specifies network device to operate on. When configuring SR-IOV Virtual Function
761a1e60
CT
469(VF) devices, this keyword should specify the associated Physical Function (PF)
470device.
471
472.TP
473.BI group " GROUP "
474.I GROUP
475has a dual role: If both group and dev are present, then move the device to the
476specified group. If only a group is specified, then the command operates on
477all devices in that group.
478
479.TP
480.BR up " and " down
481change the state of the device to
482.B UP
483or
484.BR "DOWN" .
485
486.TP
487.BR "arp on " or " arp off"
488change the
489.B NOARP
490flag on the device.
491
492.TP
493.BR "multicast on " or " multicast off"
494change the
495.B MULTICAST
496flag on the device.
497
498.TP
499.BR "dynamic on " or " dynamic off"
500change the
501.B DYNAMIC
502flag on the device.
503
504.TP
505.BI name " NAME"
506change the name of the device. This operation is not
507recommended if the device is running or has some addresses
508already configured.
509
510.TP
511.BI txqueuelen " NUMBER"
512.TP
513.BI txqlen " NUMBER"
514change the transmit queue length of the device.
515
516.TP
517.BI mtu " NUMBER"
518change the
519.I MTU
520of the device.
521
522.TP
523.BI address " LLADDRESS"
524change the station address of the interface.
525
526.TP
527.BI broadcast " LLADDRESS"
528.TP
529.BI brd " LLADDRESS"
530.TP
531.BI peer " LLADDRESS"
532change the link layer broadcast address or the peer address when
533the interface is
534.IR "POINTOPOINT" .
535
536.TP
537.BI netns " PID"
538move the device to the network namespace associated with the process
539.IR "PID".
540
541.TP
542.BI netns " NETNSNAME"
543move the device to the network namespace associated with name
544.IR "NETNSNAME".
545
546.TP
547.BI alias " NAME"
548give the device a symbolic name for easy reference.
549
550.TP
551.BI group " GROUP"
552specify the group the device belongs to.
553The available groups are listed in file
554.BR "@SYSCONFDIR@/group" .
555
556.TP
557.BI vf " NUM"
558specify a Virtual Function device to be configured. The associated PF device
559must be specified using the
560.B dev
561parameter.
562
563.in +8
564.BI mac " LLADDRESS"
565- change the station address for the specified VF. The
566.B vf
567parameter must be specified.
568
569.sp
570.BI vlan " VLANID"
571- change the assigned VLAN for the specified VF. When specified, all traffic
572sent from the VF will be tagged with the specified VLAN ID. Incoming traffic
573will be filtered for the specified VLAN ID, and will have all VLAN tags
574stripped before being passed to the VF. Setting this parameter to 0 disables
575VLAN tagging and filtering. The
576.B vf
577parameter must be specified.
578
579.sp
580.BI qos " VLAN-QOS"
581- assign VLAN QOS (priority) bits for the VLAN tag. When specified, all VLAN
582tags transmitted by the VF will include the specified priority bits in the
583VLAN tag. If not specified, the value is assumed to be 0. Both the
584.B vf
585and
586.B vlan
587parameters must be specified. Setting both
588.B vlan
589and
590.B qos
591as 0 disables VLAN tagging and filtering for the VF.
592
593.sp
594.BI rate " TXRATE"
f89a2a05
SC
595-- change the allowed transmit bandwidth, in Mbps, for the specified VF.
596Setting this parameter to 0 disables rate limiting.
597.B vf
598parameter must be specified.
599Please use new API
600.B "max_tx_rate"
601option instead.
602
603.sp
604.BI max_tx_rate " TXRATE"
605- change the allowed maximum transmit bandwidth, in Mbps, for the specified VF.
606.B vf
607parameter must be specified.
608
609.sp
610.BI min_tx_rate " TXRATE"
611- change the allowed minimum transmit bandwidth, in Mbps, for the specified VF.
612Minimum TXRATE should be always <= Maximum TXRATE.
761a1e60
CT
613.B vf
614parameter must be specified.
615
616.sp
617.BI spoofchk " on|off"
618- turn packet spoof checking on or off for the specified VF.
63f60e3a
OG
619.sp
620.BI state " auto|enable|disable"
621- set the virtual link state as seen by the specified VF. Setting to auto means a
622reflection of the PF link state, enable lets the VF to communicate with other VFs on
623this host even if the PF link state is down, disable causes the HW to drop any packets
624sent by the VF.
761a1e60
CT
625.in -8
626
627.TP
628.BI master " DEVICE"
629set master device of the device (enslave device).
630
631.TP
632.BI nomaster
633unset master device of the device (release device).
634
635.PP
636.B Warning:
637If multiple parameter changes are requested,
638.B ip
639aborts immediately after any of the changes have failed.
640This is the only case when
641.B ip
642can move the system to an unpredictable state. The solution
643is to avoid changing several parameters with one
644.B ip link set
645call.
646
647.SS ip link show - display device attributes
648
649.TP
650.BI dev " NAME " (default)
651.I NAME
652specifies the network device to show.
653If this argument is omitted all devices in the default group are listed.
654
655.TP
656.BI group " GROUP "
657.I GROUP
658specifies what group of devices to show.
659
660.TP
661.B up
662only display running interfaces.
663
1e264abc
SH
664The show command has additional formatting options:
665
666.TP
667.BR "\-s" , " \-stats", " \-statistics"
668output more statistics about packet usage.
669
670.TP
671.BR "\-d", " \-details"
672output more detailed information.
673
674.TP
675.BR "\-h", " \-human", " \-human-readble"
676output statistics with human readable values number followed by suffix
677
678.TP
679.BR "\-iec"
680print human readable rates in IEC units (ie. 1K = 1024).
b68d9837 681
761a1e60
CT
682.SH "EXAMPLES"
683.PP
684ip link show
685.RS 4
686Shows the state of all network interfaces on the system.
687.RE
688.PP
689ip link set dev ppp0 mtu 1400
690.RS 4
691Change the MTU the ppp0 device.
692.RE
693.PP
694ip link add link eth0 name eth0.10 type vlan id 10
695.RS 4
696Creates a new vlan device eth0.10 on device eth0.
697.RE
698.PP
699ip link delete dev eth0.10
700.RS 4
701Removes vlan device.
702.RE
703
704.SH SEE ALSO
705.br
706.BR ip (8)
707
708.SH AUTHOR
709Original Manpage by Michail Litvak <mci@owl.openwall.com>