blob: 5a78b4403a2e71b7853d6255968a29961e68847e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# List of net modules to be included on boot
# If there are dependencies, the dependent items can be
# omitted.
NET_LOAD_ALL_MACHINES += " \
8021q \
bnep \
br_netfilter \
dns_resolver \
garp \
ip6_gre \
ip6table_filter \
ip6table_mangle \
ip6table_nat \
ip6table_raw \
ip6t_ah \
ip6t_eui64 \
ip6t_frag \
ip6t_hbh \
ip6t_ipv6header \
ip6t_MASQUERADE \
ip6t_mh \
ip6t_NPT \
ip6t_REJECT \
ip6t_rpfilter \
ip6t_rt \
ip6t_SYNPROXY \
ip6_vti \
ipip \
iptable_mangle \
iptable_nat \
iptable_netfilter \
iptable_raw \
ip_tables \
ipt_ah \
ip_vs \
l2tp_ppp \
mac80211 \
mrp \
nf_conntrack_ipv4 \
nf_conntrack_ipv6 \
nf_conntrack_netbios_ns \
nf_conntrack_netlink \
nf_log_ipv4 \
nf_log_ipv6 \
nf_nat_ftp \
nf_nat_h323 \
nf_nat_pptp \
nf_nat_sip \
nf_nat_snmp_basic \
nfnetlink_cttimeout \
nf_tables_inet \
nf_tables_netdev \
nft_exthdr \
nft_meta \
p8022 \
psnap \
rfcomm \
rfkill-gpio \
rfkill-regulator \
sit \
tun \
xfrm6_mode_tunnel \
xt_CLASSIFY \
xt_connmark \
xt_conntrack \
xt_CT \
xt_ecn \
xt_esp \
xt_hashlimit \
xt_hl \
xt_HL \
xt_iprange \
xt_l2tp \
xt_LED \
xt_limit \
xt_LOG \
xt_mac \
xt_mark \
xt_multiport \
xt_nat \
xt_NETMAP \
xt_NFLOG \
xt_NFQUEUE \
xt_policy \
xt_recent \
xt_REDIRECT \
xt_set \
xt_state \
xt_tcpudp \
xt_TEE \
xt_time \
xt_TPROXY \
ledtrig-netdev \
"
KERNEL_MODULE_AUTOLOAD_mtcdt += " \
${NET_LOAD_ALL_MACHINES} \
"
KERNEL_MODULE_AUTOLOAD_mtrv1 += " \
${NET_LOAD_ALL_MACHINES} \
"
KERNEL_MODULE_AUTOLOAD_mtr += " \
${NET_LOAD_ALL_MACHINES} \
"
KERNEL_MODULE_AUTOLOAD_mtcap += " \
${NET_LOAD_ALL_MACHINES} \
"
|