As setting such routes may break existing setups.
Closes #21964.
<citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
or a number in the range 1…4294967295. When <literal>off</literal> the routes to the
addresses specified in the <varname>AllowedIPs=</varname> setting will not be configured.
- Defaults to <literal>main</literal>. This setting will be ignored when the same setting is
+ Defaults to <literal>off</literal>. This setting will be ignored when the same setting is
specified in the [WireGuardPeer] section.</para>
</listitem>
</varlistentry>
assert(data);
assert(userdata);
- if (isempty(rvalue)) {
- *table = RT_TABLE_MAIN;
- return 0;
- }
-
- if (streq(rvalue, "off")) {
- *table = 0;
+ if (isempty(rvalue) || streq(rvalue, "off")) {
+ *table = 0; /* Disabled. */
return 0;
}
assert(w);
w->flags = WGDEVICE_F_REPLACE_PEERS;
- w->route_table = RT_TABLE_MAIN;
}
static void wireguard_done(NetDev *netdev) {