-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make use of Internet connection checker more configurable #292
Comments
Sadly it is used in multiple places throughout the at_client package. I will look into the effort required to configure it and/or remove the need for it |
Did some analysis. Direct usage of InternetConnectionCheckerIn our core packages, we use the InternetConnectionChecker directly only in the at_client package, in the following places
Proposals1) Make at_client's usage of InternetConnectionChecker configurable
2) update sshnpd along the lines of @cpswan's proposal above
3) Eliminate unnecessary usages of ConnectivityListener and NetworkUtil throughout the at_client packageTL;DR : all of the usages are unnecessary, and NetworkUtil can be removed entirely as it is not exported
|
at_client pull request |
Is your feature request related to a problem? Please describe.
We presently incorporate the Internet connection checker package, which by default makes TCP connections to popular DNS servers such as 1.1.1.1 and 8.8.8.8
This may cause alarm to some customers, especially if they're configuring different DNS servers (and it may seem to them that we've hard coded DNS into our binary).
Describe the solution you'd like
Use the RV server(s) as the default connection check IP(s)
Make the use of connection check selectable (at install time) via a flag
Describe alternatives you've considered
Allow users to define their own check points
The text was updated successfully, but these errors were encountered: