Advertisement
Guest User

Untitled

a guest
Mar 18th, 2024
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. **Interface config:**
  2.  
  3. FW A:
  4. ```
  5. <wan>
  6. <enable></enable>
  7. <descr><![CDATA[WAN]]></descr>
  8. <if>ix3</if>
  9. <ipaddr>PUBLIC_IP_HIDDEN</ipaddr>
  10. <subnet>29</subnet>
  11. <gateway>WANGW</gateway>
  12. <blockpriv></blockpriv>
  13. <blockbogons></blockbogons>
  14. <spoofmac></spoofmac>
  15. </wan>
  16. ```
  17.  
  18. FW B:
  19. ```
  20. <wan>
  21. <enable></enable>
  22. <descr><![CDATA[WAN]]></descr>
  23. <if>ix3</if>
  24. <ipaddr>PUBLIC_IP_HIDDEN</ipaddr>
  25. <subnet>29</subnet>
  26. <gateway>WANGW</gateway>
  27. <blockpriv></blockpriv>
  28. <blockbogons></blockbogons>
  29. <spoofmac></spoofmac>
  30. </wan>
  31. ```
  32.  
  33. **Here is the Virtual IP config:**
  34.  
  35. Note that the `uniqid` does differ, which I had thought is normal. Am I wrong there?
  36.  
  37. FW A:
  38. ```
  39. <vip>
  40. <mode>carp</mode>
  41. <interface>wan</interface>
  42. <vhid>255</vhid>
  43. <advskew>0</advskew>
  44. <advbase>1</advbase>
  45. <password><![CDATA[HIDDEN_PASSWORD_MATCHES_NEIGHBOR]]></password>
  46. <uniqid>65de65ceb0447</uniqid>
  47. <descr><![CDATA[WAN_CARP_VIP]]></descr>
  48. <type>single</type>
  49. <subnet_bits>29</subnet_bits>
  50. <subnet>PUBLIC_VIP_HIDDEN</subnet>
  51. </vip>
  52. ```
  53.  
  54. FW B:
  55. ```
  56. <vip>
  57. <mode>carp</mode>
  58. <interface>wan</interface>
  59. <vhid>255</vhid>
  60. <advskew>100</advskew>
  61. <advbase>1</advbase>
  62. <password><![CDATA[HIDDEN_PASSWORD_MATCHES_NEIGHBOR]]></password>
  63. <uniqid>65dd1a3849ae7</uniqid>
  64. <descr><![CDATA[WAN_CARP_VIP]]></descr>
  65. <type>single</type>
  66. <subnet_bits>29</subnet_bits>
  67. <subnet>PUBLIC_VIP_HIDDEN</subnet>
  68. </vip>
  69. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement