Replica set migration between LANs - seeking procedure review

I need to migrate a MongoDB replica set from one LAN to another with minimal downtime, I’m looking for a sanity check on my approach and any gotchas to watch out for.

Current setup:

  • MongoDB version: 6.0
  • 3-member replica set
  • Members use hostnames for communication
  • No TLS in use
  • Both LAN interfaces will be available during migration

Proposed migration steps:

  1. Configure MongoDB to additionally listen on the new interface
  2. Change hostname DNS to point to new LAN addresses (and clear out any DNS caches)
  3. Do a final rolling restart of the replica set
  4. Decommission old LAN

Is it that straightforward, or am I missing something important? I’ll test first, naturally.