Guest User

Untitled

a guest
Mar 17th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. # These are the services needed for amanda.
  2. # Default is to talk to localhost only unless
  3. # AMANDA_SERVER was specified at build time.
  4.  
  5. service amanda
  6. {
  7. socket_type = dgram
  8. protocol = udp
  9. wait = yes
  10. user = amanda
  11. group = amanda
  12. groups = yes
  13. server = /usr/libexec/amanda/amandad
  14. only_from = <IP>
  15. disable = no
  16. }
  17.  
  18. service amandaidx
  19. {
  20. socket_type = stream
  21. protocol = tcp
  22. wait = no
  23. user = amanda
  24. group = amanda
  25. groups = yes
  26. server = /usr/libexec/amanda/amindexd
  27. only_from = <IP>
  28. disable = no
  29. }
  30.  
  31. service amidxtape
  32. {
  33. socket_type = stream
  34. protocol = tcp
  35. wait = no
  36. user = amanda
  37. group = amanda
  38. groups = yes
  39. server = /usr/libexec/amanda/amidxtaped
  40. only_from = <IP>
  41. disable = no
  42. }
Add Comment
Please, Sign In to add comment