Guest User

Untitled

a guest
Apr 25th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. # ip -6 address show
  2. <...>
  3. 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
  4. inet6 x:x:x:x::x:5000/64 scope global
  5. valid_lft forever preferred_lft forever
  6. 3: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
  7. <...>
  8. # ip -6 route show | grep -v fe80::/64
  9. x:x:x:x::x:5000/124 dev br0 metric 128 pref medium
  10. x:x:x:x::/64 dev eth0 proto kernel metric 256 pref medium
  11. default via x:x:x:x::1 dev eth0 metric 1024 pref medium
  12. # ip -6 neigh show proxy
  13. x:x:x:x::x:5000 dev br0 proxy
  14. x:x:x:x::x:5001 dev eth0 proxy
  15. # sysctl net.ipv6.conf.{all,br0,eth0}.{forwarding,proxy_ndp}
  16. net.ipv6.conf.all.forwarding = 1
  17. net.ipv6.conf.all.proxy_ndp = 0
  18. net.ipv6.conf.br0.forwarding = 1
  19. net.ipv6.conf.br0.proxy_ndp = 1
  20. net.ipv6.conf.eth0.forwarding = 1
  21. net.ipv6.conf.eth0.proxy_ndp = 1
  22.  
  23. # ip -6 address show
  24. <...>
  25. 2: host0@if4: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
  26. inet6 x:x:x:x::x:5001/124 scope global
  27. <...>
  28. # ip -6 route show | grep -v fe80::/64
  29. x:x:x:x::x:5000/124 dev host0 proto kernel metric 256
  30. default via x:x:x:x::x:5000 dev host0 metric 1024
Add Comment
Please, Sign In to add comment