diff options
author | Alvin Šipraga <alsi@bang-olufsen.dk> | 2021-04-27 10:58:18 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-05-19 10:34:06 +0900 |
commit | 7e59cfe9516722ac8a00adef5d01575c45a0ba2f (patch) | |
tree | 75976dd5988dc7bcf0afe96cf020ca14f5821ff4 /man/networkctl.xml | |
parent | 1940b3a7cd277daea7f5d776033d8a596a73e01b (diff) | |
download | systemd-7e59cfe9516722ac8a00adef5d01575c45a0ba2f.tar.gz |
man: describe overall online status in networkctl(1)
Diffstat (limited to 'man/networkctl.xml')
-rw-r--r-- | man/networkctl.xml | 48 |
1 files changed, 40 insertions, 8 deletions
diff --git a/man/networkctl.xml b/man/networkctl.xml index 19095164ce..2f7e9d7f46 100644 --- a/man/networkctl.xml +++ b/man/networkctl.xml @@ -187,14 +187,46 @@ <para>Produces output similar to: <programlisting> -● State: routable - Address: 10.193.76.5 on eth0 - 192.168.122.1 on virbr0 - 169.254.190.105 on eth0 - fe80::5054:aa:bbbb:cccc on eth0 - Gateway: 10.193.11.1 (CISCO SYSTEMS, INC.) on eth0 - DNS: 8.8.8.8 - 8.8.4.4</programlisting></para> +● State: routable + Online state: online + Address: 10.193.76.5 on eth0 + 192.168.122.1 on virbr0 + 169.254.190.105 on eth0 + fe80::5054:aa:bbbb:cccc on eth0 + Gateway: 10.193.11.1 (CISCO SYSTEMS, INC.) on eth0 + DNS: 8.8.8.8 + 8.8.4.4</programlisting></para> + + <para>In the overall network status, the online state depends on the individual online state of all + required links. Managed links are required for online by default. In this case, the online state is + one of the following: + <variablelist> + <varlistentry> + <term>unknown</term> + <listitem> + <para>all links have unknown online status (i.e. there are no required links)</para> + </listitem> + </varlistentry> + <varlistentry> + <term>offline</term> + <listitem> + <para>all required links are offline</para> + </listitem> + </varlistentry> + <varlistentry> + <term>partial</term> + <listitem> + <para>some, but not all, required links are online</para> + </listitem> + </varlistentry> + <varlistentry> + <term>online</term> + <listitem> + <para>all required links are online</para> + </listitem> + </varlistentry> + </variablelist> + </para> </listitem> </varlistentry> |