diff options
author | Tobias Brunner <tobias@strongswan.org> | 2016-10-12 15:56:12 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2017-02-08 10:38:28 +0100 |
commit | 0aabfe07809d061b5c415e9b5b01b7915704d53a (patch) | |
tree | 0568bf96fd2fca19a98c77e0a451db5a79aa8a5d /conf | |
parent | 62b58a40da47031f0a46fa7d28b03cb327ebd6b5 (diff) | |
download | strongswan-0aabfe07809d061b5c415e9b5b01b7915704d53a.tar.bz2 strongswan-0aabfe07809d061b5c415e9b5b01b7915704d53a.tar.xz |
bypass-lan: Allow ignoring or only considering subnets of specific interfaces
The config can also be reloaded by sending a SIGHUP to charon.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/Makefile.am | 1 | ||||
-rw-r--r-- | conf/plugins/bypass-lan.opt | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/conf/Makefile.am b/conf/Makefile.am index c4b2c02fd..80fa31e73 100644 --- a/conf/Makefile.am +++ b/conf/Makefile.am @@ -32,6 +32,7 @@ plugins = \ plugins/attr.opt \ plugins/attr-sql.opt \ plugins/bliss.opt \ + plugins/bypass-lan.opt \ plugins/certexpire.opt \ plugins/coupling.opt \ plugins/dhcp.opt \ diff --git a/conf/plugins/bypass-lan.opt b/conf/plugins/bypass-lan.opt new file mode 100644 index 000000000..8c72facde --- /dev/null +++ b/conf/plugins/bypass-lan.opt @@ -0,0 +1,8 @@ +charon.plugins.bypass-lan.interfaces_ignore + A comma-separated list of network interfaces for which connected subnets + should be ignored, if **interfaces_use** is specified this option has no + effect. + +charon.plugins.bypass-lan.interfaces_use + A comma-separated list of network interfaces for which connected subnets + should be considered. All other interfaces are ignored. |