Guest User

Untitled

a guest
Oct 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. vrrp_instance Example_Inst {
  2.  
  3. # State = Master or Backup
  4. state MASTER
  5.  
  6. # Interface ID for VRRP to run on
  7. interface eth0
  8.  
  9. # VRRP Router ID
  10. virtual_router_id 20
  11.  
  12. # Highest Priority Wins
  13. priority 150
  14.  
  15. # VRRP Advert Intaval 1 Second
  16. advert_int 1
  17.  
  18. # Basic Inter Router VRRP Authentication
  19. authentication {
  20. auth_type PASS
  21. auth_pass 123456789
  22. }
  23.  
  24. # VRRP Virtual IP Address Config
  25. virtual_ipaddress {
  26. 192.168.100.2/24 dev eth0
  27.  
  28. 192.168.1.1/24 dev eth1
  29.  
  30. 192.168.2.1/24 dev eth2
  31. }
  32. }
Add Comment
Please, Sign In to add comment