-
Hi How do I login using ip instead FQDN ? |
Beta Was this translation helpful? Give feedback.
Answered by
jshcodes
Feb 14, 2023
Replies: 1 comment 3 replies
-
Hi @NSH531 - You can provide an IP address for the A couple of concerns with this scenario:
With those notes in mind, this can be accomplished using the following syntax: from falconpy import Hosts
hosts = Hosts(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET,
base_url=IP_ADDRESS,
ssl_verify=False
) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
NSH531
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @NSH531 -
You can provide an IP address for the
base_url
keyword instead of the FQDN.A couple of concerns with this scenario:
With those notes in mind, this can be accomplished using the following syntax: