LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   VPN connection issue (https://www.linuxquestions.org/questions/linux-networking-3/vpn-connection-issue-774632/)

Joe_Zhu 12-09-2009 11:31 PM

VPN connection issue
 
Hi i am using ubuntu 9.10 32bit.

recently i setup a PPTP VPN server in my linksys router running DD WRT at home.
and in the ubuntu laptop in my office, i configure manually a vpn connection by following the instruction in following webpage http://pptpclient.sourceforge.net/howto-debian.phtml
http://pptpclient.sourceforge.net/ro...utomatic-setup

at first i thought it is successful, i can ping, SSH, FTP to my NAS from my laptop, however, when i try to open the web interface, it never come up in my browser.
here is my routing table in the ubuntu laptop after the pptp connected.
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.1 * 255.255.255.255 UH 0 0 0 ppp0
119246039114.ct 10.0.34.254 255.255.255.255 UGH 0 0 0 eth0
192.168.1.0 * 255.255.255.0 U 0 0 0 ppp0
10.0.34.0 * 255.255.255.0 U 0 0 0 eth0
link-local * 255.255.0.0 U 1000 0 0 eth0
default 10.0.34.254 0.0.0.0 UG 100 0 0 eth0

192.168.1.0 is the remote network.

it is so strange!

then i try to connect by another windows laptop from office, it just works seamlessly.

anyone can help?

thanks!
Joseph

Joe_Zhu 12-10-2009 12:36 AM

Hi,
when i compare the windows pptp and linux pptp connection i found the different in the gateway.
in linux:
ppp0 Link encap:Point-to-Point Protocol
inet addr:192.168.1.180 P-t-P:192.168.1.1 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1446 Metric:1

in windows

IP address........: 192.168.1.180
Subnetmask........: 255.255.255.255
Default Gateway...: 192.168.1.180

but i don't know why in linux the p-t-p will become 192.168.1.1 ? where to set it??

pls. help!
Joseph

Web31337 12-10-2009 03:00 AM

what about gateway in linux?
P-t-P is set by VPN serv.
can you ping 192.168.1.1? are you sure you enabled web interface for LAN? do you access it as http://192.168.1.1/ ? i presume it's an IP of router.
btw have no idea why windows tells a gateway is your own ip, it can't be.
what's wrong with subnet mask? i think it shouldn't be 255.255.255.255, usually it's 255.255.255.0.
i think you should look into your router's settings.

scheidel21 12-10-2009 07:28 AM

No point to point has a subnet mask of 255.255.255.255 becuase it is a point to point that's normal. I don't know why the browser isn't working but it seems to me that his PPTP connection is working if he can ping ssh, etc... it seems more browser specific. We need to know the full story IP network range key IPs like the router, and the server setup on the DD-WRT linksys in order to help better.

Joe_Zhu 12-11-2009 12:03 AM

Hi,
my DD-WRT router ip address is 192.168.1.1, it is the default gateway for all equipment in this 192.168.1.0/24 network. it connect to ISP by ethernet and DHCP. (no modem, pppoe)

and the pptp server setting are;

Server IP: 192.168.1.1
Client IP(s): 192.168.1.180-190
broadcast support: enable
Force MPPE enceryption: enable

what will be the problem?

Joseph

p.s. i tried to change the server ip to 192.168.1.2, as told in DD-WRT wiki.
but still not work for my linux pptp client ...
again the windows client has no problem.

scheidel21 12-11-2009 08:01 AM

Might this have anything to do with Proxyarp settings maybe data is not getting back to it properly, additionally your server address if I recall correctly should be the same as the server itself. However, it looks like everything is setup properly, and that you have networking, as you can use other services, I am baffled.

Joe_Zhu 12-11-2009 09:54 AM

Hi What is proxyarp? where i can set it in the ubuntu system?
pls. advice, thanks!!

Joseph

Joe_Zhu 12-13-2009 08:21 PM

hi,

I am studying the proxy arp issue, it seems that it should be in the router (DD WRT).

the router seems somehow not passing the traffic. i found my ssh session freeze after the connection established for awhile.

another point is the linux VPN client get the gateway ip address as specified by the router, but for windows machine, it just use the client ip address as the gateway and seem it make a different. so i guess it could be a work around that let my linux vpn client to set the gateway same as the it's ip in this ppp connection, but i don't know how to do it.....

thanks!
Joseph

Joe_Zhu 12-17-2009 08:20 PM

Hi All,

the pptp in my ubuntu still not work, however, i have a ip route add in the ip-up.d

which is
#!/bin/sh
if [ "${PPP_IPPARAM}" = "HOME_VPN" ]; then
/sbin/route add -net 192.168.1.0/24 dev ${IFNAME}
fi

after the ppp connection up,
in the route table, there are 2 entries regarding to the remote network '192.168.1.0'

Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.1 * 255.255.255.255 UH 0 0 0 ppp0
xxxxxxxxxxxx.xx 10.0.34.254 255.255.255.255 UGH 0 0 0 eth0
192.168.1.0 * 255.255.255.0 U 0 0 0 ppp0
10.0.34.0 * 255.255.255.0 U 0 0 0 eth0
link-local * 255.255.0.0 U 1000 0 0 eth0
default 10.0.34.254 0.0.0.0 UG 100 0 0 eth0

i would like to add the gateway 192.168.1.1 in 192.168.1.0 and hope it will be help.
but i tried to add gw option in the above route add statement but seems didn't work ....

any suggestion?

Joseph


All times are GMT -5. The time now is 02:24 PM.