How to connect to VPN

2013-03-05 Thread Любомир Григоров
I have been trying to find a way to connect to a PPTP or L2TP VPN for over
a year now. There is no GUI client that I know of and any text
configuration I try with pptpclient fails.

How can I connect to a VPN, the fast way as in Windows, OS X and GNU/Linux.
I have the following information (no internal IP's or ranges or NAT):

Gateway - I have the URL to connect to, I suppose I can map it to IP
Username
Password
MSCHAP
MSCHAPv2
Use point-to-point encryption (MPPE)
Allow BSD data compression
Allow deflate data compression
Use TCP header compression


How can I connect to the VPN with just this information above? Everything I
find requires internal IP's, ranges, NAT and other things making a 5 second
gui configuration take months. The VPN server supports PPTP and L2TP as
mentioned. Any advice on how I can connect will be helpful.

-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


VPN client for MSCHAP

2012-05-16 Thread Любомир Григоров
Hello list, I am having a horrible time trying to connect to a PPTP VPN
with MSCHAP and  MSCHAPv2 and MPPE. I have tried pptpclient and mpd5 and
both fail on many counts.

I assume there is no gui client at this time, but can I get some sample
config file for ANY vpn client on FreeBSD... I need user/pass auth with
MPPE and login method MSCHAP MSCHAPv2, connecting to URL not an IP.

Cheers.

-- 
bgalakazam
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Wine for Diablo 3 on FreeBSD 9.0R amd64

2012-05-16 Thread Любомир Григоров
We have to wait, unfortunately. I am using a Linux partition with Wine
meanwhile. As long as it's not mainstream, it will be hard to do. Not to
mention port is at 1.4.

2012/5/16 alphachi alpha...@mediaspirit.org

 Can anybody play diablo 3 with wine on FreeBSD 9R amd64?

 Wine 1.5.4,1 64bit can't running Diablo III perhaps because of Agent.exe.

 see http://appdb.winehq.org/objectManager.php?sClass=versioniId=25953.

 Thanks!
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 freebsd-questions-unsubscr...@freebsd.org




-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: why newline scape sequence does not work in Freebsd's bash

2011-12-30 Thread Любомир Григоров
try with the -e flag:

$ FRUIT_BASKET=apples oranges pears
$ echo -e 'My fruit basket contains: \n $FRUIT_BASKET'
My fruit basket contains:
$FRUIT_BASKET


Why  the scape sequence; newline (\n) does not work  in  FreeBSD's  bash,
 However, it works  both  in Linux and Solaris bash?


-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: why newline scape sequence does not work in Freebsd's bash

2011-12-30 Thread Любомир Григоров
I used ' singe quotes, so double quotes is:

$ FRUIT_BASKET=apples oranges pears
$ echo -e My fruit basket contains: \n $FRUIT_BASKET
My fruit basket contains:
apples oranges pears


На 30 декември 2011, 17:04, Любомир Григоров nm.kn...@gmail.com написа:

 try with the -e flag:

 $ FRUIT_BASKET=apples oranges pears
 $ echo -e 'My fruit basket contains: \n $FRUIT_BASKET'
 My fruit basket contains:
 $FRUIT_BASKET


 Why  the scape sequence; newline (\n) does not work  in  FreeBSD's  bash,
  However, it works  both  in Linux and Solaris bash?


 --
 Lyubomir Grigorov (bgalakazam)




-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD EC2 Status

2011-12-28 Thread Любомир Григоров
My friend did an installation to try it out. He is currently running Apache
for over a week with no problems. Nothing heavier was done.


-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Three button mouse emulation

2011-10-25 Thread Любомир Григоров
This is how I got 3-button to work, with middle-button scroll. In
/etc/rc.conf

moused_enable=YES
moused_flags=-V

-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Recommended nVidia card for cuda/opencl on FreeBSD?

2011-10-23 Thread Любомир Григоров
Do you want CUDA 1.0, 1.1, 1.2, 1.3, 2.0, 2.1 compatible? I have a 9800GT
(pretty cheap now-a-days + it runs modern games), which has the lowest CUDA
1.0.

Also, I am interested in how you will do the work. Currently, it's necessary
to run the CUDA SDK and Toolkit under Linux emulation or chroot, despite the
fact that the NVIDIA drivers for FreeBSD include CUDA support. According to
this,
http://blogs.freebsdish.org/jhb/2010/07/20/using-cuda-with-the-native-freebsdamd64-nvidia-driver/,
you still need to compile the CUDA apps under Linux, where the SDK is. Only
after that you can run the binaries on FreeBSD.


-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: ZFS on Dell with FreeBSD

2011-10-19 Thread Любомир Григоров
If by OpenSolaris you mean OpenIndiana, (OpenSolaris is dead), both OI and
FreeBSD have the same ZFS pool version (28). There is no native advantage
of using OI over FreeBSD regarding ZFS.

If you want the latest ZFS with cryto (30), you need to go with closed
source Solaris 11 Express, which you need to buy a support license (a no-no)
if you want to use in production or commercially.

2011/10/19 per...@pluto.rain.com

 Damien Fleuriot m...@my.gd wrote:

  Why would you post about freebsd on opensolaris' list is beyond me.

 Presumably because opensolaris is the ZFS upstream.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 freebsd-questions-unsubscr...@freebsd.org




-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Wine-fbsd64 updated to 1.3.29 (32bit Wine for 64bit FreeBSD)

2011-10-18 Thread Любомир Григоров
version 1.30.1 fixed the no fonts issue in Steam source games. Thank you for
porting and keep up the good work


-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: LibreOffice Writer crashes when accessing the fonts pull down list

2011-10-13 Thread Любомир Григоров
Same crash issue on pull down of the fonts menu here as well. I used the
precompiled PBI in PCBSD 9.0-BETA3

$ uname -a
FreeBSD NEONZ 9.0-BETA3 FreeBSD 9.0-BETA3 #1: Tue Sep 27 13:47:21 PDT 2011
r...@build9x64.pcbsd.org:/usr/obj/pcbsd-build90/fbsd-source/9.0/sys/GENERIC
amd64

-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Linux 64bit compatability

2011-10-07 Thread Любомир Григоров
Is this development documented anywhere or is there a place to track the
status? Is this something planned for a particular version or it won't be
done any time soon?

-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org