Hi Forum,
with last version of OpenVPN connect for iPhone (or for another Platforms), I could disable the IPv6 for just one client through ovpn file with these commands:
push-filter ignore ipv6-route
push-filter ignore ifconfig-ipv6
but now I see that the both commands are under „UNUSED OPTIONS“ in the log file!
is there an another option to disable IPv6 for a client?
Thanks
disable IPv6 for a client
-
- OpenVPN Protagonist
- Posts: 11138
- Joined: Fri Jun 03, 2016 1:17 pm
Re: disable IPv6 for a client
Configure your server to not push IPv6 to the client.
-
- OpenVpn Newbie
- Posts: 4
- Joined: Fri Nov 15, 2019 9:49 am
Re: disable IPv6 for a client
but another clients should have access to IPv6 network… it worked earlier, & now this option is not more supported!… any another solution?
-
- OpenVPN Protagonist
- Posts: 11138
- Joined: Fri Jun 03, 2016 1:17 pm
Re: disable IPv6 for a client
The server can push different things to different clients.
-
- OpenVpn Newbie
- Posts: 4
- Joined: Fri Nov 15, 2019 9:49 am
Re: disable IPv6 for a client
Thank you for your trick, I solved it
in client specific overrides:
push-remove ifconfig-ipv6;push-remove route-ipv6
it will work (because it is configured on the server) with any platform!…
in client specific overrides:
push-remove ifconfig-ipv6;push-remove route-ipv6
it will work (because it is configured on the server) with any platform!…
-
- OpenVpn Newbie
- Posts: 4
- Joined: Fri Nov 15, 2019 9:49 am
[SOLVED] disable IPv6 for a client
karl047 wrote: ↑Tue Jun 15, 2021 9:46 amHi Forum,
with last version of OpenVPN connect for iPhone (or for another Platforms), I could disable the IPv6 for just one client through ovpn file with these commands:
push-filter ignore route-ipv6
push-filter ignore ifconfig-ipv6
but now I see that the both commands are under „UNUSED OPTIONS“ in the log file!
is there an another option to disable IPv6 for a client?
Thanks
in client specific overrides, add these lines to disable ipv6:
push-remove ifconfig-ipv6;push-remove route-ipv6
-
- OpenVpn Newbie
- Posts: 1
- Joined: Sun Mar 26, 2023 7:52 pm
Re: disable IPv6 for a client
You can configure your client to ignore the pushed IPv6 configuration by including the following two lines in your OpenVPN client config file:
Code: Select all
pull-filter ignore "ifconfig-ipv6"
pull-filter ignore "route-ipv6"