Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. acl siteA {
  2. 10.1.1.0/24;
  3. fde1::/64;
  4. };
  5.  
  6. acl siteB {
  7. 10.2.2.0/24;
  8. fde2::/64;;
  9. };
  10.  
  11. view "siteA" {
  12. match-clients {
  13. siteA;
  14. };
  15. recursion no;
  16. forwarders {
  17. 8.8.8.8
  18. 2001:4860:4860::8888
  19. };
  20. };
  21.  
  22. view "siteB" {
  23. match-clients {
  24. siteB;
  25. };
  26. recursion no;
  27. forwarders {
  28. 8.8.4.4
  29. 2001:4860:4860::8844
  30. };
  31. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement