Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RHEL/CentOS 8 distro #53

Closed
JonKohler opened this issue Jul 13, 2020 · 4 comments
Closed

RHEL/CentOS 8 distro #53

JonKohler opened this issue Jul 13, 2020 · 4 comments

Comments

@JonKohler
Copy link

Hey arp-scan'ers - we've got an internal service that uses arp-scan, which we love (good work!). That service is currently using CentOS 7.x userspace.

We're looking to upgrade that service to CentOS 8.x userspace, and I don't see anything in either CentOS 8.x streams or EPEL 8 for arp-scan.

Is that intentional? If so, is the recommended approach to build and install independently? Or is there another yum compatible stream available?

@royhills
Copy link
Owner

Happy to make changes to the code, metadata, dependencies etc. if there's anything blocking a CentOS 8.x package build.

@jsav0
Copy link

jsav0 commented Sep 25, 2020

@JonKohler,
Can you run a Docker container run in your environment? If so, I've built one based on alpine, it's quite small, and should work everywhere you can give it the correct permissions.

# Basic Usage:
# docker run --net=host -it wfnintr/arp-scan -l
FROM alpine:latest
LABEL maintainer="wfnintr@null.net"
RUN apk add --no-cache --virtual .depends \
	git automake autoconf make gcc g++ libpcap-dev && \
	apk add libpcap && \
	git clone https://github.com/royhills/arp-scan.git && \
	cd arp-scan && \
	autoreconf --install && \
	./configure && \
	make && \
	make install && \
	apk del .depends
ENTRYPOINT ["arp-scan"]

@itamarjp
Copy link

itamarjp commented Sep 25, 2020

arp-scan is now available in epel8 repository

https://bugzilla.redhat.com/show_bug.cgi?id=1877425

and can be installed using

yum -y install arp-scan

or

dnf -y install arp-scan

@JonKohler
Copy link
Author

Fabulous! Thanks for tracking that @itamarjp, this is exactly what we were looking for

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants