]> git.ipfire.org Git - thirdparty/lldpd.git/blame - src/client/lldpcli.8.in
client: ability to set maximum of neighbors from lldpcli
[thirdparty/lldpd.git] / src / client / lldpcli.8.in
CommitLineData
fe80711e
VB
1.\" Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
2.\" Copyright (c) 2008 Vincent Bernat <bernat@luffy.cx>
3.\"
4.\" Permission to use, copy, modify, and/or distribute this software for any
5.\" purpose with or without fee is hereby granted, provided that the above
6.\" copyright notice and this permission notice appear in all copies.
7.\"
8.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15.\"
16.Dd $Mdocdate: July 16 2008 $
17.Dt LLDPCLI 8
18.Os
19.Sh NAME
20.Nm lldpcli ,
21.Nm lldpctl
22.Nd control LLDP daemon
23.Sh SYNOPSIS
24.Nm
25.Op Fl dv
baaa96d1 26.Op Fl u Ar socket
fe80711e 27.Op Fl f Ar format
6402fd2c 28.Op Fl c Ar file
fe80711e
VB
29.Op Ar command ...
30.Nm lldpctl
31.Op Fl dv
baaa96d1 32.Op Fl u Ar socket
fe80711e
VB
33.Op Fl f Ar format
34.Op Ar interfaces ...
35.Sh DESCRIPTION
36The
37.Nm
38program controls
39.Xr lldpd 8
40daemon.
41.Pp
42When no command is specified,
43.Nm
44will start an interactive shell which can be used to input arbitrary
45commands as if they were specified on the command line. This
46interactive shell should provide completion and history support.
47.Pp
48The options are as follows:
49.Bl -tag -width Ds
50.It Fl d
9856f279 51Enable more debugging information. This flag can be repeated.
baaa96d1 52.It Fl u Ar socket
0262adbb
ZM
53Specify the Unix-domain socket used for communication with
54.Xr lldpd 8 .
fe80711e
VB
55.It Fl v
56Show
57.Nm
efa6a7a3 58version. When repeated, show more build information.
fe80711e
VB
59.It Fl f Ar format
60Choose the output format. Currently
61.Em plain ,
62.Em xml ,
479d4985
VB
63.Em json ,
64.Em json0
fe80711e
VB
65and
66.Em keyvalue
67formats are available. The default is
68.Em plain .
479d4985
VB
69.Em json0
70is more verbose than
71.Em json
72but the structure of the JSON object is not affected by the number of
73interfaces or the number of neighbors. It is therefore easier to
74parse.
6402fd2c
VB
75.It Fl c Ar file
76Read the given configuration file. This option may be repeated several
77times. If a directory is provided, each file contained in it will be
78read if ending by
79.Li .conf .
80Order is alphabetical.
fe80711e 81.El
fe80711e
VB
82.Pp
83When invoked as
84.Nm lldpctl ,
85.Nm
86will display detailed information about each neighbors on the
87specified interfaces or on all interfaces if none are specified. This
88command is mostly kept for backward compatibility with older versions.
fe80711e
VB
89.Pp
90The following commands are supported by
91.Nm .
92When there is no ambiguity, the keywords can be abbreviated. For
93example,
94.Cd show neighbors ports eth0 summary
95and
96.Cd sh neigh p eth0 sum
97are the same command.
fe80711e
VB
98.Bd -ragged -offset XX
99.Cd exit
100.Bd -ragged -offset XXXXXX
101Quit
102.Nm .
103.Ed
104
72706acd
VB
105.Cd help Op ...
106.Bd -ragged -offset XXXXXX
107Display general help or help about a command. Also, you can get help
108using the completion or by pressing the
109.Ic ?
110key. However, completion and inline help may be unavailable if
111.Nm
112was compiled without readline support but
113.Cd help
114command is always available.
115.Ed
116
fe80711e 117.Cd show neighbors
97772619 118.Op ports Ar ethX Op ,...
fe80711e
VB
119.Op Cd details | summary
120.Op Cd hidden
121.Bd -ragged -offset XXXXXX
122Display information about each neighbor known by
123.Xr lldpd 8
124daemon. With
125.Cd summary ,
a6d1d023 126only the name and the port description of each remote host will be
fe80711e
VB
127displayed. On the other hand, with
128.Cd details ,
129all available information will be displayed, giving a verbose
130view. When using
131.Cd hidden ,
132also display remote ports hidden by the smart filter. When specifying
133one or several ports, the information displayed is limited to the
134given list of ports.
135.Ed
136
a54f6012
SW
137.Cd show interfaces
138.Op ports Ar ethX Op ,...
139.Op Cd details | summary
140.Op Cd hidden
141.Bd -ragged -offset XXXXXX
142Display information about each local interface known by
143.Xr lldpd 8
144daemon. With
145.Cd summary ,
146only the name and the port description of each local interface will be
147displayed. On the other hand, with
148.Cd details ,
149all available information will be displayed, giving a verbose
150view. When using
151.Cd hidden ,
152also display local ports hidden by the smart filter. When specifying
153one or several ports, the information displayed is limited to the
154given list of ports.
155.Ed
156
3407e638
VB
157.Cd show chassis
158.Op Cd details | summary
159.Bd -ragged -offset XXXXXX
160Display information about local chassis. With
161.Cd summary ,
162most details are skipped. On the other hand, with
163.Cd details ,
164all available information will be displayed, giving a verbose
165view.
166.Ed
167
fe80711e 168.Cd watch
97772619 169.Op ports Ar ethX Op ,...
fe80711e
VB
170.Op Cd details | summary
171.Op Cd hidden
a7c54949 172.Op Cd limit Ar X
fe80711e
VB
173.Bd -ragged -offset XXXXXX
174Watch for any neighbor changes and report them as soon as they
175happen. When specifying ports, the changes are only reported when
176happening on the given ports.
177.Cd hidden , summary
178and
179.Cd details
a7c54949
VB
180have the same meaning than previously described. If
181.Cd limit
a6d1d023 182is specified,
a7c54949
VB
183.Nm
184will exit after receiving the specified number of events.
fe80711e
VB
185.Ed
186
187.Cd show configuration
188.Bd -ragged -offset XXXXXX
189Display global configuration of
190.Xr lldpd 8
191daemon.
192.Ed
193
885aa4f4
VB
194.Cd show statistics
195.Op ports Ar ethX Op ,...
196.Op Cd summary
197.Bd -ragged -offset XXXXXX
198Report LLDP-related statistics, like the number of LLDPDU transmitted,
199received, discarded or unrecognized. When specifying ports, only the
200statistics from the given port are reported. With
201.Cd summary
202the statistics of each port is summed.
203.Ed
204
fe80711e
VB
205.Cd update
206.Bd -ragged -offset XXXXXX
207Make
208.Xr lldpd 8
209update its information and send new LLDP PDU on all interfaces.
210.Ed
211
17a90fc0
VB
212.Cd configure
213.Cd system hostname Ar name
214.Bd -ragged -offset XXXXXX
215Override system hostname with the provided value. By default, the
a9d00cbd 216system name is the FQDN found from the resolved value of
17a90fc0 217.Ic uname -n .
a9d00cbd
VB
218As a special value, use "." (dot) to use the short hostname instead of
219a FQDN.
17a90fc0
VB
220.Ed
221
6dd83015
VB
222.Cd unconfigure
223.Cd system hostname
224.Bd -ragged -offset XXXXXX
225Do not override system hostname and restore the use of the node name.
226.Ed
227
decaec0d
VB
228.Cd configure
229.Cd system description Ar description
230.Bd -ragged -offset XXXXXX
231Override chassis description with the provided value instead of using
232kernel name, node name, kernel version, build date and architecture.
233.Ed
234
6dd83015
VB
235.Cd unconfigure
236.Cd system description
237.Bd -ragged -offset XXXXXX
238Do not override chassis description and use a value computed from node
239name, kernel name, kernel version, build date and architecture instead.
240.Ed
241
8481f490
VB
242.Cd configure
243.Cd system chassisid Ar description
244.Bd -ragged -offset XXXXXX
245Override chassis ID with the provided value instead of using MAC address
246from one interface or host name.
247.Ed
248
249.Cd unconfigure
250.Cd system chassisid
251.Bd -ragged -offset XXXXXX
252Do not override chassis ID and use a value computed from one of the interface
253MAC address (or host name if none is found).
254.Ed
255
3f70e118
VB
256.Cd configure
257.Cd system platform Ar description
258.Bd -ragged -offset XXXXXX
259Override platform description with the provided value instead of using
260kernel name. This value is currently only used for CDP.
261.Ed
262
6dd83015
VB
263.Cd unconfigure
264.Cd system platform
265.Bd -ragged -offset XXXXXX
266Do not override platform description and use the kernel name. This
267option undoes the previous one.
268.Ed
269
f88442ac 270.Cd configure
48d0a4b0 271.Cd system interface pattern Ar pattern
0093777b 272.Bd -ragged -offset XXXXXX
5a1f4586
VB
273Specify which interface to listen and send LLDPDU to. Without this
274option,
0093777b 275.Nm lldpd
5a1f4586 276will use all available physical interfaces. This option can use
0093777b
VB
277wildcards. Several interfaces can be specified separated by commas.
278It is also possible to blacklist an interface by suffixing it with an
3b0273ee
VB
279exclamation mark. It is possible to whitelist an interface by
280suffixing it with two exclamation marks. A whitelisted interface beats
281a blacklisted interfaces which beats a simple matched interface. For
282example, with
0093777b
VB
283.Em eth*,!eth1,!eth2
284.Nm lldpd
5a1f4586 285will only use interfaces starting by
0093777b
VB
286.Em eth
287with the exception of
288.Em eth1
289and
290.Em eth2 .
3b0273ee
VB
291While with
292.Em *,!eth*,!!eth1
293.Nm
5a1f4586 294will use all interfaces, except interfaces starting by
3b0273ee
VB
295.Em eth
296with the exception of
297.Em eth1 .
298When an exact match is found, it will circumvent some tests. For example, if
299.Em eth0.12
300is specified, it will be accepted even if this is a VLAN interface.
0093777b
VB
301.Ed
302
6dd83015
VB
303.Cd unconfigure
304.Cd system interface pattern
305.Bd -ragged -offset XXXXXX
5a1f4586 306Remove any previously configured interface pattern and use all
a6d1d023 307physical interfaces. This option undoes the previous one.
6dd83015
VB
308.Ed
309
0a78e14f
VB
310.Cd configure
311.Cd system interface permanent Ar pattern
312.Bd -ragged -offset XXXXXX
313Specify interfaces whose configuration is permanently kept by
314.Nm lldpd .
315By default,
316.Nm lldpd
317disregard any data about interfaces when they are removed from the
318system (statistics, custom configuration). This option allows one to
319specify a pattern similar to the interface pattern. If an interface
320disappear but matches the pattern, its data is kept in memory and
321reused if the interface reappear at some point. For example, on Linux,
322one could use the pattern
323.Em eth*,eno*,enp* ,
324which should match fixed interfaces on most systems.
325.Ed
326
327.Cd unconfigure
328.Cd system interface permanent
329.Bd -ragged -offset XXXXXX
330Remove any previously configured permanent interface pattern. Any
331interface removed from the system will be forgotten. This option
332undoes the previous one.
333.Ed
334
bb37268d
VB
335.Cd configure
336.Cd system interface description
337.Bd -ragged -offset XXXXXX
338Some OS allows the user to set a description for an interface. Setting
339this option will enable
340.Nm lldpd
341to override this description with the name of the peer neighbor if one
342is found or with the number of neighbors found.
343.Ed
344
6dd83015 345.Cd unconfigure
b1118c26 346.Cd system interface description
6dd83015
VB
347.Bd -ragged -offset XXXXXX
348Do not update interface description with the name of the peer
349neighbor. This option undoes the previous one.
350.Ed
351
f84199dd
VB
352.Cd configure
353.Cd system interface promiscuous
354.Bd -ragged -offset XXXXXX
0a6f3866 355Enable promiscuous mode on managed interfaces.
f84199dd
VB
356.Pp
357When the interface is not managed any more (or when quitting
1eadc9a1 358.Nm lldpd ) ,
f84199dd
VB
359the interface is left in promiscuous mode as it is difficult to know
360if someone else also put the interface in promiscuous mode.
361.Pp
362This option is known to be useful when the remote switch is a Cisco
0a6f3866
VB
3632960 and the local network card features VLAN hardware
364acceleration. In this case, you may not receive LLDP frames from the
365remote switch. The most plausible explanation for this is the frame is
366tagged with some VLAN (usually VLAN 1) and your network card is
367filtering VLAN. This is not the only available solution to work-around
368this problem. If you are concerned about performance issues, you can
369also tag the VLAN 1 on each interface instead.
370.Pp
371Currently, this option has no effect on anything else than Linux. On
372other OS, either disable VLAN acceleration, tag VLAN 1 or enable
373promiscuous mode manually on the interface.
f84199dd
VB
374.Ed
375
376.Cd unconfigure
377.Cd system interface promiscuous
378.Bd -ragged -offset XXXXXX
379Do not set promiscuous mode on managed interfaces. This option does
380not disable promiscuous mode on interfaces already using this mode.
381.Ed
382
622d14bb
VB
383.Cd configure
384.Cd system ip management pattern Ar pattern
385.Bd -ragged -offset XXXXXX
386Specify the management addresses of this system. As for interfaces
387(described above), this option can use wildcards and inversions.
abfea7d0
VB
388Without this option, the first IPv4 and the first IPv6 are used. If an
389exact IP address is provided, it is used as a management address
390without any check. If only negative patterns are provided, only one
391IPv4 and one IPv6 addresses are chosen. Otherwise, many of them can be
392selected. If you want to blacklist IPv6 addresses, you can use
622d14bb
VB
393.Em !*:* .
394.Ed
395
6dd83015
VB
396.Cd unconfigure
397.Cd system ip management pattern
398.Bd -ragged -offset XXXXXX
399Unset any specific pattern for matching management addresses. This
400option undoes the previous one.
401.Ed
402
3106c706
VB
403.Cd configure
404.Cd system bond-slave-src-mac-type Ar value
405.Bd -ragged -offset XXXXXX
406Set the type of src mac in lldp frames sent on bond slaves
407
408Valid types are:
409.Bl -tag -width "XXX." -compact -offset XX
410.It Sy real
411Slave real mac
412.It Sy zero
413All zero mac
414.It Sy fixed
415An arbitrary fixed value
416.Li ( 00:60:08:69:97:ef )
417.It Sy local
418Real mac with locally administered bit set. If the real mac already
419has the locally administered bit set, fallback to the fixed value.
420.El
421.Pp
422Default value for
423.Nm bond-slave-src-mac-type
424is
425.Nm local .
426Some switches may complain when using one of the two other possible
427values (either because
428.Li 00:00:00:00:00:00
429is not a valid MAC or because the MAC address is flapping from one
430port to another). Using
431.Sy local
432might lead to a duplicate MAC address on the network (but this is
433quite unlikely).
434.Ed
435
1eadc9a1
VB
436.Cd configure
437.Cd lldp agent-type
438.Cd nearest-bridge | nearest-non-tpmr-bridge | nearest-customer-bridge
439.Bd -ragged -offset XXXXXX
440The destination MAC address used to send LLDPDU allows an agent to
441control the propagation of LLDPDUs. By default, the
442.Li 01:80:c2:00:00:0e
443MAC address is used and limit the propagation of the LLDPDU to the
444nearest bridge
445.Cd ( nearest-bridge ) .
446To instruct
447.Nm lldpd
448to use the
449.Li 01:80:c2:00:00:03
450MAC address instead, use
451.Cd nearest-nontpmr-bridge
452instead.
453To use the
454.Li 01:80:c2:00:00:00
455MAC address instead, use
456.Cd nearest-customer-bridge
457instead.
458.Ed
459
bef085b8 460.Cd configure
4edc4960 461.Cd lldp portidsubtype
b3dd61af
VB
462.Cd ifname | macaddress
463.Pp
464.Cd configure
465.Op ports Ar ethX Op ,...
466.Cd lldp portidsubtype
dc9869ef 467.Cd local Ar value
bef085b8
VB
468.Bd -ragged -offset XXXXXX
469Force port ID subtype. By default,
1eadc9a1 470.Nm lldpd
bef085b8
VB
471will use the MAC address as port identifier and the interface name as
472port description, unless the interface has an alias. In this case, the
473interface name will be used as port identifier and the description
474will be the interface alias. With this command, you can force the port
475identifier to be the interface name (with
50a978dc
VB
476.Cd ifname ) ,
477the MAC address (with
478.Cd macaddress )
479or a local value (with
480.Cd value ) .
481In the latest case, the local value should be provided.
bef085b8
VB
482.Ed
483
3d96ef66
JJ
484.Cd configure
485.Op ports Ar ethX Op ,...
486.Cd lldp portdescription
487.Cd Ar description
488.Bd -ragged -offset XXXXXX
489Force port description to the provided string.
490.Ed
491
48d0a4b0
VB
492.Cd configure
493.Cd lldp tx-interval Ar interval
494.Bd -ragged -offset XXXXXX
495Change transmit delay to the specified value in seconds. The transmit
496delay is the delay between two transmissions of LLDP PDU. The default
497value is 30 seconds.
498.Ed
499
500.Cd configure
501.Cd lldp tx-hold Ar hold
502.Bd -ragged -offset XXXXXX
503Change transmit hold value to the specified value. This value is used
504to compute the TTL of transmitted packets which is the product of this
505value and of the transmit delay. The default value is 4 and therefore
506the default TTL is 120 seconds.
507.Ed
508
ba1bdf6a
VB
509.Cd configure
510.Cd lldp max-neighbors Ar neighbors
511.Bd -ragged -offset XXXXXX
512Change the maximum number of neighbors accepted (for each protocol) on
513an interface. This is a global value. The default is 32. This setting
514only applies to future neighbors.
515.Ed
516
e7331ce9
VB
517.Cd configure
518.Op ports Ar ethX Op ,...
519.Cd lldp
520.Cd status Ar rx-and-tx | rx-only | tx-only | disabled
521.Bd -ragged -offset XXXXXX
522Configure the administrative status of the given port. By default, all
523ports are configured to be in
6934b73d 524.Ar rx-and-tx
e7331ce9
VB
525mode. This means they can receive and transmit LLDP frames (as well as
526other protocols if needed). In
6934b73d 527.Ar rx-only
e7331ce9 528mode, they won't emit any frames and in
6934b73d 529.Ar tx-only
e7331ce9
VB
530mode, they won't receive any frames. In
531.Ar disabled
532mode, no frame will be sent and any incoming frame will be
a6d1d023 533discarded. This setting does not override the operational mode of the
e7331ce9
VB
534main daemon. If it is configured in receive-only mode (with the
535.Fl r
536flag), setting any transmit mode won't have any effect.
537.Ed
538
24133f55 539.Cd configure
7c26c8b4 540.Cd lldp custom-tlv
541.Op Cd add | replace
542.Cd oui Ar oui
24133f55
VB
543.Cd subtype Ar subtype
544.Op Cd oui-info Ar content
545.Bd -ragged -offset XXXXXX
546Emit a custom TLV for OUI
547.Ar oui ,
548with subtype
549.Ar subtype
7c26c8b4 550and optionally with the bytes specified in
24133f55
VB
551.Ar content .
552Both
553.Ar oui
554and
555.Ar content
e9400049 556should be a comma-separated list of bytes in hex format.
24133f55
VB
557.Ar oui
558must be exactly 3-byte long.
7c26c8b4 559If
560.Ar add
561is specified then the TLV will be added. This is the default action.
562If
92a6d7f9 563.Ar replace
7c26c8b4 564is specified then all TLVs with the same
565.Ar oui
566and
567.Ar subtype
568will be replaced.
569
24133f55
VB
570.Ed
571
572.Cd unconfigure
573.Cd lldp custom-tlv
7c26c8b4 574.Op Cd oui Ar oui
575.Op Cd subtype Ar subtype
24133f55 576.Bd -ragged -offset XXXXXX
7c26c8b4 577When no oui is specified, remove all previously configured custom TLV.
578When OUI
579.Ar oui
580and subtype
581.Ar subtype
582is specified, remove specific instances of custom TLV.
24133f55
VB
583.Ed
584
486a6133
VB
585.Cd configure med fast-start
586.Cd enable | tx-interval Ar interval
587.Bd -ragged -offset XXXXXX
588Configure LLDP-MED fast start mechanism. When a new LLDP-MED-enabled
589neighbor is detected, fast start allows
590.Nm lldpd
591to shorten the interval between two LLDPDU.
592.Cd enable
593should enable LLDP-MED fast start while
594.Cd tx-interval
595specifies the interval between two LLDPDU in seconds. The default
596interval is 1 second. Once 4 LLDPDU have been sent, the fast start
597mechanism is disabled until a new neighbor is detected.
598.Ed
599
600.Cd unconfigure med fast-start
601.Bd -ragged -offset XXXXXX
602Disable LLDP-MED fast start mechanism.
603.Ed
604
fe80711e 605.Cd configure
97772619 606.Op ports Ar ethX Op ,...
fe80711e
VB
607.Cd med location coordinate
608.Cd latitude Ar latitude
609.Cd longitude Ar longitude
610.Cd altitude Ar altitude Ar unit
611.Cd datum Ar datum
612.Bd -ragged -offset XXXXXX
613Advertise a coordinate based location on the given ports (or on all
614ports if no port is specified). The format of
615.Ar latitude
616is a decimal floating point number followed either by
617.Em N
618or
619.Em S .
620The format of
621.Ar longitude
622is a decimal floating point number followed either by
623.Em E
624or
625.Em W .
626.Ar altitude
627is a decimal floating point number followed either by
628.Em m
629when expressed in meters or
630.Em f
3fc1a10a
VB
631when expressed in floors. A space is expected between the floating
632point number and the unit.
fe80711e
VB
633.Ar datum
634is one of those values:
635.Bl -bullet -compact -offset XXXXXXXX
636.It
637WGS84
638.It
639NAD83
640.It
641NAD83/MLLW
642.El
643.Pp
644A valid use of this command is:
3fc1a10a 645.D1 configure ports eth0 med location coordinate latitude 48.85667N longitude 2.2014E altitude 117.47 m datum WGS84
fe80711e
VB
646.Ed
647
648.Cd configure
97772619 649.Op ports Ar ethX Op ,...
fe80711e
VB
650.Cd med location address
651.Cd country Ar country
652.Cd Op Ar type value Op ...
653.Bd -ragged -offset XXXXXX
654Advertise a civic address on the given ports (or on all ports if no
655port is specified).
656.Ar country
657is the two-letter code representing the country. The remaining
658arguments should be paired to form the address. The first member of
659each pair indicates the type of the second member which is a free-form
660text. Here is the list of valid types:
661.Bl -bullet -compact -offset XXXXXXXX
662.It
663language
664.It
665country-subdivision
666.It
667county
668.It
669city
670.It
671city-division
672.It
673block
674.It
675street
676.It
677direction
678.It
679trailing-street-suffix
680.It
681street-suffix
682.It
683number
684.It
685number-suffix
686.It
687landmark
688.It
689additional
690.It
691name
692.It
693zip
694.It
695building
696.It
697unit
698.It
699floor
700.It
701room
702.It
703place-type
704.It
705script
706.El
707.Pp
708A valid use of this command is:
120c071a 709.D1 configure ports eth1 med location address country US street Qo Commercial Road Qc city Qo Roseville Qc
fe80711e
VB
710.Ed
711
712.Cd configure
97772619 713.Op ports Ar ethX Op ,...
fe80711e
VB
714.Cd med location elin
715.Ar number
716.Bd -ragged -offset XXXXXX
717Advertise the availability of an ELIN number. This is used for setting
718up emergency call. If the provided number is too small, it will be
719padded with 0. Here is an example of use:
720.D1 configure ports eth2 med location elin 911
721.Ed
722
723.Cd configure
97772619 724.Op ports Ar ethX Op ,...
fe80711e
VB
725.Cd med policy
726.Cd application Ar application
727.Op Cd unknown
17e55ef9 728.Op Cd tagged
fe80711e
VB
729.Op Cd vlan Ar vlan
730.Op Cd priority Ar priority
731.Op Cd dscp Ar dscp
732.Bd -ragged -offset XXXXXX
733Advertise a specific network policy for the given ports (or for all
734ports if no port was provided). Only the application type is
735mandatory.
736.Ar application
737should be one of the following values:
fe80711e
VB
738.Bl -bullet -compact -offset XXXXXXXX
739.It
740voice
741.It
742voice-signaling
743.It
744guest-voice
745.It
746guest-voice-signaling
747.It
748softphone-voice
749.It
750video-conferencing
751.It
752streaming-video
753.It
754video-signaling
755.El
756.Pp
757The
758.Cd unknown
759flag tells that the network policy for the specified application type
760is required by the device but is currently unknown. This is used by
761Endpoint Devices, not by Network Connectivity Devices. If not
762specified, the network policy for the given application type is
763defined.
764.Pp
765When a VLAN is specified with
e7f83dc0 766.Ar vlan
fe80711e
VB
767tells which 802.1q VLAN ID has to be advertised for the network
768policy. A valid value is between 1 and 4094.
17e55ef9
VB
769.Cd tagged
770tells the VLAN should be tagged for the specified application type.
e7f83dc0
VB
771.Pp
772.Ar priority
fe80711e
VB
773allows one to specify IEEE 802.1d / IEEE 802.1p Layer 2 Priority, also
774known as Class of Service (CoS), to be used for the specified
17e55ef9 775application type. This field is usually ignored if no VLAN is
e7f83dc0
VB
776specified. The names match 802.1D-2004 standard (table G-2). Some more
777recent standards may use different labels. Only the numeric values
778should be relied upon. The accepted labels are:
779.Bl -tag -width "X." -compact -offset XXXX
780.It Sy 1
fe80711e 781background
e7f83dc0 782.It Sy 0
fe80711e 783best-effort
c56e4067 784.It Sy 2
fe80711e 785excellent-effort
c56e4067
VB
786.It Sy 3
787critical-applications
e7f83dc0 788.It Sy 4
fe80711e 789video
c56e4067 790.It Sy 5
fe80711e 791voice
c56e4067
VB
792.It Sy 6
793internetwork-control
e7f83dc0 794.It Sy 7
fe80711e
VB
795network-control
796.El
797.Pp
798.Ar dscp
799represents the DSCP value to be advertised for the given network
800policy. DiffServ/Differentiated Services Code Point (DSCP) value as
801defined in IETF RFC 2474 for the specified application type. Value: 0
802(default per RFC 2475) through 63. Note: The class selector DSCP
803values are backwards compatible for devices that only support the old
804IP precedence Type of Service (ToS) format. (See the RFCs for what
805these values mean)
806.Pp
807A valid use of this command is:
808.D1 configure med policy application voice vlan 500 priority voice dscp 46
809.Ed
810
811.Cd configure
97772619 812.Op ports Ar ethX Op ,...
fe80711e
VB
813.Cd med power pse | pd
814.Cd source Ar source
815.Cd priority Ar priority
816.Cd value Ar value
817.Bd -ragged -offset XXXXXX
818Advertise the LLDP-MED POE-MDI TLV for the given ports or for all
819interfaces if no port is provided. One can act as a PD (power
820consumer) or a PSE (power provider). No check is done on the validity
821of the parameters while LLDP-MED requires some restrictions:
822.Bl -bullet
823.It
824PD shall never request more power than physical 802.3af class.
825.It
826PD shall never draw more than the maximum power advertised by PSE.
827.It
828PSE shall not reduce power allocated to PD when this power is in use.
829.It
830PSE may request reduced power using conservation mode
831.It
b1118c26 832Being PSE or PD is a global parameter, not a per-port parameter.
fe80711e
VB
833.Nm
834does not enforce this: a port can be set as PD or PSE. LLDP-MED also
835requires for a PSE to only have one power source (primary or
836backup). Again,
837.Nm
838does not enforce this. Each port can have its own power source. The
839same applies for PD and power priority. LLDP-MED MIB does not allow
840this kind of representation.
841.El
842.Pp
843Valid types are:
844.Bl -tag -width "XXX." -compact -offset XX
845.It Sy pse
846Power Sourcing Entity (power provider)
847.It Sy pd
848Power Device (power consumer)
849.El
850.Pp
851Valid sources are:
852.Bl -tag -width "XXXXXXX" -compact -offset XX
853.It Sy unknown
854Unknown
855.It Sy primary
856For PSE, the power source is the primary power source.
857.It Sy backup
858For PSE, the power source is the backup power source or a power
859conservation mode is asked (the PSE may be running on UPS for
860example).
861.It Sy pse
862For PD, the power source is the PSE.
863.It Sy local
864For PD, the power source is a local source.
865.It Sy both
866For PD, the power source is both the PSE and a local source.
867.El
868.Pp
869Valid priorities are:
870.Bl -tag -width "XXXXXXXXX" -compact -offset XX
871.It Sy unknown
872Unknown priority
873.It Sy critical
874Critical
875.It Sy high
876High
877.It Sy low
878Low
879.El
880.Pp
881.Ar value
882should be the total power in milliwatts required by the PD device or
883available by the PSE device.
884.Pp
885Here is an example of use:
886.D1 configure med power pd source pse priority high value 5000
887.Ed
888
889.Cd configure
97772619 890.Op ports Ar ethX Op ,...
fe80711e
VB
891.Cd dot3 power pse | pd
892.Op Cd supported
893.Op Cd enabled
894.Op Cd paircontrol
895.Cd powerpairs Ar powerpairs
896.Op Cd class Ar class
897.Op Cd type Ar type Cd source Ar source Cd priority Ar priority Cd requested Ar requested Cd allocated Ar allocated
898.Bd -ragged -offset XXXXXX
899Advertise Dot3 POE-MDI TLV for the given port or for all ports if none
900was provided. One can act as a PD (power consumer) or a PSE (power
901provider). This configuration is distinct of the configuration of the
902transmission of the LLDP-MED POE-MDI TLV but the user should ensure
903the coherency of those two configurations if they are used together.
904.Pp
905.Ar supported
906means that MDI power is supported on the given port while
907.Ar enabled
908means that MDI power is enabled.
909.Ar paircontrol
910is used to indicate if pair selection can be controlled. Valid values
a6d1d023 911for
fe80711e
VB
912.Ar powerpairs
913are:
914.Bl -tag -width "XXXXXX" -compact -offset XX
915.It Sy signal
916The signal pairs only are in use.
917.It Sy spare
918The spare pairs only are in use.
919.El
920.Pp
921When specified,
922.Ar class
923is a number between 0 and 4.
924.Pp
925The remaining parameters are in conformance with 802.3at and are optional.
926.Ar type
927should be either 1 or 2, indicating which if the device conforms to
5d0938c0 928802.3at type 1 or 802.3at type 2. Values of
fe80711e
VB
929.Ar source
930and
931.Ar priority
932are the same as for LLDP-MED POE-MDI TLV.
933.Ar requested
934and
935.Ar allocated
936are expressed in milliwats.
937.Pp
938Here are two valid uses of this command:
26498cf4
VB
939.D1 configure ports eth3 dot3 power pse supported enabled paircontrol powerpairs spare class class-3
940.D1 configure dot3 power pd supported enabled powerpairs spare class class-3 type 1 source pse priority low requested 10000 allocated 15000
fe80711e
VB
941.Ed
942
e4ff3ed5
VB
943.Cd pause
944.Bd -ragged -offset XXXXXX
945Pause
946.Nm lldpd
947operations.
948.Nm lldpd
949will not send any more frames or receive ones. This can be undone with
950.Cd resume
951command.
952.Ed
953
954.Cd resume
955.Bd -ragged -offset XXXXXX
956Resume
957.Nm lldpd
958operations.
959.Nm lldpd
960will start to send and receive frames. This command is issued
961internally after processing configuration but can be used at any time
962if a manual
963.Cd pause
964command is issued.
965.Ed
966
fe80711e
VB
967.Ed
968.Sh FILES
2cbc9cc5
VB
969.Bl -tag -width "@LLDPD_CTL_SOCKET@XX" -compact
970.It @LLDPD_CTL_SOCKET@
fe80711e
VB
971Unix-domain socket used for communication with
972.Xr lldpd 8 .
973.El
974.Sh SEE ALSO
975.Xr lldpd 8
976.Sh AUTHORS
977.An -nosplit
978The
979.Nm
980program was written by
981.An Vincent Bernat Aq bernat@luffy.cx .