/routing rip interface add send=v1-2 interface="<pptp-$user>"
/routing rip interface remove [find interface="<pptp-$user>"]
#!/bin/bash
to="$1"
subject="$2"
body="$3"
curl -G http://192.168.30.30/cgi/WebCGI?1500101=account=smsusers\&password=smspassword\&port=1\&destination=$to --data-urlencode "content=$body"
Sending SMS format:
http://[IP]/cgi/WebCGI?1500101=account=[user]&password=[pass]&port=[port]&destination=[phone_number]&content=[MSG]
http://[IP]/cgi/WebCGI?1500101=account=[user]\&password=[pass]\&port=[port]\&destination=[phone_number]\&content=[MSG]
#!/bin/bash
to="$1"
subject="$2"
body="$3"
curl http://192.168.30.30/cgi/WebCGI?1500101=account=smsusers\&password=smspassword\&port=1\&destination=$to\&content=$body