Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK)


Background

Pelago is a web design and development agency in Santa Barbara, California. Since our humble beginnings in August of 2000, we’ve seen the Internet landscape evolve exponentially in the last nine years. Our most current challenge as a creative and engineering agency is in embracing diversity in platforms and the inevitable shift towards the remote office. We use three different operating systems — Windows, OS X and Linux — on a daily basis. In addition to developing web-based project management software that is compatible with all three platforms, our designers and developers rely on them inside and outside of the office. Tunneling through the firewall from outside the office was our next requirement for embracing a diverse and distributed remote office.

Our SonicWall router makes it easy enough to establish a VPN connection using Windows. There is a client that can be downloaded from the SonicWall web site. What about other operating systems? Our developers often use Ubuntu Linux from home and required a way to VPN into the office. Once established, a VPN connection allows access to development servers, remote desktops, and other network resources inside the firewall; so you can see why it would be essential for the remote office.

The problem, as most Linux users out there already know, is that setting up a VPN connection in Ubuntu Linux is not very easy. After much trial and error, here is how we got the VPN working on Ubuntu Linux using Openswan.


Configuring the SonicWall Router

Login to your SonicWall router admin and make the following adjustments to the VPN settings.

  1. Click on the VPN link and note the Unique Firewall Identifier for your SonicWall router. You will need it later for the value sonicwall.unique.identifier.
    SonicWall VPN Settings
  2. Under VPN Policies, create or edit the ‘GroupVPN’ policy.
  3. Click on the General tab and set the following:
    SonicWall VPN General Settings

    • IPSec Keying Mode: IKE using Preshared Secret
    • Shared Secret: shared.secret.key (enter your secret key here)
  4. Click on the Proposals tab and set the following:
    SonicWall VPN Proposals Settings

    • IKE (Phase 1) Proposal
      DH Group: Group 5
      Encryption: 3DES
      Authentication: SHA1
    • Ipsec (Phase 2) Proposal
      Protocol: ESP
      Encryption: 3DES
      Authentication: SHA1
    • Enable Perfect Forward Secrecy (checked)
      DH Group: Group 5


Installing Openswan

If you are using Ubuntu, open a terminal window and type in:
sudo apt-get install openswan
The install will ask you a few questions about how you want to set it up. Select the suggested default for each step. This will install Openswan and create the ipsec.conf and ipsec.secrets configuration files.


Configuring Openswan

Add the following connection parameters to your /etc/ipsec.conf file:
conn sonicwall
     type=tunnel
     left=192.168.2.31 #your IP
     leftid=@GroupVPN
     leftxauthclient=yes
     right=xxx.xxx.xxx.xxx #IP address of your sonicwall router
     rightsubnet=192.168.1.0/24 #gateway IP for your LAN. This will work for most
     rightxauthserver=yes
     rightid=@sonicwall.unique.identifier
     keyingtries=0
     pfs=yes
     aggrmode=yes
     auto=add
     auth=esp
     esp=3DES-SHA1
     ike=3DES-SHA1
     authby=secret
     #xauth=yes

Update: After upgrading to Ubuntu 9.10 a few things changed in the conf file. First, I had to comment out ‘xauth=yes’ as it was throwing an error.

Add the following line to your /etc/ipsec.secrets file
@GroupVPN @sonicwall.unique.identifer : PSK "shared.secret.key"


Starting and stopping the VPN connection

Starting ipsec and opening the VPN connection
sudo ipsec setup ––start
sudo ipsec auto ––add sonicwall (note: if you change the configuration files, you'll need to run 'sudo ipsec auto ––replace sonicwall' to reload the file)
sudo ipsec whack ––name sonicwall ––initiate

Closing the VPN connection and stopping ipsec
sudo ipsec whack ––name sonicwall ––terminate
sudo ipsec setup ––stop


References

The following links were useful for getting the VPN connection up and running on Ubuntu Linux:
Openswan wiki page for SonicWall routers:
http://wiki.openswan.org/index.php/Openswan/SonicWall
SonicWall PDF instructions for using Agressive Mode and IKE with Pre-shared Keys
http://www.sonicwall.com/downloads/SonicOS_Enhanced_to_Openswan_Using_Aggressive_Mode_IKE_with_PreShared_key.pdf

11/05/2010 Update:
We are now on our third SonicWall Router. The original 170 didn’t have enough features for us. It’s replacement, the 2040 recently went belly up. We are now running on the 2400. When we made the upgrade the Linux VPN stopped working. Checking the logs on the 2400 revealed a message stating the IDs did not match during Phase 1 IKE. It took some googling to figure out but the fix was to change the leftid so that it matched the name of the security policy. In this case, GroupVPN:

     leftid=@GroupVPN

Another update you can make to the above configuration is to add the following lines to your configuration to allow VPN access from any IP:

Add interfaces

config setup
     interfaces=%defaultroute

conn sonicwall
     left=%defaultroute

Tags: , , , , ,
Bookmark: Post to Del.icio.us Post to Digg Post to Google Post to Ma.gnolia Post to MyWeb Post to Newsvine Post to Reddit Post to Simpy Post to Slashdot Post to Technorati

60 Responses to “Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK)”

  1. John Says:

    Update:

    I’ve since grown weary of typing in the VPN commands line-by-line every time I want to start the VPN. So i’ve thrown the commands into a bash script with the following format. Now I just type ‘sh vpn.sh’ and everything boots up perfectly. Add the following to a bash script:

    sudo ipsec setup ––start
    sudo ipsec auto ––replace pelago
    sudo ipsec whack ––isten
    sudo ipsec whack ––name pelago ––initiate

  2. Jude Says:

    I can not get this working. I do not know what I am doing wrong. There is very limited info on this subject, and the software company I am dealing with does not support linux. Please help!
    Thanx

  3. ed Says:

    Found your how-to by Google (of course) and I cannot seem to get it to work even though I have replicated your setup exactly.

    >> scott@scott-laptop:/etc$ sudo ipsec whack –name sonicwall –initiate
    003 “sonicwall” #10: multiple transforms were set in aggressive mode. Only first one used.
    003 “sonicwall” #10: transform (5,2,2,0) ignored.
    002 “sonicwall” #10: initiating Aggressive Mode #10, connection “sonicwall”
    003 “sonicwall” #10: multiple transforms were set in aggressive mode. Only first one used.
    003 “sonicwall” #10: transform (5,2,2,0) ignored.
    112 “sonicwall” #10: STATE_AGGR_I1: initiate
    003 “sonicwall” #10: Informational Exchange message must be encrypted

    Has you encountered this specific error and found a work around? (The sonicwall logs indicate a payload error and that the IKE ID’s are mismatched, but I see now way to configure that in the GVC)

  4. John Says:

    ed,

    I have not encountered that error before, however, it sounds like you are heading in the right direction. The sonicwall logs always gave me what I needed to troubleshoot configuration issues. Second I would start googling the error messages you are receiving to see if anyone else has encountered them.

    John

  5. Daniel Says:

    I am receiving the same errors as Scott. I have googled around and though I have found several people reporting similar problems I have not found a solution. This thread http://ubuntuforums.org/showthread.php?t=527423 seems to come close but after experimenting with various configs I still recieve the error. Has anybody found a solution?

  6. Daniel Says:

    I was able to get an XAUTH connection using the following document as a guide.

    http://www.sonicwall.com/downloads/SonicOS_Enhanced_to_Openswan_Using_GroupVPN_with_XAUTH.pdf

    However. after following the configurations specified I still received an error
    “unexpected STRING [xauth]”
    upon running
    ipsec setup –start

    It turns out that XAUTH is no longer a supported parameter. the solution was to remove the entry from the ipsec.conf file. Now authentication works flawlessly!

    I have listed my settings below.

    ###Sonicwall Settings###

    VPN–>Settings–>WAN Group VPN
    General Tab
    ***Same as above
    Proposals Tab
    ***Same as above EXCEPT uncheck “Enable Perfect Forward Secrecy”
    Advanced Tab
    -check “Require Authentication of VPN Clients via XAUTH”
    -select authorized user group, I used “Trusted Users”
    Clients Tab
    Virtual Adapter Settings should be set to “None”

    VPN–>Advanced
    NAT Traversal should be checked

    Users
    Each authorized user must a member of the authorized group and have “LAN Primary Subnet” listed under the VPN Access Tab

    ###END Sonicwall Settings###

    ###BEGIN ipsec.conf ####

    version 2.0

    config setup
    nat_traversal=yes
    nhelpers=1
    virtual_private=%v4:10.0.0.0/8,%v4:192.168.0.0/16,%v4:172.16.0.0/12
    oe=off
    protostack=netkey

    conn sonicwall
    type=tunnel
    left=xxx.xxx.xxx.xxx #My IPv4 address
    leftsubnet=$MYIPv4ADDRESS/32 #My IPv4 address/32
    leftid=@GroupVPN
    leftxauthclient=yes
    right=mysonicwall.fqdn.com #sonicwall ip or fqdn
    rightsubnet=192.168.xxx.0/24 #sonicwall subnet
    rightxauthserver=yes
    rightid=@MY.UNIQUE.IDENTIFIER
    keyingtries=0
    pfs=no
    auto=add
    auth=esp
    esp=3des-sha1
    ike=3des-sha1
    authby=secret
    aggrmode=yes

    ###END ipsec.conf ####

    ###BEGIN ipsec.secrets ####

    @GroupVPN @MY.UNIQUE.IDENTIFIER : PSK “MY.PRESHARED.KEY”

    ###END ipsec.conf ####

  7. Daniel Says:

    One more thing. It is important that you tab all listed entries in ipsec.conf except “version 2.0″ “config setup” and “conn sonicwall”

  8. Daniel Says:

    I also believe it is important to have “@GroupVPN” as the leftid

  9. John Says:

    Daniel,

    Thanks for pointing out the xauth issue. I had the same issue a few months ago and had posted the following to the blog post above. However, it bears repeating:

    Update: After upgrading to Ubuntu 9.10 a few things changed in the conf file. First, I had to comment out ‘xauth=yes’ as it was throwing an error. Second, I had to use my own static IP instead of %defaultroute. If you are using DHCP, %defaultroute may still work, but I have a static IP and had to change this.

  10. Lance Finfrock Says:

    I good solution with connecting Ubuntu to the SonicWall VPN is to use the SSL-VPN with version 4.0.665 of NetExtender. It works great with Ubuntu 10.10.

    With this solution one does not have to configure anything on the client side only install the NetExtender.

  11. John Says:

    If anyone is experiencing errors like:
    “Informational Exchange message must be encrypted” or that IKE IDs are mismatched, change the leftid to be @GroupVPN. Like this:

    leftid=@GroupVPN

    After upgrading our sonicwall to a 2400 I started having all of the problems described in the comments here and that is what fixed it.

    Thank you everyone for your contributions to this subject!

  12. Geoff Says:

    There is an openswan VPN manager for network-manager in Ubuntu as of 10:04 IIRC..

  13. John Says:

    It looks like Ubuntu may now support IPSec. The documentation, however, is not very clear on how to do it:
    https://help.ubuntu.com/community/VPNClient

  14. Alternative Says:

    Every now and then I take another stab at getting this to work but I never get past the part where there is a timeout after being prompted for username and password.

    In the mean time, what works really well is this:

    Set up a simple Windows XP VirtualBox inside of your linux machine. Make sure the box has two virtual network adaptors, 1 Bridged, and 1 Host-only.

    Install the Sonic GlobalVPN client inside the Windows XP virtual box. Use the client to connect to the office LAN. Use Windows Connection Sharing to share this connection with the Host-Only network interface (you’ll need to use Virtual Box’s global settings to disable the DHCP server on that host-only virtual network, and you’ll need to set that interface in linux (it’s vbnet something, use ifconfig to see what it’s called) to get an IP address through DHCP. Finally, add some static routes in linux so that any connections to the office network’s family of IP addresses are routed through the IP address of the virtual box’s host-only interface.

    Been using this since day one and the tunnel stays stable for days at a time, and my linux apps all have access to the office network. Every few weeks when I get in the right mood I try to get OpenSwan to work again and then give up after a few hours.

  15. fedesen Says:

    I have a question regarding the config file and secrets file.

    Do the ids for GroupVPN and identifier get replaced by actual values and do I keepthe @-sign? I.e, say my policy is called WAN GjroupVPN and the id is 12345, what would the to files look like?

    leftid=@WAN GroupVPN or leftid=WAN GroupVPN or leftid=@GroupVPN?

    rightid=@sonicwall.unique.identifier or rightid=@12345 or rightid=12345

    and similar question for secrets file.

    Hope some can help.

  16. John Says:

    fedesen, the proper format would be:
    leftid=@GroupVPN

  17. uk vpn Says:

    cheap vpn…

    [...]Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK) :: Pelago :: web design & development blog[...]…

  18. TechLW Says:

    Really nice,
    very cool sharing.
    http://www.TechLW.com

  19. Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK) - Stack Overflow Says:

    Kramer auto Pingback[...] long time trying to figure this one out and thought others would be interested in this information: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... ubuntu linux vpn [...]

  20. Ubuntu Linux: How to setup a VPN connection to a SonicWall Says:

    Kramer auto Pingback[...] Ubuntu Linux: How to setup a VPN connection to a SonicWall [...]

  21. How to setup a VPN connection to a SonicWall... - Ahsan Ali - FriendFeed Says:

    Kramer auto Pingback[...] Ali How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK) – http://www.pelagodesign.com/blog... May 31 from delicious – Comment – Like – Share Andy Bold liked [...]

  22. Ubuntu Linux: How to setup a VPN connection to a SonicWall router… | The Online Doc – Call Now: 877-321-1112 Says:

    Kramer auto Pingback[...] Ubuntu Linux: How to setup a VPN connection to a SonicWall router…  Bookmark this on Delicious – Saved by karansachdev to sonicwall vpn ubuntu linux – More about this bookmark Read the rest of the story… [...]

  23. paul jurco - how to's and answers Says:

    links from Technorati#when debugging, it exists when it works ipsec whack –name sonicwall –initiate #after it works ipsec auto –up sonicwall Debug for phase1 and 2: tcpdump -i eth0:0 host ipfosonicdevice Logs: tail -f /var/log/secure

    References:
    http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwall-router-using-openswan-and-pre-shared-keys-psk/
    http://www.sonicwall.com/downloads/SonicOS_Enhanced_to_Openswan_Using_GroupVPN_with_XAUTH.pdf

  24. ٶ_ubuntu װopenswan Says:

    Kramer auto Pingback[...] [...]

  25. system admin life » Blog Archive » openswan and sonicwall vpn tunnel Says:

    Kramer auto Pingback[...] http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... [...]

  26. elimisteve's Bookmarks on Delicious Says:

    Kramer auto Pingback[...] Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys… SAVE [...]

  27. Your page is now on StumbleUpon! Says:

    Kramer auto Pingback[...] Your page is on StumbleUpon [...]

  28. Ubuntu, Sonicwall, and OpenSwan, Part 1 | xantha.org Says:

    [...] I see a lot of people are using OpenSwan to connect to a Sonicwall appliance from Ubuntu (pelago, openswan, [...]

  29. opensolaris IRC logs [December 5 - 2009] Says:

    Kramer auto Pingback[...] much trouble too [00:44:51] *** TBCOOL has joined #opensolaris [00:46:15] <TommyTheKid> gnut: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... [00:46:34] <TommyTheKid> thats not solaris, but if you can make it work with [...]

  30. Ubuntu Linux: I Like It, It Doesn't Like Me | ZDNet Says:

    Kramer auto Pingback[...] solutions for pretty much every VPN connection can be found to work with Linux. Solutions for Sonicwall VPN connections are complex, but workable. Cisco makes their own VPN clients, and OpenVPN is [...]

  31. Ubuntu Linux: I like it, but it doesn't like me | ZDNet Says:

    Kramer auto Pingback[...] solutions for pretty much every VPN connection can be found to work with Linux. Solutions for Sonicwall VPN connections are complex, but workable. Cisco makes their own VPN clients, and OpenVPN is [...]

  32. Ubuntu Linux: Как настроить VPN подключение к маршрутизатору SonicWall использованием Openswan и Pre-Shared ключей (PSK) Says:

    Kramer auto Pingback[...] других были бы заинтересованы в этой информации: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  33. Ubuntu Linux: 如何设置使用 Openswan 和预共享密钥 (PSK) 的 SonicWall 路由器的 VPN 连接 - efreedom Says:

    Kramer auto Pingback[...] VPN 连接 花了很长的时间,想这一,以为别人希望在此信息: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... 问题: jjriv 来自这个问题: [...]

  34. Ubuntu Linux: Cómo configurar una conexión VPN a un enrutador de SonicWall usando Openswan y compartida previamente Keys (PSK) - efreedom Says:

    Kramer auto Pingback[...] tiempo tratando de averiguar este uno y cree otros estarían interesados en esta información: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... Pregunta por: jjriv Esta pregunta se originó a partir de: [...]

  35. Ubuntu Linux: Как настроить VPN-подключение к маршрутизатору SonicWall, используя Openswan и предварительных ключей (ПСК) - efreedom Says:

    Kramer auto Pingback[...] что другие будут заинтересованы в этой информации: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... Вопрос по jjriv Этот вопрос возник из: [...]

  36. Ubuntu VPN Using Sonicwall - Ubuntu - Stack Exchange Says:

    Kramer auto Pingback[...] http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... [...]

  37. Side 3 » Anvender du Linux privat? » Afstemninger » Forum | IT-dialog Says:

    Kramer auto Pingback[...] er en standard Sonic-wall løsning.XorpiZ (#120) …Om den virker eller ej skal jeg ikke kunne sige. Vi bruger ikke Sonicwall på [...]

  38. vpn sonicwall ubuntu - Hitta allt om vpn sonicwall ubuntu på eniro.se Says:

    Kramer auto Pingback[...] Ubuntu Linux: How to setup a VPN connection to a SonicWall router … 18 May 2009 … Contents Background Configuring the Sonicwall Router Installing Openswan Configuring Openswan Starting and stopping the VPN. http://www.pelagodesign.com • engelska [...]

  39. Ubuntu Linux: Como configurar uma conexão VPN com um roteador SonicWall usando Openswan e chaves pré-compartilhada (PSK) - efreedom Says:

    Kramer auto Pingback[...] tentando descobrir um presente e pensei que outras pessoas estariam interessadas em informações: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... Esta questão foi originado stackoverflow.com Pergunta por [...]

  40. Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK) Drija Says:

    [...] Spent a long time trying to figure this one out and thought others would be interested in this information: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... [...]

  41. Ubuntu Linux: Cómo configurar una conexión VPN a un router con SonicWall Openswan y claves pre-compartidas (PSK) Says:

    Kramer auto Pingback[...] tratando de esta cifra un out y pensó que otros estarían interesados en esta información: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  42. Ubuntu Linux: Come configurare una connessione VPN a un router con SonicWall Openswan e pre-shared keys (PSK) Says:

    Kramer auto Pingback[...] tempo cercando di capirci qualcosa e di pensiero altrui sarebbe interessato a queste informazioni: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  43. Ubuntu Linux: Wie man eine VPN-Verbindung zu einem Router mit SonicWall Openswan und Pre-shared Keys (PSK) Says:

    Kramer auto Pingback[...] Zeit versucht, diese herauszufinden und dachte andere wäre an diesen Informationen interessiert: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  44. Ubuntu Linux: Como configurar uma conexão VPN com um roteador SonicWall com Openswan e chaves pré-compartilhada (PSK) Says:

    Kramer auto Pingback[...] muito tempo tentando descobrir isso e pensei que outros estariam interessados em informações: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  45. Ubuntu Linux: Jak konfiguracja połączenia VPN z routerem SonicWall przy użyciu Openswan i Pre-shared Keys (PSK) - efreedom Says:

    Kramer auto Pingback[...] próby rysunek to jedno i pomyślałem, inni mogłoby być zainteresowane w niniejszej informacji: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... To pytanie pochodzi z stackoverflow.com Pytanie zadane przez [...]

  46. Ubuntu Linux : วิธีการตั้งค่าการเชื่อมต่อ VPN ไปยัง router SonicWall ใช้ Openswan และคีย์ Pre - สาธารณะ (PSK) Says:

    Kramer auto Pingback[...] http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  47. 우분투 리눅스 : 어떻게 설정하는 라우터 SonicWALL Openswan 및 Pre - 공유된 키 (PSK)를 사용하여 VPN 연결 Says:

    Kramer auto Pingback[...] 나가과 생각을 다른 사람이 정보에 관심을 가질만한이 중 하나를 내려고 : http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  48. Ubuntu Linux操作系統:如何設置一個 VPN連接到SonicWall的路由器使用Openswan和預共享密鑰(PSK)的 Says:

    Kramer auto Pingback[...] 花了很長的時間來進行這一個數字,以為別人會感興趣這樣的信息: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  49. Ubuntu Linux: Comment configurer une connexion VPN à un routeur SonicWall utilisant Openswan et clés pré-partagées (PSK) Says:

    Kramer auto Pingback[...] de comprendre celle-ci et pensé que d'autres seraient intéressés par cette information: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  50. Linux VPN client for Sonicwall firewall Says:

    Kramer auto Pingback[...] Linux VPN clients. As for SonicWall, that depends on how VPN is implemented on it. There's a few articles on this very topic already. Last edited by xeleema; Today at 02:23 [...]

  51. UbuntuのLinuxの場合:どのように設定するSonicWALLのルータOpenswanと事前共有キー(PSK)を使用してVPN接続 Says:

    Kramer auto Pingback[...] http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  52. Konfiguracja vpn - www.komputer.zonetv.pl Says:

    Kramer auto Pingback[...] Aby wdrożyć rozwiązanie sieci VPN w firmie Electronic Inc., administrator sieci dokonuje analizy i podejmuje stosowne decyzje w następujących kwestiach: http://technet.microsoft.com/pl-pl/library/cc781006( …Ubuntu Linux: How to setup a VPN connection to a SonicWall rou … [...]

  53. Ubuntu Linux: Bagaimana men-setup koneksi VPN ke router SonicWall menggunakan Openswan dan Kunci pra-berbagi (PSK) Says:

    Kramer auto Pingback[...] mencoba untuk mencari yang satu ini dan berpikir orang lain akan tertarik dengan informasi ini: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... #: [...]

  54. Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK) - linux, ubuntu, vpn, ipsec - TechQues.com Says:

    Kramer auto Pingback[...] Spent a long time trying to figure this one out and thought others would be interested in this information: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... [...]

  55. Bookmarks for maggio 3rd through maggio 6th | Crisis Says:

    Kramer auto Pingback[...] Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys… – [...]

  56. Ubuntu VPN Using Sonicwall - Stream Reader Says:

    Kramer auto Pingback[...] http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... [...]

  57. Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys (PSK) | Readme Spot Says:

    Kramer auto Pingback[...] long time trying to figure this one out and thought others would be interested in this information: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal... Question posted on Server Fault by jjriv   Content aggregated from cc-wiki-dump [...]

  58. Online Time Tracking & Task Management Using Intervals Mini | Project management and time tracking blog for web designers and small business :: the Intervals Blog by Pelago Says:

    Kramer auto Pingback[...] Ubuntu Linux: How to setup a VPN connection to a SonicWall router using Openswan and Pre-shared Keys… Says: August 24th, 2010 at 7:17 am [...]

  59. sysadmin.md | news, guides, tips and tricks Says:

    Kramer auto Pingback[...] OpenVPN Wiki – Trouble with Routing How to Install OpenVPN in Ubuntu 11.04 | Supersaniya Ubuntu Linux: How to setup a VPN connection to a SonicWall … openvpn集合.pdf (application/pdf 对象) DNS-323 – OpenVPN How to bridge networks with [...]

  60. Ubuntu Linux: Wie man eine VPN-Verbindung zu einem SonicWall-Fräser unter Verwendung Openswan und der Vor-geteilten Schlüssel gründet (PSK) Says:

    Kramer auto Pingback[...] darzustellen, dass diese heraus und gedacht anderen an diesen Informationen interessiert seien Sie: http://www.pelagodesign.com/blog/2009/05/18/ubuntu-linux-how-to-setup-a-vpn-connection-to-a-sonicwal…jjrivTags – linux ubuntu vpn ipsec // var disqus_identifier = 'unique_dynamic_id_1234'; [...]

Leave a Reply