Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. 1. Connect to the primary SteelHead CLI and enter the following commands:
  2.  
  3. -- Primary SteelHead.<br>
  4. interface primary ip address 10.0.1.2/24<br>
  5. ip default gateway 10.0.1.1<br>
  6. interface inpath0_0 ip address 10.0.1.3/24<br>
  7. ip in-path-gateway inpath0_0 10.0.1.1<br>
  8. -- Failover should point to the inpath0_0 address.<br>
  9. failover steelhead addr 10.0.1.5<br>
  10. failover master<br>
  11. failover enable<br>
  12. in-path enable<br>
  13. -- Although not required, RiOS data store synchronization is usually enabled
  14. -- in primary/backup deployments.<br>
  15. datastore sync master<br>
  16. -- RiOS data store should point to peer primary or aux interface address.<br>
  17. datastore sync peer-ip 10.0.1.4<br>
  18. datastore sync enable<br>
  19. write memory<br>
  20. restart<br>
  21. 2. Connect to the backup SteelHead CLI and enter the following commands:
  22. -- Backup SteelHead.<br>
  23. interface primary ip address 10.0.1.4/24<br>
  24. ip default gateway 10.0.1.1<br>
  25. interface inpath0_0 ip address 10.0.1.5/24<br>
  26. ip in-path-gateway inpath0_0 10.0.1.1<br>
  27. -- Failover should point to the inpath0_0 address.<br>
  28. failover steelhead addr 10.0.1.3<br>
  29. no failover master<br>
  30. failover enable<br>
  31. in-path enable<br>
  32. -- Although not required, RiOS data store synchronization is usually enabled in
  33. -- primary/backup deployments.<br>
  34. no datastore sync master<br>
  35. -- RiOS data store should point to peer's primary or aux interface address.<br>
  36. datastore sync peer-ip 10.0.1.2<br>
  37. datastore sync enable<br>
  38. write memory<br>
  39. restart<br>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement