Guest User

Untitled

a guest
Jan 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # cpu frequency scaling
  2. modprobe acpi-cpufreq >> /dev/null 2>&1
  3. cpufreq-set -g ondemand >> /dev/null 2>&1
  4. # load extra modules
  5. /sbin/modprobe tun
  6. /sbin/modprobe fuse
  7. # load iptables modules for VZ CT
  8. /sbin/modprobe iptable_filter
  9. /sbin/modprobe iptable_mangle
  10. /sbin/modprobe ipt_limit
  11. /sbin/modprobe ipt_multiport
  12. /sbin/modprobe ipt_tos
  13. /sbin/modprobe ipt_TOS
  14. /sbin/modprobe ipt_REJECT
  15. /sbin/modprobe ipt_TCPMSS
  16. /sbin/modprobe ipt_tcpmss
  17. /sbin/modprobe ipt_ttl
  18. /sbin/modprobe ipt_LOG
  19. /sbin/modprobe ipt_length
  20. /sbin/modprobe ip_conntrack
  21. /sbin/modprobe ip_conntrack_ftp
  22. /sbin/modprobe ip_conntrack_irc
  23. /sbin/modprobe ipt_state
  24. /sbin/modprobe ipt_helper
  25. /sbin/modprobe iptable_nat
  26. /sbin/modprobe ip_nat_ftp
  27. /sbin/modprobe ip_nat_irc
  28. /sbin/modprobe ipt_REDIRECT
  29. /sbin/modprobe ipt_recent
  30. /sbin/modprobe ipt_MASQUERADE
  31. # load ppp modules for VZ CT
  32. /sbin/modprobe ppp_async
  33. /sbin/modprobe ppp_deflate
  34. # load ipv6
  35. /sbin/modprobe ipv6
  36. # start vdsmon
  37. /usr/local/ispmgr/sbin/vdsmon
Add Comment
Please, Sign In to add comment