O tráfego encaminhado para br0 termina no loopback

0

Estou tentando direcionar o tráfego para 10.2.129.0/24 por meio de 'br0', mas ele acaba em 'lo'.
Alguma ideia de onde está errado?

# ip route show
default via 192.168.2.1 dev eth0
10.2.129.0/24 dev br0  proto kernel  scope link  src 10.2.129.8
192.168.2.0/24 dev eth0  proto kernel  scope link  src 192.168.2.210
224.0.0.0/4 dev br0  scope link

# ping 10.2.129.1
PING 10.2.129.1 (10.2.129.1) 56(84) bytes of data.
From 10.2.129.8 icmp_seq=1 Destination Host Unreachable
From 10.2.129.8 icmp_seq=2 Destination Host Unreachable
From 10.2.129.8 icmp_seq=3 Destination Host Unreachable

# tshark -i br0 -f 'icmp'
Capturing on 'br0'
0 packets captured

# tshark -i lo -f 'icmp'
Capturing on 'Loopback'
1   0.000000   10.2.129.8 -> 10.2.129.8   ICMP 126 Destination unreachable (Host unreachable)
2   0.000541   10.2.129.8 -> 10.2.129.8   ICMP 126 Destination unreachable (Host unreachable)
3   0.001093   10.2.129.8 -> 10.2.129.8   ICMP 126 Destination unreachable (Host unreachable)
3 packets captured
    
por Fredrik 14.07.2017 / 10:51

1 resposta

1

As mensagens de 10.2.129.8 não são respostas aos pings, mas mensagens de seu host local informando que ele não pode enviar os pings para 10.2.129.1 .

    
por 14.07.2017 / 13:35

Tags