Advertisement
smhrambo

strongswan.conf

Jul 6th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | None | 0 0
  1. # strongswan.conf - strongSwan configuration file
  2. #
  3. # Refer to the strongswan.conf(5) manpage for details
  4. #
  5. # Configuration changes should be made in the included files
  6.  
  7. charon {
  8.         load_modular = yes
  9.         plugins {
  10.                 include strongswan.d/charon/*.conf
  11.                 eap-radius {
  12.                         servers {
  13.                                 server-a {
  14.                                         address = 127.0.0.1
  15.                                         secret = testing123
  16.                                 }
  17.                         }
  18.                 }
  19.         }
  20.  
  21.         dns1 = 192.168.13.100
  22.         dns2 = 192.168.13.1
  23.         nbns1 = 192.168.13.100
  24.         nbns2 = 192.168.13.1
  25. }
  26.  
  27. include strongswan.d/*.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement