-
Notifications
You must be signed in to change notification settings - Fork 294
updating the doc with anyconnect vpn conflicting software #5989
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -771,6 +771,28 @@ Running a MacOS VM in Parallels Desktop with shared networking causes the system | |||||||||||||||||||||||||||||||||||
As a workaround, you can configure Parallels Desktop to use a different network mode. | ||||||||||||||||||||||||||||||||||||
Select an alternative network configuration such as **Host-Only**, **Default Adapter**, or **Wi-Fi** instead of **Shared Network**. | ||||||||||||||||||||||||||||||||||||
Refer to the Parallels Desktop documentation for more information. | ||||||||||||||||||||||||||||||||||||
### Cisco AnyConnect VPN | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
When you run the Cisco AnyConnect VPN at the same time as the Boundary Client Agent, DNS resolution may fail for Boundary aliases. | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
**Root cause**: | ||||||||||||||||||||||||||||||||||||
The Boundary Client Agent runs on the default IPv4 range `100.x.x.x`. Cisco AnyConnect VPN treats this range as a *secured range*, which forces DNS queries to resolve through the VPN instead of the Boundary Client Agent. As a result, Boundary aliases cannot be resolved. | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We use bold for emphasis instead of italics because italics can be difficult for some people to see. |
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
**Workaround**: | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||
You can configure the Boundary Client Agent to use a different IPv4 prefix by setting the `v4_prefix` option in the client configuration file. This overrides the default `100.x.x.x` range and avoids the conflict with Cisco AnyConnect VPN. | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor rewrite to make it more clear what "This" refers to. |
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
For example: | ||||||||||||||||||||||||||||||||||||
```hcl | ||||||||||||||||||||||||||||||||||||
v4_prefix = "172.16.0.0/12" | ||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||
This configuration was tested successfully and resolved the issue. | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we can remove this line
Suggested change
|
||||||||||||||||||||||||||||||||||||
<Note> | ||||||||||||||||||||||||||||||||||||
The `v4_prefix` can be set to any valid RFC1918 private IPv4 range, as long as it does not overlap with ranges secured by the VPN. Common options include: | ||||||||||||||||||||||||||||||||||||
- `10.0.0.0/8` | ||||||||||||||||||||||||||||||||||||
- `172.16.0.0/12` | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Choose a range that best fits your environment. | ||||||||||||||||||||||||||||||||||||
</Note> | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor rewrite to use active voice instead of passive ("You can set..."). I added a line space before the bulleted list so it renders correctly. I also added a line space after the opening |
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
## Uninstall the Client Agent on Mac | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these paragraphs are short and easy enough to understand that we don't need additional headings here.