Skip to content

Commit 669e1cc

Browse files
committed
Merge branch 'develop'
2 parents 02206cc + 6f3366c commit 669e1cc

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### 1.0.6 - Bugfix
4+
5+
- Added missing `DNS` keyword to **dhcp-option** in example configs
6+
- Removed `ping` from client config in examples, because `keepalive` is set on a server
7+
38
### 1.0.5 - Bugfix, finish hook, persistent interface, no firewall ...
49

510
- Fixed bug when running hooks (#3)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ services:
7171
|`-e PUID=1000`|for UserID - see below for explanation|
7272
|`-e PGID=1000`|for GroupID - see below for explanation|
7373
|`-e OVPN_NFW=true`|Disable any firewall related rules to be created, modified ... (must be implemented in example)|
74-
|`-e OVPN_PERINT=false`|Disable persistent TUN interface|
74+
|`-e OVPN_PERINT=true`|Enable persistent TUN interface|
7575
|`-v /config`|All the config files including OpenVPNs reside here|
7676

7777
See also: [EasyRSA](https://github.com/OpenVPN/easy-rsa/blob/master/doc/EasyRSA-Advanced.md)

root/defaults/example/config/basic_nat/client/client.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ cipher AES-256-GCM
2727
# Additional settings
2828
compress lzo
2929
verb 3
30-
ping 10 120
3130

3231
# Permissions
3332
user nobody

root/defaults/example/config/basic_nat/server/server.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ topology subnet
1414
server $NETWORK_ADDRESS 255.255.255.0
1515

1616
push "redirect-gateway def1 bypass-dhcp"
17-
push "dhcp-option $DNS1"
18-
push "dhcp-option $DNS2"
17+
push "dhcp-option DNS $DNS1"
18+
push "dhcp-option DNS $DNS2"
1919

2020
ifconfig-pool-persist tmp/ipp.txt
2121

root/defaults/example/config/basic_nat_wlp/client/client.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ cipher AES-256-GCM
2727
# Additional settings
2828
compress lzo
2929
verb 3
30-
ping 10 120
3130

3231
# Permissions
3332
user nobody

root/defaults/example/config/basic_nat_wlp/server/server.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ topology subnet
1414
server $NETWORK_ADDRESS 255.255.255.0
1515

1616
push "redirect-gateway def1 bypass-dhcp"
17-
push "dhcp-option $DNS1"
18-
push "dhcp-option $DNS2"
17+
push "dhcp-option DNS $DNS1"
18+
push "dhcp-option DNS $DNS2"
1919

2020
ifconfig-pool-persist tmp/ipp.txt
2121

root/defaults/example/config/basic_routed/client/client.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ cipher AES-256-GCM
2727
# Additional settings
2828
compress lzo
2929
verb 3
30-
ping 10 120
3130

3231
# Permissions
3332
user nobody

root/defaults/example/config/basic_routed/server/server.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ topology subnet
1414
server $NETWORK_ADDRESS 255.255.255.0
1515

1616
push "redirect-gateway def1 bypass-dhcp"
17-
push "dhcp-option $DNS1"
18-
push "dhcp-option $DNS2"
17+
push "dhcp-option DNS $DNS1"
18+
push "dhcp-option DNS $DNS2"
1919

2020
ifconfig-pool-persist tmp/ipp.txt
2121

0 commit comments

Comments
 (0)