This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| computing:dhcpcd [2026/09/07 16:47] – oemb1905 | computing:dhcpcd [2026/09/07 17:01] (current) – oemb1905 | ||
|---|---|---|---|
| Line 86: | Line 86: | ||
| {{ : | {{ : | ||
| + | This worked flawlessly on two machines. However, one machine insisted on making routes no matter what I did. So, for that machine, I additionally stopped Network Manager from doing that using nmcli: | ||
| - | --- // | + | nmcli connection modify br1 ipv4.ignore-auto-routes yes ipv6.ignore-auto-routes yes |
| + | nmcli connection modify br2 ipv4.ignore-auto-routes yes ipv6.ignore-auto-routes yes | ||
| + | nmcli connection modify br3 ipv4.ignore-auto-routes yes ipv6.ignore-auto-routes yes | ||
| + | |||
| + | If you instead want the routes, but just don't want them to be default, then: | ||
| + | |||
| + | nmcli connection modify br1 ipv4.never-default yes ipv6.never-default yes | ||
| + | nmcli connection modify br2 ipv4.never-default yes ipv6.never-default yes | ||
| + | nmcli connection modify br3 ipv4.never-default yes ipv6.never-default yes | ||
| + | |||
| + | Just adapt this command to whatever your bridges are named. This final change took care of the most stubborn machine I had. | ||
| + | |||
| + | --- // | ||