6

With the command like these the following you can add neighbor proxies in Linux

ip -6 neigh add proxy 2001:db8:100:3022:1::4 dev eth0

Is there a way how to list which proxies have already been defined?

aef
  • 1,745
  • 4
  • 25
  • 43

2 Answers2

7

Try with:

ip -6 neigh show proxy

It works for me:

emily ~ # ip -6 neigh add proxy 2001:db8:100:3022:1::4 dev eth0
emily ~ # ip -6 neigh show proxy
2001:db8:100:3022:1::4 dev eth0  proxy
mulaz
  • 10,682
  • 1
  • 31
  • 37
1

On some distribution "ip -6 neigh show proxy" doesn't work but your can see the corresponding multicast address to be answered :

ip -6 maddr show
Aeon
  • 11
  • 1