Hello guys,
Can you help me fix my problem, basicly wile connection to my VPN (PPTP) I get disconected.
I use CentOS, as a client and terminal as network manager.
Here is the out put :
Code:
[root@localhost ~]# tail -f /var/log/messages
Nov 21 08:53:47 localhost pppd[2332]: pppd 2.4.5 started by root, uid 0
Nov 21 08:53:47 localhost pppd[2332]: Couldn't get channel number: Input/output error
Nov 21 08:53:47 localhost pppd[2332]: Exit.
Nov 21 08:55:28 localhost pppd[2348]: pppd 2.4.5 started by root, uid 0
Nov 21 08:55:28 localhost pppd[2348]: Failed to set PPP kernel option flags: Inappropriate ioctl for device
Nov 21 08:55:28 localhost pppd[2348]: Using interface ppp0
Nov 21 08:55:28 localhost pppd[2348]: Connect: ppp0 <--> /dev/pts/2
Nov 21 08:55:28 localhost pppd[2348]: Modem hangup
Nov 21 08:55:28 localhost pppd[2348]: Connection terminated.
Nov 21 08:55:28 localhost pppd[2348]: Exit.
Here is my configuration file :
Quote:
[root@localhost ppp]# cat /etc/ppp/chap-secrets
# Secrets for authentication using CHAP
# client server secret IP addresses
brzbs PPTP test! *
[root@localhost ppp]#
|
Quote:
[root@localhost ppp]# cat /etc/ppp/peers/nix
pty "pptp vpn.mysite.com --nolaunchpppd"
name brzbs
remotename PPTP
require-mppe-128
file /etc/ppp/options
ipparam nix
[root@localhost ppp]#
|
Quote:
[root@localhost ppp]# cat /etc/ppp/options.pptp
lock
noauth
refuse-pap
refuse-eap
refuse-chap
nobsdcomp
nodeflate
require-mpp-128
[root@localhost ppp]#
|
Quote:
[root@localhost ppp]# cat /etc/ppp/ip-up.d/route-traffic
#!/bin/bash
NET="10.10.4.0/24"
IFACE="ppp0"
#IFACE=$1
route add -net ${NET} dev ${IFACE}
[root@localhost ppp]#
|
Hope you can help.