Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rc.local_ansible_openvpn 371B

1234567891011121314
  1. #!/bin/sh -e
  2. # {{ ansible_managed }}
  3. #
  4. # This script should be included in your rc.local
  5. #
  6. iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
  7. iptables -A FORWARD -s 10.8.0.0/24 -j ACCEPT
  8. iptables -A FORWARD -j REJECT
  9. iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o {{ ansible_default_ipv4.interface }} -j MASQUERADE
  10. /etc/init.d/dnsmasq restart
  11. exit 0