Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Benjamin A. Beasley
8454c436bc Generate ethercodes.dat from latest oui.csv 2022-05-06 14:22:37 -04:00
Benjamin A. Beasley
2f1c534c3c Update to 3.3 (close RHBZ#2068925) 2022-03-28 12:52:20 -04:00
Benjamin A. Beasley
e8a62d1e51 Generate ethercodes.dat from latest oui.csv 2022-03-28 12:52:17 -04:00
Benjamin A. Beasley
d2746710a9 Switch OUI URL from HTTP to HTTPS 2022-03-28 12:52:09 -04:00
Benjamin A. Beasley
cf7f967011 Allow fsync in systemd sandbox (fix RHBZ#2051521)
Allow the @sync group to the SystemCallFilter in the systemd sandbox.
When arpwatch is configured to send notification emails via sendmail, at
least the fsync call is needed.
2022-02-07 08:38:35 -05:00
7 changed files with 883 additions and 109 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@
/ethercodes-20110707.dat.bz2
/arpwatch-3.1.tar.gz
/arpwatch-3.2.tar.gz
/arpwatch-3.3.tar.gz

View file

@ -21,7 +21,7 @@ ProtectKernelModules=true
ProtectControlGroups=true
RestrictSUIDSGID=true
SystemCallFilter=@system-service
SystemCallFilter=~@aio @chown @clock @ipc @keyring @memlock @resources @sync
SystemCallFilter=~@aio @chown @clock @ipc @keyring @memlock @resources
SystemCallArchitectures=native
[Install]

View file

@ -1,6 +1,6 @@
Name: arpwatch
Epoch: 14
Version: 3.2
Version: 3.3
Release: %autorelease
Summary: Network monitoring tools for tracking IP addresses on a network
@ -23,12 +23,12 @@ BuildRequires: libpcap-devel
# directory listing at https://ee.lbl.gov/downloads/arpwatch/ shows all
# available versions.
Source0: https://ee.lbl.gov/downloads/arpwatch/arpwatch-%{version}.tar.gz
# This file comes from http://standards-oui.ieee.org/oui/oui.csv; it is used to
# generate ethercodes.dat. Because it is unversioned (and frequently updated),
# we store the file directly in the repository with the spec file; see the
# update-oui-csv script.
# This file comes from https://standards-oui.ieee.org/oui/oui.csv; it is used
# to generate ethercodes.dat. Because it is unversioned (and frequently
# updated), we store the file directly in the repository with the spec file;
# see the update-oui-csv script.
#
# File oui.csv last fetched 2021-12-16T13:09:24+00:00.
# File oui.csv last fetched 2022-05-06T18:22:37+00:00.
Source1: oui.csv
Source2: arpwatch.service
Source3: arpwatch.sysconfig

View file

@ -77,7 +77,7 @@ file containing the list of ethernet vendor codes
.Sh NOTES
The ethernet vendor codes as assigned by the IEEE can be found at:
.Pp
.Dl Ar http://standards-oui.ieee.org/oui/oui.csv
.Dl Ar https://standards-oui.ieee.org/oui/oui.csv
.Sh AUTHORS
.An Craig Leres
of the Lawrence Berkeley National Laboratory Network Research Group,

971
oui.csv

File diff suppressed because it is too large Load diff

View file

@ -1 +1 @@
SHA512 (arpwatch-3.2.tar.gz) = 0a028e770e73f8ff2e926da5ab58e067c05908924a60cfc52c5fb7d57a0f36d3087f6cedb4a8b39b66ce85a4f6a12a594e7e74fd044331e5f346bcc9add99585
SHA512 (arpwatch-3.3.tar.gz) = 4e3d542917dc9060ae7b35b40f41cb696eb36e68846194a76f025c5ecb1df1e67d5c1c66ba3c7e581e1f915b988d05cb7805f28d410784bd27dc3a448dccdece

View file

@ -2,7 +2,7 @@
set -o errexit
set -o nounset
URL='http://standards-oui.ieee.org/oui/oui.csv'
URL='https://standards-oui.ieee.org/oui/oui.csv'
DATA='oui.csv'
SPEC='arpwatch.spec'