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
I want to know how to assign a specific RDAP server for testing?
(For exampe, I setup a local RDAP server and I want to use the ipwhois tool to check if it's result is correct)
I didn't see any sub function to change the RIR_RDAP list.
Is anything that I missed?
Thank you.
Hi,
According to the document https://ipwhois.readthedocs.io/en/latest/_modules/ipwhois/rdap.html
There are multiple RDAP servers in the class and they are listed below.
I want to know how to assign a specific RDAP server for testing?
(For exampe, I setup a local RDAP server and I want to use the ipwhois tool to check if it's result is correct)
I didn't see any sub function to change the RIR_RDAP list.
Is anything that I missed?
Thank you.
`
BOOTSTRAP_URL = 'http://rdap.arin.net/bootstrap'
RIR_RDAP = {
'arin': {
'ip_url': 'http://rdap.arin.net/registry/ip/{0}',
'entity_url': 'http://rdap.arin.net/registry/entity/{0}'
},
'ripencc': {
'ip_url': 'http://rdap.db.ripe.net/ip/{0}',
'entity_url': 'http://rdap.db.ripe.net/entity/{0}'
},
'apnic': {
'ip_url': 'http://rdap.apnic.net/ip/{0}',
'entity_url': 'http://rdap.apnic.net/entity/{0}'
},
'lacnic': {
'ip_url': 'http://rdap.lacnic.net/rdap/ip/{0}',
'entity_url': 'http://rdap.lacnic.net/rdap/entity/{0}'
},
'afrinic': {
'ip_url': 'http://rdap.afrinic.net/rdap/ip/{0}',
'entity_url': 'http://rdap.afrinic.net/rdap/entity/{0}'
}
}`
The text was updated successfully, but these errors were encountered: