📅  最后修改于: 2022-03-11 14:55:21.603000             🧑  作者: Mango
#!/bin/sh -e
#
# rc.local into the etc folder
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8069
exit 0