Answer the question
In order to leave comments, you need to log in
Pfsense 2.0.1: WAN PPTP client connection issues?
Hello!
Your expert help is required. The conditions are as follows:
1. There is a central office. It now has a PPTP server based on Windows Server 2003 (it still has a lot of things screwed up by the previous administrator - now I'm sorting it out and getting ready to move, but there is no way to replace it yet)
2. There is a remote warehouse. There are several clients who use PPTP (each independently starts the connection on their computer) when they need to go to the central office.
As you can see, the scheme is poor and it would be right to start with a rotator in the office, which will hold the VPN session to the main office. In the future, I will also install Pfsense in the central office and raise IPSEC-VPN between them.
Now I want to put a gateway based on PfSense 2.0.1 in the warehouse and, on its basis, already raise a PPTP session to a screw PPTP server in the central office.
I ran into a problem when setting up the configuration:
Warehouse->Pfsense 2.0.1->PPTP->PPTP Server (Windows 2003)->
Pfsense 2.0.1 central office does not raise the session to the PPTP server.
I tried to edit according to the instructions:
www.thin.kiev.ua/router-os/50-pfsense/680-pptp-cli...
It still doesn't work.
PPTP Server - Windows 2003 works - Windows clients normally connect to it via PPTP.
Please help with advice, maybe someone came across?
Z.Y. I know that PPTP now decrypts perfectly, but I need your help to at least temporarily solve this problem.
Answer the question
In order to leave comments, you need to log in
Thanks to all. Problem solved. Set up according to the link.
www.thin.kiev...pfsense-20.html
It turned out that the whole thing was not in Pfsense, but in Windows - it was necessary to remove all authentication protocols in the RRAS settings and leave only:
- MS-Chapv2
- MS-Chap
- Chap
try vyatta, there is no web muzzle, but many times more flexibility
I would do something like this:
CREATE TABLE IF NOT EXISTS `questions` (
`id` int unsigned not null AUTO_INCREMENT,
`created` timestamp not null default '0000-00-00 00:00:00',
`title` varchar(256) not null,
`content` text not null,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
CREATE TABLE IF NOT EXISTS `answers` (
`id` int unsigned not null AUTO_INCREMENT,
`created` timestamp not null default '0000-00-00 00:00:00',
`question_id` int unsigned not null,
`user_id` int unsigned,
`content` varchar(4096) not null,
PRIMARY KEY (`id`),
CONSTRAINT `answer_ibfk_1` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE,
CONSTRAINT `answer_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB;
/* Подсчет кол-ва ответов нужного вопроса */
SELECT COUNT(*)
FROM answers
WHERE answers.question_id = 'id_вопроса';
/* Вывод вопроса со всеми ответами */
SELECT q.id, q.created, q.title, q.content, a.created as answer_created, a.user_id as answer_user_id, a.content as answer_content
FROM questions q
LEFT JOIN answers a ON q.id = a.question_id
ORDER BY q.created DESC
LIMIT 10;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question