hping은 Alpine에서 사용할 수 있습니다.
https://pkgs.alpinelinux.org/contents?branch=edge&name=hping3&arch=x86&repo=testing
그런데 설치하려고 하면 다음과 같은 오류 메시지가 나타납니다.
localhost:~$ apk search -v hping
localhost:~$ sudo apk search -v hping
localhost:~$
localhost:~$ sudo apk add hping
ERROR: unsatisfiable constraints:
hping (missing):
required by: world[hping]
localhost:~$
localhost:~$ sudo apk add hping2
ERROR: unsatisfiable constraints:
hping2 (missing):
required by: world[hping2]
localhost:~$
localhost:~$ sudo apk add hping3
ERROR: unsatisfiable constraints:
hping3 (missing):
required by: world[hping3]
localhost:~$
다른 패키지(예: tcpdump)에서는 이 문제가 발생하지 않습니다.
답변1
hping3
테스트 저장소에 있습니다.
# apk 추가 hping3 --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing
이 저장소를 에 추가할 수도 있습니다 /etc/apk/repositories
.
답변2
나는 이 스레드를 발견하고 Alpine Linux에서 hping3에 대해 tcl을 활성화했습니다.
https://git.alpinelinux.org/cgit/aports/commit/?id=e2234712acb3c0e00d14ccada2f576b2c746393c
새 패키지를 추가하세요.
apk add -X http://dl-dn.alpinelinux.org/alpine/edge/testing hping3
hping3-20051105-r4
tcl이 활성화된 것입니다.
프란시스코