Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. PUBLIC IPV6 ADDRESS:
  2. xxxx:xxxx:2:d0::216f:3001
  3. PUBLIC IPV6 GATEWAY:
  4. xxxx:xxxx:2:d0::1
  5. CONFIGURABLE ADDRESS RANGE:
  6. xxxx:xxxx:2:d0::216f:3000 - xxxx:xxxx:2:d0::216f:300f
  7.  
  8. {
  9. "ipv6": true,
  10. "fixed-cidr-v6": "xxxx:xxxx:2:d0::216f:3000/124"
  11. }
  12.  
  13. {
  14. "ipv6": true,
  15. "fixed-cidr-v6": "2001:db8::c008/125"
  16. }
  17.  
  18. docker run -d --name ipv6test alpine ash -c "ping6 2606:4700:4700::1111"
  19.  
  20. ip -6 neigh add proxy xxxx:xxxx:2:d0::216f:3004 dev eth0
  21.  
  22. version: "3.7"
  23.  
  24. services:
  25. app:
  26. image: nginx:alpine
  27. networks:
  28. app_net:
  29. ipv6_address: xxxx:xxxx:2:d0::216f:3010
  30.  
  31. networks:
  32. app_net:
  33. ipam:
  34. driver: default
  35. config:
  36. - subnet: "xxxx:xxxx:2:d0::216f:3000/124"
  37.  
  38. # ping6 2606:4700:4700::1111
  39. PING 2606:4700:4700::1111 (2606:4700:4700::1111): 56 data bytes
  40. ping6: sendto: Address not available
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement