Eu tenho problemas para atribuir um novo endereço a um dos meus servidores, toda vez que eu quero adicionar um novo endereço, ele diz que o endereço já está em uso. Então, o que estou fazendo agora é usar a ferramenta arp para ver quais ips não estão em uso.
O que eu notei é que não importa quantos endereços diferentes eu faça ping e uso arp depois, eu recebo o mesmo endereço MAC que o gateway. Minha pergunta é em primeiro lugar, isso é um comportamento normal? e segundo, como posso encontrar um IP que não esteja em uso então, alguma outra idéia?
[user@swarm01 ~]$ ping 192.168.123.129
PING 192.168.123.129 (192.168.123.129) 56(84) bytes of data.
^C
--- 192.168.123.129 ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1001ms
[user@swarm01 ~]$ arp
Address HWtype HWaddress Flags Mask Iface
192.168.123.126 ether 16:12:9c:31:73:fa C eth0
192.168.123.59 ether dc:a9:04:94:1e:c9 C eth0
192.168.123.129 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.128 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.127 ether 4c:66:41:2e:4e:9c C eth0
gateway ether b4:0c:25:3f:e8:11 C eth0
[user@swarm01 ~]$ ping 192.168.123.130
PING 192.168.123.130 (192.168.123.130) 56(84) bytes of data.
^C
--- 192.168.123.130 ping statistics ---
3 packets transmitted, 0 received, 100% packet loss, time 2002ms
[user@swarm01 ~]$ arp
Address HWtype HWaddress Flags Mask Iface
192.168.123.126 ether 16:12:9c:31:73:fa C eth0
192.168.123.59 ether dc:a9:04:94:1e:c9 C eth0
192.168.123.129 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.130 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.128 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.127 ether 4c:66:41:2e:4e:9c C eth0
gateway ether b4:0c:25:3f:e8:11 C eth0
[user@swarm01 ~]$ ping 192.168.123.131
PING 192.168.123.131 (192.168.123.131) 56(84) bytes of data.
^C
--- 192.168.123.131 ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3001ms
[user@swarm01 ~]$ arp
Address HWtype HWaddress Flags Mask Iface
192.168.123.131 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.126 ether 16:12:9c:31:73:fa C eth0
192.168.123.59 ether dc:a9:04:94:1e:c9 C eth0
192.168.123.129 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.130 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.128 ether b4:0c:25:3f:e8:11 C eth0
192.168.123.127 ether 4c:66:41:2e:4e:9c C eth0
gateway ether b4:0c:25:3f:e8:11 C eth0
Tags networking ip-address ip arp