Skip to content

AWS Client VPN with split tunnel add default route even though it shouldn't

1

Documentation states it shouldn't do that https://docs.aws.amazon.com/vpn/latest/clientvpn-admin/split-tunnel-vpn.html

I also verified no such route exists in the AWS VPN config. Without VPN it looks like:

default            10.213.64.1        UGScg                 en0

And with AWS VPN Client connected

default            10.0.0.129         UGScg               utun6

This breaks internet connections on the client since I cannot I access the internet from the VPN but I want to access it from the client network itself.

Running the following commands fixes the issue:

sudo route -n delete -net 0.0.0.0/0
sudo route -n add -net 0.0.0.0/0 10.213.64.1

And the VPN still works

My OS is Mac on the newest update but it was broken for a while.

Enter image description here

  • Can you share screenshot of clientVPN configuration from AWS and your full route table?

  • Added that information to the post (except route table which I will add later)

asked a year ago302 views
1 Answer
0
Accepted Answer

Do any interfaces on your system have a non-RFC1918 IP address?

AWS
EXPERT
answered a year ago
AWS
EXPERT
reviewed a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.