Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libloc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
libloc
Commits
43154ed7
Commit
43154ed7
authored
Oct 03, 2019
by
Michael Tremer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement listing all IP addresses in an AS
Signed-off-by:
Michael Tremer
<
michael.tremer@ipfire.org
>
parent
74f218f0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
src/python/location-query.in
src/python/location-query.in
+13
-0
No files found.
src/python/location-query.in
View file @
43154ed7
...
...
@@ -73,6 +73,13 @@ class CLI(object):
search_as
.
add_argument
(
"query"
,
nargs
=
1
)
search_as
.
set_defaults
(
func
=
self
.
handle_search_as
)
# List all networks in an AS
list_networks_by_as
=
subparsers
.
add_parser
(
"list-networks-by-as"
,
help
=
_
(
"Lists all networks in an AS"
),
)
list_networks_by_as
.
add_argument
(
"asn"
,
nargs
=
1
,
type
=
int
)
list_networks_by_as
.
set_defaults
(
func
=
self
.
handle_list_networks_by_as
)
# List all networks in a country
search_as
=
subparsers
.
add_parser
(
"list-networks-by-cc"
,
help
=
_
(
"Lists all networks in a country"
),
...
...
@@ -181,6 +188,12 @@ class CLI(object):
for
a
in
db
.
search_as
(
query
):
print
(
a
)
def
handle_list_networks_by_as
(
self
,
db
,
ns
):
for
asn
in
ns
.
asn
:
# Print all matching networks
for
n
in
db
.
search_networks
(
asn
=
asn
):
print
(
n
)
def
handle_list_networks_by_cc
(
self
,
db
,
ns
):
for
country_code
in
ns
.
country_code
:
# Print all matching networks
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment