Quote:
Originally Posted by pendrive
well, if the vps word you used stands for "virtual private server", then I assumed you've owned a linux vps server and you've installed a pptp server on it to serve vpn connections. and my "pptp server" is refreing to the pptp server you've installed on your linux box. if I'm getting wrong about your situation, then you should clear me first.
What I know is that a pptp tunneling is a point to point tunneling which capsulates ppp packets and uses a tcp session for controlling that over 1723 port number. you can check that with
#netstat -natup
and see if there is this entry in the output:
0.0.0.0:1723
|
this is when I connect to my second ip(alias ip):
[root@vpn ~]# netstat -natup
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 815/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 893/master
tcp 0 0 0.0.0.0:1723 0.0.0.0:* LISTEN 7580/pptpd
tcp 0 0 67.207.208.106:22 25.24.212.175:52058 ESTABLISHED 7461/sshd
tcp 0 0 67.207.208.106:22 25.24.212.175:52172 ESTABLISHED 7558/sshd
tcp 0 48 67.207.208.106:22 25.24.212.175:51881 ESTABLISHED 7409/sshd
tcp 0 0 67.207.208.91:1723 25.24.212.175:52175 ESTABLISHED 7582/pptpd [24.24.2
tcp 0 0 :::22 :::* LISTEN 815/sshd
this one is my main ip:
[root@vpn ~]# netstat -natup
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 815/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 893/master
tcp 0 0 0.0.0.0:1723 0.0.0.0:* LISTEN 7580/pptpd
tcp 0 0 67.207.208.106:22 25.24.212.175:52058 ESTABLISHED 7461/sshd
tcp 0 0 67.207.208.106:1723 25.24.212.175:52250 ESTABLISHED 7631/pptpd [24.24.2
tcp 0 48 67.207.208.106:22 25.24.212.175:51881 ESTABLISHED 7409/sshd
tcp 0 0 :::22 :::* LISTEN 815/sshd