On Thu, Jun 23, 2011 at 6:21 PM, Joseph Koech <[email protected]> wrote: > I have been actively developing kannel on my local machine. Since I don't > have much experience with accessing it remotely, could someone point out on > how this can be achieved?
Just set a public IP address to your server, or if your machine is behind a router in your private network add IP forwarding. Now you are accessing the sendsms like http://127.0.0.1:13015/cgi-bin/sendsms?...... Let's say that your kannel machine's IP address is 192.168.1.10 so from your local network you can access it like http://192.168.1.10:13015/cgi-bin/sendsms?... If your kannel machine is behind a router and you have static public address on it, you'll have to configure IP forwarding. For example 1.2.3.4 is the public IP address of the router 192.168.1.10 – is the private IP address of the kannel machine 10000 is the port on which you want to access the kannel machine from the Internet. You'll have to configure the router so that the requests on the WAN port (the Internet side) on port 10000 are forwarded to 192.168.1.10:13015. This way you'll access the kannel machine like the following http://1.2.3.4:13015/cgi-bin/sendsms?... HTH, Jovan
