mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
This deprecates IPForward= setting, which unconditionally controled the global setting, even though it is a setting in .network file. Instead, this introduces new IPv4Forwarding= and IPv6Forwarding= settings both in .network and networkd.conf. If these settings are specified in a .network file, then the per-interface forwarding setting will be configured. If specified in networkd.conf, then the global IP forwarding setting will be configured. Closes #30648.
45 lines
1.7 KiB
C
45 lines
1.7 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "conf-parser.h"
|
|
|
|
typedef struct Link Link;
|
|
typedef struct Manager Manager;
|
|
|
|
typedef enum IPv6PrivacyExtensions {
|
|
/* These values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values. Do not reorder! */
|
|
IPV6_PRIVACY_EXTENSIONS_NO,
|
|
IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
|
|
IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
|
|
IPV6_PRIVACY_EXTENSIONS_KERNEL, /* keep the kernel's default value */
|
|
_IPV6_PRIVACY_EXTENSIONS_MAX,
|
|
_IPV6_PRIVACY_EXTENSIONS_INVALID = -EINVAL,
|
|
} IPv6PrivacyExtensions;
|
|
|
|
typedef enum IPReversePathFilter {
|
|
/* These values map to the kernel's /proc/sys/net/ipv6/conf/xxx/rp_filter values. Do not reorder! */
|
|
IP_REVERSE_PATH_FILTER_NO,
|
|
IP_REVERSE_PATH_FILTER_STRICT,
|
|
IP_REVERSE_PATH_FILTER_LOOSE,
|
|
_IP_REVERSE_PATH_FILTER_MAX,
|
|
_IP_REVERSE_PATH_FILTER_INVALID = -EINVAL,
|
|
} IPReversePathFilter;
|
|
|
|
void manager_set_sysctl(Manager *manager);
|
|
|
|
int link_get_ip_forwarding(Link *link, int family);
|
|
int link_set_sysctl(Link *link);
|
|
int link_set_ipv6_mtu(Link *link);
|
|
|
|
const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
|
|
IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
|
|
|
|
const char* ip_reverse_path_filter_to_string(IPReversePathFilter i) _const_;
|
|
IPReversePathFilter ip_reverse_path_filter_from_string(const char *s) _pure_;
|
|
|
|
CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
|
|
CONFIG_PARSER_PROTOTYPE(config_parse_ip_reverse_path_filter);
|
|
CONFIG_PARSER_PROTOTYPE(config_parse_ip_forward_deprecated);
|