As the title above, does anyone know what DORMANT mean in this output command ?
$ ip link show wlan0
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORMANT group default qlen 1000
link/ether 00:c0:ca:a8:6c:84 brd ff:ff:ff:ff:ff:ff
The network works fine with this mode as well.
Looks like it is used for power saving thus why it still works fine. From https://www.rfc-editor.org/rfc/rfc3132
Even looking at https://ubuntuforums.org/showthread.php?t=2362438 also shows when power saving modes are enabled the mode switches to DORMANT.
Hope this helps!
DORMANT is a keyword used in Linux. For an explanation of the output in your question, consider the following output that state is UP and mode is DORMANT
Mode Type
The default mode type is called
DEFAULT
. When an interface is inDEFAULT
mode, the interface state transitions toUP
when the following condition is met:There is also a mode type called
DORMANT
. When an interface is inDORMANT
mode, there are additional criteria for the interface state to transition to UP. InDORMANT
mode, the interface state transitions to UP when both of the following conditions are met:Link State
In the context of link state,
DORMANT
indicates the interface is not in a condition to pass packets but is instead in apending
state waiting for some external event. For an interface to be usable for forwarding, it should be in anUP
state as it is in the output shown above. Content retrived from cumulusnutworks