Sample Config, um mit der FRITZ!Box 7320 (Firmware-Version: 100.05.51) einen VPN-Tunnel aufzubauen. Mehr in meinem Blogpost unter http://blog.sperr-objekt.de/content/1000423-VPN-Tunnel-mit-der-FRITZ!Box-7320-und-Linux.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vpncfg { | |
connections { | |
enabled = yes; | |
conn_type = conntype_user; | |
name = "MEINVPN"; | |
always_renew = no; | |
reject_not_encrypted = no; | |
dont_filter_netbios = yes; | |
localip = 0.0.0.0; | |
local_virtualip = 0.0.0.0; | |
remoteip = 0.0.0.0; | |
remote_virtualip = 192.168.178.201; | |
remoteid { | |
key_id = "MEINVPN"; | |
} | |
mode = phase1_mode_aggressive; | |
phase1ss = "all/all/all"; | |
keytype = connkeytype_pre_shared; | |
key = "SECRETKEYOFGREATLENGTH"; | |
cert_do_server_auth = no; | |
use_nat_t = yes; | |
use_xauth = yes; | |
xauth { | |
valid = yes; | |
username = "mattsches"; | |
passwd = "MYPASSWORD"; | |
} | |
use_cfgmode = yes; | |
phase2localid { | |
ipnet { | |
ipaddr = 0.0.0.0; | |
mask = 0.0.0.0; | |
} | |
} | |
phase2remoteid { | |
ipaddr = 192.168.178.201; | |
} | |
phase2ss = "esp-all-all/ah-none/comp-all/no-pfs"; | |
accesslist = | |
"permit ip 192.168.178.0 255.255.255.0 192.168.178.201 255.255.255.255", | |
"permit ip any 192.168.178.201 255.255.255.255"; | |
} | |
ike_forward_rules = "udp 0.0.0.0:500 0.0.0.0:500", | |
"udp 0.0.0.0:4500 0.0.0.0:4500"; | |
} | |
// EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment