-
Notifications
You must be signed in to change notification settings - Fork 128
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
Vendor database no longer updates #150
Comments
I would actually recommend using proper https links instead. |
sed -i 's/http:/https:/' ~/pialert/back/update_vendors.sh |
Thank you - Adding https to the url did the job 100%! Only thing is, I see that when you do an upgrade it gets overwritten... |
"Download Public Listing" links broken |
or blocked my ip |
Seems not working here either. |
Please update the curl links to use -LO to follow redirections sudo curl $1 -# -LO http://standards-oui.ieee.org/iab/iab.csv sudo curl $1 -# -LO http://standards-oui.ieee.org/oui28/mam.csv sudo curl $1 -# -LO http://standards-oui.ieee.org/oui36/oui36.csv sudo curl $1 -# -LO http://standards-oui.ieee.org/oui/oui.csv https://askubuntu.com/questions/1036484/curl-o-stores-an-empty-file-though-wget-works-well |
Last comment works. But I think it would be better to reference the https-links here:
|
|
The script to update vendors database from ieee creates zero-length files.
Reason seems to be that ieee moved the files and created a redirect that curl per default does not follow.
Solution is to add flag
-L
to curl.So in
~/pialert/back/update_vendors.sh
Change lines 27-37 to:
The text was updated successfully, but these errors were encountered: