libnetfilter_queue 예제 실행 오류
안녕하세요. 제가 하는 프로젝트에서 패킷 캡쳐가 필요해서 netfilter를 공부하고 있는데요 예제 파일 실행에서 막혀 이렇게 도움을 부탁드립니다^^;
User Space에서 Queue를 Handle하기 위해 libnetfilter_queue가 필요하다고 해서 홈페이지에서 libnetfilter_queue와 libnfnetlink까지 설치하였습니다.
그 후 utils 디렉토리에 예제 파일이 있어 컴파일을 시도하였는데 다음과 같이 에러가 발생했습니다.
혹 이와 관련해서 해결방법을 아신다면 조언 부탁드립니다! +_+
[root@localhost utils]# pwd
/home/noxu/libnetfilter_queue/API/libnetfilter_queue-1.0.0/utils
[root@localhost utils]# ls
Makefile Makefile.am Makefile.in Makefile.org nfqnl_test.c
[root@localhost utils]# make
make: `all'를 위해 할 일이 없습니다
[root@localhost utils]# gcc nfqnl_test.c
/tmp/ccO119qI.o: In function `print_pkt':
nfqnl_test.c:(.text+0x15): undefined reference to `nfq_get_msg_packet_hdr'
nfqnl_test.c:(.text+0x74): undefined reference to `nfq_get_packet_hw'
nfqnl_test.c:(.text+0x106): undefined reference to `nfq_get_nfmark'
nfqnl_test.c:(.text+0x12e): undefined reference to `nfq_get_indev'
nfqnl_test.c:(.text+0x156): undefined reference to `nfq_get_outdev'
nfqnl_test.c:(.text+0x17e): undefined reference to `nfq_get_physindev'
nfqnl_test.c:(.text+0x1a6): undefined reference to `nfq_get_physoutdev'
nfqnl_test.c:(.text+0x1d5): undefined reference to `nfq_get_payload'
/tmp/ccO119qI.o: In function `cb':
nfqnl_test.c:(.text+0x25a): undefined reference to `nfq_set_verdict'
/tmp/ccO119qI.o: In function `main':
nfqnl_test.c:(.text+0x279): undefined reference to `nfq_open'
nfqnl_test.c:(.text+0x2e1): undefined reference to `nfq_unbind_pf'
nfqnl_test.c:(.text+0x33c): undefined reference to `nfq_bind_pf'
nfqnl_test.c:(.text+0x3a7): undefined reference to `nfq_create_queue'
nfqnl_test.c:(.text+0x417): undefined reference to `nfq_set_mode'
nfqnl_test.c:(.text+0x45e): undefined reference to `nfq_fd'
nfqnl_test.c:(.text+0x495): undefined reference to `nfq_handle_packet'
nfqnl_test.c:(.text+0x4f2): undefined reference to `nfq_destroy_queue'
nfqnl_test.c:(.text+0x50d): undefined reference to `nfq_close'
collect2: ld returned 1 exit status
-lnetfilter_queue 붙여주세요.
-lnetfilter_queue
붙여주세요.
혹은... 첫 번째로 이상한 지점은 "make"를
혹은...
첫 번째로 이상한 지점은 "make"를 실행한 때입니다. 알아서 make 해야 할 텐데 알아서 만들지를 않으니 만들어야 할 걸 직접 지정해주는 방법이 있습니다.
$PWD `date`
댓글 달기