Interface multicast inválida

0

Estou tentando usar ping com interface especificada com um comando

ping -I re3 192.168.1.1

Eu sei que re3 existe em ifconfig

re3: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
        options=8209b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,WOL_MAGIC,LINKSTATE>
        ether e8:de:27:01:7f:e7
        inet6 fe80::eade:27ff:fe01:7fe7%re3 prefixlen 64 scopeid 0x4
        inet 192.168.1.2 netmask 0xffffff00 broadcast 192.168.1.255
        nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
        media: Ethernet autoselect (100baseTX <full-duplex>)
        status: active

Infelizmente, não consigo fazer ping no gateway:

$/root: ping -I re3 192.168.1.1
ping: invalid multicast interface: 're3'

O que isso significa?

UPDATE

$arp 192.168.1.1
? (192.168.1.1) at (incomplete) on re3 expired [ethernet]
    
por Dims 31.01.2017 / 22:38

1 resposta

2

Não tenho muita experiência no sistema freebsd, tanto quanto sei para o ping tente:

ping -S 192.168.1.2 192.168.1.1

Quanto a arp

  • Se arp não conseguir buscar o endereço MAC do seu gateway, então o servidor freebsd perdeu a conectividade com o gateway.
  • Verifique se o gateway do seu servidor é UP / RUNNING, e também verifique a conectividade física de ambos.
por 02.02.2017 / 05:34