我想检查 ip 是否存在于 ccd 文件夹中,并将 ip 路由推送到 iptables 中的 FORWARDING 链。我是 Bash 脚本的新手,需要一点帮助来完成这个脚本。
/etc/openvpn/ccd 中的客户端文件:
ifconfig-push 10.8.0.45 255.255.255.0
push 'route 10.10.0.45'
我需要 grep10.8.0.45 & 10.10.0.45
并将这些路由推送到 iptables 中。例如
iptables -A FORWARD -s 10.8.0.45 -d 10.10.0.45 -j ACCEPT
客户端连接/etc/openvpn/on_connect.sh
脚本我需要有关“grep”或“awk”的帮助
static_ip= grep "^push \"route" | grep "^'" | cut -f2 -d" "
ip_destination=grep "^push \"route" | grep "^'" | cut -f3 -d" "
#!/usr/bin/env bash # # Add iptables rules based on CCD client config. # CCD_DIR="/etc/openvpn/ccd" # iptables rule comment - the disconnect script will # remove all strings matching this pattern RULE_COMMENT="OVPN_"$common_name static_ip=grep.. ip_destination=grep.. if [ -f $CCD_DIR/$common_name ]; then sudo iptables -A FORWARD -s $static_ip -d ip_destination -j ACCEPT fi exit 0
答案1
如果您想要在目录中查找文件openvpn
,grep -R /etc/openvpn/ccd -E '10.(8|45).0.45'
并查看是否返回成功,您可以执行以下操作:
if grep -qRE /etc/openvpn/ccd '10\.(8|45)\.0\.45' ; then
: # do somethig
fi
嗨嗨。
PS 我想添加评论以询问更多细节,但我没有足够的积分来评论