Advertisement
Guest User

Untitled

a guest
May 26th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. interfaces {
  2. ethernet eth0 {
  3. address 192.168.1.1/24
  4. description Local
  5. duplex auto
  6. speed auto
  7. }
  8. ethernet eth1 {
  9. address dhcp
  10. description INTERNET
  11. dhcpv6-pd {
  12. pd 1 {
  13. interface eth0 {
  14. host-address ::1
  15. no-dns
  16. service slaac
  17. }
  18. interface eth2 {
  19. host-address ::1
  20. no-dns
  21. service slaac
  22. }
  23. prefix-length /56
  24. }
  25. rapid-commit enable
  26. }
  27. duplex auto
  28. ipv6 {
  29. address {
  30. autoconf
  31. }
  32. dup-addr-detect-transmits 1
  33. }
  34. mtu 1500
  35. speed auto
  36. }
  37. ethernet eth2 {
  38. address 192.168.2.1/24
  39. description "Local 2"
  40. duplex auto
  41. speed auto
  42. }
  43. loopback lo {
  44. }
  45. }
  46. protocols {
  47. static {
  48. interface-route6 ::/0 {
  49. next-hop-interface eth1 {
  50. }
  51. }
  52. }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement