ipv6.method ignore
See original GitHub issueHello,
i need disable ipv6 only on one interface .
I would like obtain same effect that : “#nmcli connection modify eth0 ipv6.method ignore” on rhel 8
I look to python code, from line 950 to “master/library/network_connections.py”
if ip["auto6"]: s_ip6.set_property(NM.SETTING_IP_CONFIG_METHOD, "auto") elif addrs6: s_ip6.set_property(NM.SETTING_IP_CONFIG_METHOD, "manual") else: s_ip6.set_property(NM.SETTING_IP_CONFIG_METHOD, "ignore")
Wich variable is needed for do that on the playbook ?
Thanks in advance,
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Chapter 31. Using NetworkManager to disable IPv6 for a ...
This procedure describes how to disable the IPv6 protocol using the nmcli utility. ... Set the ipv6.method parameter of the connection to disabled...
Read more >Why does the interface have an IPv6 address with IPv6 ...
The reason why "ignore" exists, is because long ago NetworkManager left IPv6 to kernel. That mode does that, but arguably it's not very...
Read more >IPv6 - ArchWiki - Arch Linux
To disable IPv6 in NetworkManager, right click the network status icon, and select Edit Connections > Wired > Network name > Edit >...
Read more >Disable IPv6 on CentOS 8 - Linux Hint
This is a permanent method of disabling IPv6 on CentOS 8. This method requires a system reboot in order for the configuration to...
Read more >Disable IPv6 using Network Manager. - Linux Docs
We fix this by disabling the IPv6 protocol on a system that uses NetworkManager to manage network interfaces. If we disable IPv6, Network...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
“auto6” seems to be more about autoconf, not about disabling IPv6 altogether. We decided to add new field specifically for “ipv6.method disable”.
updated here, https://github.com/linux-system-roles/network/pull/342