-
Updated
May 27, 2020 - C
ipv4
Here are 532 public repositories matching this topic...
-
Updated
May 14, 2020 - Python
-
Updated
Jun 16, 2020 - C++
The navigation bar can occlude content, if the window is too narrow (here: half screen = 800 px), "add host" is covered then, see screenshot.
If you look at a cisco acl list, it is common to have an acl like:
rule 5 permit ip source 1.2.3.4 0.0.0.0
or in some cases:
rule 5 permit ip source 1.2.3.4 0
here both 0.0.0.0 and 0 are cisco acl bitmask, indicating a net mask of 32 bit length
but if I simply concatenate them with ip address, IPNetwork class will treat them as normal netmask and get the wrong result:
IPNetwork('1.2.3.4/0.0.
the script coulnd get all the ip addresses of the server interfaces when running xen dom0.
ifconfig does not show aliases for the bridge interface xenbr0 so server blocks his own ip-s.
i changed the line
SERVER_IP_LIST=ifconfig | grep "inet " | awk '{print $2}' | sed "s/addr://g" | xargs | sed -e 's/ /|/g'
to
SERVER_IP_LIST=`( hostname -I ; echo 127.0.0.1 ) | cat | sed ':a;N;$!ba;s/\n/ /g'
I've already retrieved some WHOIS records and stashed them in a file. Now I want to parse them (without retrieving them again).
Is there a way to access the WHOIS parser via the ipwhois API?
The devDependency documentation was updated from 12.2.0 to 12.3.0.
-
Updated
Jun 10, 2020 - C#
-
Updated
Jul 29, 2019 - Shell
-
Updated
Jun 16, 2020 - CSS
-
Updated
Aug 28, 2019 - C++
-
Updated
Mar 25, 2019 - Erlang
-
Updated
Oct 26, 2019 - Python
-
Updated
Jun 4, 2020 - Java
Block Specific Hosts
Would be great to allow an exclusion style lists as well. Say something like:
DontAllow(List<CIDRs>);
DontAllow(List<IPAddress>);
DontAllow(List<CountryCode>);
Right now, if I want to allow every country, say, except for Micronesia I have to list EVERY country but Micronesia. Same thing if I want to only block a few IPs... That said - great library!!! Thanks for your work!
MVC sample
Improve this page
Add a description, image, and links to the ipv4 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ipv4 topic, visit your repo's landing page and select "manage topics."


