A client informed me, that connecting my device, caused another of his systems to lose connection with the network. Could the vpn cause this.
Yes, that's possible. What you're describing can be caused by an address space collision - your VPN uses an address range that is also used on the other network, so when the VPN is connected, there is a range (or ranges) of IP addresses that are in use by each network, which can result in devices on those networks becoming inaccessible from one side or another, due to there being different routes to same address ranges, depending on which network you're on.
See this older question for more details, but it doesn't sound like it's something you'll be able to eliminate completely. (Not without switching over to pure IPv6, which you can expect to cause problems with networks that don't support IPv6.) Your best option is probably to use a less frequently used range for (10.0.0.0/8
is a very frequently used range, like 192.168.0.0/16
), which is generally something in the 172.16.0.0/12
private address space. Of course, for that reason, the 172.16.0.0/12
address space is frequently used for VPNs, which can create address space collisions of its own.
For whatever it's worth, I use the upper half of the 172.16.0.0/12
address space for my SOHO network, and have yet to experience a collision, so that might be worth considering. For this specific client, the quickest solution would be finding out the IP address of the device that becomes inaccessible (to verify that you're seeing an IP address space collision), then getting a list of the private IP address subnets used, and switching your VPN to use a range that is not in use on this client's network.