Netfilter를 설치하고 conntrack 이벤트를 활성화하는 방법은 무엇입니까?

Netfilter를 설치하고 conntrack 이벤트를 활성화하는 방법은 무엇입니까?

나는 이것을 만났다환매 계약그리고 그 단계를 이해하려고 노력하세요.

나는 이것이 Netfilter conntrack 이벤트를 활성화하기 위한 것이라고 생각하지만 확실하지 않습니다.

이러한 메시지를 받으려면 무엇을 실행해야 합니까?

--------------------------------------------------------
2. The minimum requirements for the kernel configuration
--------------------------------------------------------

Kernel version >= 4.4

Networking support  --->
  Networking options  --->
  [*] Network packet filtering framework (Netfilter)  --->
        Core Netfilter Configuration  --->
          Netfilter connection tracking support (M/Y)
          Number of custom extend (1) (if patched kernel)
      "connlabel" match support (M)

Check your kernel configuration file.
For non-patched kernel there should be:

  CONFIG_NF_CONNTRACK=m or y
  CONFIG_NF_CONNTRACK_LABELS=y
  CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
  CONFIG_UNUSED_SYMBOLS=y

For patched kernel there should be:

  CONFIG_NF_CONNTRACK=m or y
  CONFIG_NF_CONNTRACK_CUSTOM=1
  CONFIG_UNUSED_SYMBOLS=y

고쳐 쓰다:

apt install conntrack추천대로 설치했어요 . 커널이 올바르게 설정되었는지 확실하지 않습니다. 이것이 나의 주요 문제입니다.

그러나 세 번째 부분으로 계속 진행하면 컴파일도 실패합니다. 이것이 저장소의 문제인지 아니면 최소 요구 사항이 충족되지 않는지 궁금합니다.

admin@de-vpn-1:~/dd-wrt/src/router/ndpi-netfilter$ ./autogen.sh
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:54: installing './compile'
configure.ac:6: installing './missing'
configure.ac:336: error: required file 'example/Makefile.in' not found
configure.ac:336: error: required file 'tests/Makefile.in' not found
configure.ac:336: error: required file 'tests/unit/Makefile.in' not found
configure.ac:336: error: required file 'tests/performance/Makefile.in' not found
configure.ac:336: error: required file 'tests/dga/Makefile.in' not found
configure.ac:336: error: required file 'rrdtool/Makefile.in' not found
configure.ac:336: error: required file 'influxdb/Makefile.in' not found
configure.ac:337: error: required file 'tests/do.sh.in' not found
Makefile.am:2: error: required directory ./tests does not exist

관련 정보