OVH was pestering me about migrating my VPS from its previous range to the new (and more expensive) one. I finally agreed to that. Migrated the VM to the new host, it launches with no networking. Not entirely unexpected, but it gets better.
The root cause is the DHCP server at OVH returning a lease with netmask /32. In that situation, it's not
(
Read more... )
Comments 3
Reply
Reply
host1:
$ ip addr add 10.4.0.4/32 peer 10.4.0.2 dev eth2
host2:
$ ip addr add 10.2.0.2/32 peer 10.4.0.4 dev eth2
$ ping -c 1 10.4.0.4
PING 10.4.0.4 (10.4.0.4) 56(84) bytes of data.
64 bytes from 10.4.0.4: icmp_seq=1 ttl=64 time=1.71 ms
It wouldn't surprise me if DHCP clients don't handle this setup.
Reply
Leave a comment