Skip to content

Commit

Permalink
change URL for downloading manuf list to new wireshark.org URL, idaho…
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Dec 5, 2023
1 parent 1329815 commit b0f39c3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfiles/arkime.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ RUN [ ${#MAXMIND_GEOIP_DB_LICENSE_KEY} -gt 1 ] && for DB in ASN Country City; do
rm -f "GeoLite2-$DB*"; \
done; \
curl -s -S -L -o $ARKIME_DIR/etc/ipv4-address-space.csv "https://www.iana.org/assignments/ipv4-address-space/ipv4-address-space.csv" && \
curl -s -S -L -o $ARKIME_DIR/etc/oui.txt "https://gitlab.com/wireshark/wireshark/raw/release-4.0/manuf"
curl -s -S -L -o $ARKIME_DIR/etc/oui.txt "https://www.wireshark.org/download/automated/data/manuf"

RUN groupadd --gid $DEFAULT_GID $PGROUP && \
useradd -M --uid $DEFAULT_UID --gid $DEFAULT_GID --home $ARKIME_DIR $PUSER && \
Expand Down
2 changes: 1 addition & 1 deletion arkime/scripts/arkime_update_geo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ wget -nv --no-check-certificate -O ipv4-address-space.csv_new https://www.iana.o
mv -f ipv4-address-space.csv_new ipv4-address-space.csv || \
rm -f ipv4-address-space.csv_new

wget -nv -O oui.txt_new https://gitlab.com/wireshark/wireshark/raw/release-4.0/manuf && \
wget -nv -O oui.txt_new https://www.wireshark.org/download/automated/data/manuf && \
mv -f oui.txt_new oui.txt || \
rm -f oui.txt_new

Expand Down
2 changes: 1 addition & 1 deletion sensor-iso/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ if [ -d "$WORKDIR" ]; then
fi
fi
curl -s -S -L -o ipv4-address-space.csv "https://www.iana.org/assignments/ipv4-address-space/ipv4-address-space.csv"
curl -s -S -L -o oui.txt "https://gitlab.com/wireshark/wireshark/raw/release-4.0/manuf"
curl -s -S -L -o oui.txt "https://www.wireshark.org/download/automated/data/manuf"
popd >/dev/null 2>&1

# clone and build Arkime .deb package in its own clean environment (rather than in hooks/)
Expand Down
2 changes: 1 addition & 1 deletion shared/bin/manuf-oui-parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
except ImportError:
import yaml

DEFAULT_MANUF_URL = "https://gitlab.com/wireshark/wireshark/raw/release-4.0/manuf"
DEFAULT_MANUF_URL = "https://www.wireshark.org/download/automated/data/manuf"
padded_mac_low = '00:00:00:00:00:00'
padded_mac_high = 'FF:FF:FF:FF:FF:FF'
mac_pattern = re.compile(r"[-:\.]")
Expand Down

0 comments on commit b0f39c3

Please sign in to comment.