You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple python library to check if an ip, a list of ips or a list of ip ranges
3
+
A simple python library to check if an IP address, a list of IP addresses or a list of IP address ranges
4
4
exist inside Amazon (AWS) infrastructure.
5
5
```
6
6
pip install awsip
7
7
```
8
-
After installation, you can make use of `awsip` utility to check for ips.
8
+
After installation, you can make use of `awsip` utility to check for IP addresses.
9
9
```
10
10
awsip 1.1.1.1 2.2.2.2 5.4.3.0/28
11
11
```
12
-
You can provide a white-spaced list of ip addresses / ranges. You can also provide a filename containing ip address / range on each line. For example, you have a file `myips.txt` with following format.
12
+
You can provide a white-spaced list of IP addresses / ranges. You can also provide a filename containing IP address / range on each line. For example, you have a file `myips.txt` with following format.
13
13
```
14
14
192.0.0.1
15
15
7.7.7.0/28
16
16
9.9.9.0/30
17
17
```
18
-
You can pass the ips to utility while providing extra ips on the go like this:
18
+
You can pass the IP addresses to utility while providing extra ips on the go like this:
You can provide a list of ip address, ip ranges or a mixture of both and program will check if they belong to AWS and return appropriate data if they do belong.
28
+
You can provide a list of IP address, IP address ranges or a mixture of both and program will check if they belong to AWS and return appropriate data if they do belong.
0 commit comments